From 64ddae945a64d0ba449291a5d1eea6c67f843675 Mon Sep 17 00:00:00 2001 From: roberto_esaclear Date: Wed, 10 Jun 2026 10:49:48 +0200 Subject: [PATCH 1/3] v28 skills --- docs/source/cli.rst | 26 + main.sh | 114 + notebooks/phisat_list.csv | 3017 +++++++++++++++++ .../sentinel2a_night_imaging_products.csv | 130 + .../sentinel2a_night_imaging_products.gpkg | Bin 0 -> 372736 bytes ...inel2a_night_imaging_products_summary.json | 21 + phidown/cli.py | 8 + phidown/skill_cli.py | 214 ++ pyproject.toml | 4 +- readme.md | 17 + tests/test_skill_cli.py | 67 + 11 files changed, 3616 insertions(+), 2 deletions(-) create mode 100644 main.sh create mode 100644 notebooks/phisat_list.csv create mode 100644 notebooks/sentinel2a_night_imaging_products.csv create mode 100644 notebooks/sentinel2a_night_imaging_products.gpkg create mode 100644 notebooks/sentinel2a_night_imaging_products_summary.json create mode 100644 phidown/skill_cli.py create mode 100644 tests/test_skill_cli.py diff --git a/docs/source/cli.rst b/docs/source/cli.rst index 9d189bb..d6fec74 100644 --- a/docs/source/cli.rst +++ b/docs/source/cli.rst @@ -14,6 +14,32 @@ Basic Usage phidown [OPTIONS] phidown list [OPTIONS] + phidown skill add|remove [OPTIONS] + +Local Agent Skills +------------------ + +Install the bundled phidown guidance into local agent tooling: + +.. code-block:: bash + + phidown skill add # Codex, default + phidown skill add --engine claude # Claude Code personal skill + phidown skill add --engine cursor # Cursor project rule + phidown skill add --engine all + +Remove the matching local files: + +.. code-block:: bash + + phidown skill remove --engine all + +Targets: + +* Codex: ``$CODEX_HOME/skills/phidown`` or ``~/.codex/skills/phidown`` +* Claude Code: ``~/.claude/skills/phidown`` +* Cursor: ``.cursor/rules/phidown.mdc`` in the current project, or in + ``--cursor-project-dir`` Download Commands ----------------- diff --git a/main.sh b/main.sh new file mode 100644 index 0000000..0db3297 --- /dev/null +++ b/main.sh @@ -0,0 +1,114 @@ +#!/usr/bin/env bash +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd -P)" +PROJECT_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd -P)" + +if [[ -n "${CONDA_BASE:-}" && -n "${ENV_PREFIX:-}" && -f "${CONDA_BASE}/bin/activate" ]]; then + # The Makefile activates the env before calling this script; this keeps direct + # script invocation and PBS execution deterministic too. + source "${CONDA_BASE}/bin/activate" + conda activate "${ENV_PREFIX}" +fi + +BASE_DIR="${BASE_DIR:-${PROJECT_ROOT}}" +DATA_DIR="${DATA_DIR:-${BASE_DIR}/input_data}" +PY_SCRIPT_DIR="${PY_SCRIPT_DIR:-${BASE_DIR}/sarpyx/pyscripts}" +OUTPUT_PATH="${OUTPUT_PATH:-${OUTPUT_DIR:-${BASE_DIR}/OUT/worldsar_output}}" +OUTPUT_DIR="${OUTPUT_DIR:-${OUTPUT_PATH}}" +CUTS_OUTDIR="${CUTS_OUTDIR:-${TILES_DIR:-${BASE_DIR}/OUT/tiles}}" +TILES_DIR="${TILES_DIR:-${CUTS_OUTDIR}}" +DB_DIR="${DB_DIR:-${BASE_DIR}/OUT/DB}" +ENV_DIR="${ENV_DIR:-${BASE_DIR}/envs/worldsar-py313}" +SNAP_USER_DIR="${SNAP_USER_DIR:-${ENV_DIR}/opt/.snap}" +GRID_PATH="${GRID_PATH:-${BASE_DIR}/grid/grid_10km.geojson}" +GPT_MEMORY="${GPT_MEMORY:-64G}" +GPT_PARALLELISM="${GPT_PARALLELISM:-16}" +GPT_TIMEOUT="${GPT_TIMEOUT:-3600}" +SENTINEL_SUBAPS="${SENTINEL_SUBAPS:-2}" + +PRODUCT_INPUT="${1:-${PRODUCT:-${WORLDSAR_PRODUCT:-}}}" +if [[ -z "${PRODUCT_INPUT}" ]]; then + echo "ERROR: Product name is required." >&2 + echo "Usage: ${0##*/} " >&2 + echo "Or set PRODUCT=" >&2 + exit 2 +fi + +if [[ "${PRODUCT_INPUT}" == */* ]]; then + PROD_PATH="${PRODUCT_INPUT}" + PRODUCT_FROM_DATA_DIR=0 +else + PROD_PATH="${DATA_DIR}/${PRODUCT_INPUT}" + PRODUCT_FROM_DATA_DIR=1 +fi + +if [[ -z "${GPT_PATH:-}" ]]; then + GPT_PATH="$(command -v gpt || true)" +fi + +[[ -d "${BASE_DIR}" ]] || { echo "ERROR: BASE_DIR not found: ${BASE_DIR}" >&2; exit 2; } +if [[ "${PRODUCT_FROM_DATA_DIR}" -eq 1 ]]; then + [[ -d "${DATA_DIR}" ]] || { echo "ERROR: DATA_DIR not found: ${DATA_DIR}" >&2; exit 2; } +fi +[[ -d "${PY_SCRIPT_DIR}" ]] || { echo "ERROR: PY_SCRIPT_DIR not found: ${PY_SCRIPT_DIR}" >&2; exit 2; } +[[ -e "${PROD_PATH}" ]] || { echo "ERROR: Product not found: ${PROD_PATH}" >&2; exit 2; } +[[ -d "${SNAP_USER_DIR}" ]] || { echo "ERROR: SNAP_USER_DIR not found: ${SNAP_USER_DIR}" >&2; exit 2; } +[[ -f "${GRID_PATH}" ]] || { echo "ERROR: GRID_PATH not found: ${GRID_PATH}" >&2; exit 2; } +[[ -n "${GPT_PATH}" ]] || { echo "ERROR: gpt not found in PATH and GPT_PATH is unset." >&2; exit 2; } +if [[ "${GPT_PATH}" == */* ]]; then + [[ -x "${GPT_PATH}" ]] || { echo "ERROR: GPT_PATH is not executable: ${GPT_PATH}" >&2; exit 2; } +else + command -v "${GPT_PATH}" >/dev/null 2>&1 || { echo "ERROR: GPT command not found: ${GPT_PATH}" >&2; exit 2; } +fi + +if command -v sarpyx >/dev/null 2>&1; then + SARPYX_CMD=(sarpyx) +else + SARPYX_CMD=(python -m sarpyx.cli.worldsar) +fi + +read -r -a SENTINEL_SUBAP_ARGS <<< "${SENTINEL_SUBAPS}" +for subap in "${SENTINEL_SUBAP_ARGS[@]}"; do + [[ "${subap}" =~ ^[0-9]+$ ]] || { echo "ERROR: SENTINEL_SUBAPS must contain integers: ${SENTINEL_SUBAPS}" >&2; exit 2; } + [[ "${subap}" -ge 2 ]] || { echo "ERROR: SENTINEL_SUBAPS values must be >= 2: ${SENTINEL_SUBAPS}" >&2; exit 2; } +done + +mkdir -p "${OUTPUT_PATH}" "${CUTS_OUTDIR}" "${DB_DIR}" +export SNAP_USERDIR="${SNAP_USER_DIR}" + +args=( + --input "${PROD_PATH}" + --output "${OUTPUT_PATH}" + --cuts-outdir "${CUTS_OUTDIR}" + --gpt-path "${GPT_PATH}" + --grid-path "${GRID_PATH}" + --db-dir "${DB_DIR}" + --gpt-memory "${GPT_MEMORY}" + --gpt-parallelism "${GPT_PARALLELISM}" + --gpt-timeout "${GPT_TIMEOUT}" + --snap-userdir "${SNAP_USER_DIR}" + --sentinel-subaps "${SENTINEL_SUBAP_ARGS[@]}" +) + +[[ -n "${ORBIT_TYPE:-}" ]] && args+=(--orbit-type "${ORBIT_TYPE}") +[[ "${ORBIT_CONTINUE_ON_FAIL:-0}" == "1" ]] && args+=(--orbit-continue-on-fail) +[[ -n "${SENTINEL_SWATH:-}" ]] && args+=(--sentinel-swath "${SENTINEL_SWATH}") +[[ -n "${SENTINEL_FIRST_BURST:-}" ]] && args+=(--sentinel-first-burst "${SENTINEL_FIRST_BURST}") +[[ -n "${SENTINEL_LAST_BURST:-}" ]] && args+=(--sentinel-last-burst "${SENTINEL_LAST_BURST}") +[[ -n "${SENTINEL_TC_SOURCE_BAND:-}" ]] && args+=(--sentinel-tc-source-band "${SENTINEL_TC_SOURCE_BAND}") +[[ "${SKIP_PREPROCESSING:-0}" == "1" ]] && args+=(--skip-preprocessing) + +echo "WORLDSAR_MODE=${WORLDSAR_MODE:-}" +echo "BASE_DIR=${BASE_DIR}" +echo "DATA_DIR=${DATA_DIR}" +echo "PROD_PATH=${PROD_PATH}" +echo "OUTPUT_PATH=${OUTPUT_PATH}" +echo "CUTS_OUTDIR=${CUTS_OUTDIR}" +echo "DB_DIR=${DB_DIR}" +echo "SNAP_USER_DIR=${SNAP_USER_DIR}" +echo "GRID_PATH=${GRID_PATH}" +echo "GPT_PATH=${GPT_PATH}" +echo "SARPYX_CMD=${SARPYX_CMD[*]}" + +exec "${SARPYX_CMD[@]}" "${args[@]}" diff --git a/notebooks/phisat_list.csv b/notebooks/phisat_list.csv new file mode 100644 index 0000000..77af20e --- /dev/null +++ b/notebooks/phisat_list.csv @@ -0,0 +1,3017 @@ +PHISAT-2_L1_000001292_20240820113704_20240820113714_D4D12BE1 +PHISAT-2_L1_000001293_20240821094710_20240821094722_69F2318F +PHISAT-2_L1_000001294_20240821112304_20240821112315_7ACF1DB9 +PHISAT-2_L1_000001295_20240829002027_20240829002036_B5E60397 +PHISAT-2_L1_000001296_20240829184926_20240829184936_BFFAF1C7 +PHISAT-2_L1_000001297_20240831102554_20240831102607_CFF25AB4 +PHISAT-2_L1_000001298_20240903003753_20240903003806_EBCF35EF +PHISAT-2_L1_000001299_20240904002236_20240904002245_C868A640 +PHISAT-2_L1_000001300_20240906102743_20240906102756_0852311C +PHISAT-2_L1_000001301_20240909003906_20240909003916_C6FE8F2A +PHISAT-2_L1_000001302_20240910002331_20240910002340_AF9A3EE3 +PHISAT-2_L1_000001303_20240910092616_20240910092629_95322C46 +PHISAT-2_L1_000001305_20240912085537_20240912085550_0B3E1310 +PHISAT-2_L1_000001306_20240912102810_20240912102823_3062F6AB +PHISAT-2_L1_000001307_20240915003901_20240915003914_C43AB682 +PHISAT-2_L1_000001308_20240916002303_20240916002312_10CD2FA4 +PHISAT-2_L1_000001310_20240918102716_20240918102729_4DFEBFA1 +PHISAT-2_L1_000001311_20240919100621_20240919100640_33969A91 +PHISAT-2_L1_000001316_20240922002145_20240922002157_E6B62F28 +PHISAT-2_L1_000001318_20240924102533_20240924102543_F6C2003A +PHISAT-2_L1_000001326_20240928001939_20240928001948_F6D70F71 +PHISAT-2_L1_000001328_20240929091843_20240929091845_9619DDA4 +PHISAT-2_L1_000001329_20240929151157_20240929151206_837E31F8 +PHISAT-2_L1_000001330_20240929183329_20240929183338_FA412332 +PHISAT-2_L1_000001333_20241001180043_20241001180052_14FEB682 +PHISAT-2_L1_000001334_20241002112816_20241002112825_07E22ED4 +PHISAT-2_L1_000001336_20241003044646_20241003044655_F362222B +PHISAT-2_L1_000001337_20241003054531_20241003054533_46335702 +PHISAT-2_L1_000001340_20241007034054_20241007034103_E04D392C +PHISAT-2_L1_000001341_20241007065606_20241007065608_49BFC92E +PHISAT-2_L1_000001342_20241007162119_20241007162142_DADF5A9C +PHISAT-2_L1_000001346_20241008160429_20241008160435_62733D31 +PHISAT-2_L1_000001347_20241008173518_20241008173517_1939BB91 +PHISAT-2_L1_000001348_20241009002903_20241009002909_8973115C +PHISAT-2_L1_000001350_20241012083945_20241012083951_84AFC725 +PHISAT-2_L1_000001351_20241012101704_20241012101710_7E2C7BC4 +PHISAT-2_L1_000001354_20241013023019_20241013023027_DFECFF7E +PHISAT-2_L1_000001355_20241014003935_20241014003941_51C42A82 +PHISAT-2_L1_000001357_20241014062932_20241014062934_00C6AE42 +PHISAT-2_L1_000001362_20241014173111_20241014173117_AB9FCF79 +PHISAT-2_L1_000001363_20241015015719_20241015015726_9F2674A3 +PHISAT-2_L1_000001368_20241015153125_20241015153131_4FE343D3 +PHISAT-2_L1_000001369_20241015185218_20241015185224_0DECCD4F +PHISAT-2_L1_000001370_20241016014039_20241016014044_E402EE83 +PHISAT-2_L1_000001371_20241016055943_20241016055945_12786AC4 +PHISAT-2_L1_000001375_20241017011201_20241017011203_8BC89722 +PHISAT-2_L1_000001376_20241017053818_20241017053824_A89F8010 +PHISAT-2_L1_000001377_20241017084817_20241017084823_A6161739 +PHISAT-2_L1_000001380_20241018083340_20241018083346_C7F68510 +PHISAT-2_L1_000001382_20241018114530_20241018114532_8D6F0A6E +PHISAT-2_L1_000001383_20241018145259_20241018145301_8E085BB7 +PHISAT-2_L1_000001384_20241018162312_20241018162314_37BFD8BD +PHISAT-2_L1_000001385_20241018180208_20241018180214_3865451F +PHISAT-2_L1_000001388_20241019112915_20241019112921_113E605B +PHISAT-2_L1_000001389_20241019145238_20241019145244_2BFBAB43 +PHISAT-2_L1_000001390_20241019174520_20241019174526_6FD675DE +PHISAT-2_L1_000001391_20241020044719_20241020044725_2E58ED16 +PHISAT-2_L1_000001392_20241020093553_20241020093559_1F7FA223 +PHISAT-2_L1_000001393_20241020190128_20241020190134_F527F68D +PHISAT-2_L1_000001394_20241021025948_20241021025954_88362104 +PHISAT-2_L1_000001395_20241021060830_20241021060836_04B7EEFF +PHISAT-2_L1_000001396_20241021091804_20241021091810_4298F46C +PHISAT-2_L1_000001397_20241021105311_20241021105313_C52C1169 +PHISAT-2_L1_000001401_20241022152040_20241022152042_A31D6393 +PHISAT-2_L1_000001402_20241022165451_20241022165457_27A3820E +PHISAT-2_L1_000001403_20241023035600_20241023035606_CD486775 +PHISAT-2_L1_000001406_20241023181027_20241023181033_EAE9394D +PHISAT-2_L1_000001407_20241024065411_20241024065413_A2FF3BF6 +PHISAT-2_L1_000001408_20241024095904_20241024095906_0BA757AB +PHISAT-2_L1_000001409_20241024113827_20241024113833_8C60F4DB +PHISAT-2_L1_000001410_20241024131004_20241024131006_75E075BC +PHISAT-2_L1_000001411_20241024150003_20241024150005_0DE59608 +PHISAT-2_L1_000001413_20241025111918_20241025111920_FD30439A +PHISAT-2_L1_000001414_20241025124327_20241025124329_F9F54D88 +PHISAT-2_L1_000001416_20241025191119_20241025191132_E0848D4C +PHISAT-2_L1_000001417_20241026001449_20241026001502_C857340D +PHISAT-2_L1_000001418_20241026044438_20241026044447_7400F6CE +PHISAT-2_L1_000001419_20241026061836_20241026061849_ECBE99C8 +PHISAT-2_L1_000001420_20241026075635_20241026075653_2A934CF6 +PHISAT-2_L1_000001422_20241026185509_20241026185521_5E33E262 +PHISAT-2_L1_000001423_20241027025016_20241027025026_202F4E3A +PHISAT-2_L1_000001424_20241027060206_20241027060216_D9DF47C8 +PHISAT-2_L1_000001426_20241027151659_20241027151717_57664497 +PHISAT-2_L1_000001427_20241028011417_20241028011419_1A550005 +PHISAT-2_L1_000001428_20241028023124_20241028023133_4CCD1634 +PHISAT-2_L1_000001429_20241028054032_20241028054038_C0AD3C5A +PHISAT-2_L1_000001430_20241028085221_20241028085233_15A5B59F +PHISAT-2_L1_000001431_20241029131920_20241029131922_D60F6F67 +PHISAT-2_L1_000001432_20241029144754_20241029144756_6C53DF1F +PHISAT-2_L1_000001433_20241029162701_20241029162709_712BAC91 +PHISAT-2_L1_000001434_20241029170909_20241029170917_4DBC7894 +PHISAT-2_L1_000001435_20241030095419_20241030095421_F8271924 +PHISAT-2_L1_000001436_20241030130155_20241030130157_0F5273A7 +PHISAT-2_L1_000001437_20241030170252_20241030170254_8C93D44F +PHISAT-2_L1_000001447_20241101025826_20241101025837_4F2DAA76 +PHISAT-2_L1_000001448_20241101060913_20241101060919_109DDBA2 +PHISAT-2_L1_000001450_20241101104933_20241101104940_F13E3810 +PHISAT-2_L1_000001451_20241101184604_20241101184610_41DC1231 +PHISAT-2_L1_000001452_20241102024128_20241102024134_7DB84851 +PHISAT-2_L1_000001454_20241102102921_20241102102927_F9EBD69D +PHISAT-2_L1_000001457_20241104034901_20241104034906_282F2ECC +PHISAT-2_L1_000001458_20241104065341_20241104065343_EA5FB0DB +PHISAT-2_L1_000001459_20241104095242_20241104095248_A1027C7E +PHISAT-2_L1_000001460_20241104145835_20241104145837_2F600E7F +PHISAT-2_L1_000001461_20241105063214_20241105063216_7F012860 +PHISAT-2_L1_000001462_20241105191012_20241105191018_341D6129 +PHISAT-2_L1_000001463_20241106061549_20241106061551_E63CF0AF +PHISAT-2_L1_000001464_20241107024831_20241107024839_2FE4B14E +PHISAT-2_L1_000001465_20241107060022_20241107060024_CA522BDF +PHISAT-2_L1_000001466_20241107092209_20241107092215_E74D4190 +PHISAT-2_L1_000001467_20241107183614_20241107183620_19E4F8E2 +PHISAT-2_L1_000001468_20241108084806_20241108084812_AA03E01B +PHISAT-2_L1_000001470_20241109034525_20241109034531_62873A7A +PHISAT-2_L1_000001471_20241110112305_20241110112310_74757EC3 +PHISAT-2_L1_000001471_20241110112306_20241110112312_74757EC3 +PHISAT-2_L1_000001472_20241110174323_20241110174329_C4EC8770 +PHISAT-2_L1_000001473_20241111003127_20241111003133_469A9796 +PHISAT-2_L1_000001474_20241111044502_20241111044508_F124A319 +PHISAT-2_L1_000001477_20241111185842_20241111185848_EE677E1C +PHISAT-2_L1_000001478_20241112030456_20241112030502_D8E42FEC +PHISAT-2_L1_000001479_20241112060524_20241112060530_EF7F632C +PHISAT-2_L1_000001481_20241112135732_20241112135734_2859BCE6 +PHISAT-2_L1_000001482_20241113011813_20241113011815_76566660 +PHISAT-2_L1_000001483_20241113054421_20241113054427_4BD1A70E +PHISAT-2_L1_000001484_20241113085411_20241113085417_8A0F19A8 +PHISAT-2_L1_000001485_20241113120633_20241113120642_5FFD7472 +PHISAT-2_L1_000001486_20241114035124_20241114035130_97490E87 +PHISAT-2_L1_000001487_20241114083844_20241114083850_2B2A53B9 +PHISAT-2_L1_000001489_20241115145636_20241115145642_639BE897 +PHISAT-2_L1_000001490_20241117061021_20241117061023_EB717818 +PHISAT-2_L1_000001491_20241119102119_20241119102125_B1B877D0 +PHISAT-2_L1_000001492_20241120095307_20241120095313_5D46F8B2 +PHISAT-2_L1_000001493_20241120143629_20241120143647_A0DB4EFE +PHISAT-2_L1_000001496_20241121191007_20241121191013_D83D6933 +PHISAT-2_L1_000001497_20241122044150_20241122044157_6CDB2165 +PHISAT-2_L1_000001498_20241122093754_20241122093800_1B620C5A +PHISAT-2_L1_000001499_20241122185250_20241122185256_2722E2FF +PHISAT-2_L1_000001500_20241123055944_20241123055946_8790E871 +PHISAT-2_L1_000001501_20241123092128_20241123092134_3B8ACA0D +PHISAT-2_L1_000001502_20241123183535_20241123183541_8B8B33DC +PHISAT-2_L1_000001503_20241124011110_20241124011112_3EF1688F +PHISAT-2_L1_000001504_20241124084705_20241124084711_7F0C635F +PHISAT-2_L1_000001505_20241124145916_20241124145933_D1D93831 +PHISAT-2_L1_000001506_20241124173315_20241124173317_657E957F +PHISAT-2_L1_000001507_20241125034409_20241125034415_16A61A82 +PHISAT-2_L1_000001508_20241125083126_20241125083132_8CDAC6F5 +PHISAT-2_L1_000001510_20241126054624_20241126054626_58EB4AE3 +PHISAT-2_L1_000001511_20241126112522_20241126112528_02B134C6 +PHISAT-2_L1_000001512_20241127002928_20241127002930_ED9AA1D8 +PHISAT-2_L1_000001513_20241127044633_20241127044638_C14933E5 +PHISAT-2_L1_000001514_20241127054139_20241127054141_C2C9134D +PHISAT-2_L1_000001515_20241128104314_20241128104320_92EDCC11 +PHISAT-2_L1_000001516_20241129011532_20241129011534_72F1ACA0 +PHISAT-2_L1_000001517_20241129062655_20241129062713_34ACC35D +PHISAT-2_L1_000001520_20241203104653_20241203104659_9F7CDE23 +PHISAT-2_L1_000001521_20241203184210_20241203184216_DB435BD5 +PHISAT-2_L1_000001524_20241205085607_20241205085613_F78A1007 +PHISAT-2_L1_000001529_20241211095837_20241211095839_AA4BECA3 +PHISAT-2_L1_000001535_20241217173223_20241217173229_99460ED1 +PHISAT-2_L1_000001536_20241219073119_20241219073125_927F8A91 +PHISAT-2_L1_000001539_20241221034558_20241221034603_6557FBFE +PHISAT-2_L1_000001540_20241221095901_20241221095909_41ECEBF0 +PHISAT-2_L1_000001542_20241221162126_20241221162135_CCB7C40A +PHISAT-2_L1_000001543_20241222111556_20241222111606_E4A81A25 +PHISAT-2_L1_000001544_20241222173722_20241222173732_D44DC1DD +PHISAT-2_L1_000001546_20241223185151_20241223185157_11598099 +PHISAT-2_L1_000001547_20241228215743_20241228215749_EABEC9FA +PHISAT-2_L1_000001548_20241229092155_20241229092201_9724F0F7 +PHISAT-2_L1_000001549_20241229135941_20241229135947_59548B27 +PHISAT-2_L1_000001550_20241229183555_20241229183601_5D3DD7CA +PHISAT-2_L1_000001552_20241230022848_20241230022854_C006B47F +PHISAT-2_L1_000001553_20241231034302_20241231034308_8E698850 +PHISAT-2_L1_000001554_20241231065703_20241231065709_80733406 +PHISAT-2_L1_000001555_20241231101142_20241231101148_4A793D83 +PHISAT-2_L1_000001556_20250101204119_20250101204125_77222D1F +PHISAT-2_L1_000001557_20250102030604_20250102030610_9D9ED216 +PHISAT-2_L1_000001558_20250103024910_20250103024916_5EBC0DCD +PHISAT-2_L1_000001559_20250103170213_20250103170219_6C75C920 +PHISAT-2_L1_000001560_20250105065646_20250105065652_D022F28A +PHISAT-2_L1_000001563_20250107030540_20250107030546_B3594820 +PHISAT-2_L1_000001564_20250108135929_20250108135935_4ABBEBAB +PHISAT-2_L1_000001565_20250108183540_20250108183546_11A3CB2A +PHISAT-2_L1_000001566_20250109022827_20250109022833_4A929F56 +PHISAT-2_L1_000001569_20250113024743_20250113024749_9EBAC41C +PHISAT-2_L1_000001570_20250113170037_20250113170043_770DCFB8 +PHISAT-2_L1_000001571_20250114211710_20250114211716_4705C907 +PHISAT-2_L1_000001572_20250115065517_20250115065523_A1B490D7 +PHISAT-2_L1_000001573_20250116130431_20250116130441_085D4BA8 +PHISAT-2_L1_000001575_20250117105606_20250117105613_6946D704 +PHISAT-2_L1_000001576_20250117185150_20250117185155_362B42EA +PHISAT-2_L1_000001577_20250118024608_20250118024614_DB7A0226 +PHISAT-2_L1_000001578_20250118135715_20250118135721_E1E91434 +PHISAT-2_L1_000001581_20250119022607_20250119022613_E61ECC8D +PHISAT-2_L1_000001582_20250119211545_20250119211551_3317F1FB +PHISAT-2_L1_000001583_20250120065350_20250120065356_51E5028D +PHISAT-2_L1_000001584_20250120113359_20250120113405_D98E118F +PHISAT-2_L1_000001585_20250121093947_20250121094000_702B06A5 +PHISAT-2_L1_000001586_20250122030159_20250122030205_0A713F16 +PHISAT-2_L1_000001587_20250122154641_20250122154647_4144F6B7 +PHISAT-2_L1_000001588_20250122185004_20250122185009_362283A0 +PHISAT-2_L1_000001589_20250123024421_20250123024427_04BE6D04 +PHISAT-2_L1_000001590_20250128182853_20250128182859_C5DA4D55 +PHISAT-2_L1_000001591_20250129022131_20250129022140_3FCF6D05 +PHISAT-2_L1_000001592_20250129070736_20250129070745_638EFCFE +PHISAT-2_L1_000001594_20250130095411_20250130095422_B6D7614F +PHISAT-2_L1_000001595_20250130112921_20250130112934_DF28CA6B +PHISAT-2_L1_000001596_20250130144240_20250130144246_A4AEECF7 +PHISAT-2_L1_000001597_20250130205124_20250130205130_CDF3BFFD +PHISAT-2_L1_000001599_20250201025541_20250201025547_C81425B4 +PHISAT-2_L1_000001601_20250203070420_20250203070426_1817876F +PHISAT-2_L1_000001602_20250203114224_20250203114230_6F154145 +PHISAT-2_L1_000001603_20250204034149_20250204034155_DF3BE6DD +PHISAT-2_L1_000001608_20250205141922_20250205141924_6769C9EA +PHISAT-2_L1_000001609_20250205171814_20250205171816_3DDD5EB6 +PHISAT-2_L1_000001610_20250206025207_20250206025213_104D0142 +PHISAT-2_L1_000001611_20250206073912_20250206073918_9E077834 +PHISAT-2_L1_000001612_20250206091203_20250206091209_DD9A2690 +PHISAT-2_L1_000001613_20250206105100_20250206105102_3FC0349D +PHISAT-2_L1_000001614_20250206122610_20250206122612_AD9E8383 +PHISAT-2_L1_000001615_20250206141440_20250206141446_4605810C +PHISAT-2_L1_000001616_20250207150824_20250207150826_41D1D998 +PHISAT-2_L1_000001617_20250207181315_20250207181317_C3236E3B +PHISAT-2_L1_000001618_20250208101541_20250208101547_DD90ABEB +PHISAT-2_L1_000001619_20250208120309_20250208120315_2EF72389 +PHISAT-2_L1_000001620_20250208175854_20250208175856_3BCAD1A2 +PHISAT-2_L1_000001621_20250209033758_20250209033804_4CDB06BD +PHISAT-2_L1_000001622_20250209204403_20250209204409_29753E37 +PHISAT-2_L1_000001623_20250210030832_20250210030838_90637091 +PHISAT-2_L1_000001626_20250215075123_20250215075126_E7CEA880 +PHISAT-2_L1_000001628_20250215105703_20250215105706_B8160475 +PHISAT-2_L1_000001629_20250215185044_20250215185047_3E63B58D +PHISAT-2_L1_000001630_20250216135650_20250216135656_3F583BBD +PHISAT-2_L1_000001631_20250216183251_20250216183257_735DBEE9 +PHISAT-2_L1_000001632_20250217022522_20250217022528_34F82143 +PHISAT-2_L1_000001634_20250218100020_20250218100022_CA1ACF21 +PHISAT-2_L1_000001635_20250218145710_20250218145715_01D37B3D +PHISAT-2_L1_000001636_20250218161743_20250218161746_8762AC01 +PHISAT-2_L1_000001637_20250218205435_20250218205441_B3FBD3D8 +PHISAT-2_L1_000001638_20250220025823_20250220025829_8BDDF341 +PHISAT-2_L1_000001639_20250220154337_20250220154343_B614AF90 +PHISAT-2_L1_000001641_20250221182741_20250221182745_3A837828 +PHISAT-2_L1_000001642_20250222053508_20250222053511_43904C94 +PHISAT-2_L1_000001643_20250222083351_20250222083354_204E8E2C +PHISAT-2_L1_000001644_20250222114412_20250222114418_7FB4F31A +PHISAT-2_L1_000001645_20250222151118_20250222151121_84A015D6 +PHISAT-2_L1_000001646_20250223034325_20250223034331_DEF3208C +PHISAT-2_L1_000001647_20250223145154_20250223145158_A2E2ECCE +PHISAT-2_L1_000001648_20250223191958_20250223192001_2E13C7AE +PHISAT-2_L1_000001649_20250224032519_20250224032525_012B5DA9 +PHISAT-2_L1_000001650_20250225025257_20250225025303_30053694 +PHISAT-2_L1_000001651_20250225073957_20250225074003_8721A756 +PHISAT-2_L1_000001652_20250225091130_20250225091135_745F0370 +PHISAT-2_L1_000001653_20250225104639_20250225104641_1B9FB667 +PHISAT-2_L1_000001654_20250225170746_20250225170748_52409A0E +PHISAT-2_L1_000001656_20250225214503_20250225214505_70DE5FE6 +PHISAT-2_L1_000001657_20250226011323_20250226011325_1420DE9B +PHISAT-2_L1_000001658_20250226023428_20250226023430_F5D21782 +PHISAT-2_L1_000001659_20250226024917_20250226024919_B637009B +PHISAT-2_L1_000001660_20250226072026_20250226072028_59F92C9F +PHISAT-2_L1_000001661_20250226085234_20250226085236_7A9C0349 +PHISAT-2_L1_000001662_20250226102633_20250226102635_B5A92E1C +PHISAT-2_L1_000001663_20250226115825_20250226115827_9B471855 +PHISAT-2_L1_000001664_20250226181946_20250226181951_80A0CE0A +PHISAT-2_L1_000001665_20250226212315_20250226212318_45BF79B0 +PHISAT-2_L1_000001666_20250227035731_20250227035734_1BC44DC3 +PHISAT-2_L1_000001667_20250227070108_20250227070110_111E0DE2 +PHISAT-2_L1_000001668_20250227114109_20250227114112_ADF35EA1 +PHISAT-2_L1_000001669_20250227145443_20250227145445_22635FFE +PHISAT-2_L1_000001670_20250227210321_20250227210323_FDB9035B +PHISAT-2_L1_000001678_20250301030745_20250301030751_94703F46 +PHISAT-2_L1_000001679_20250301044535_20250301044537_DFD7734F +PHISAT-2_L1_000001680_20250301061938_20250301061940_62E67563 +PHISAT-2_L1_000001681_20250301075350_20250301075352_59269833 +PHISAT-2_L1_000001682_20250301155159_20250301155201_E1A6FD85 +PHISAT-2_L1_000001684_20250301215855_20250301215857_23AA4E3F +PHISAT-2_L1_000001685_20250302024934_20250302024940_89F7834E +PHISAT-2_L1_000001686_20250302121210_20250302121213_BD5D643B +PHISAT-2_L1_000001687_20250302135956_20250302140002_7AEF5C83 +PHISAT-2_L1_000001688_20250302170150_20250302170152_CB40500A +PHISAT-2_L1_000001689_20250302183553_20250302183559_7B4DA5E5 +PHISAT-2_L1_000001690_20250302213710_20250302213712_8D4F3BD1 +PHISAT-2_L1_000001691_20250303022817_20250303022823_97D69A52 +PHISAT-2_L1_000001692_20250303071448_20250303071451_4396FD01 +PHISAT-2_L1_000001693_20250303102916_20250303102918_A5565447 +PHISAT-2_L1_000001694_20250303115211_20250303115213_44999B39 +PHISAT-2_L1_000001695_20250303211658_20250303211700_F9D4CB38 +PHISAT-2_L1_000001696_20250304035114_20250304035116_BE80230F +PHISAT-2_L1_000001697_20250304065450_20250304065452_9A3710D0 +PHISAT-2_L1_000001698_20250304113120_20250304113125_3287090A +PHISAT-2_L1_000001699_20250304144823_20250304144825_8285860C +PHISAT-2_L1_000001700_20250304145936_20250304145941_222721AE +PHISAT-2_L1_000001701_20250304205657_20250304205659_793EFD83 +PHISAT-2_L1_000001702_20250305032025_20250305032028_2FF11E7C +PHISAT-2_L1_000001703_20250305033258_20250305033300_92B57746 +PHISAT-2_L1_000001704_20250305045909_20250305045911_93EBFD36 +PHISAT-2_L1_000001705_20250305063308_20250305063310_B77B0D8D +PHISAT-2_L1_000001706_20250305112044_20250305112046_A33B0AE9 +PHISAT-2_L1_000001707_20250305173150_20250305173156_64AC43E2 +PHISAT-2_L1_000001708_20250305221226_20250305221228_AB103DBB +PHISAT-2_L1_000001710_20250306043854_20250306043856_687AD31F +PHISAT-2_L1_000001711_20250306061317_20250306061319_36553BD8 +PHISAT-2_L1_000001712_20250306074721_20250306074723_726C8F60 +PHISAT-2_L1_000001713_20250306110042_20250306110044_87166355 +PHISAT-2_L1_000001714_20250306123846_20250306123850_79ACA313 +PHISAT-2_L1_000001715_20250306142240_20250306142242_4E050F9F +PHISAT-2_L1_000001716_20250306154527_20250306154529_F0CEBFAD +PHISAT-2_L1_000001717_20250306171516_20250306171521_1BDD39E0 +PHISAT-2_L1_000001718_20250306184732_20250306184736_C9EE347D +PHISAT-2_L1_000001719_20250306215222_20250306215224_EED10D4F +PHISAT-2_L1_000001720_20250307024143_20250307024145_86F294C9 +PHISAT-2_L1_000001721_20250307165514_20250307165516_06151B41 +PHISAT-2_L1_000001722_20250307182912_20250307182914_CC87D2B0 +PHISAT-2_L1_000001723_20250307213034_20250307213036_CCF8C131 +PHISAT-2_L1_000001724_20250308022140_20250308022142_726C76F4 +PHISAT-2_L1_000001725_20250308070811_20250308070813_6E3EFF35 +PHISAT-2_L1_000001726_20250308084125_20250308084127_CD835313 +PHISAT-2_L1_000001727_20250308114531_20250308114533_AB9DD103 +PHISAT-2_L1_000001728_20250308163333_20250308163340_66562C7D +PHISAT-2_L1_000001729_20250308211018_20250308211020_BDC781BD +PHISAT-2_L1_000001730_20250309034436_20250309034442_A3BAB790 +PHISAT-2_L1_000001731_20250309131852_20250309131858_5841B009 +PHISAT-2_L1_000001732_20250309144139_20250309144141_E998A6F0 +PHISAT-2_L1_000001733_20250309145253_20250309145258_A6149DDA +PHISAT-2_L1_000001734_20250309205012_20250309205014_10B8CDDF +PHISAT-2_L1_000001735_20250310031431_20250310031433_5B1F0486 +PHISAT-2_L1_000001736_20250310031849_20250310031851_ADB7ABD0 +PHISAT-2_L1_000001737_20250310032610_20250310032612_ECDA7331 +PHISAT-2_L1_000001738_20250310045221_20250310045223_FC0DBE2B +PHISAT-2_L1_000001739_20250310062620_20250310062622_D52C3CBD +PHISAT-2_L1_000001740_20250310111356_20250310111358_C88D58C7 +PHISAT-2_L1_000001742_20250310172744_20250310172752_198A89F3 +PHISAT-2_L1_000001743_20250310220534_20250310220536_37A785B5 +PHISAT-2_L1_000001744_20250311140628_20250311140630_07D7338C +PHISAT-2_L1_000001745_20250311141544_20250311141546_15DD8CA5 +PHISAT-2_L1_000001746_20250311153832_20250311153834_C18D5CAF +PHISAT-2_L1_000001747_20250311170822_20250311170824_70785FF5 +PHISAT-2_L1_000001748_20250311184034_20250311184038_703A4450 +PHISAT-2_L1_000001749_20250311214523_20250311214525_22D2F4A1 +PHISAT-2_L1_000001750_20250312023444_20250312023446_0FCCACF0 +PHISAT-2_L1_000001751_20250312054920_20250312054922_503E59BA +PHISAT-2_L1_000001752_20250312102528_20250312102531_003CFCD5 +PHISAT-2_L1_000001754_20250312182148_20250312182156_5A3D9C5C +PHISAT-2_L1_000001755_20250312212330_20250312212332_D7A95295 +PHISAT-2_L1_000001756_20250313070106_20250313070108_25D63BF9 +PHISAT-2_L1_000001757_20250313113823_20250313113825_104F0A6C +PHISAT-2_L1_000001758_20250313175945_20250313175951_C8F9994B +PHISAT-2_L1_000001759_20250313210308_20250313210310_9C349C64 +PHISAT-2_L1_000001760_20250314033720_20250314033722_51C92957 +PHISAT-2_L1_000001762_20250314160515_20250314160517_772046B6 +PHISAT-2_L1_000001763_20250314191402_20250314191404_1EEA90EA +PHISAT-2_L1_000001764_20250314204254_20250314204256_3FA19C17 +PHISAT-2_L1_000001773_20250316024845_20250316024847_B13B1691 +PHISAT-2_L1_000001774_20250316135859_20250316135901_4EAAA4FF +PHISAT-2_L1_000001775_20250316140815_20250316140817_B2886547 +PHISAT-2_L1_000001776_20250316170052_20250316170054_DFCD7BD7 +PHISAT-2_L1_000001778_20250316213608_20250316213610_28F2468C +PHISAT-2_L1_000001779_20250317022711_20250317022713_1E1467B6 +PHISAT-2_L1_000001781_20250317115058_20250317115100_E38D0297 +PHISAT-2_L1_000001782_20250317211550_20250317211552_872D8E83 +PHISAT-2_L1_000001783_20250318034951_20250318034953_ED4186F7 +PHISAT-2_L1_000001784_20250318065323_20250318065325_F7824552 +PHISAT-2_L1_000001786_20250318205523_20250318205526_774743D1 +PHISAT-2_L1_000001787_20250319015829_20250319015831_06EAA0FD +PHISAT-2_L1_000001788_20250319032354_20250319032356_0A24AE73 +PHISAT-2_L1_000001789_20250319033115_20250319033117_4D6E81F5 +PHISAT-2_L1_000001790_20250319045724_20250319045726_A922ECE6 +PHISAT-2_L1_000001791_20250319063122_20250319063124_6C793814 +PHISAT-2_L1_000001793_20250319110803_20250319110806_9CB0B6F7 +PHISAT-2_L1_000001794_20250319124743_20250319124746_8A1A34AD +PHISAT-2_L1_000001795_20250319143700_20250319143707_21CFE7F7 +PHISAT-2_L1_000001796_20250319221028_20250319221031_0C5C3182 +PHISAT-2_L1_000001797_20250320025822_20250320025825_79974744 +PHISAT-2_L1_000001799_20250320091540_20250320091543_2B21BD69 +PHISAT-2_L1_000001801_20250320171242_20250320171245_EDAEBF97 +PHISAT-2_L1_000001803_20250320215003_20250320215006_CF4E490A +PHISAT-2_L1_000001804_20250321024027_20250321024030_A7A32EE6 +PHISAT-2_L1_000001805_20250321072520_20250321072523_2C215AFC +PHISAT-2_L1_000001806_20250321085839_20250321085842_2782044D +PHISAT-2_L1_000001807_20250321091539_20250321091542_6E68F276 +PHISAT-2_L1_000001808_20250321140008_20250321140011_DAE5ABFF +PHISAT-2_L1_000001809_20250321165328_20250321165331_6157A3EA +PHISAT-2_L1_000001810_20250321182642_20250321182645_DB14ECD8 +PHISAT-2_L1_000001812_20250322021957_20250322022000_D28F039D +PHISAT-2_L1_000001813_20250322035439_20250322035442_8D8C33E8 +PHISAT-2_L1_000001814_20250322070524_20250322070527_4DBF8C2C +PHISAT-2_L1_000001815_20250322101000_20250322101003_A1B39091 +PHISAT-2_L1_000001816_20250322101949_20250322101952_857AA822 +PHISAT-2_L1_000001817_20250322114239_20250322114242_5F6E97DA +PHISAT-2_L1_000001818_20250322115148_20250322115151_747ADD95 +PHISAT-2_L1_000001819_20250322133624_20250322133627_F1F1D066 +PHISAT-2_L1_000001820_20250322163155_20250322163158_30308F98 +PHISAT-2_L1_000001821_20250322210719_20250322210722_4F378711 +PHISAT-2_L1_000001822_20250323015802_20250323015805_D71B3483 +PHISAT-2_L1_000001823_20250323021025_20250323021028_F19A4178 +PHISAT-2_L1_000001824_20250323033107_20250323033110_83D6B9C1 +PHISAT-2_L1_000001825_20250323034126_20250323034129_B3CFF6E5 +PHISAT-2_L1_000001828_20250323143823_20250323143826_EB01E430 +PHISAT-2_L1_000001829_20250323161144_20250323161147_95FE5DAA +PHISAT-2_L1_000001830_20250323204650_20250323204653_DB4B7F60 +PHISAT-2_L1_000001831_20250324013708_20250324013711_249DA4E7 +PHISAT-2_L1_000001832_20250324031011_20250324031014_DFBA8073 +PHISAT-2_L1_000001833_20250324031521_20250324031524_5EEC8183 +PHISAT-2_L1_000001834_20250324032242_20250324032245_E70837AB +PHISAT-2_L1_000001835_20250324220149_20250324220152_1EC02B50 +PHISAT-2_L1_000001836_20250325025218_20250325025221_AB76AC3D +PHISAT-2_L1_000001837_20250325060428_20250325060431_3422FD0F +PHISAT-2_L1_000001838_20250325073630_20250325073633_D81EA6EF +PHISAT-2_L1_000001839_20250325090654_20250325090657_AF52F565 +PHISAT-2_L1_000001841_20250325141140_20250325141143_FC49D5A5 +PHISAT-2_L1_000001842_20250325153429_20250325153432_FFE3B36B +PHISAT-2_L1_000001843_20250325183816_20250325183819_11962CEF +PHISAT-2_L1_000001844_20250325213929_20250325213932_DC277C17 +PHISAT-2_L1_000001848_20250326084945_20250326084948_9586509A +PHISAT-2_L1_000001849_20250326090644_20250326090647_DCF55B2D +PHISAT-2_L1_000001850_20250326102126_20250326102129_D95B3050 +PHISAT-2_L1_000001851_20250326103052_20250326103055_5F4DCC7C +PHISAT-2_L1_000001852_20250326115409_20250326115412_B69951CE +PHISAT-2_L1_000001853_20250326120317_20250326120320_E90E455B +PHISAT-2_L1_000001854_20250327101044_20250327101047_AE9D2A3B +PHISAT-2_L1_000001855_20250327113024_20250327113027_80A6665E +PHISAT-2_L1_000001856_20250327132718_20250327132721_66571760 +PHISAT-2_L1_000001857_20250327144943_20250327144946_DE6BDE49 +PHISAT-2_L1_000001862_20250328033357_20250328033400_DB85F7DA +PHISAT-2_L1_000001867_20250329142250_20250329142253_1B367E7A +PHISAT-2_L1_000001868_20250329154534_20250329154537_0DFA2F57 +PHISAT-2_L1_000001870_20250330024232_20250330024235_2161A52B +PHISAT-2_L1_000001873_20250330091747_20250330091750_484A7BD4 +PHISAT-2_L1_000001874_20250330103229_20250330103232_A4F49AE1 +PHISAT-2_L1_000001875_20250330135314_20250330135317_74A1F576 +PHISAT-2_L1_000001876_20250330152457_20250330152500_2D6EA064 +PHISAT-2_L1_000001878_20250330182843_20250330182846_02FD04C3 +PHISAT-2_L1_000001890_20250401015946_20250401015949_FF08A43E +PHISAT-2_L1_000001891_20250401021209_20250401021212_3D863BB7 +PHISAT-2_L1_000001892_20250401034312_20250401034323_63663438 +PHISAT-2_L1_000001893_20250401112137_20250401112140_27E0F0FF +PHISAT-2_L1_000001894_20250401131715_20250401131718_EC1D86D9 +PHISAT-2_L1_000001895_20250401143959_20250401144002_29D47204 +PHISAT-2_L1_000001896_20250401161318_20250401161321_8ECE114E +PHISAT-2_L1_000001898_20250401204822_20250401204825_DD75F701 +PHISAT-2_L1_000001899_20250402031140_20250402031143_001BC76F +PHISAT-2_L1_000001900_20250402031651_20250402031654_7A3878BC +PHISAT-2_L1_000001901_20250402032411_20250402032414_481046B5 +PHISAT-2_L1_000001902_20250402045121_20250402045124_9C150DCC +PHISAT-2_L1_000001903_20250402094406_20250402094409_59FDB141 +PHISAT-2_L1_000001905_20250402124030_20250402124033_FA3321DD +PHISAT-2_L1_000001906_20250402155314_20250402155317_3E5F7572 +PHISAT-2_L1_000001907_20250402172854_20250402172857_08FFFBE3 +PHISAT-2_L1_000001908_20250402185939_20250402185942_1DB16A65 +PHISAT-2_L1_000001909_20250402220331_20250402220334_CE460495 +PHISAT-2_L1_000001910_20250403025057_20250403025100_1C9A7531 +PHISAT-2_L1_000001911_20250403060544_20250403060547_3B498A12 +PHISAT-2_L1_000001912_20250403073746_20250403073749_34B0FBE3 +PHISAT-2_L1_000001913_20250403090809_20250403090812_B1BC6163 +PHISAT-2_L1_000001914_20250403140339_20250403140342_B4FAFF4F +PHISAT-2_L1_000001915_20250403141254_20250403141257_9A24B4C1 +PHISAT-2_L1_000001916_20250403153542_20250403153545_551544B2 +PHISAT-2_L1_000001917_20250403170527_20250403170530_ECF856AD +PHISAT-2_L1_000001918_20250403183928_20250403183931_FF675322 +PHISAT-2_L1_000001919_20250403214039_20250403214042_9EC6A048 +PHISAT-2_L1_000001920_20250404023136_20250404023139_B46C9E04 +PHISAT-2_L1_000001921_20250404054222_20250404054225_A208C328 +PHISAT-2_L1_000001922_20250404071724_20250404071727_477D81B5 +PHISAT-2_L1_000001923_20250404085049_20250404085052_1541E902 +PHISAT-2_L1_000001924_20250404090748_20250404090751_C814A59E +PHISAT-2_L1_000001925_20250404102230_20250404102233_559AF00E +PHISAT-2_L1_000001926_20250404115512_20250404115515_76E98E80 +PHISAT-2_L1_000001927_20250404120419_20250404120422_454A8D16 +PHISAT-2_L1_000001928_20250404164431_20250404164434_49C10191 +PHISAT-2_L1_000001929_20250405021021_20250405021024_F91CC785 +PHISAT-2_L1_000001930_20250405034630_20250405034633_3698DCCF +PHISAT-2_L1_000001931_20250405065714_20250405065717_A082C3A9 +PHISAT-2_L1_000001932_20250405101135_20250405101138_9C738825 +PHISAT-2_L1_000001933_20250405113114_20250405113117_08528A7D +PHISAT-2_L1_000001934_20250405132807_20250405132810_4FED03EA +PHISAT-2_L1_000001935_20250405145032_20250405145035_3F3ED52A +PHISAT-2_L1_000001936_20250405162336_20250405162339_C5FEB83F +PHISAT-2_L1_000001937_20250405205854_20250405205857_B34C520B +PHISAT-2_L1_000001938_20250406014907_20250406014910_DDB2340C +PHISAT-2_L1_000001939_20250406020157_20250406020200_D8744A4E +PHISAT-2_L1_000001940_20250406032247_20250406032250_D2841292 +PHISAT-2_L1_000001941_20250406032719_20250406032722_719DB993 +PHISAT-2_L1_000001942_20250406033440_20250406033443_6FBA54E6 +PHISAT-2_L1_000001943_20250406050149_20250406050152_7C5333CA +PHISAT-2_L1_000001944_20250406063543_20250406063546_12C9D48C +PHISAT-2_L1_000001945_20250406111239_20250406111246_338D3CE3 +PHISAT-2_L1_000001946_20250406125057_20250406125100_FB6B5FB0 +PHISAT-2_L1_000001947_20250407030121_20250407030124_EEB6F723 +PHISAT-2_L1_000001948_20250407043947_20250407043950_AF87036F +PHISAT-2_L1_000001949_20250407061404_20250407061407_379D18E2 +PHISAT-2_L1_000001950_20250407074809_20250407074812_A3C48C86 +PHISAT-2_L1_000001951_20250407091832_20250407091835_2857E9E2 +PHISAT-2_L1_000001952_20250407093144_20250407093147_E8772CF3 +PHISAT-2_L1_000001953_20250407105130_20250407105137_0CED9D9F +PHISAT-2_L1_000001954_20250407110124_20250407110127_7EE85079 +PHISAT-2_L1_000001955_20250407142315_20250407142318_4DEBFD3C +PHISAT-2_L1_000001956_20250407154600_20250407154603_6D68EAB0 +PHISAT-2_L1_000001957_20250407171540_20250407171548_1280940C +PHISAT-2_L1_000001958_20250407184915_20250407184918_AD34F565 +PHISAT-2_L1_000001959_20250407215241_20250407215244_1C6D1FF3 +PHISAT-2_L1_000001960_20250408024252_20250408024255_1B464939 +PHISAT-2_L1_000001961_20250408024711_20250408024714_D8C3451D +PHISAT-2_L1_000001962_20250408055237_20250408055240_41D60C13 +PHISAT-2_L1_000001963_20250408072747_20250408072750_23B9358F +PHISAT-2_L1_000001964_20250408090105_20250408090108_1CE3F1E4 +PHISAT-2_L1_000001965_20250408091804_20250408091807_34D80DBF +PHISAT-2_L1_000001966_20250408103244_20250408103247_D18D2482 +PHISAT-2_L1_000001967_20250408135329_20250408135332_7D6C9A85 +PHISAT-2_L1_000001968_20250408152511_20250408152514_A6278FCD +PHISAT-2_L1_000001969_20250408165455_20250408165458_7377FF93 +PHISAT-2_L1_000001970_20250408182856_20250408182859_C98B6CBD +PHISAT-2_L1_000001971_20250408213005_20250408213008_FF721CAF +PHISAT-2_L1_000001972_20250409022101_20250409022104_65F9A01F +PHISAT-2_L1_000001973_20250409035640_20250409035643_AB225309 +PHISAT-2_L1_000001974_20250409070723_20250409070726_0D6D87AB +PHISAT-2_L1_000001975_20250409101155_20250409101158_51E18BB7 +PHISAT-2_L1_000001977_20250409114433_20250409114436_B51F96F1 +PHISAT-2_L1_000001978_20250409115341_20250409115344_2701658C +PHISAT-2_L1_000001979_20250409133816_20250409133819_6C4A2EA2 +PHISAT-2_L1_000001980_20250409163339_20250409163342_D1E6AAE5 +PHISAT-2_L1_000001981_20250409210902_20250409210905_9249299C +PHISAT-2_L1_000001982_20250410015939_20250410015942_EB8BF36F +PHISAT-2_L1_000001983_20250410021202_20250410021205_C0A630BA +PHISAT-2_L1_000001984_20250410034054_20250410034057_3649BF51 +PHISAT-2_L1_000001985_20250410112241_20250410112244_E3ACFE7A +PHISAT-2_L1_000001986_20250410131703_20250410131706_F06C0D06 +PHISAT-2_L1_000001987_20250410143947_20250410143950_B05E6C3E +PHISAT-2_L1_000001988_20250410161304_20250410161307_963A0280 +PHISAT-2_L1_000001989_20250410204806_20250410204809_66FB343C +PHISAT-2_L1_000001990_20250411031120_20250411031123_7178FA1E +PHISAT-2_L1_000001991_20250411031631_20250411031634_2D15EB52 +PHISAT-2_L1_000001992_20250411032352_20250411032355_8E647BD2 +PHISAT-2_L1_000001993_20250411045100_20250411045103_C6EE9CC8 +PHISAT-2_L1_000001994_20250411062355_20250411062358_0ADC129F +PHISAT-2_L1_000001995_20250411094343_20250411094346_89B2A61A +PHISAT-2_L1_000001996_20250411124005_20250411124008_6819A38B +PHISAT-2_L1_000001997_20250411155247_20250411155250_DE6AB2B1 +PHISAT-2_L1_000001998_20250411172826_20250411172829_89B1945A +PHISAT-2_L1_000001999_20250411185911_20250411185914_B113153A +PHISAT-2_L1_000002000_20250411220238_20250411220241_9EE82079 +PHISAT-2_L1_000002001_20250412025024_20250412025027_AABC5ED8 +PHISAT-2_L1_000002002_20250412060510_20250412060513_3AD4E6F5 +PHISAT-2_L1_000002003_20250412073711_20250412073714_B87FF05E +PHISAT-2_L1_000002004_20250412090733_20250412090736_9887204D +PHISAT-2_L1_000002005_20250412140300_20250412140303_D21F5538 +PHISAT-2_L1_000002006_20250412141215_20250412141218_140F132F +PHISAT-2_L1_000002007_20250412153503_20250412153506_5B944E34 +PHISAT-2_L1_000002008_20250412170447_20250412170450_4B876C46 +PHISAT-2_L1_000002009_20250412183846_20250412183849_B05C54AC +PHISAT-2_L1_000002010_20250413023051_20250413023054_FB3DAAF7 +PHISAT-2_L1_000002011_20250413054135_20250413054138_C3849D48 +PHISAT-2_L1_000002012_20250413071637_20250413071640_18CE382C +PHISAT-2_L1_000002013_20250413102141_20250413102144_70DEDE61 +PHISAT-2_L1_000002015_20250414020924_20250414020927_061230A7 +PHISAT-2_L1_000002016_20250414034533_20250414034536_76E8F69A +PHISAT-2_L1_000002017_20250414035046_20250414035049_F80AD614 +PHISAT-2_L1_000002018_20250414065614_20250414065617_B563588E +PHISAT-2_L1_000002019_20250414113012_20250414113015_A49897D9 +PHISAT-2_L1_000002020_20250414132704_20250414132707_CEA6E179 +PHISAT-2_L1_000002021_20250414144928_20250414144931_19D9539E +PHISAT-2_L1_000002022_20250414162231_20250414162234_AA65AE65 +PHISAT-2_L1_000002023_20250414205747_20250414205750_A4FE23DA +PHISAT-2_L1_000002024_20250415014757_20250415014800_2517E841 +PHISAT-2_L1_000002026_20250415032127_20250415032130_EC28B12C +PHISAT-2_L1_000002027_20250415032608_20250415032611_68B50EE8 +PHISAT-2_L1_000002028_20250415033329_20250415033332_FE4E4B52 +PHISAT-2_L1_000002029_20250415050037_20250415050040_8D1116A1 +PHISAT-2_L1_000002030_20250415111005_20250415111008_EA021EA6 +PHISAT-2_L1_000002031_20250415160222_20250415160225_4E418C64 +PHISAT-2_L1_000002032_20250415173147_20250415173154_B91F3C81 +PHISAT-2_L1_000002033_20250415190704_20250415190707_385222E4 +PHISAT-2_L1_000002034_20250415221211_20250415221214_28DE1F54 +PHISAT-2_L1_000002035_20250416025957_20250416030000_6008EA9D +PHISAT-2_L1_000002036_20250416043822_20250416043825_616765A1 +PHISAT-2_L1_000002037_20250416074641_20250416074644_318B4A4F +PHISAT-2_L1_000002039_20250416093017_20250416093020_87F1E8DD +PHISAT-2_L1_000002041_20250416105048_20250416105051_58B45398 +PHISAT-2_L1_000002046_20250417103107_20250417103110_C29C5517 +PHISAT-2_L1_000002047_20250417135150_20250417135153_098AA764 +PHISAT-2_L1_000002048_20250417165403_20250417165406_1C5BFC49 +PHISAT-2_L1_000002049_20250417182713_20250417182716_18D96BA0 +PHISAT-2_L1_000002050_20250417212822_20250417212825_5B9C170B +PHISAT-2_L1_000002051_20250418035455_20250418035458_CDFBA153 +PHISAT-2_L1_000002052_20250418071519_20250418071522_231A3E9D +PHISAT-2_L1_000002053_20250418100821_20250418100824_B9A92E69 +PHISAT-2_L1_000002054_20250418115151_20250418115154_3A14C044 +PHISAT-2_L1_000002055_20250418133640_20250418133643_22640E6B +PHISAT-2_L1_000002056_20250418163151_20250418163154_C21DB5B8 +PHISAT-2_L1_000002057_20250418210707_20250418210710_D8974667 +PHISAT-2_L1_000002073_20250420110910_20250420110913_7EF24C1B +PHISAT-2_L1_000002074_20250420123026_20250420123029_43F3AF3D +PHISAT-2_L1_000002075_20250420154537_20250420154540_0785E0B9 +PHISAT-2_L1_000002076_20250420172612_20250420172615_5BA630BE +PHISAT-2_L1_000002078_20250420220020_20250420220023_EC07618B +PHISAT-2_L1_000002079_20250421025046_20250421025049_1E60EB30 +PHISAT-2_L1_000002080_20250421060250_20250421060253_A31A44A1 +PHISAT-2_L1_000002081_20250421073518_20250421073521_400F5509 +PHISAT-2_L1_000002082_20250421090512_20250421090515_B6D6E925 +PHISAT-2_L1_000002083_20250421140035_20250421140038_78CB9EBA +PHISAT-2_L1_000002084_20250421140948_20250421140951_CEF48A4A +PHISAT-2_L1_000002085_20250421153238_20250421153241_8B061C9D +PHISAT-2_L1_000002086_20250421170222_20250421170225_7B3E6C3B +PHISAT-2_L1_000002087_20250421183620_20250421183623_D89A6725 +PHISAT-2_L1_000002088_20250421213729_20250421213732_DB9D34E8 +PHISAT-2_L1_000002089_20250422022821_20250422022824_FE19ED1E +PHISAT-2_L1_000002091_20250422084727_20250422084730_8EAADACE +PHISAT-2_L1_000002092_20250422090427_20250422090430_F6A93161 +PHISAT-2_L1_000002093_20250422101907_20250422101910_43AC25BA +PHISAT-2_L1_000002094_20250422115147_20250422115150_7F9B8F09 +PHISAT-2_L1_000002095_20250422120052_20250422120055_2488DC1C +PHISAT-2_L1_000002096_20250422164258_20250422164301_FD7D0608 +PHISAT-2_L1_000002097_20250422211615_20250422211618_4499359B +PHISAT-2_L1_000002098_20250423020638_20250423020641_FD89E0B4 +PHISAT-2_L1_000002099_20250423034959_20250423035002_D303AA8F +PHISAT-2_L1_000002100_20250423065324_20250423065327_178A93DB +PHISAT-2_L1_000002101_20250423112816_20250423112819_86D3B6B7 +PHISAT-2_L1_000002102_20250423132351_20250423132354_B2BF874D +PHISAT-2_L1_000002103_20250423144634_20250423144637_B69C2A81 +PHISAT-2_L1_000002104_20250423161806_20250423161809_C4AC05B9 +PHISAT-2_L1_000002105_20250423205451_20250423205454_EF863782 +PHISAT-2_L1_000002107_20250424095016_20250424095019_08DE056A +PHISAT-2_L1_000002108_20250424110701_20250424110704_2501EFE8 +PHISAT-2_L1_000002109_20250424124636_20250424124639_2A78B421 +PHISAT-2_L1_000002110_20250424155916_20250424155919_72D4EE3E +PHISAT-2_L1_000002111_20250424173455_20250424173458_83809893 +PHISAT-2_L1_000002112_20250424220902_20250424220905_8DA30EB8 +PHISAT-2_L1_000002113_20250425025648_20250425025651_03EB3115 +PHISAT-2_L1_000002114_20250425074330_20250425074333_1A81D0BA +PHISAT-2_L1_000002115_20250425091458_20250425091501_BF6265F2 +PHISAT-2_L1_000002116_20250425140914_20250425140917_E115166C +PHISAT-2_L1_000002117_20250425141830_20250425141833_F0180C99 +PHISAT-2_L1_000002118_20250425154115_20250425154118_AA5BE28B +PHISAT-2_L1_000002119_20250425184457_20250425184500_4F8B14AB +PHISAT-2_L1_000002120_20250425214748_20250425214751_BFC69FB5 +PHISAT-2_L1_000002121_20250426023657_20250426023700_CFDC33F5 +PHISAT-2_L1_000002122_20250426024215_20250426024218_E58D38B0 +PHISAT-2_L1_000002123_20250426085601_20250426085604_14B57E48 +PHISAT-2_L1_000002124_20250426091301_20250426091304_C023A343 +PHISAT-2_L1_000002125_20250426102657_20250426102700_4BEAB4D8 +PHISAT-2_L1_000002126_20250426120020_20250426120023_2D3D8500 +PHISAT-2_L1_000002127_20250426134822_20250426134825_FF2DF97B +PHISAT-2_L1_000002128_20250426165033_20250426165036_06C9955A +PHISAT-2_L1_000002129_20250426182339_20250426182342_C7E9A23E +PHISAT-2_L1_000002130_20250426212450_20250426212453_15E52D92 +PHISAT-2_L1_000002131_20250427035121_20250427035124_5134BB4D +PHISAT-2_L1_000002132_20250427070200_20250427070203_BD435551 +PHISAT-2_L1_000002133_20250427100442_20250427100445_CA15A112 +PHISAT-2_L1_000002134_20250427113904_20250427113907_51B9157B +PHISAT-2_L1_000002135_20250427133244_20250427133247_C6488B06 +PHISAT-2_L1_000002136_20250427145801_20250427145804_74C2E5CC +PHISAT-2_L1_000002137_20250427162809_20250427162812_26060981 +PHISAT-2_L1_000002138_20250427180007_20250427180014_5AA732E7 +PHISAT-2_L1_000002139_20250427210323_20250427210326_F65DFDAE +PHISAT-2_L1_000002140_20250428015329_20250428015332_CC75C16B +PHISAT-2_L1_000002141_20250428020618_20250428020621_CE482A87 +PHISAT-2_L1_000002142_20250428032658_20250428032701_3B2E87EF +PHISAT-2_L1_000002143_20250428033717_20250428033720_0265077E +PHISAT-2_L1_000002144_20250428050607_20250428050610_46ABA6D2 +PHISAT-2_L1_000002145_20250428064004_20250428064007_4A0C7B4E +PHISAT-2_L1_000002146_20250428112056_20250428112059_D0F75FE9 +PHISAT-2_L1_000002147_20250428125504_20250428125507_613A261A +PHISAT-2_L1_000002148_20250428160336_20250428160339_2AC1D96C +PHISAT-2_L1_000002149_20250428204202_20250428204205_1D4E4403 +PHISAT-2_L1_000002150_20250429030511_20250429030514_3DB81247 +PHISAT-2_L1_000002151_20250429044345_20250429044348_9C90D533 +PHISAT-2_L1_000002152_20250429061742_20250429061745_D935DB9B +PHISAT-2_L1_000002153_20250429075153_20250429075156_94C05B73 +PHISAT-2_L1_000002154_20250429092215_20250429092218_41E30E7E +PHISAT-2_L1_000002155_20250429093728_20250429093731_5721C24A +PHISAT-2_L1_000002156_20250429154934_20250429154937_D17C665C +PHISAT-2_L1_000002157_20250429172204_20250429172207_4DE81952 +PHISAT-2_L1_000002158_20250429185246_20250429185249_F2414FE8 +PHISAT-2_L1_000002159_20250429215610_20250429215613_269CD749 +PHISAT-2_L1_000002169_20250501022355_20250501022358_F13074CF +PHISAT-2_L1_000002170_20250501035934_20250501035937_D8A04579 +PHISAT-2_L1_000002171_20250501070959_20250501071002_8076311F +PHISAT-2_L1_000002172_20250501084258_20250501084301_9E13FF17 +PHISAT-2_L1_000002173_20250501090012_20250501090015_A175D1A3 +PHISAT-2_L1_000002174_20250501114717_20250501114720_00741AA1 +PHISAT-2_L1_000002175_20250501115624_20250501115627_D34E85A3 +PHISAT-2_L1_000002176_20250501134250_20250501134253_3F3B4624 +PHISAT-2_L1_000002177_20250501180915_20250501180918_7ACAAEC6 +PHISAT-2_L1_000002178_20250501211142_20250501211145_40EEDA71 +PHISAT-2_L1_000002179_20250502020207_20250502020210_3ECA4612 +PHISAT-2_L1_000002180_20250502021429_20250502021432_4E5026E0 +PHISAT-2_L1_000002181_20250502034320_20250502034323_A9593866 +PHISAT-2_L1_000002182_20250502051841_20250502051844_47977820 +PHISAT-2_L1_000002183_20250502112429_20250502112432_32C16CA5 +PHISAT-2_L1_000002184_20250502131916_20250502131919_6AF24413 +PHISAT-2_L1_000002185_20250502142925_20250502142928_8EDFC9ED +PHISAT-2_L1_000002186_20250502161620_20250502161623_AA5D377C +PHISAT-2_L1_000002187_20250502205014_20250502205017_567EF198 +PHISAT-2_L1_000002188_20250503014021_20250503014024_498846C9 +PHISAT-2_L1_000002189_20250503031358_20250503031401_C29260E3 +PHISAT-2_L1_000002190_20250503062556_20250503062559_BDD5E047 +PHISAT-2_L1_000002191_20250503110101_20250503110104_E957D379 +PHISAT-2_L1_000002192_20250503124152_20250503124155_CA9388A1 +PHISAT-2_L1_000002193_20250503172323_20250503172326_09476250 +PHISAT-2_L1_000002194_20250503190050_20250503190053_BF284F7A +PHISAT-2_L1_000002195_20250503220419_20250503220422_203DC327 +PHISAT-2_L1_000002196_20250504092703_20250504092710_E9F64A02 +PHISAT-2_L1_000002197_20250504134439_20250504134445_13B87536 +PHISAT-2_L1_000002198_20250504170648_20250504170651_40259AB3 +PHISAT-2_L1_000002200_20250504214102_20250504214105_A7B8383D +PHISAT-2_L1_000002201_20250505011405_20250505011418_2A0572FC +PHISAT-2_L1_000002202_20250505023151_20250505023154_237AE1E1 +PHISAT-2_L1_000002203_20250505085053_20250505085056_ED90276B +PHISAT-2_L1_000002204_20250505090804_20250505090810_D7283D9D +PHISAT-2_L1_000002205_20250505115511_20250505115514_0F2FE594 +PHISAT-2_L1_000002206_20250505120417_20250505120420_FC31C90F +PHISAT-2_L1_000002207_20250505164422_20250505164425_BF4593F6 +PHISAT-2_L1_000002208_20250506020958_20250506021001_76536DDE +PHISAT-2_L1_000002209_20250506034304_20250506034311_BD0848A6 +PHISAT-2_L1_000002210_20250506035116_20250506035119_22413C4A +PHISAT-2_L1_000002212_20250506082421_20250506082427_61F093E6 +PHISAT-2_L1_000002213_20250506095843_20250506095849_F87C6C4F +PHISAT-2_L1_000002214_20250506101058_20250506101101_67E60228 +PHISAT-2_L1_000002215_20250506112514_20250506112520_C799A9CC +PHISAT-2_L1_000002216_20250506113316_20250506113322_3DC1A407 +PHISAT-2_L1_000002217_20250506205800_20250506205803_88D6A349 +PHISAT-2_L1_000002218_20250508142114_20250508142117_9AC8C672 +PHISAT-2_L1_000002219_20250508152632_20250508152645_59194262 +PHISAT-2_L1_000002220_20250508154358_20250508154401_C315A28D +PHISAT-2_L1_000002221_20250508215030_20250508215033_3B1CB400 +PHISAT-2_L1_000002222_20250509055026_20250509055032_9F139C57 +PHISAT-2_L1_000002223_20250509103147_20250509103150_64609118 +PHISAT-2_L1_000002224_20250509135952_20250509135955_F93CEA49 +PHISAT-2_L1_000002225_20250509182528_20250509182531_F79F6AE4 +PHISAT-2_L1_000002226_20250509212715_20250509212718_2961C2F9 +PHISAT-2_L1_000002227_20250510023553_20250510023556_55B6024F +PHISAT-2_L1_000002228_20250510070344_20250510070347_A1173B82 +PHISAT-2_L1_000002229_20250510101634_20250510101637_0A4473FC +PHISAT-2_L1_000002230_20250510131116_20250510131119_BC3153AE +PHISAT-2_L1_000002231_20250510163225_20250510163228_8111F61D +PHISAT-2_L1_000002232_20250510210533_20250510210536_E2AADEC8 +PHISAT-2_L1_000002233_20250511015604_20250511015607_ED3E3AB4 +PHISAT-2_L1_000002234_20250511020826_20250511020829_3688237D +PHISAT-2_L1_000002235_20250511033928_20250511033931_09A80E77 +PHISAT-2_L1_000002236_20250511050859_20250511050905_B937E5CF +PHISAT-2_L1_000002237_20250511112259_20250511112302_D8580E9D +PHISAT-2_L1_000002238_20250511160523_20250511160526_0CD1B743 +PHISAT-2_L1_000002239_20250511174222_20250511174225_10CEDA1F +PHISAT-2_L1_000002240_20250511191515_20250511191518_EF17F718 +PHISAT-2_L1_000002241_20250512030758_20250512030801_0DE44950 +PHISAT-2_L1_000002242_20250512044642_20250512044645_C289216D +PHISAT-2_L1_000002243_20250512062038_20250512062041_CFAACF8A +PHISAT-2_L1_000002244_20250512075344_20250512075347_AD7C1C35 +PHISAT-2_L1_000002245_20250512093403_20250512093406_38170AF4 +PHISAT-2_L1_000002246_20250512140008_20250512140011_151D16B5 +PHISAT-2_L1_000002247_20250512155120_20250512155123_DFFF76C9 +PHISAT-2_L1_000002248_20250512172432_20250512172435_D2033241 +PHISAT-2_L1_000002252_20250513103510_20250513103513_C81301A9 +PHISAT-2_L1_000002253_20250513140715_20250513140718_792A5849 +PHISAT-2_L1_000002254_20250513183325_20250513183328_8A92694B +PHISAT-2_L1_000002255_20250513213334_20250513213337_247F4227 +PHISAT-2_L1_000002256_20250514115751_20250514115754_B268FF55 +PHISAT-2_L1_000002257_20250514134149_20250514134152_317C940B +PHISAT-2_L1_000002258_20250514181036_20250514181039_7101CEA6 +PHISAT-2_L1_000002259_20250514211048_20250514211051_45D23DC6 +PHISAT-2_L1_000002260_20250515004309_20250515004312_81059C85 +PHISAT-2_L1_000002261_20250515033223_20250515033226_EB35A345 +PHISAT-2_L1_000002262_20250515051448_20250515051451_0C62B5D9 +PHISAT-2_L1_000002263_20250515064938_20250515064941_1E9AB9FF +PHISAT-2_L1_000002264_20250515082325_20250515082328_713580F2 +PHISAT-2_L1_000002265_20250515095347_20250515095350_F585AE8C +PHISAT-2_L1_000002266_20250515113014_20250515113017_4E0F08E2 +PHISAT-2_L1_000002267_20250515132028_20250515132031_12F26F35 +PHISAT-2_L1_000002268_20250515161644_20250515161647_86503C1D +PHISAT-2_L1_000002269_20250515191625_20250515191628_6E72BE27 +PHISAT-2_L1_000002270_20250515205120_20250515205123_5091E846 +PHISAT-2_L1_000002271_20250516014124_20250516014127_561DF4AB +PHISAT-2_L1_000002272_20250516031504_20250516031507_E4C56DA1 +PHISAT-2_L1_000002273_20250516045400_20250516045403_C5533676 +PHISAT-2_L1_000002274_20250516062753_20250516062756_72D2C5AE +PHISAT-2_L1_000002275_20250516080112_20250516080115_576D9844 +PHISAT-2_L1_000002276_20250516094636_20250516094639_A3647EAD +PHISAT-2_L1_000002277_20250516110434_20250516110437_B56AAFD4 +PHISAT-2_L1_000002278_20250516143056_20250516143059_7F3C86F1 +PHISAT-2_L1_000002279_20250516172556_20250516172559_D5286780 +PHISAT-2_L1_000002280_20250516202704_20250516202707_2B7625C4 +PHISAT-2_L1_000002282_20250517060513_20250517060516_995996DA +PHISAT-2_L1_000002283_20250517073929_20250517073932_8656606B +PHISAT-2_L1_000002284_20250517092754_20250517092801_0056BBC2 +PHISAT-2_L1_000002285_20250517104139_20250517104142_1B2A1400 +PHISAT-2_L1_000002286_20250517140506_20250517140509_45EAE7BB +PHISAT-2_L1_000002287_20250517153706_20250517153709_26711511 +PHISAT-2_L1_000002288_20250517170344_20250517170347_4AD9A2A5 +PHISAT-2_L1_000002289_20250517184035_20250517184038_9F9A2011 +PHISAT-2_L1_000002290_20250517214104_20250517214107_E977BE41 +PHISAT-2_L1_000002291_20250518011614_20250518011617_5957A218 +PHISAT-2_L1_000002292_20250518054257_20250518054300_685F3E5E +PHISAT-2_L1_000002293_20250518071850_20250518071853_B387430B +PHISAT-2_L1_000002294_20250518090835_20250518090838_B3A99DAD +PHISAT-2_L1_000002295_20250518102439_20250518102442_1AF7B890 +PHISAT-2_L1_000002296_20250518120500_20250518120503_328F67ED +PHISAT-2_L1_000002297_20250518134743_20250518134746_59AD06AF +PHISAT-2_L1_000002298_20250518164216_20250518164219_2F68CA26 +PHISAT-2_L1_000002299_20250518181905_20250518181908_852A795B +PHISAT-2_L1_000002300_20250518224050_20250518224053_8B86F178 +PHISAT-2_L1_000002301_20250519021033_20250519021036_4CDB372A +PHISAT-2_L1_000002302_20250519034340_20250519034347_2D4DDD86 +PHISAT-2_L1_000002304_20250519065716_20250519065719_0322A118 +PHISAT-2_L1_000002305_20250519082854_20250519082857_8B4A9202 +PHISAT-2_L1_000002306_20250519100355_20250519100358_EAE29860 +PHISAT-2_L1_000002307_20250519114324_20250519114327_A93DED88 +PHISAT-2_L1_000002308_20250519162327_20250519162330_5DDAC5DD +PHISAT-2_L1_000002309_20250519175642_20250519175648_38F87E8E +PHISAT-2_L1_000002310_20250519205739_20250519205742_E6CC3A18 +PHISAT-2_L1_000002311_20250520003329_20250520003332_F0093115 +PHISAT-2_L1_000002312_20250520032934_20250520032937_144DD5D1 +PHISAT-2_L1_000002313_20250520050137_20250520050140_2D9AAC8A +PHISAT-2_L1_000002314_20250520063103_20250520063106_A8AF7766 +PHISAT-2_L1_000002315_20250520081244_20250520081247_33A88897 +PHISAT-2_L1_000002316_20250520095146_20250520095149_1D47DECC +PHISAT-2_L1_000002317_20250520141613_20250520141616_2FF5B3B5 +PHISAT-2_L1_000002318_20250520173453_20250520173456_348DB96B +PHISAT-2_L1_000002319_20250520190802_20250520190805_2524C1B5 +PHISAT-2_L1_000002320_20250521000849_20250521000852_A57D7F85 +PHISAT-2_L1_000002321_20250521013958_20250521014001_BC4BD66D +PHISAT-2_L1_000002322_20250521061055_20250521061058_AF64C694 +PHISAT-2_L1_000002323_20250521074631_20250521074634_42EE8958 +PHISAT-2_L1_000002324_20250521092605_20250521092608_9D9A58D7 +PHISAT-2_L1_000002325_20250521105942_20250521105945_8F59065E +PHISAT-2_L1_000002326_20250521135324_20250521135327_C342D289 +PHISAT-2_L1_000002327_20250521154404_20250521154407_F45387C2 +PHISAT-2_L1_000002328_20250521184727_20250521184730_F03F0FD8 +PHISAT-2_L1_000002329_20250521214801_20250521214804_70E4CFA5 +PHISAT-2_L1_000002330_20250522004549_20250522004552_F964BDBA +PHISAT-2_L1_000002331_20250522023823_20250522023826_E579992D +PHISAT-2_L1_000002332_20250522055113_20250522055116_8A5F988C +PHISAT-2_L1_000002333_20250522073643_20250522073646_FBEB6AD0 +PHISAT-2_L1_000002334_20250522091250_20250522091253_973071FD +PHISAT-2_L1_000002335_20250522135508_20250522135511_8654B9D0 +PHISAT-2_L1_000002336_20250522165149_20250522165152_A99B85D5 +PHISAT-2_L1_000002337_20250522182600_20250522182603_3BC9FF3D +PHISAT-2_L1_000002338_20250522212613_20250522212616_4D5D64CA +PHISAT-2_L1_000002339_20250523010136_20250523010139_0E6D9319 +PHISAT-2_L1_000002340_20250523023215_20250523023218_22486EA4 +PHISAT-2_L1_000002341_20250523052928_20250523052931_B2937AA3 +PHISAT-2_L1_000002342_20250523071356_20250523071359_DA6ED35A +PHISAT-2_L1_000002343_20250523085229_20250523085232_7852E9D4 +PHISAT-2_L1_000002344_20250523114353_20250523114356_5F6F4CCA +PHISAT-2_L1_000002345_20250523133358_20250523133401_93E5A465 +PHISAT-2_L1_000002346_20250523162930_20250523162933_C63159C7 +PHISAT-2_L1_000002347_20250523180303_20250523180306_B6D0C215 +PHISAT-2_L1_000002348_20250523210505_20250523210508_3F9BF127 +PHISAT-2_L1_000002349_20250524004024_20250524004027_D38256A3 +PHISAT-2_L1_000002350_20250524020908_20250524020911_B8CB081C +PHISAT-2_L1_000002351_20250524033940_20250524033943_89896A15 +PHISAT-2_L1_000002352_20250524064127_20250524064130_D27C2E3F +PHISAT-2_L1_000002353_20250524081601_20250524081604_191ECD36 +PHISAT-2_L1_000002354_20250524094929_20250524094932_F3455248 +PHISAT-2_L1_000002355_20250524112241_20250524112244_17B5769B +PHISAT-2_L1_000002356_20250524145125_20250524145128_4C7DC7FD +PHISAT-2_L1_000002357_20250524160157_20250524160200_526E0C93 +PHISAT-2_L1_000002358_20250524191455_20250524191458_72792728 +PHISAT-2_L1_000002359_20250524204350_20250524204353_7743426A +PHISAT-2_L1_000002360_20250525030735_20250525030738_08D061D3 +PHISAT-2_L1_000002361_20250525061826_20250525061829_EE4167D7 +PHISAT-2_L1_000002362_20250525092900_20250525092903_21DE495A +PHISAT-2_L1_000002363_20250525105920_20250525105923_AC15AC81 +PHISAT-2_L1_000002364_20250525140102_20250525140105_6CD5C7B0 +PHISAT-2_L1_000002365_20250525142934_20250525142937_BAD00473 +PHISAT-2_L1_000002366_20250525172359_20250525172402_8EE8A5FC +PHISAT-2_L1_000002367_20250525184931_20250525184934_8FE0F29F +PHISAT-2_L1_000002368_20250525215513_20250525215516_1AFA006C +PHISAT-2_L1_000002369_20250526024038_20250526024041_837DBAC2 +PHISAT-2_L1_000002370_20250526055751_20250526055754_1233BC93 +PHISAT-2_L1_000002371_20250526073219_20250526073222_186C54A7 +PHISAT-2_L1_000002372_20250526091542_20250526091545_FE142834 +PHISAT-2_L1_000002373_20250526104114_20250526104117_CB051F61 +PHISAT-2_L1_000002374_20250526135723_20250526135726_84F49475 +PHISAT-2_L1_000002375_20250526153508_20250526153511_C0BC45A2 +PHISAT-2_L1_000002376_20250526165511_20250526165514_732945B8 +PHISAT-2_L1_000002377_20250526183020_20250526183023_35081246 +PHISAT-2_L1_000002378_20250526213329_20250526213332_6F040BFA +PHISAT-2_L1_000002379_20250527010826_20250527010829_AADCE955 +PHISAT-2_L1_000002380_20250527024208_20250527024211_599562FF +PHISAT-2_L1_000002381_20250527053547_20250527053550_DCC42E2F +PHISAT-2_L1_000002382_20250527072131_20250527072134_19C7B844 +PHISAT-2_L1_000002383_20250527101337_20250527101340_84354EA6 +PHISAT-2_L1_000002384_20250527115705_20250527115708_B6206CE5 +PHISAT-2_L1_000002385_20250527163858_20250527163901_004BE21B +PHISAT-2_L1_000002386_20250528022044_20250528022047_B520AE07 +PHISAT-2_L1_000002387_20250528050525_20250528050528_12CF62A9 +PHISAT-2_L1_000002388_20250528064746_20250528064749_E355E35B +PHISAT-2_L1_000002389_20250528095636_20250528095639_32F70CB4 +PHISAT-2_L1_000002390_20250528112729_20250528112732_032C2DE8 +PHISAT-2_L1_000002391_20250528131936_20250528131939_BDAFC317 +PHISAT-2_L1_000002392_20250528145659_20250528145702_9C12565A +PHISAT-2_L1_000002393_20250528175116_20250528175119_60940ECA +PHISAT-2_L1_000002394_20250528222355_20250528222358_EDAA7B5E +PHISAT-2_L1_000002395_20250529015007_20250529015010_0C283923 +PHISAT-2_L1_000002396_20250529031405_20250529031408_E0631223 +PHISAT-2_L1_000002397_20250529062609_20250529062612_DFC32348 +PHISAT-2_L1_000002398_20250529080013_20250529080016_FB938E20 +PHISAT-2_L1_000002399_20250529093223_20250529093226_5EE49BFA +PHISAT-2_L1_000002400_20250529110630_20250529110633_B4A8C922 +PHISAT-2_L1_000002401_20250529125344_20250529125347_23AEA894 +PHISAT-2_L1_000002402_20250529144028_20250529144031_A6CD068A +PHISAT-2_L1_000002403_20250529154739_20250529154742_270BC2FC +PHISAT-2_L1_000002404_20250529172250_20250529172253_414AAF09 +PHISAT-2_L1_000002405_20250529190033_20250529190036_59F297BA +PHISAT-2_L1_000002406_20250529220302_20250529220305_BB5DA9EB +PHISAT-2_L1_000002407_20250530005743_20250530005746_8F61D950 +PHISAT-2_L1_000002408_20250530013232_20250530013235_F5E69406 +PHISAT-2_L1_000002409_20250530025143_20250530025146_14668690 +PHISAT-2_L1_000002410_20250530060421_20250530060424_AC6DAB3C +PHISAT-2_L1_000002411_20250530073818_20250530073821_AF809B1B +PHISAT-2_L1_000002412_20250530091224_20250530091227_39C9FBB7 +PHISAT-2_L1_000002413_20250530104341_20250530104344_52778A3A +PHISAT-2_L1_000002414_20250530141002_20250530141005_82CAC440 +PHISAT-2_L1_000002415_20250530170154_20250530170157_3D61937F +PHISAT-2_L1_000002417_20250530213918_20250530213921_6847CCB7 +PHISAT-2_L1_000002418_20250531003651_20250531003654_2090C2C0 +PHISAT-2_L1_000002419_20250531011502_20250531011505_B2587959 +PHISAT-2_L1_000002420_20250531023056_20250531023059_F12DF46D +PHISAT-2_L1_000002421_20250531024635_20250531024638_9231AEAF +PHISAT-2_L1_000002422_20250531054316_20250531054319_B783801B +PHISAT-2_L1_000002423_20250531072808_20250531072811_B46BE5E9 +PHISAT-2_L1_000002424_20250531090253_20250531090256_1BE50C9D +PHISAT-2_L1_000002425_20250531102039_20250531102042_C2865017 +PHISAT-2_L1_000002426_20250531135003_20250531135006_2127426B +PHISAT-2_L1_000002427_20250531164314_20250531164317_C577B270 +PHISAT-2_L1_000002428_20250531181250_20250531181253_35129598 +PHISAT-2_L1_000002429_20250531225114_20250531225117_89CAC890 +PHISAT-2_L1_000002430_20250601020434_20250601020437_749F8E51 +PHISAT-2_L1_000002431_20250601035116_20250601035119_DE8CFE25 +PHISAT-2_L1_000002434_20250603154214_20250603154217_1931910E +PHISAT-2_L1_000002437_20250603214554_20250603214557_BC3F6B1A +PHISAT-2_L1_000002439_20250604011701_20250604011704_B9D1677C +PHISAT-2_L1_000002440_20250604023701_20250604023704_D440CD38 +PHISAT-2_L1_000002441_20250604055008_20250604055011_36C805A4 +PHISAT-2_L1_000002442_20250604073441_20250604073444_F8ACECF7 +PHISAT-2_L1_000002443_20250604102702_20250604102705_0D9A77B9 +PHISAT-2_L1_000002444_20250604135226_20250604135229_6D890834 +PHISAT-2_L1_000002445_20250604152637_20250604152640_1D04F10E +PHISAT-2_L1_000002446_20250604164934_20250604164937_81486AF7 +PHISAT-2_L1_000002448_20250604212416_20250604212419_C52074F8 +PHISAT-2_L1_000002450_20250605005611_20250605005614_46E10363 +PHISAT-2_L1_000002451_20250605021558_20250605021601_A3B4DCB7 +PHISAT-2_L1_000002452_20250605034831_20250605034838_08BF1F97 +PHISAT-2_L1_000002457_20250605114153_20250605114156_843DAB02 +PHISAT-2_L1_000002460_20250605180145_20250605180148_A7F2868B +PHISAT-2_L1_000002461_20250605210244_20250605210247_0B008A03 +PHISAT-2_L1_000002463_20250606032505_20250606032508_423FBDA7 +PHISAT-2_L1_000002466_20250606081245_20250606081248_C017596F +PHISAT-2_L1_000002467_20250606094441_20250606094444_45FFA1E3 +PHISAT-2_L1_000002468_20250606112027_20250606112030_ED90A04A +PHISAT-2_L1_000002469_20250606130938_20250606130941_A923D4AA +PHISAT-2_L1_000002470_20250606144916_20250606144919_11B26242 +PHISAT-2_L1_000002471_20250606160306_20250606160309_D91A38DC +PHISAT-2_L1_000002472_20250606191237_20250606191240_61496C51 +PHISAT-2_L1_000002473_20250606221557_20250606221600_2A7C7D77 +PHISAT-2_L1_000002474_20250606233902_20250606233915_D8A9C01E +PHISAT-2_L1_000002479_20250607061604_20250607061617_5EEC6FEC +PHISAT-2_L1_000002480_20250607092322_20250607092325_F9560B8A +PHISAT-2_L1_000002481_20250607105657_20250607105700_67365726 +PHISAT-2_L1_000002482_20250607141956_20250607141959_572FAACE +PHISAT-2_L1_000002483_20250607153104_20250607153117_C3F97D3B +PHISAT-2_L1_000002484_20250607171809_20250607171812_3A34C254 +PHISAT-2_L1_000002485_20250607185050_20250607185103_837FA4E8 +PHISAT-2_L1_000002486_20250607215244_20250607215247_4E27A72B +PHISAT-2_L1_000002487_20250607231537_20250607231540_18B19993 +PHISAT-2_L1_000002489_20250608055538_20250608055541_84A1CD50 +PHISAT-2_L1_000002490_20250608072956_20250608072959_06D03631 +PHISAT-2_L1_000002493_20250608140400_20250608140403_7ADE026A +PHISAT-2_L1_000002494_20250608150909_20250608150922_7D37815A +PHISAT-2_L1_000002495_20250608151522_20250608151525_35DD80FC +PHISAT-2_L1_000002498_20250608182744_20250608182747_4220D6E7 +PHISAT-2_L1_000002499_20250608213147_20250608213150_1A45AF44 +PHISAT-2_L1_000002510_20250610003931_20250610003934_4A513555 +PHISAT-2_L1_000002511_20250610033912_20250610033915_A7C69D76 +PHISAT-2_L1_000002512_20250610051027_20250610051030_11EF07DD +PHISAT-2_L1_000002513_20250610064538_20250610064541_42DE5E7F +PHISAT-2_L1_000002514_20250610082900_20250610082903_895F74A9 +PHISAT-2_L1_000002515_20250610095028_20250610095031_59554E52 +PHISAT-2_L1_000002516_20250610112313_20250610112316_EE18DD3D +PHISAT-2_L1_000002517_20250610131136_20250610131139_6D755081 +PHISAT-2_L1_000002518_20250610161255_20250610161258_8FD9B441 +PHISAT-2_L1_000002519_20250610174415_20250610174418_E5E734F6 +PHISAT-2_L1_000002520_20250610191834_20250610191837_89834EE7 +PHISAT-2_L1_000002521_20250610204636_20250610204639_30DC2D5E +PHISAT-2_L1_000002522_20250611002004_20250611002007_BD68C8DB +PHISAT-2_L1_000002523_20250611015007_20250611015010_F0B2E69B +PHISAT-2_L1_000002524_20250611031119_20250611031122_3708315E +PHISAT-2_L1_000002525_20250611062240_20250611062243_CC9FF776 +PHISAT-2_L1_000002526_20250611075921_20250611075924_CA56F03E +PHISAT-2_L1_000002527_20250611092924_20250611092927_005F8169 +PHISAT-2_L1_000002528_20250611110112_20250611110115_2B6692AA +PHISAT-2_L1_000002529_20250611142131_20250611142134_484D9E2A +PHISAT-2_L1_000002530_20250611154642_20250611154645_4E127152 +PHISAT-2_L1_000002531_20250611172151_20250611172154_679C91F3 +PHISAT-2_L1_000002532_20250611185736_20250611185739_5207B50E +PHISAT-2_L1_000002533_20250611215914_20250611215917_D772869E +PHISAT-2_L1_000002534_20250612010833_20250612010836_5888ED83 +PHISAT-2_L1_000002535_20250612024844_20250612024847_0966549C +PHISAT-2_L1_000002536_20250612042411_20250612042414_A12C488C +PHISAT-2_L1_000002537_20250612060127_20250612060130_A9DBF90E +PHISAT-2_L1_000002539_20250612090634_20250612090637_D8EA3E51 +PHISAT-2_L1_000002540_20250612103958_20250612104001_43DF6EC5 +PHISAT-2_L1_000002541_20250612140518_20250612140521_F309A452 +PHISAT-2_L1_000002542_20250612165855_20250612165858_1966A4D4 +PHISAT-2_L1_000002543_20250612183512_20250612183515_94242AD7 +PHISAT-2_L1_000002544_20250612225950_20250612225953_2164F07E +PHISAT-2_L1_000002545_20250613011148_20250613011151_17043EC2 +PHISAT-2_L1_000002546_20250613022806_20250613022809_7B4955CE +PHISAT-2_L1_000002547_20250613071340_20250613071343_BA09816E +PHISAT-2_L1_000002548_20250613084659_20250613084702_EB422027 +PHISAT-2_L1_000002549_20250613090359_20250613090402_23C5BC4B +PHISAT-2_L1_000002550_20250613120021_20250613120024_255E2020 +PHISAT-2_L1_000002551_20250614095754_20250614095757_F7A132DD +PHISAT-2_L1_000002552_20250614113214_20250614113217_BCE23E94 +PHISAT-2_L1_000002553_20250614132251_20250614132254_CD07BCE9 +PHISAT-2_L1_000002554_20250614150031_20250614150034_53580A88 +PHISAT-2_L1_000002555_20250614175054_20250614175100_63A24C5E +PHISAT-2_L1_000002556_20250614192357_20250614192400_95A4FA62 +PHISAT-2_L1_000002557_20250614222730_20250614222733_0363926B +PHISAT-2_L1_000002558_20250615002433_20250615002436_ECD3520F +PHISAT-2_L1_000002559_20250615015822_20250615015825_AD80AB4B +PHISAT-2_L1_000002560_20250615031651_20250615031654_D12C681D +PHISAT-2_L1_000002561_20250615062856_20250615062859_9537CFC5 +PHISAT-2_L1_000002562_20250615080336_20250615080339_C5D369E5 +PHISAT-2_L1_000002563_20250615093500_20250615093506_2607E960 +PHISAT-2_L1_000002564_20250615110932_20250615110935_23153905 +PHISAT-2_L1_000002565_20250615143259_20250615143302_D50801A4 +PHISAT-2_L1_000002567_20250615190320_20250615190323_1D97CFDA +PHISAT-2_L1_000002568_20250615203155_20250615203158_EC23BDED +PHISAT-2_L1_000002570_20250616141002_20250616141005_6F06896D +PHISAT-2_L1_000002571_20250616184052_20250616184055_7C909591 +PHISAT-2_L1_000002572_20250616214339_20250616214342_B4A2F118 +PHISAT-2_L1_000002573_20250616230420_20250616230423_B8A3216C +PHISAT-2_L1_000002574_20250617115610_20250617115613_46EED4D5 +PHISAT-2_L1_000002575_20250617134904_20250617134907_DBD3BDE3 +PHISAT-2_L1_000002576_20250617164212_20250617164215_B9BA2B0C +PHISAT-2_L1_000002585_20250618065810_20250618065813_5DCC4304 +PHISAT-2_L1_000002587_20250618100334_20250618100337_096E9CD6 +PHISAT-2_L1_000002590_20250618150547_20250618150550_69DF37D5 +PHISAT-2_L1_000002591_20250618162249_20250618162252_2CC84BDD +PHISAT-2_L1_000002592_20250618171332_20250618171345_71D65856 +PHISAT-2_L1_000002593_20250618175559_20250618175602_608C78E0 +PHISAT-2_L1_000002594_20250619003107_20250619003110_E13EB785 +PHISAT-2_L1_000002595_20250619020227_20250619020230_4B345892 +PHISAT-2_L1_000002596_20250619063439_20250619063442_3E4B4784 +PHISAT-2_L1_000002597_20250619080918_20250619080921_7A69853B +PHISAT-2_L1_000002598_20250619094104_20250619094107_943B1465 +PHISAT-2_L1_000002599_20250619111423_20250619111429_5ECBCE5F +PHISAT-2_L1_000002600_20250619124254_20250619124257_7C425423 +PHISAT-2_L1_000002601_20250619130546_20250619130549_D4528880 +PHISAT-2_L1_000002602_20250619155836_20250619155839_BD63FB43 +PHISAT-2_L1_000002603_20250619165134_20250619165147_CFB50237 +PHISAT-2_L1_000002605_20250619190826_20250619190829_2A905574 +PHISAT-2_L1_000002606_20250619203715_20250619203718_C0FD8C9C +PHISAT-2_L1_000002619_20250621023753_20250621023756_C44B6042 +PHISAT-2_L1_000002621_20250621072551_20250621072554_12C4EA59 +PHISAT-2_L1_000002623_20250621120115_20250621120118_63154472 +PHISAT-2_L1_000002624_20250621135458_20250621135501_CFC8EFC9 +PHISAT-2_L1_000002625_20250621152845_20250621152848_FBB03531 +PHISAT-2_L1_000002626_20250621165126_20250621165129_896CBE9D +PHISAT-2_L1_000002627_20250621182615_20250621182618_7A260D8E +PHISAT-2_L1_000002628_20250621212544_20250621212547_D4A5A79B +PHISAT-2_L1_000002629_20250622021239_20250622021242_FC9A676E +PHISAT-2_L1_000002630_20250622023456_20250622023459_5875C0B4 +PHISAT-2_L1_000002631_20250622052745_20250622052748_2699A249 +PHISAT-2_L1_000002632_20250622070342_20250622070345_B446B0BD +PHISAT-2_L1_000002633_20250622083811_20250622083814_E8715459 +PHISAT-2_L1_000002634_20250622100909_20250622100912_3B499EA3 +PHISAT-2_L1_000002635_20250622114232_20250622114235_0836D392 +PHISAT-2_L1_000002636_20250622151037_20250622151040_930BEBBF +PHISAT-2_L1_000002637_20250622162612_20250622162615_491F270C +PHISAT-2_L1_000002638_20250622180110_20250622180116_93A2C4F7 +PHISAT-2_L1_000002639_20250622193315_20250622193318_278E530D +PHISAT-2_L1_000002640_20250622210441_20250622210444_473EF5EF +PHISAT-2_L1_000002641_20250623003936_20250623003939_E0992CEE +PHISAT-2_L1_000002642_20250623020756_20250623020759_C344A618 +PHISAT-2_L1_000002643_20250623032732_20250623032735_E2D0A379 +PHISAT-2_L1_000002644_20250623064038_20250623064041_0975C6C2 +PHISAT-2_L1_000002645_20250623081311_20250623081314_1E06401A +PHISAT-2_L1_000002646_20250623094620_20250623094623_D22E5C5E +PHISAT-2_L1_000002647_20250623112148_20250623112151_E3927BE7 +PHISAT-2_L1_000002648_20250623160406_20250623160409_1E380417 +PHISAT-2_L1_000002649_20250623191355_20250623191358_EDA16EF0 +PHISAT-2_L1_000002650_20250623204217_20250623204220_8CA1501F +PHISAT-2_L1_000002652_20250624001613_20250624001616_E2F4D04D +PHISAT-2_L1_000002654_20250624014615_20250624014618_27C0C46C +PHISAT-2_L1_000002656_20250624031021_20250624031024_71CBF04C +PHISAT-2_L1_000002657_20250624061718_20250624061731_A65DEB07 +PHISAT-2_L1_000002658_20250624075335_20250624075338_AF39E5F4 +PHISAT-2_L1_000002659_20250624092434_20250624092437_563050A0 +PHISAT-2_L1_000002660_20250624105808_20250624105811_CDC9CB81 +PHISAT-2_L1_000002661_20250624142818_20250624142821_06BDACE9 +PHISAT-2_L1_000002662_20250624154950_20250624154953_6B80643E +PHISAT-2_L1_000002663_20250624171717_20250624171720_75C1E716 +PHISAT-2_L1_000002664_20250624185244_20250624185247_CD55FB3A +PHISAT-2_L1_000002665_20250625012402_20250625012405_29585605 +PHISAT-2_L1_000002666_20250625024347_20250625024350_67519277 +PHISAT-2_L1_000002667_20250625041546_20250625041549_5830F501 +PHISAT-2_L1_000002668_20250625073101_20250625073104_1BED49C7 +PHISAT-2_L1_000002670_20250625103504_20250625103507_902FF557 +PHISAT-2_L1_000002671_20250625135834_20250625135837_A1E19629 +PHISAT-2_L1_000002672_20250625153332_20250625153335_AE959A16 +PHISAT-2_L1_000002673_20250625165659_20250625165702_61558D77 +PHISAT-2_L1_000002674_20250625183030_20250625183033_8986AE4C +PHISAT-2_L1_000002675_20250625213010_20250625213013_54882739 +PHISAT-2_L1_000002676_20250626010638_20250626010641_2859FBFC +PHISAT-2_L1_000002677_20250626024023_20250626024026_F7559FED +PHISAT-2_L1_000002678_20250626035752_20250626035755_37367CCF +PHISAT-2_L1_000002679_20250626071922_20250626071925_5AB69ED9 +PHISAT-2_L1_000002681_20250626101429_20250626101432_74323B8F +PHISAT-2_L1_000002682_20250626133813_20250626133816_7F659D66 +PHISAT-2_L1_000002683_20250626151214_20250626151217_0141A17A +PHISAT-2_L1_000002684_20250626163344_20250626163347_5046AB34 +PHISAT-2_L1_000002688_20250703060427_20250703060430_25FF7404 +PHISAT-2_L1_000002689_20250703091255_20250703091258_80548192 +PHISAT-2_L1_000002690_20250703104250_20250703104253_AFFDC7B6 +PHISAT-2_L1_000002691_20250703141528_20250703141531_A14F063F +PHISAT-2_L1_000002692_20250703214257_20250703214300_C3C19801 +PHISAT-2_L1_000002693_20250704011544_20250704011557_9AFE2E4F +PHISAT-2_L1_000002694_20250704023318_20250704023321_EAC89CEB +PHISAT-2_L1_000002695_20250704024816_20250704024819_96A219F3 +PHISAT-2_L1_000002696_20250704071937_20250704071940_F8936BA9 +PHISAT-2_L1_000002697_20250704102444_20250704102447_7B7E84F8 +PHISAT-2_L1_000002698_20250704135235_20250704135238_E4ADBC62 +PHISAT-2_L1_000002699_20250704181913_20250704181916_01EBB52C +PHISAT-2_L1_000002700_20250705022454_20250705022457_B42D97B0 +PHISAT-2_L1_000002701_20250705070803_20250705070806_7754A610 +PHISAT-2_L1_000002702_20250705113718_20250705113721_7DE7A9F6 +PHISAT-2_L1_000002703_20250705130404_20250705130407_EC2C02BD +PHISAT-2_L1_000002704_20250705132810_20250705132813_4EB7DC87 +PHISAT-2_L1_000002705_20250705192655_20250705192658_182F4943 +PHISAT-2_L1_000002706_20250706063352_20250706063355_43E9BEC1 +PHISAT-2_L1_000002707_20250706094017_20250706094020_58683A15 +PHISAT-2_L1_000002708_20250706111446_20250706111449_56BDA4BE +PHISAT-2_L1_000002709_20250706144701_20250706144704_8B5E5161 +PHISAT-2_L1_000002710_20250706155749_20250706155752_65C22345 +PHISAT-2_L1_000002711_20250706190739_20250706190742_677AABFF +PHISAT-2_L1_000002712_20250707000816_20250707000819_8F24C446 +PHISAT-2_L1_000002713_20250707025818_20250707025821_56579AAE +PHISAT-2_L1_000002714_20250707061151_20250707061154_75A1D9FE +PHISAT-2_L1_000002715_20250707092102_20250707092105_AE498076 +PHISAT-2_L1_000002716_20250707104754_20250707104757_63F28043 +PHISAT-2_L1_000002717_20250707154312_20250707154315_69599F0A +PHISAT-2_L1_000002718_20250708011839_20250708011842_C9577195 +PHISAT-2_L1_000002719_20250708070210_20250708070213_DE0F9A20 +PHISAT-2_L1_000002720_20250708085509_20250708085512_9C782632 +PHISAT-2_L1_000002722_20250708165009_20250708165012_1AE83823 +PHISAT-2_L1_000002723_20250708182508_20250708182511_601B1701 +PHISAT-2_L1_000002724_20250709052644_20250709052647_31379477 +PHISAT-2_L1_000002725_20250709070231_20250709070234_BF956037 +PHISAT-2_L1_000002726_20250709100755_20250709100758_313EB6D6 +PHISAT-2_L1_000002727_20250709114127_20250709114130_E7E88193 +PHISAT-2_L1_000002728_20250709175955_20250709175958_2457E5B9 +PHISAT-2_L1_000002729_20250710063917_20250710063920_9AF0B898 +PHISAT-2_L1_000002730_20250710094454_20250710094457_489D1C47 +PHISAT-2_L1_000002731_20250710112025_20250710112028_816DED44 +PHISAT-2_L1_000002732_20250710145214_20250710145217_63931365 +PHISAT-2_L1_000002733_20250710160050_20250710160053_3D4BCB0C +PHISAT-2_L1_000002734_20250710191230_20250710191233_81086194 +PHISAT-2_L1_000002735_20250711030501_20250711030504_2480C2BA +PHISAT-2_L1_000002736_20250711061715_20250711061718_E788EF32 +PHISAT-2_L1_000002738_20250711105248_20250711105251_4EFA5973 +PHISAT-2_L1_000002739_20250711185112_20250711185115_F91759CB +PHISAT-2_L1_000002740_20250711215130_20250711215133_1BCE697A +PHISAT-2_L1_000002741_20250712012634_20250712012637_70AB7185 +PHISAT-2_L1_000002742_20250712055310_20250712055313_5137583A +PHISAT-2_L1_000002743_20250712072849_20250712072852_6ABE2491 +PHISAT-2_L1_000002744_20250712090052_20250712090055_F6E231F1 +PHISAT-2_L1_000002745_20250712103234_20250712103237_3D045D87 +PHISAT-2_L1_000002746_20250712182926_20250712182929_434DFAC0 +PHISAT-2_L1_000002747_20250713002550_20250713002553_ED7E88F0 +PHISAT-2_L1_000002748_20250713005936_20250713005939_BDBF4FC4 +PHISAT-2_L1_000002749_20250713023839_20250713023842_4E4AEF33 +PHISAT-2_L1_000002750_20250713053144_20250713053147_8A942148 +PHISAT-2_L1_000002751_20250713071715_20250713071718_183352CA +PHISAT-2_L1_000002752_20250713101249_20250713101252_94C2A6B6 +PHISAT-2_L1_000002753_20250713114308_20250713114311_F6C39D9A +PHISAT-2_L1_000002756_20250713163155_20250713163158_19AC25BA +PHISAT-2_L1_000002758_20250713210817_20250713210820_7FE170B6 +PHISAT-2_L1_000002759_20250714003824_20250714003827_21530CAE +PHISAT-2_L1_000002760_20250714050932_20250714050935_15E8D189 +PHISAT-2_L1_000002761_20250714064424_20250714064427_3ACA20F5 +PHISAT-2_L1_000002762_20250714075542_20250714075545_01DDBE84 +PHISAT-2_L1_000002763_20250714081754_20250714081757_85FBF85A +PHISAT-2_L1_000002764_20250714094942_20250714094945_8A52400E +PHISAT-2_L1_000002765_20250714112515_20250714112518_0EBFBF06 +PHISAT-2_L1_000002766_20250714131525_20250714131528_A7FF6366 +PHISAT-2_L1_000002767_20250714160925_20250714160928_BC473172 +PHISAT-2_L1_000002768_20250714174117_20250714174120_BC2CCC43 +PHISAT-2_L1_000002769_20250714191720_20250714191723_C6E6141E +PHISAT-2_L1_000002770_20250715001710_20250715001713_481FAD32 +PHISAT-2_L1_000002771_20250715014838_20250715014841_C6B10C60 +PHISAT-2_L1_000002772_20250715062220_20250715062223_AB0FA05F +PHISAT-2_L1_000002773_20250715075654_20250715075657_90D3368F +PHISAT-2_L1_000002774_20250715092748_20250715092751_93097B3E +PHISAT-2_L1_000002775_20250715142230_20250715142233_AFF15F0A +PHISAT-2_L1_000002776_20250715154457_20250715154500_BEE2E924 +PHISAT-2_L1_000002777_20250715172257_20250715172300_4BDCFF55 +PHISAT-2_L1_000002778_20250715185554_20250715185557_DE8B5281 +PHISAT-2_L1_000002779_20250715202421_20250715202424_7C9D28CB +PHISAT-2_L1_000002780_20250716024519_20250716024522_B7E88F62 +PHISAT-2_L1_000002781_20250716042358_20250716042401_E77BBC89 +PHISAT-2_L1_000002782_20250716055308_20250716055311_A13003AE +PHISAT-2_L1_000002783_20250716073317_20250716073320_7FDA5717 +PHISAT-2_L1_000002784_20250716091724_20250716091727_0AE81BE8 +PHISAT-2_L1_000002785_20250716104128_20250716104131_DF42292E +PHISAT-2_L1_000002786_20250716135853_20250716135856_1F95B9DA +PHISAT-2_L1_000002787_20250716151525_20250716151528_25DDA7CC +PHISAT-2_L1_000002788_20250716153538_20250716153541_F37643DD +PHISAT-2_L1_000002790_20250716170000_20250716170003_2508B453 +PHISAT-2_L1_000002791_20250716183146_20250716183149_29F8A578 +PHISAT-2_L1_000002792_20250716213512_20250716213515_5442AAFF +PHISAT-2_L1_000002793_20250717010400_20250717010403_81E183AD +PHISAT-2_L1_000002794_20250717024026_20250717024029_A26874E3 +PHISAT-2_L1_000002795_20250717053558_20250717053601_25D0DB1B +PHISAT-2_L1_000002797_20250717072241_20250717072244_F0CD2865 +PHISAT-2_L1_000002798_20250717084714_20250717084717_7AA8EECC +PHISAT-2_L1_000002799_20250717101729_20250717101732_8D86641F +PHISAT-2_L1_000002800_20250717114638_20250717114641_F1FCC6FA +PHISAT-2_L1_000002801_20250717134313_20250717134316_4B980A30 +PHISAT-2_L1_000002802_20250717151522_20250717151525_0A388629 +PHISAT-2_L1_000002803_20250717163956_20250717163959_73912535 +PHISAT-2_L1_000002804_20250717181044_20250717181047_671DB3F0 +PHISAT-2_L1_000002805_20250717211305_20250717211308_FC062C31 +PHISAT-2_L1_000002806_20250718004306_20250718004309_1DE30CBC +PHISAT-2_L1_000002807_20250718034143_20250718034146_2BEF4B4C +PHISAT-2_L1_000002808_20250718051408_20250718051411_2290F3A1 +PHISAT-2_L1_000002809_20250718064825_20250718064828_BA3400BC +PHISAT-2_L1_000002811_20250718095423_20250718095426_D8591A49 +PHISAT-2_L1_000002812_20250718112924_20250718112927_3662CDF5 +PHISAT-2_L1_000002813_20250718132006_20250718132009_8808D151 +PHISAT-2_L1_000002814_20250718161428_20250718161431_45B7CDB1 +PHISAT-2_L1_000002815_20250718174817_20250718174820_DDB9542A +PHISAT-2_L1_000002816_20250718191913_20250718191916_CEFCD584 +PHISAT-2_L1_000002817_20250718205043_20250718205046_C9CEEA8A +PHISAT-2_L1_000002818_20250719002232_20250719002235_FC50729C +PHISAT-2_L1_000002819_20250719013359_20250719013402_C7AD390F +PHISAT-2_L1_000002820_20250719032436_20250719032439_7E3A5F54 +PHISAT-2_L1_000002821_20250719044827_20250719044830_6EEA53F1 +PHISAT-2_L1_000002822_20250719062540_20250719062543_18AC1DB7 +PHISAT-2_L1_000002823_20250719093211_20250719093214_68011CB1 +PHISAT-2_L1_000002824_20250719110639_20250719110642_5E485B03 +PHISAT-2_L1_000002825_20250719143425_20250719143428_9613D2FF +PHISAT-2_L1_000002826_20250719154926_20250719154929_9445F220 +PHISAT-2_L1_000002827_20250719172627_20250719172630_EAF142ED +PHISAT-2_L1_000002828_20250719190033_20250719190036_242299AC +PHISAT-2_L1_000002829_20250719220131_20250719220134_20F05DB0 +PHISAT-2_L1_000002830_20250720013057_20250720013100_42CD2311 +PHISAT-2_L1_000002831_20250720025345_20250720025348_454A156E +PHISAT-2_L1_000002832_20250720042630_20250720042633_915ED3DB +PHISAT-2_L1_000002833_20250720060248_20250720060251_A1E16DED +PHISAT-2_L1_000002834_20250720073919_20250720073922_0653AA01 +PHISAT-2_L1_000002835_20250720090917_20250720090920_30555EF0 +PHISAT-2_L1_000002836_20250720103948_20250720103951_CCF2DDDC +PHISAT-2_L1_000002837_20250720140758_20250720140801_C3D231B6 +PHISAT-2_L1_000002838_20250720153631_20250720153634_F5D89AE5 +PHISAT-2_L1_000002839_20250720170236_20250720170239_CF58A2EC +PHISAT-2_L1_000002841_20250720213902_20250720213905_C6E13758 +PHISAT-2_L1_000002842_20250721003622_20250721003625_51C1CBFF +PHISAT-2_L1_000002844_20250721024502_20250721024505_57CBA078 +PHISAT-2_L1_000002845_20250721054008_20250721054011_CDD22411 +PHISAT-2_L1_000002846_20250721072719_20250721072722_5CD1F87B +PHISAT-2_L1_000002848_20250721164211_20250721164214_CCC335B8 +PHISAT-2_L1_000002849_20250721181815_20250721181818_05EE11CE +PHISAT-2_L1_000002850_20250721211741_20250721211744_0E7713B0 +PHISAT-2_L1_000002852_20250722022134_20250722022137_7F7C93F7 +PHISAT-2_L1_000002853_20250722065428_20250722065434_7B0B9DFE +PHISAT-2_L1_000002854_20250722082742_20250722082745_03BA10A5 +PHISAT-2_L1_000002855_20250722095948_20250722095951_49C4C8B7 +PHISAT-2_L1_000002856_20250722132349_20250722132352_D9405A83 +PHISAT-2_L1_000002857_20250722143555_20250722143558_BEBBDDB4 +PHISAT-2_L1_000002858_20250722150409_20250722150412_00762134 +PHISAT-2_L1_000002859_20250722161623_20250722161626_D4D7D4E1 +PHISAT-2_L1_000002861_20250722192444_20250722192447_76927CC0 +PHISAT-2_L1_000002865_20250723063039_20250723063042_8487BF2C +PHISAT-2_L1_000002867_20250723144245_20250723144248_98806DBA +PHISAT-2_L1_000002868_20250723155416_20250723155419_4949A993 +PHISAT-2_L1_000002870_20250723190402_20250723190405_E00A47B9 +PHISAT-2_L1_000002873_20250724030551_20250724030554_134DD583 +PHISAT-2_L1_000002875_20250724074223_20250724074226_EC52C9E3 +PHISAT-2_L1_000002878_20250724141144_20250724141147_814DF744 +PHISAT-2_L1_000002879_20250724154509_20250724154512_122F8142 +PHISAT-2_L1_000002880_20250724170543_20250724170546_9104013E +PHISAT-2_L1_000002881_20250724184207_20250724184210_DD325499 +PHISAT-2_L1_000002882_20250724214440_20250724214443_84C5653E +PHISAT-2_L1_000002883_20250725023414_20250725023417_BA371415 +PHISAT-2_L1_000002884_20250725040849_20250725040852_C62E9A81 +PHISAT-2_L1_000002885_20250725072121_20250725072124_21B63844 +PHISAT-2_L1_000002886_20250725085357_20250725085400_E0C9DB81 +PHISAT-2_L1_000002887_20250725103021_20250725103024_48E13D26 +PHISAT-2_L1_000002888_20250725134945_20250725134948_56370777 +PHISAT-2_L1_000002889_20250725152342_20250725152345_E532A670 +PHISAT-2_L1_000002890_20250725164308_20250725164311_5B9C18C6 +PHISAT-2_L1_000002891_20250725182145_20250725182148_14F4C982 +PHISAT-2_L1_000002892_20250725212019_20250725212022_2BC7D537 +PHISAT-2_L1_000002893_20250726052309_20250726052312_30C74417 +PHISAT-2_L1_000002894_20250726071026_20250726071029_6F8CAD20 +PHISAT-2_L1_000002895_20250726175625_20250726175628_6B051641 +PHISAT-2_L1_000002896_20250726192805_20250726192808_65B09DFE +PHISAT-2_L1_000002897_20250727063530_20250727063533_A0C228B3 +PHISAT-2_L1_000002898_20250727082057_20250727082100_905D48F8 +PHISAT-2_L1_000002900_20250727143555_20250727143558_268FD4E1 +PHISAT-2_L1_000002901_20250727155708_20250727155711_83B4A45E +PHISAT-2_L1_000002902_20250727190805_20250727190808_F24AEDB5 +PHISAT-2_L1_000002903_20250727221144_20250727221147_2667D28E +PHISAT-2_L1_000002904_20250728013956_20250728013959_F5F6DB1F +PHISAT-2_L1_000002905_20250728043735_20250728043738_B6327C2F +PHISAT-2_L1_000002906_20250728061131_20250728061134_19C22D07 +PHISAT-2_L1_000002908_20250728105240_20250728105243_6BCDAFBA +PHISAT-2_L1_000002912_20250728184626_20250728184629_987DD7A9 +PHISAT-2_L1_000002914_20250729073612_20250729073615_3C977DD0 +PHISAT-2_L1_000002915_20250729085817_20250729085820_C3CD7443 +PHISAT-2_L1_000002916_20250729103037_20250729103040_57D6F68F +PHISAT-2_L1_000002917_20250729120743_20250729120756_E7070F8D +PHISAT-2_L1_000002918_20250729135248_20250729135251_853A1F93 +PHISAT-2_L1_000002919_20250729150655_20250729150658_AC76D3EB +PHISAT-2_L1_000002920_20250729152758_20250729152801_6DB8CD05 +PHISAT-2_L1_000002921_20250729165108_20250729165111_41B19FF8 +PHISAT-2_L1_000002922_20250729182442_20250729182445_9780AEEE +PHISAT-2_L1_000002923_20250729212627_20250729212630_62B802CE +PHISAT-2_L1_000002924_20250730020824_20250730020827_8BF5082F +PHISAT-2_L1_000002925_20250730023413_20250730023416_3AF03855 +PHISAT-2_L1_000002926_20250730035110_20250730035113_6854F94B +PHISAT-2_L1_000002927_20250730070257_20250730070300_BA8CDF61 +PHISAT-2_L1_000002928_20250730083725_20250730083728_95CDB58F +PHISAT-2_L1_000002929_20250730100820_20250730100823_27FAA0CD +PHISAT-2_L1_000002930_20250730114227_20250730114230_535DA11F +PHISAT-2_L1_000002931_20250730133408_20250730133411_14BB0B00 +PHISAT-2_L1_000002932_20250730150428_20250730150431_F089B50F +PHISAT-2_L1_000002933_20250730180305_20250730180308_C6B09E39 +PHISAT-2_L1_000002934_20250730193205_20250730193208_6D94EC19 +PHISAT-2_L1_000002935_20250730223638_20250730223641_3E83783A +PHISAT-2_L1_000002936_20250731003410_20250731003413_CCF056EA +PHISAT-2_L1_000002937_20250731050449_20250731050455_600DDD88 +PHISAT-2_L1_000002938_20250731063900_20250731063903_6DE09CF4 +PHISAT-2_L1_000002939_20250731082333_20250731082336_606FEFE0 +PHISAT-2_L1_000002941_20250731160311_20250731160314_0D991E00 +PHISAT-2_L1_000002942_20250731173632_20250731173635_06F40A07 +PHISAT-2_L1_000002943_20250731191220_20250731191223_EAD74BED +PHISAT-2_L1_000002944_20250731221503_20250731221506_FED9DC6D +PHISAT-2_L1_000002946_20250801031418_20250801031421_ABB7A0DE +PHISAT-2_L1_000002947_20250801043249_20250801043252_57670360 +PHISAT-2_L1_000002951_20250801142018_20250801142021_1DE75C44 +PHISAT-2_L1_000002952_20250801155247_20250801155250_2DDC073B +PHISAT-2_L1_000002953_20250801171735_20250801171738_5C178A4D +PHISAT-2_L1_000002954_20250801185100_20250801185103_2036572F +PHISAT-2_L1_000002955_20250801215252_20250801215255_3169AAF6 +PHISAT-2_L1_000002956_20250802153143_20250802153146_1AB9C8FA +PHISAT-2_L1_000002957_20250802165307_20250802165310_7B687A27 +PHISAT-2_L1_000002958_20250802182825_20250802182828_2D5A2B0B +PHISAT-2_L1_000002959_20250803010426_20250803010429_1AD90AE8 +PHISAT-2_L1_000002961_20250803071627_20250803071630_FD9BF8DC +PHISAT-2_L1_000002962_20250803084049_20250803084052_DBE61C25 +PHISAT-2_L1_000002963_20250803101209_20250803101212_7EC63CB4 +PHISAT-2_L1_000002964_20250803114624_20250803114627_72F3DF0A +PHISAT-2_L1_000002965_20250803133725_20250803133728_A978130E +PHISAT-2_L1_000002966_20250803150945_20250803150948_10973A87 +PHISAT-2_L1_000002967_20250803180523_20250803180526_10F85A22 +PHISAT-2_L1_000002968_20250803210723_20250803210726_8CE20BB7 +PHISAT-2_L1_000002969_20250804004231_20250804004234_9068DBFF +PHISAT-2_L1_000002970_20250804015756_20250804015759_9DCA366D +PHISAT-2_L1_000002971_20250804021511_20250804021514_C235B91D +PHISAT-2_L1_000002973_20250804064257_20250804064300_3ABE9B36 +PHISAT-2_L1_000002974_20250804094852_20250804094855_BD1D5134 +PHISAT-2_L1_000002975_20250804112427_20250804112430_66BE2556 +PHISAT-2_L1_000002976_20250804125113_20250804125116_5C8BB61F +PHISAT-2_L1_000002977_20250804144838_20250804144841_2835F55D +PHISAT-2_L1_000002978_20250804160705_20250804160708_8F086675 +PHISAT-2_L1_000002979_20250804174320_20250804174323_CDB721AE +PHISAT-2_L1_000002986_20250805092650_20250805092653_5D69BFD5 +PHISAT-2_L1_000002987_20250805110023_20250805110026_8D7B1F8F +PHISAT-2_L1_000002988_20250805142403_20250805142406_CA5DF19E +PHISAT-2_L1_000002989_20250805154320_20250805154323_5C1A3F4B +PHISAT-2_L1_000002990_20250805171859_20250805171902_74C8F252 +PHISAT-2_L1_000002991_20250805185449_20250805185452_CC002841 +PHISAT-2_L1_000002992_20250805215610_20250805215613_EAA818F2 +PHISAT-2_L1_000002993_20250806012556_20250806012559_A322A47D +PHISAT-2_L1_000002994_20250806024608_20250806024611_8D7D1D61 +PHISAT-2_L1_000002997_20250806183023_20250806183026_CC87FF29 +PHISAT-2_L1_000002998_20250806213307_20250806213310_6EEFC655 +PHISAT-2_L1_000002999_20250807010237_20250807010240_DEB703BE +PHISAT-2_L1_000003000_20250807022416_20250807022419_CA43B386 +PHISAT-2_L1_000003001_20250807024153_20250807024156_2429A59B +PHISAT-2_L1_000003003_20250807072050_20250807072053_25C3451B +PHISAT-2_L1_000003005_20250807115411_20250807115414_589E43EB +PHISAT-2_L1_000003007_20250807163215_20250807163218_FA5D9E26 +PHISAT-2_L1_000003008_20250807181202_20250807181205_91139C38 +PHISAT-2_L1_000003009_20250807193806_20250807193809_14362D2B +PHISAT-2_L1_000003010_20250808004122_20250808004125_697B9213 +PHISAT-2_L1_000003011_20250808015744_20250808015747_D92D1781 +PHISAT-2_L1_000003012_20250808034243_20250808034246_A1134B6F +PHISAT-2_L1_000003013_20250808064638_20250808064641_86582B01 +PHISAT-2_L1_000003015_20250808095252_20250808095255_07624EDC +PHISAT-2_L1_000003016_20250808112808_20250808112811_D99C7116 +PHISAT-2_L1_000003017_20250808131547_20250808131550_DACAF4D8 +PHISAT-2_L1_000003018_20250808161042_20250808161045_4F9925B9 +PHISAT-2_L1_000003019_20250808174542_20250808174545_16BCEF07 +PHISAT-2_L1_000003020_20250808191717_20250808191720_6ED8E584 +PHISAT-2_L1_000003021_20250808222244_20250808222247_C1D7808D +PHISAT-2_L1_000003022_20250809015120_20250809015123_BAF136EE +PHISAT-2_L1_000003024_20250809062428_20250809062431_98B6F94C +PHISAT-2_L1_000003026_20250809093008_20250809093011_8DB9F670 +PHISAT-2_L1_000003027_20250809110435_20250809110438_B6A452AA +PHISAT-2_L1_000003028_20250809123226_20250809123229_7DF48EF6 +PHISAT-2_L1_000003029_20250809143143_20250809143149_32CC3D8E +PHISAT-2_L1_000003030_20250809154717_20250809154720_807502DF +PHISAT-2_L1_000003031_20250809172419_20250809172422_AAB921FF +PHISAT-2_L1_000003032_20250809185822_20250809185825_50FD0270 +PHISAT-2_L1_000003033_20250809215845_20250809215848_04AECF19 +PHISAT-2_L1_000003034_20250810012934_20250810012937_978FD3D6 +PHISAT-2_L1_000003038_20250810090733_20250810090736_39B49CB0 +PHISAT-2_L1_000003039_20250810104052_20250810104055_4E783AB1 +PHISAT-2_L1_000003040_20250810141016_20250810141019_DF653F90 +PHISAT-2_L1_000003041_20250810152204_20250810152207_3D26CADC +PHISAT-2_L1_000003042_20250810170055_20250810170058_C173B4E1 +PHISAT-2_L1_000003043_20250810183356_20250810183359_E3482C12 +PHISAT-2_L1_000003044_20250810213723_20250810213726_C23D4F73 +PHISAT-2_L1_000003045_20250811010551_20250811010554_35AEA243 +PHISAT-2_L1_000003046_20250811022708_20250811022711_E6404471 +PHISAT-2_L1_000003047_20250811024440_20250811024443_E3710A7E +PHISAT-2_L1_000003049_20250811072442_20250811072445_1ECDF202 +PHISAT-2_L1_000003050_20250811145557_20250811145600_57C7798E +PHISAT-2_L1_000003051_20250811163617_20250811163620_AEE77705 +PHISAT-2_L1_000003052_20250811181236_20250811181239_58658D13 +PHISAT-2_L1_000003053_20250811211456_20250811211459_23CF2EAF +PHISAT-2_L1_000003054_20250812022338_20250812022341_799E8C84 +PHISAT-2_L1_000003057_20250812065144_20250812065147_FDED3BCA +PHISAT-2_L1_000003058_20250812083555_20250812083558_6B29F123 +PHISAT-2_L1_000003059_20250812095656_20250812095659_07623F8D +PHISAT-2_L1_000003060_20250812131639_20250812131642_DA22AC96 +PHISAT-2_L1_000003061_20250812143248_20250812143251_9375DB78 +PHISAT-2_L1_000003062_20250812161752_20250812161755_79B5D1B9 +PHISAT-2_L1_000003063_20250812174954_20250812174957_4DEBB786 +PHISAT-2_L1_000003064_20250812192048_20250812192051_54559797 +PHISAT-2_L1_000003065_20250812205217_20250812205220_97F811AA +PHISAT-2_L1_000003066_20250813015531_20250813015534_C82C25B7 +PHISAT-2_L1_000003069_20250813062747_20250813062750_8E4C2C77 +PHISAT-2_L1_000003070_20250813093355_20250813093358_72C99417 +PHISAT-2_L1_000003072_20250813140925_20250813140928_A753BD24 +PHISAT-2_L1_000003073_20250813143858_20250813143901_0F65A2F2 +PHISAT-2_L1_000003074_20250813155046_20250813155049_AF2313D9 +PHISAT-2_L1_000003075_20250813172532_20250813172535_CE7A9B14 +PHISAT-2_L1_000003076_20250813190113_20250813190116_5FDE15FB +PHISAT-2_L1_000003077_20250814013234_20250814013237_45EB5DF2 +PHISAT-2_L1_000003081_20250814092330_20250814092333_ADA51D44 +PHISAT-2_L1_000003082_20250814104708_20250814104711_BB02D06A +PHISAT-2_L1_000003083_20250814141341_20250814141344_70008FD1 +PHISAT-2_L1_000003084_20250814170234_20250814170237_1D5E9DA4 +PHISAT-2_L1_000003085_20250814183838_20250814183841_5D313DA5 +PHISAT-2_L1_000003086_20250814214147_20250814214150_0DAD37F5 +PHISAT-2_L1_000003087_20250815010954_20250815010957_F4025D76 +PHISAT-2_L1_000003088_20250815023102_20250815023105_9A349AE7 +PHISAT-2_L1_000003090_20250815072805_20250815072808_F55F207D +PHISAT-2_L1_000003091_20250815084848_20250815084851_112E72A8 +PHISAT-2_L1_000003092_20250815102311_20250815102314_FF1A02EE +PHISAT-2_L1_000003093_20250815132408_20250815132411_A3CEA2DE +PHISAT-2_L1_000003094_20250815134454_20250815134457_51751777 +PHISAT-2_L1_000003095_20250815152039_20250815152042_64E79461 +PHISAT-2_L1_000003096_20250815163951_20250815163954_132667FE +PHISAT-2_L1_000003097_20250815194417_20250815194420_656474D9 +PHISAT-2_L1_000003098_20250816222903_20250816222906_49E40E47 +PHISAT-2_L1_000003099_20250817002700_20250817002703_50E822DB +PHISAT-2_L1_000003100_20250817015837_20250817015840_9926D87E +PHISAT-2_L1_000003102_20250817063052_20250817063055_0189FFC6 +PHISAT-2_L1_000003105_20250817144044_20250817144047_9C3FAA5B +PHISAT-2_L1_000003106_20250817155422_20250817155425_1E2A8D0D +PHISAT-2_L1_000003107_20250817173156_20250817173159_BCFE31AE +PHISAT-2_L1_000003108_20250817190451_20250817190454_1CE1FF15 +PHISAT-2_L1_000003109_20250817203154_20250817203157_F438A734 +PHISAT-2_L1_000003110_20250818013518_20250818013521_996E2658 +PHISAT-2_L1_000003115_20250818091423_20250818091426_A81294E2 +PHISAT-2_L1_000003116_20250818104419_20250818104422_7653ADA9 +PHISAT-2_L1_000003117_20250818141659_20250818141702_A09F6FC2 +PHISAT-2_L1_000003118_20250818170859_20250818170902_65419162 +PHISAT-2_L1_000003120_20250820035341_20250820035344_7CE2FEDF +PHISAT-2_L1_000003121_20250820052754_20250820052757_B04D8C0A +PHISAT-2_L1_000003122_20250820065818_20250820065821_6C051322 +PHISAT-2_L1_000003123_20250820082940_20250820082943_19365755 +PHISAT-2_L1_000003124_20250820100318_20250820100321_5F6824C9 +PHISAT-2_L1_000003125_20250820113707_20250820113710_2DDFDE25 +PHISAT-2_L1_000003126_20250820132834_20250820132837_45C90F5C +PHISAT-2_L1_000003127_20250820143907_20250820143910_E243D18D +PHISAT-2_L1_000003128_20250820150554_20250820150557_C96E8619 +PHISAT-2_L1_000003129_20250820162410_20250820162413_63392608 +PHISAT-2_L1_000003130_20250821144238_20250821144241_1A0B459B +PHISAT-2_L1_000003131_20250821155704_20250821155707_E1E5641E +PHISAT-2_L1_000003132_20250821173154_20250821173157_D9EDE6A2 +PHISAT-2_L1_000003133_20250821190722_20250821190725_D634E69C +PHISAT-2_L1_000003134_20250821220902_20250821220905_9F1A4E2E +PHISAT-2_L1_000003135_20250822091638_20250822091641_5591C98D +PHISAT-2_L1_000003136_20250822105217_20250822105220_28D847B3 +PHISAT-2_L1_000003137_20250822141200_20250822141203_5F87EC25 +PHISAT-2_L1_000003138_20250822153156_20250822153159_7D467F5F +PHISAT-2_L1_000003139_20250822154721_20250822154724_7F532C34 +PHISAT-2_L1_000003140_20250822171010_20250822171013_ED8A1F2E +PHISAT-2_L1_000003141_20250822184546_20250822184549_DC7984D0 +PHISAT-2_L1_000003142_20250823011644_20250823011647_2CD1E63D +PHISAT-2_L1_000003144_20250823072118_20250823072121_FCE9BAE5 +PHISAT-2_L1_000003145_20250823085407_20250823085410_3CF355F2 +PHISAT-2_L1_000003146_20250823102846_20250823102849_36F31153 +PHISAT-2_L1_000003147_20250823135224_20250823135227_C743D5E0 +PHISAT-2_L1_000003148_20250823150503_20250823150506_B88808D6 +PHISAT-2_L1_000003149_20250823152600_20250823152603_32C02284 +PHISAT-2_L1_000003150_20250823164402_20250823164405_971B56A2 +PHISAT-2_L1_000003151_20250823182343_20250823182346_CB3F2ED5 +PHISAT-2_L1_000003152_20250823212433_20250823212436_7B90A95B +PHISAT-2_L1_000003153_20250824005341_20250824005344_11F11382 +PHISAT-2_L1_000003155_20250824070101_20250824070104_2A474FD4 +PHISAT-2_L1_000003156_20250824083243_20250824083246_955D06AA +PHISAT-2_L1_000003157_20250824100622_20250824100625_19EDB7A7 +PHISAT-2_L1_000003158_20250824113933_20250824113936_E1D724BB +PHISAT-2_L1_000003159_20250824150915_20250824150918_42973518 +PHISAT-2_L1_000003160_20250824162238_20250824162241_E398B239 +PHISAT-2_L1_000003161_20250824175612_20250824175615_CFA8593B +PHISAT-2_L1_000003162_20250824193007_20250824193010_40EAD3C3 +PHISAT-2_L1_000003163_20250824223328_20250824223331_D18F9E06 +PHISAT-2_L1_000003165_20250825063718_20250825063721_B2D1AC68 +PHISAT-2_L1_000003166_20250825080901_20250825080904_7E0DF2ED +PHISAT-2_L1_000003167_20250825094300_20250825094303_CC202FE8 +PHISAT-2_L1_000003168_20250825111821_20250825111824_C3A67221 +PHISAT-2_L1_000003169_20250825130658_20250825130701_0E0AE898 +PHISAT-2_L1_000003170_20250825144719_20250825144722_6842B950 +PHISAT-2_L1_000003171_20250825155134_20250825155137_09999289 +PHISAT-2_L1_000003172_20250825173414_20250825173417_88CAFDE4 +PHISAT-2_L1_000003173_20250825190959_20250825191002_996B8799 +PHISAT-2_L1_000003174_20250825203904_20250825203907_68A884AF +PHISAT-2_L1_000003175_20250826001048_20250826001051_D4DF467C +PHISAT-2_L1_000003176_20250826014114_20250826014117_6B9D8874 +PHISAT-2_L1_000003179_20250826092010_20250826092013_E298CFCF +PHISAT-2_L1_000003180_20250826105323_20250826105326_BF2FE967 +PHISAT-2_L1_000003181_20250826153635_20250826153638_08C80ECE +PHISAT-2_L1_000003182_20250826171117_20250826171120_2205207E +PHISAT-2_L1_000003183_20250826184822_20250826184825_082F8125 +PHISAT-2_L1_000003184_20250826214809_20250826214812_A1AAEB58 +PHISAT-2_L1_000003185_20250828100912_20250828100915_8569F28B +PHISAT-2_L1_000003186_20250828114215_20250828114218_6CBA5C3D +PHISAT-2_L1_000003187_20250828145940_20250828145943_BE5B00BB +PHISAT-2_L1_000003189_20250829094525_20250829094528_5BDAD866 +PHISAT-2_L1_000003191_20250829130656_20250829130658_3960AED3 +PHISAT-2_L1_000003192_20250829145105_20250829145107_4D1D9C88 +PHISAT-2_L1_000003193_20250829191257_20250829191259_6D297B0A +PHISAT-2_L1_000003194_20250830105251_20250830105254_AA0B80AF +PHISAT-2_L1_000003195_20250830153730_20250830153732_30871B86 +PHISAT-2_L1_000003196_20250830171802_20250830171805_453CA0C9 +PHISAT-2_L1_000003197_20250830185059_20250830185101_72312B91 +PHISAT-2_L1_000003199_20250831042107_20250831042109_8DEB9247 +PHISAT-2_L1_000003201_20250831090150_20250831090152_2A9D5471 +PHISAT-2_L1_000003202_20250831103204_20250831103207_67EECAFD +PHISAT-2_L1_000003203_20250831135342_20250831135344_08E07314 +PHISAT-2_L1_000003204_20250901022007_20250901022009_0B7942EB +PHISAT-2_L1_000003205_20250901035939_20250901035941_A6E9A91F +PHISAT-2_L1_000003206_20250901101128_20250901101131_898E0B7B +PHISAT-2_L1_000003209_20250902094636_20250902094638_A484FAC1 +PHISAT-2_L1_000003210_20250902112323_20250902112329_9E90A939 +PHISAT-2_L1_000003211_20250902191512_20250902191515_8F657E4E +PHISAT-2_L1_000003212_20250903001728_20250903001731_00E8AAD9 +PHISAT-2_L1_000003213_20250903014626_20250903014629_68C19FE5 +PHISAT-2_L1_000003215_20250903061943_20250903061946_DEBC1553 +PHISAT-2_L1_000003217_20250903105922_20250903105925_8A86E09E +PHISAT-2_L1_000003218_20250903142857_20250903142900_4AA39865 +PHISAT-2_L1_000003219_20250903154140_20250903154143_9C4822EA +PHISAT-2_L1_000003220_20250903155316_20250903155319_A3C8AEC6 +PHISAT-2_L1_000003221_20250903171951_20250903171954_C38AA012 +PHISAT-2_L1_000003222_20250903185313_20250903185315_D5975B7B +PHISAT-2_L1_000003223_20250903215302_20250903215305_D6EBA54B +PHISAT-2_L1_000003227_20250904091453_20250904091456_6BC93F25 +PHISAT-2_L1_000003228_20250904103410_20250904103412_1E348DC8 +PHISAT-2_L1_000003229_20250904140450_20250904140453_E9556A69 +PHISAT-2_L1_000003230_20250904151158_20250904151201_38F75AFB +PHISAT-2_L1_000003231_20250904153348_20250904153351_5FCA7456 +PHISAT-2_L1_000003232_20250904165334_20250904165337_1870493A +PHISAT-2_L1_000003236_20250905053616_20250905053619_832D2A34 +PHISAT-2_L1_000003237_20250905071753_20250905071756_E3F23AC2 +PHISAT-2_L1_000003238_20250905101334_20250905101337_D0ADD24D +PHISAT-2_L1_000003239_20250905150918_20250905150920_3AAF535E +PHISAT-2_L1_000003240_20250905163326_20250905163328_53FC7B3E +PHISAT-2_L1_000003242_20250905224143_20250905224145_C355CC9A +PHISAT-2_L1_000003243_20250906004341_20250906004344_72808E3E +PHISAT-2_L1_000003246_20250906064443_20250906064446_3B8044B3 +PHISAT-2_L1_000003247_20250906083504_20250906083507_D62F94FA +PHISAT-2_L1_000003248_20250906094953_20250906094955_AC74274C +PHISAT-2_L1_000003249_20250906112508_20250906112510_0E17E12E +PHISAT-2_L1_000003250_20250906131504_20250906131506_9D7ED421 +PHISAT-2_L1_000003251_20250906145556_20250906145559_3183B7A8 +PHISAT-2_L1_000003252_20250906160733_20250906160735_00F64F9C +PHISAT-2_L1_000003253_20250906174114_20250906174116_37B7AD09 +PHISAT-2_L1_000003254_20250906191715_20250906191717_048B8042 +PHISAT-2_L1_000003256_20250907014830_20250907014832_0B3327B3 +PHISAT-2_L1_000003258_20250907062108_20250907062110_333F531E +PHISAT-2_L1_000003260_20250907092717_20250907092719_83E04AF6 +PHISAT-2_L1_000003261_20250907105806_20250907105809_5AD3D121 +PHISAT-2_L1_000003262_20250907143054_20250907143057_A7BE3F33 +PHISAT-2_L1_000003263_20250907155641_20250907155643_1F4119D5 +PHISAT-2_L1_000003264_20250907171750_20250907171752_8B6840BE +PHISAT-2_L1_000003265_20250907185507_20250907185510_09F6BE02 +PHISAT-2_L1_000003266_20250907215444_20250907215447_A5276759 +PHISAT-2_L1_000003267_20250908012611_20250908012613_3D4249B7 +PHISAT-2_L1_000003271_20250908104013_20250908104016_55E019CD +PHISAT-2_L1_000003272_20250908133851_20250908133854_0F135A2F +PHISAT-2_L1_000003273_20250908135752_20250908135754_78239678 +PHISAT-2_L1_000003274_20250908153258_20250908153300_A5AF4D91 +PHISAT-2_L1_000003275_20250908165526_20250908165529_2D945F67 +PHISAT-2_L1_000003276_20250908183237_20250908183239_2F22E2C1 +PHISAT-2_L1_000003277_20250909010244_20250909010246_AFBA33B0 +PHISAT-2_L1_000003278_20250909024136_20250909024138_0F638815 +PHISAT-2_L1_000003282_20250909084151_20250909084153_90E3B634 +PHISAT-2_L1_000003283_20250909101525_20250909101528_41F05DF7 +PHISAT-2_L1_000003285_20250909151252_20250909151254_4307FE24 +PHISAT-2_L1_000003289_20250910112711_20250910112713_D9BFE24B +PHISAT-2_L1_000003290_20250910142848_20250910142850_10418974 +PHISAT-2_L1_000003291_20250910145421_20250910145424_EF46BE06 +PHISAT-2_L1_000003293_20250910174209_20250910174211_6FDF8374 +PHISAT-2_L1_000003294_20250911002003_20250911002005_C4412EC5 +PHISAT-2_L1_000003295_20250911015105_20250911015107_6F2A985C +PHISAT-2_L1_000003298_20250911092846_20250911092849_FF04AF53 +PHISAT-2_L1_000003300_20250911143313_20250911143315_39835537 +PHISAT-2_L1_000003301_20250911154548_20250911154551_FFA5E72D +PHISAT-2_L1_000003302_20250911155817_20250911155819_BCC821D4 +PHISAT-2_L1_000003303_20250911172247_20250911172249_E4FB628D +PHISAT-2_L1_000003304_20250912092022_20250912092024_0A8599C0 +PHISAT-2_L1_000003310_20250913134400_20250913134403_72CF869A +PHISAT-2_L1_000003311_20250913151450_20250913151452_25AC91E9 +PHISAT-2_L1_000003312_20250913163604_20250913163606_3F642323 +PHISAT-2_L1_000003313_20250913181302_20250913181305_BFA3869A +PHISAT-2_L1_000003314_20250914021623_20250914021625_320CE198 +PHISAT-2_L1_000003318_20250914095346_20250914095349_984BF0DC +PHISAT-2_L1_000003319_20250914112847_20250914112849_248BE004 +PHISAT-2_L1_000003320_20250914125539_20250914125541_6BEEC182 +PHISAT-2_L1_000003322_20250914145822_20250914145825_CDF27311 +PHISAT-2_L1_000003323_20250914161122_20250914161124_25CAA31B +PHISAT-2_L1_000003324_20250914174706_20250914174708_E145C609 +PHISAT-2_L1_000003325_20250914192025_20250914192027_9B39DF07 +PHISAT-2_L1_000003326_20250915002053_20250915002055_97286EC7 +PHISAT-2_L1_000003327_20250915015141_20250915015143_116D988D +PHISAT-2_L1_000003329_20250915062430_20250915062432_953B0AC2 +PHISAT-2_L1_000003330_20250915093040_20250915093042_AD21B5E9 +PHISAT-2_L1_000003331_20250915110509_20250915110512_4F2FEF1A +PHISAT-2_L1_000003332_20250915143517_20250915143520_C2EC0483 +PHISAT-2_L1_000003333_20250915154719_20250915154722_E82C6DF1 +PHISAT-2_L1_000003334_20250915172501_20250915172503_D4779FB1 +PHISAT-2_L1_000003335_20250915185506_20250915185508_F737FCCD +PHISAT-2_L1_000003336_20250916012826_20250916012828_B695AD56 +PHISAT-2_L1_000003338_20250916042920_20250916042922_3DF58D02 +PHISAT-2_L1_000003341_20250916090637_20250916090640_AE535FE6 +PHISAT-2_L1_000003342_20250916104005_20250916104007_71140522 +PHISAT-2_L1_000003343_20250916140136_20250916140138_0C6A5747 +PHISAT-2_L1_000003344_20250916153348_20250916153350_DAC0D4F6 +PHISAT-2_L1_000003345_20250916165836_20250916165838_ACD6E1EE +PHISAT-2_L1_000003346_20250916183322_20250916183324_2CA09A30 +PHISAT-2_L1_000003347_20250917011050_20250917011052_60D8C1FC +PHISAT-2_L1_000003348_20250917022716_20250917022718_AC7D0D42 +PHISAT-2_L1_000003349_20250917040657_20250917040659_980687ED +PHISAT-2_L1_000003351_20250917085811_20250917085814_8FC751DC +PHISAT-2_L1_000003352_20250917101835_20250917101837_59AF72D0 +PHISAT-2_L1_000003353_20250917134526_20250917134528_D59AB150 +PHISAT-2_L1_000003354_20250917151617_20250917151619_12DD7137 +PHISAT-2_L1_000003356_20250917181133_20250917181135_7DDC990B +PHISAT-2_L1_000003357_20250917194128_20250917194131_D8E6FBE1 +PHISAT-2_L1_000003358_20250917211320_20250917211322_4272F167 +PHISAT-2_L1_000003360_20250918064919_20250918064922_0FAB25AD +PHISAT-2_L1_000003361_20250918082134_20250918082136_1D860BD8 +PHISAT-2_L1_000003362_20250918095444_20250918095447_1D91DA1C +PHISAT-2_L1_000003363_20250918112955_20250918112958_E0EBEE6C +PHISAT-2_L1_000003364_20250918144616_20250918144618_B76C6FF3 +PHISAT-2_L1_000003365_20250918161411_20250918161413_92AC2BEF +PHISAT-2_L1_000003366_20250918175109_20250918175112_97FD15D1 +PHISAT-2_L1_000003367_20250918192115_20250918192117_176D117C +PHISAT-2_L1_000003368_20250918222419_20250918222421_604F5C56 +PHISAT-2_L1_000003369_20250919015301_20250919015303_6C58F703 +PHISAT-2_L1_000003370_20250919062552_20250919062554_2ED609EB +PHISAT-2_L1_000003371_20250919172620_20250919172623_9506FC74 +PHISAT-2_L1_000003372_20250919185513_20250919185516_AE93947F +PHISAT-2_L1_000003373_20250919220002_20250919220004_C37F616C +PHISAT-2_L1_000003374_20250920012945_20250920012948_B700FF09 +PHISAT-2_L1_000003375_20250920025026_20250920025029_1E499C3B +PHISAT-2_L1_000003376_20250920030249_20250920030251_2E812927 +PHISAT-2_L1_000003377_20250920043039_20250920043042_43D7EE45 +PHISAT-2_L1_000003380_20250920090809_20250920090811_973174D5 +PHISAT-2_L1_000003381_20250920104150_20250920104153_7DA0A595 +PHISAT-2_L1_000003382_20250920121351_20250920121354_22C567C9 +PHISAT-2_L1_000003383_20250920140206_20250920140209_B937D235 +PHISAT-2_L1_000003384_20250920170303_20250920170306_28845E3F +PHISAT-2_L1_000003385_20250921010638_20250921010641_08780DB6 +PHISAT-2_L1_000003386_20250921022809_20250921022812_4D89738D +PHISAT-2_L1_000003387_20250921024306_20250921024308_905844AF +PHISAT-2_L1_000003388_20250921041046_20250921041049_EFBD0AC1 +PHISAT-2_L1_000003390_20250921072509_20250921072512_EA0D4295 +PHISAT-2_L1_000003391_20250921085907_20250921085910_1341B13C +PHISAT-2_L1_000003392_20250921101849_20250921101852_FF6B4C78 +PHISAT-2_L1_000003393_20250921134345_20250921134348_71695CFB +PHISAT-2_L1_000003394_20250921145612_20250921145615_F7BFE2C5 +PHISAT-2_L1_000003395_20250921181545_20250921181548_A7563EA8 +PHISAT-2_L1_000003396_20250922004455_20250922004458_9A0FA9CE +PHISAT-2_L1_000003397_20250922020542_20250922020545_0CCB2F8A +PHISAT-2_L1_000003398_20250922021914_20250922021916_D0D599E2 +PHISAT-2_L1_000003400_20250922064957_20250922065000_D9B77438 +PHISAT-2_L1_000003401_20250922082121_20250922082124_9A39C29B +PHISAT-2_L1_000003402_20250922095555_20250922095558_537D0154 +PHISAT-2_L1_000003403_20250922132128_20250922132130_51B24A06 +PHISAT-2_L1_000003404_20250922175227_20250922175229_9105C1EC +PHISAT-2_L1_000003405_20250922192040_20250922192042_B4396612 +PHISAT-2_L1_000003406_20250922222608_20250922222610_FF08F3D4 +PHISAT-2_L1_000003407_20250923015400_20250923015402_FB9712FC +PHISAT-2_L1_000003408_20250923031940_20250923031942_8B0B23F7 +PHISAT-2_L1_000003409_20250923062701_20250923062703_89F25F06 +PHISAT-2_L1_000003410_20250923081313_20250923081315_255ABB9B +PHISAT-2_L1_000003411_20250923140812_20250923140814_F1C425A6 +PHISAT-2_L1_000003412_20250923142458_20250923142500_3E8CEC12 +PHISAT-2_L1_000003413_20250923154901_20250923154904_D778728E +PHISAT-2_L1_000003414_20250923172750_20250923172752_4D1B7CC4 +PHISAT-2_L1_000003416_20250924013150_20250924013152_C06921A1 +PHISAT-2_L1_000003417_20250924043053_20250924043055_D5073E3B +PHISAT-2_L1_000003420_20250924121323_20250924121325_749233C4 +PHISAT-2_L1_000003421_20250924141210_20250924141212_2332CD43 +PHISAT-2_L1_000003422_20250924152514_20250924152516_EC3D9005 +PHISAT-2_L1_000003423_20250924153444_20250924153446_F8DBD18B +PHISAT-2_L1_000003424_20250924183543_20250924183545_E5D2C7E7 +PHISAT-2_L1_000003430_20250925134740_20250925134742_485B1560 +PHISAT-2_L1_000003431_20250925151127_20250925151129_2AC55E93 +PHISAT-2_L1_000003432_20250925181528_20250925181531_199B9AE6 +PHISAT-2_L1_000003433_20250925194259_20250925194301_994EE3AD +PHISAT-2_L1_000003434_20250926022009_20250926022011_A95EC246 +PHISAT-2_L1_000003435_20250926034534_20250926034536_C629C529 +PHISAT-2_L1_000003437_20250926065229_20250926065232_94BD7C52 +PHISAT-2_L1_000003438_20250926095645_20250926095647_8CE0158C +PHISAT-2_L1_000003439_20250926132220_20250926132222_1EFC977E +PHISAT-2_L1_000003440_20250926143354_20250926143356_3CE1DC33 +PHISAT-2_L1_000003441_20250926145543_20250926145546_3D069CB5 +PHISAT-2_L1_000003442_20250926161823_20250926161825_48894633 +PHISAT-2_L1_000003443_20250926192203_20250926192206_98004A94 +PHISAT-2_L1_000003444_20250927015546_20250927015548_AD6B16C3 +PHISAT-2_L1_000003447_20250927062711_20250927062713_DF576FA2 +PHISAT-2_L1_000003449_20250927093355_20250927093358_1C8C2D24 +PHISAT-2_L1_000003450_20250927110759_20250927110801_A33DFC29 +PHISAT-2_L1_000003451_20250927143831_20250927143834_26193231 +PHISAT-2_L1_000003452_20250927155034_20250927155036_4AF797F0 +PHISAT-2_L1_000003453_20250927160238_20250927160240_AD65ABE4 +PHISAT-2_L1_000003454_20250927172417_20250927172419_2C9327A5 +PHISAT-2_L1_000003455_20250927190013_20250927190015_791E275D +PHISAT-2_L1_000003456_20250927220354_20250927220356_7BAFDAA3 +PHISAT-2_L1_000003457_20250928025155_20250928025157_89EC0535 +PHISAT-2_L1_000003460_20250928141258_20250928141300_D1CDB199 +PHISAT-2_L1_000003461_20250928170119_20250928170121_9EE941D4 +PHISAT-2_L1_000003462_20250928183846_20250928183848_44A13489 +PHISAT-2_L1_000003464_20250929024444_20250929024446_94FE0344 +PHISAT-2_L1_000003468_20250929090202_20250929090205_67970FD5 +PHISAT-2_L1_000003470_20250929115118_20250929115120_7132E758 +PHISAT-2_L1_000003473_20250929163802_20250929163804_1AA6463E +PHISAT-2_L1_000003475_20250930004550_20250930004552_B6FE589A +PHISAT-2_L1_000003481_20250930095718_20250930095721_A5CDD6E3 +PHISAT-2_L1_000003482_20250930132249_20250930132251_307D1BFE +PHISAT-2_L1_000003483_20250930175048_20250930175050_4BE1D535 +PHISAT-2_L1_000003485_20250930205306_20250930205308_49CA8491 +PHISAT-2_L1_000003486_20251001002405_20251001002407_E14CB21D +PHISAT-2_L1_000003489_20251001062737_20251001062739_3FAC243C +PHISAT-2_L1_000003497_20251002104025_20251002104028_E87E6FF9 +PHISAT-2_L1_000003498_20251002141312_20251002141314_2F5D462E +PHISAT-2_L1_000003500_20251002153724_20251002153726_BD5FB8CC +PHISAT-2_L1_000003501_20251002170339_20251002170341_EF6A81EC +PHISAT-2_L1_000003502_20251002183753_20251002183756_A214CE8C +PHISAT-2_L1_000003505_20251003022938_20251003022941_685AF21A +PHISAT-2_L1_000003506_20251003040745_20251003040747_8DD49AB2 +PHISAT-2_L1_000003507_20251003054315_20251003054317_F8686058 +PHISAT-2_L1_000003508_20251003072704_20251003072707_98B75D59 +PHISAT-2_L1_000003511_20251003134154_20251003134156_04398A90 +PHISAT-2_L1_000003512_20251003145651_20251003145654_A2426A9D +PHISAT-2_L1_000003513_20251003163808_20251003163810_03AE7150 +PHISAT-2_L1_000003516_20251004022043_20251004022045_C482C0DE +PHISAT-2_L1_000003519_20251004065120_20251004065122_8CFE4CA8 +PHISAT-2_L1_000003522_20251004131741_20251004131744_D85A67AA +PHISAT-2_L1_000003523_20251004150002_20251004150005_337069DC +PHISAT-2_L1_000003525_20251005093413_20251005093415_AB6397B4 +PHISAT-2_L1_000003529_20251005160317_20251005160319_D500D244 +PHISAT-2_L1_000003531_20251005190135_20251005190137_629267E9 +PHISAT-2_L1_000003533_20251006000313_20251006000315_4158E109 +PHISAT-2_L1_000003535_20251006025441_20251006025443_AD70945E +PHISAT-2_L1_000003538_20251006090946_20251006090949_D3E8D4D5 +PHISAT-2_L1_000003539_20251006092647_20251006092651_E453EADD +PHISAT-2_L1_000003540_20251006140914_20251006140916_B00C39A6 +PHISAT-2_L1_000003541_20251006152558_20251006152600_EB5410CB +PHISAT-2_L1_000003542_20251006154103_20251006154105_A797E5E4 +PHISAT-2_L1_000003543_20251006170135_20251006170137_7E6387AE +PHISAT-2_L1_000003544_20251006183737_20251006183740_82B8FADE +PHISAT-2_L1_000003545_20251007040122_20251007040124_20AB59DD +PHISAT-2_L1_000003546_20251007040957_20251007040959_AA381AEB +PHISAT-2_L1_000003547_20251007054313_20251007054315_7A0B430E +PHISAT-2_L1_000003548_20251007072643_20251007072646_64EE588E +PHISAT-2_L1_000003549_20251007090053_20251007090055_D5DAF26B +PHISAT-2_L1_000003551_20251007115137_20251007115139_DE824A46 +PHISAT-2_L1_000003552_20251007134903_20251007134906_0848F58F +PHISAT-2_L1_000003554_20251007181615_20251007181618_51BBF76B +PHISAT-2_L1_000003555_20251008004607_20251008004609_D0085B4E +PHISAT-2_L1_000003558_20251008065242_20251008065245_E0F210B8 +PHISAT-2_L1_000003560_20251008131840_20251008131842_04E60591 +PHISAT-2_L1_000003561_20251008143104_20251008143111_45B93D45 +PHISAT-2_L1_000003563_20251008161323_20251008161325_021ED0CC +PHISAT-2_L1_000003565_20251008192329_20251008192331_A95B6AA8 +PHISAT-2_L1_000003566_20251009002336_20251009002338_7EDBABF0 +PHISAT-2_L1_000003567_20251009015613_20251009015616_C5E59741 +PHISAT-2_L1_000003568_20251009032023_20251009032025_12AA0EF1 +PHISAT-2_L1_000003569_20251009062754_20251009062757_C5512B4F +PHISAT-2_L1_000003570_20251009093346_20251009093348_74FB5013 +PHISAT-2_L1_000003571_20251009110521_20251009110523_C4B52122 +PHISAT-2_L1_000003572_20251009155019_20251009155021_4ACA54A7 +PHISAT-2_L1_000003573_20251009160109_20251009160112_42BCD422 +PHISAT-2_L1_000003574_20251009172757_20251009172759_FF14F043 +PHISAT-2_L1_000003575_20251009190119_20251009190121_40CDA958 +PHISAT-2_L1_000003576_20251009220323_20251009220326_F5BBBCEC +PHISAT-2_L1_000003577_20251010013120_20251010013122_13E441E6 +PHISAT-2_L1_000003578_20251010025411_20251010025413_AB003DCA +PHISAT-2_L1_000003579_20251010043205_20251010043207_AAE17669 +PHISAT-2_L1_000003580_20251010060418_20251010060420_BA97A868 +PHISAT-2_L1_000003582_20251010092309_20251010092311_D740A44B +PHISAT-2_L1_000003584_20251010141136_20251010141138_8CE8A4E8 +PHISAT-2_L1_000003585_20251010152549_20251010152551_8EA03D6D +PHISAT-2_L1_000003586_20251010153642_20251010153644_1B523399 +PHISAT-2_L1_000003587_20251010170412_20251010170415_84198DE2 +PHISAT-2_L1_000003588_20251010183403_20251010183405_3A34D43F +PHISAT-2_L1_000003589_20251011134727_20251011134729_489F5E9F +PHISAT-2_L1_000003590_20251011151156_20251011151158_89648C9D +PHISAT-2_L1_000003591_20251011163927_20251011163930_F674304B +PHISAT-2_L1_000003592_20251011181528_20251011181530_8A75A2A5 +PHISAT-2_L1_000003593_20251011211448_20251011211450_EE78ED6F +PHISAT-2_L1_000003594_20251012034347_20251012034349_9FEC03BD +PHISAT-2_L1_000003595_20251012051708_20251012051710_236177FC +PHISAT-2_L1_000003596_20251012065210_20251012065213_F075F5C0 +PHISAT-2_L1_000003597_20251012083631_20251012083633_830A1979 +PHISAT-2_L1_000003599_20251012112948_20251012112950_F0B5D85F +PHISAT-2_L1_000003600_20251013110558_20251013110600_6903F179 +PHISAT-2_L1_000003601_20251013111217_20251013111222_6AF2C7C9 +PHISAT-2_L1_000003602_20251013143704_20251013143706_311504C1 +PHISAT-2_L1_000003603_20251013160114_20251013160116_B9E688B7 +PHISAT-2_L1_000003604_20251013172630_20251013172632_22073951 +PHISAT-2_L1_000003605_20251013185953_20251013185955_B1CB4C64 +PHISAT-2_L1_000003606_20251014025107_20251014025109_EED36FEC +PHISAT-2_L1_000003608_20251014060422_20251014060424_033D8BAE +PHISAT-2_L1_000003609_20251014091104_20251014091106_527421FF +PHISAT-2_L1_000003610_20251014104217_20251014104219_E24ACCCC +PHISAT-2_L1_000003611_20251014134428_20251014134430_9710B597 +PHISAT-2_L1_000003612_20251014141137_20251014141139_F629B4A0 +PHISAT-2_L1_000003613_20251014152428_20251014152431_3EA82ADE +PHISAT-2_L1_000003614_20251014170322_20251014170324_3B873E79 +PHISAT-2_L1_000003615_20251014183722_20251014183724_5AE9C196 +PHISAT-2_L1_000003616_20251014213816_20251014213818_F97D994E +PHISAT-2_L1_000003617_20251015011227_20251015011230_1B10443B +PHISAT-2_L1_000003618_20251015040721_20251015040723_D8B0D4B5 +PHISAT-2_L1_000003619_20251015053831_20251015053833_3ACCB0B4 +PHISAT-2_L1_000003620_20251015072520_20251015072522_E8FD7654 +PHISAT-2_L1_000003623_20251015133916_20251015133918_29FC3A06 +PHISAT-2_L1_000003624_20251015163618_20251015163620_FB2B8978 +PHISAT-2_L1_000003625_20251015181119_20251015181121_3DEA5636 +PHISAT-2_L1_000003626_20251015194259_20251015194301_B0E12B8D +PHISAT-2_L1_000003627_20251015211328_20251015211330_D241C67C +PHISAT-2_L1_000003628_20251016020500_20251016020502_F718EED9 +PHISAT-2_L1_000003629_20251016021939_20251016021941_FA6D94EA +PHISAT-2_L1_000003630_20251016034747_20251016034749_0BE0A275 +PHISAT-2_L1_000003631_20251016051611_20251016051613_EC523582 +PHISAT-2_L1_000003632_20251016064924_20251016064927_104A4426 +PHISAT-2_L1_000003633_20251016083539_20251016083542_A8CB5A07 +PHISAT-2_L1_000003636_20251016112854_20251016112857_C85C81F2 +PHISAT-2_L1_000003638_20251016132051_20251016132054_23AD66CA +PHISAT-2_L1_000003639_20251016161459_20251016161501_863312A8 +PHISAT-2_L1_000003641_20251016191933_20251016191935_D1098400 +PHISAT-2_L1_000003642_20251017002219_20251017002221_ECECD12A +PHISAT-2_L1_000003650_20251021093039_20251021093042_AFADC9BE +PHISAT-2_L1_000003651_20251021110512_20251021110514_8279075D +PHISAT-2_L1_000003652_20251021143413_20251021143415_FD473047 +PHISAT-2_L1_000003653_20251021153940_20251021153942_5EBAECDC +PHISAT-2_L1_000003654_20251021154709_20251021154711_DBCE53B1 +PHISAT-2_L1_000003655_20251021172224_20251021172226_77AF8BE4 +PHISAT-2_L1_000003656_20251021185702_20251021185704_650785F5 +PHISAT-2_L1_000003657_20251022025051_20251022025053_DD2298F2 +PHISAT-2_L1_000003658_20251022042816_20251022042818_4FFCB9D8 +PHISAT-2_L1_000003661_20251022103920_20251022103922_D1B2A91E +PHISAT-2_L1_000003662_20251022121103_20251022121106_9EA60506 +PHISAT-2_L1_000003663_20251022140948_20251022140951_BFF29ADD +PHISAT-2_L1_000003664_20251022152242_20251022152244_70B8819B +PHISAT-2_L1_000003665_20251022170046_20251022170048_7730571C +PHISAT-2_L1_000003666_20251022183414_20251022183416_C8EE5398 +PHISAT-2_L1_000003667_20251023133743_20251023133745_4B4FF835 +PHISAT-2_L1_000003669_20251026012851_20251026012853_A1470557 +PHISAT-2_L1_000003670_20251026025000_20251026025002_F65CEDBF +PHISAT-2_L1_000003671_20251026042717_20251026042719_4D5D9094 +PHISAT-2_L1_000003672_20251026055751_20251026055753_7C805FE0 +PHISAT-2_L1_000003673_20251026073202_20251026073204_51FA0067 +PHISAT-2_L1_000003674_20251026090521_20251026090523_E1CDBD5E +PHISAT-2_L1_000003675_20251026104051_20251026104054_311761B3 +PHISAT-2_L1_000003677_20251027114825_20251027114827_A63AD3CA +PHISAT-2_L1_000003678_20251027151307_20251027151309_A6003281 +PHISAT-2_L1_000003679_20251027163153_20251027163155_B53AE847 +PHISAT-2_L1_000003680_20251027180756_20251027180758_1C1B021F +PHISAT-2_L1_000003681_20251028004457_20251028004459_7A266AD9 +PHISAT-2_L1_000003683_20251028051150_20251028051152_C255FDEC +PHISAT-2_L1_000003684_20251028064544_20251028064546_4124E385 +PHISAT-2_L1_000003685_20251028083414_20251028083417_F293D603 +PHISAT-2_L1_000003686_20251028095036_20251028095039_3BE2D004 +PHISAT-2_L1_000003688_20251028131417_20251028131419_02A6994F +PHISAT-2_L1_000003689_20251028144333_20251028144335_77DEBBC4 +PHISAT-2_L1_000003690_20251028174804_20251028174806_C5BE6D0F +PHISAT-2_L1_000003691_20251028191729_20251028191731_204A5725 +PHISAT-2_L1_000003692_20251029002013_20251029002016_4822A433 +PHISAT-2_L1_000003693_20251029030925_20251029030927_2AB501C3 +PHISAT-2_L1_000003694_20251029044413_20251029044415_913C23BF +PHISAT-2_L1_000003695_20251029061947_20251029061949_759BB905 +PHISAT-2_L1_000003697_20251029092700_20251029092703_8138006A +PHISAT-2_L1_000003698_20251029105629_20251029105632_7CEC1D5F +PHISAT-2_L1_000003699_20251029141848_20251029141851_C002707E +PHISAT-2_L1_000003700_20251029143022_20251029143025_6A6DC3AD +PHISAT-2_L1_000003701_20251029172105_20251029172108_0A47C3A0 +PHISAT-2_L1_000003702_20251029185424_20251029185427_DDEBB6F9 +PHISAT-2_L1_000003703_20251030012533_20251030012536_07C83EDD +PHISAT-2_L1_000003704_20251030024708_20251030024711_B42092B6 +PHISAT-2_L1_000003705_20251030042520_20251030042522_523DEDE0 +PHISAT-2_L1_000003706_20251030055556_20251030055559_AFA2DD75 +PHISAT-2_L1_000003707_20251030090435_20251030090438_9C5F128F +PHISAT-2_L1_000003708_20251030103738_20251030103741_F1617B65 +PHISAT-2_L1_000003709_20251030135754_20251030135757_DABA8F5F +PHISAT-2_L1_000003710_20251030151822_20251030151825_D12687D5 +PHISAT-2_L1_000003711_20251030153406_20251030153409_04F07063 +PHISAT-2_L1_000003712_20251030165349_20251030165352_5DF7680A +PHISAT-2_L1_000003713_20251030183021_20251030183024_ECF2E60F +PHISAT-2_L1_000003714_20251030213151_20251030213154_27D36148 +PHISAT-2_L1_000003715_20251031010154_20251031010157_E59C4E33 +PHISAT-2_L1_000003716_20251031022126_20251031022129_EE420EFF +PHISAT-2_L1_000003717_20251031052754_20251031052756_ECBD5A8A +PHISAT-2_L1_000003718_20251031053629_20251031053632_70F72DC2 +PHISAT-2_L1_000003719_20251031163117_20251031163119_59F9A177 +PHISAT-2_L1_000003721_20251101003823_20251101003825_D05EB2F7 +PHISAT-2_L1_000003722_20251101094618_20251101094620_23F1A00A +PHISAT-2_L1_000003723_20251101112344_20251101112346_B0EE6FF7 +PHISAT-2_L1_000003724_20251101144114_20251101144116_AB1FA6FC +PHISAT-2_L1_000003725_20251101145050_20251101145052_8A529444 +PHISAT-2_L1_000003727_20251101174214_20251101174216_C7354777 +PHISAT-2_L1_000003728_20251101191430_20251101191432_10C7ED20 +PHISAT-2_L1_000003731_20251102030709_20251102030711_4D9F903B +PHISAT-2_L1_000003732_20251102044352_20251102044354_EDB8BA44 +PHISAT-2_L1_000003733_20251102061743_20251102061745_FCEF40C4 +PHISAT-2_L1_000003734_20251102092258_20251102092300_1D7C9B99 +PHISAT-2_L1_000003735_20251102105809_20251102105812_2322337A +PHISAT-2_L1_000003736_20251102122735_20251102122737_05CC05C4 +PHISAT-2_L1_000003737_20251102141851_20251102141853_6D94CABE +PHISAT-2_L1_000003738_20251102154031_20251102154033_95E4F07D +PHISAT-2_L1_000003740_20251102185207_20251102185209_12F7B971 +PHISAT-2_L1_000003741_20251103012642_20251103012644_A34FB69A +PHISAT-2_L1_000003743_20251103041716_20251103041718_2F4B9EDF +PHISAT-2_L1_000003744_20251103055219_20251103055221_9023164B +PHISAT-2_L1_000003746_20251103090214_20251103090216_9F77B9FC +PHISAT-2_L1_000003747_20251103103217_20251103103219_7532F7B3 +PHISAT-2_L1_000003748_20251103140249_20251103140251_F9F93DCD +PHISAT-2_L1_000003749_20251103152900_20251103152902_DD3F01D1 +PHISAT-2_L1_000003750_20251103165432_20251103165434_87293828 +PHISAT-2_L1_000003752_20251104133533_20251104133535_98B1CFE6 +PHISAT-2_L1_000003753_20251104145049_20251104145051_DCAF27A2 +PHISAT-2_L1_000003755_20251104162645_20251104162647_4F13F1CE +PHISAT-2_L1_000003756_20251104180318_20251104180321_127359AA +PHISAT-2_L1_000003757_20251105003536_20251105003538_A02A0465 +PHISAT-2_L1_000003758_20251105020955_20251105020957_AA3A7205 +PHISAT-2_L1_000003759_20251105032908_20251105032910_F43A30AE +PHISAT-2_L1_000003760_20251105050742_20251105050744_419FF903 +PHISAT-2_L1_000003762_20251105094527_20251105094530_54321607 +PHISAT-2_L1_000003763_20251105112642_20251105112645_0D420C9A +PHISAT-2_L1_000003764_20251105143741_20251105143743_517B92E6 +PHISAT-2_L1_000003765_20251105144854_20251105144856_4EFAE7A7 +PHISAT-2_L1_000003766_20251105160332_20251105160334_E93BC7DB +PHISAT-2_L1_000003769_20251105191124_20251105191127_8651ED8D +PHISAT-2_L1_000003771_20251106030820_20251106030822_A86A4AC0 +PHISAT-2_L1_000003772_20251106044036_20251106044039_133BE617 +PHISAT-2_L1_000003773_20251106061712_20251106061714_EF025190 +PHISAT-2_L1_000003774_20251106074931_20251106074933_0682E712 +PHISAT-2_L1_000003775_20251106092751_20251106092754_D2BAC617 +PHISAT-2_L1_000003776_20251106105453_20251106105457_99139A10 +PHISAT-2_L1_000003777_20251106135707_20251106135709_EB6D3F00 +PHISAT-2_L1_000003780_20251106161637_20251106161647_80ED2D95 +PHISAT-2_L1_000003781_20251106171608_20251106171611_73DB42DE +PHISAT-2_L1_000003782_20251106184943_20251106184945_DEBB0A0E +PHISAT-2_L1_000003783_20251107024621_20251107024623_F4EC0A41 +PHISAT-2_L1_000003784_20251107042004_20251107042006_8C01336D +PHISAT-2_L1_000003785_20251107055153_20251107055155_3252E896 +PHISAT-2_L1_000003786_20251107072641_20251107072644_AD24772B +PHISAT-2_L1_000003788_20251107090515_20251107090517_5E3C679D +PHISAT-2_L1_000003789_20251107102938_20251107102941_11B19E64 +PHISAT-2_L1_000003790_20251107164819_20251107164821_227113FF +PHISAT-2_L1_000003791_20251107182615_20251107182617_BECC21BC +PHISAT-2_L1_000003793_20251108005636_20251108005639_8F6C2B55 +PHISAT-2_L1_000003794_20251108023422_20251108023425_9110492B +PHISAT-2_L1_000003795_20251108034835_20251108034837_467C5010 +PHISAT-2_L1_000003796_20251108035835_20251108035837_884E36F1 +PHISAT-2_L1_000003797_20251108053128_20251108053130_398CA422 +PHISAT-2_L1_000003799_20251108070250_20251108070252_A2F542B2 +PHISAT-2_L1_000003800_20251108074303_20251108074313_6FCCE7F7 +PHISAT-2_L1_000003801_20251108100317_20251108100319_B3344DC2 +PHISAT-2_L1_000003802_20251108114157_20251108114200_F448F4F1 +PHISAT-2_L1_000003803_20251108150605_20251108150615_C2AAD222 +PHISAT-2_L1_000003804_20251108151122_20251108151124_B259F608 +PHISAT-2_L1_000003805_20251108162559_20251108162601_E2A77524 +PHISAT-2_L1_000003806_20251108175935_20251108175937_842AA704 +PHISAT-2_L1_000003807_20251108193105_20251108193107_E2198219 +PHISAT-2_L1_000003808_20251109020718_20251109020721_DB8CF181 +PHISAT-2_L1_000003809_20251109033503_20251109033505_E9CDC017 +PHISAT-2_L1_000003810_20251109050433_20251109050435_760C806E +PHISAT-2_L1_000003811_20251109054446_20251109054456_63343DB9 +PHISAT-2_L1_000003812_20251109063733_20251109063735_453B70EC +PHISAT-2_L1_000003813_20251109093928_20251109093931_8CAA1E16 +PHISAT-2_L1_000003814_20251109155824_20251109155826_5815A7DB +PHISAT-2_L1_000003815_20251109163746_20251109163756_BA4ECB11 +PHISAT-2_L1_000003816_20251109173519_20251109173521_5B6B5568 +PHISAT-2_L1_000003817_20251109190944_20251109190946_87103991 +PHISAT-2_L1_000003818_20251110001002_20251110001005_37822128 +PHISAT-2_L1_000003819_20251110002258_20251110002308_3473F2E4 +PHISAT-2_L1_000003820_20251110014247_20251110014249_F396B680 +PHISAT-2_L1_000003821_20251110030044_20251110030046_073365A4 +PHISAT-2_L1_000003822_20251110044017_20251110044019_1361CC45 +PHISAT-2_L1_000003823_20251110061421_20251110061423_1877079D +PHISAT-2_L1_000003824_20251110065443_20251110065453_E5F96BC2 +PHISAT-2_L1_000003825_20251110091721_20251110091723_22B022F9 +PHISAT-2_L1_000003826_20251110105155_20251110105157_35C34EE5 +PHISAT-2_L1_000003827_20251110142111_20251110142114_EE3622D6 +PHISAT-2_L1_000003828_20251110153225_20251110153227_480FF306 +PHISAT-2_L1_000003829_20251110162855_20251110162905_8AC11518 +PHISAT-2_L1_000003830_20251110171150_20251110171152_EC7C2B28 +PHISAT-2_L1_000003833_20251113111113_20251113111115_5DE60C29 +PHISAT-2_L1_000003834_20251115011630_20251115011640_3BDC1FA8 +PHISAT-2_L1_000003835_20251115041454_20251115041456_34B647EB +PHISAT-2_L1_000003836_20251115071915_20251115071917_01BE7D06 +PHISAT-2_L1_000003839_20251115103314_20251115103316_3ABA0E50 +PHISAT-2_L1_000003840_20251115151633_20251115151635_E3E798C9 +PHISAT-2_L1_000003841_20251115164329_20251115164331_F049AB1D +PHISAT-2_L1_000003842_20251116022426_20251116022428_3425976A +PHISAT-2_L1_000003843_20251116034741_20251116034743_1631C2F9 +PHISAT-2_L1_000003844_20251116052027_20251116052029_DD615B44 +PHISAT-2_L1_000003845_20251116145913_20251116145915_6BB3E742 +PHISAT-2_L1_000003846_20251116161618_20251116161620_B040D492 +PHISAT-2_L1_000003847_20251117014434_20251117014436_DE0662D5 +PHISAT-2_L1_000003849_20251117080855_20251117080857_6FDE8BE9 +PHISAT-2_L1_000003850_20251117093536_20251117093538_FC398971 +PHISAT-2_L1_000003851_20251117110933_20251117110936_020E4129 +PHISAT-2_L1_000003853_20251118141306_20251118141314_422864BE +PHISAT-2_L1_000003854_20251118170756_20251118170758_630EB099 +PHISAT-2_L1_000003855_20251119010939_20251119010942_ABFC342A +PHISAT-2_L1_000003856_20251119024552_20251119024554_350CC661 +PHISAT-2_L1_000003857_20251119054310_20251119054312_84CBFFAE +PHISAT-2_L1_000003858_20251119071508_20251119071511_9B807C9E +PHISAT-2_L1_000003859_20251119084817_20251119084819_02F16B81 +PHISAT-2_L1_000003860_20251119101828_20251119101831_173A1ECE +PHISAT-2_L1_000003861_20251119114950_20251119114953_054C8F38 +PHISAT-2_L1_000003862_20251119134602_20251119134604_7057AF63 +PHISAT-2_L1_000003863_20251119151050_20251119151052_C55830FF +PHISAT-2_L1_000003864_20251119163934_20251119163937_BD829284 +PHISAT-2_L1_000003865_20251119181145_20251119181147_8B65A705 +PHISAT-2_L1_000003866_20251119211419_20251119211421_3D038A8F +PHISAT-2_L1_000003867_20251120004443_20251120004445_882C686A +PHISAT-2_L1_000003868_20251120022016_20251120022018_A7DEFD4A +PHISAT-2_L1_000003869_20251120034508_20251120034510_EDDA5995 +PHISAT-2_L1_000003871_20251120065026_20251120065028_C345CAFF +PHISAT-2_L1_000003872_20251120082241_20251120082244_9901C3B8 +PHISAT-2_L1_000003873_20251120095503_20251120095506_B51C049A +PHISAT-2_L1_000003874_20251120113028_20251120113030_AE814E0B +PHISAT-2_L1_000003875_20251120132015_20251120132017_83776E7C +PHISAT-2_L1_000003876_20251120145937_20251120145940_9BE81237 +PHISAT-2_L1_000003877_20251120161622_20251120161624_17447E6B +PHISAT-2_L1_000003878_20251120191902_20251120191904_2A844B90 +PHISAT-2_L1_000003879_20251121002509_20251121002512_460D6231 +PHISAT-2_L1_000003880_20251121031427_20251121031429_9E328B3C +PHISAT-2_L1_000003881_20251121045202_20251121045204_10275162 +PHISAT-2_L1_000003882_20251121062516_20251121062518_2A90D37B +PHISAT-2_L1_000003883_20251121075639_20251121075642_DB4D4F27 +PHISAT-2_L1_000003884_20251121093036_20251121093039_176CD5F9 +PHISAT-2_L1_000003885_20251121110424_20251121110426_E6646091 +PHISAT-2_L1_000003886_20251121172739_20251121172741_E407FB8C +PHISAT-2_L1_000003887_20251121185805_20251121185807_99C8C2DC +PHISAT-2_L1_000003888_20251122025039_20251122025041_AB138D32 +PHISAT-2_L1_000003889_20251122042848_20251122042851_432B9A8C +PHISAT-2_L1_000003891_20251122073323_20251122073325_5EBC3C8C +PHISAT-2_L1_000003892_20251122090527_20251122090530_47DB4914 +PHISAT-2_L1_000003893_20251122103850_20251122103853_AA41ACAF +PHISAT-2_L1_000003894_20251122121040_20251122121043_9B7A6926 +PHISAT-2_L1_000003895_20251122140822_20251122140825_553A06D6 +PHISAT-2_L1_000003896_20251122153717_20251122153720_5023A80C +PHISAT-2_L1_000003897_20251122170314_20251122170316_0B0210BC +PHISAT-2_L1_000003898_20251122183119_20251122183122_E747AA06 +PHISAT-2_L1_000003900_20251123010816_20251123010819_655CA7B2 +PHISAT-2_L1_000003902_20251123023929_20251123023932_FBEB4086 +PHISAT-2_L1_000003903_20251123040446_20251123040449_16FB3C72 +PHISAT-2_L1_000003904_20251123053709_20251123053712_DCF4C025 +PHISAT-2_L1_000003906_20251123101345_20251123101348_7E1BD0F6 +PHISAT-2_L1_000003907_20251123114505_20251123114507_EED97395 +PHISAT-2_L1_000003908_20251123134001_20251123134004_1EA5876C +PHISAT-2_L1_000003909_20251123163127_20251123163130_6627A1A4 +PHISAT-2_L1_000003910_20251123180659_20251123180702_BDDB2A2F +PHISAT-2_L1_000003911_20251123212035_20251123212038_372F03AF +PHISAT-2_L1_000003912_20251124004447_20251124004450_E747EED0 +PHISAT-2_L1_000003913_20251124034102_20251124034105_761E2A4B +PHISAT-2_L1_000003914_20251124051029_20251124051032_07E636C4 +PHISAT-2_L1_000003915_20251124064532_20251124064535_3ECFCD9A +PHISAT-2_L1_000003916_20251124081732_20251124081735_B6650F22 +PHISAT-2_L1_000003917_20251124095016_20251124095018_48B33D5E +PHISAT-2_L1_000003918_20251124111914_20251124111917_738D0B55 +PHISAT-2_L1_000003919_20251124145153_20251124145156_72F15BFB +PHISAT-2_L1_000003920_20251124160733_20251124160736_51669F0A +PHISAT-2_L1_000003921_20251124174351_20251124174353_C601648C +PHISAT-2_L1_000003922_20251124191708_20251124191711_7A7771C3 +PHISAT-2_L1_000003923_20251124204531_20251124204534_65329215 +PHISAT-2_L1_000003925_20251125030843_20251125030846_B0055A9C +PHISAT-2_L1_000003926_20251125044710_20251125044713_D82E08AC +PHISAT-2_L1_000003927_20251125062045_20251125062048_A5933608 +PHISAT-2_L1_000003928_20251125075335_20251125075338_8CAB240C +PHISAT-2_L1_000003929_20251125105931_20251125105934_BC7AB926 +PHISAT-2_L1_000003930_20251125140046_20251125140049_2E503CE9 +PHISAT-2_L1_000003931_20251125142430_20251125142432_DC9F66AB +PHISAT-2_L1_000003932_20251125154046_20251125154049_DB8586B8 +PHISAT-2_L1_000003933_20251125155408_20251125155411_34253B1F +PHISAT-2_L1_000003934_20251125185317_20251125185320_5A379897 +PHISAT-2_L1_000003935_20251126012806_20251126012809_83F56760 +PHISAT-2_L1_000003936_20251126024605_20251126024608_06D21416 +PHISAT-2_L1_000003937_20251126042347_20251126042350_308A3256 +PHISAT-2_L1_000003938_20251126055307_20251126055310_D39C89CB +PHISAT-2_L1_000003939_20251126103353_20251126103356_E2D04F47 +PHISAT-2_L1_000003940_20251126120533_20251126120536_D2FBCE7D +PHISAT-2_L1_000003941_20251126140326_20251126140328_DA32E2C0 +PHISAT-2_L1_000003942_20251126165314_20251126165316_EFDC9256 +PHISAT-2_L1_000003943_20251126182845_20251126182848_E8CBED80 +PHISAT-2_L1_000003944_20251127005946_20251127005948_10D1BD67 +PHISAT-2_L1_000003945_20251127035901_20251127035903_BB9A66D6 +PHISAT-2_L1_000003946_20251127053227_20251127053229_3C9F88BE +PHISAT-2_L1_000003947_20251127070544_20251127070547_3A3E30F0 +PHISAT-2_L1_000003948_20251127084639_20251127084641_BA7E54ED +PHISAT-2_L1_000003949_20251127100819_20251127100821_2CD69D9E +PHISAT-2_L1_000003950_20251127114450_20251127114453_313B9B95 +PHISAT-2_L1_000003951_20251127133559_20251127133601_687F1A12 +PHISAT-2_L1_000003952_20251127163003_20251127163005_278A2BD5 +PHISAT-2_L1_000003953_20251127180159_20251127180201_FCEF4869 +PHISAT-2_L1_000003954_20251127193329_20251127193331_4A4D5B12 +PHISAT-2_L1_000003955_20251128081201_20251128081204_96BEC449 +PHISAT-2_L1_000003956_20251128094123_20251128094126_C27D3C36 +PHISAT-2_L1_000003957_20251128112041_20251128112043_C0B7436C +PHISAT-2_L1_000003959_20251128144656_20251128144658_D7EB4936 +PHISAT-2_L1_000003960_20251128160228_20251128160230_849A7805 +PHISAT-2_L1_000003961_20251128173512_20251128173514_104A9411 +PHISAT-2_L1_000003962_20251128191157_20251128191159_E0BA3AEF +PHISAT-2_L1_000003963_20251129001351_20251129001353_48286EB5 +PHISAT-2_L1_000003964_20251129014301_20251129014304_410A92A2 +PHISAT-2_L1_000003965_20251129030337_20251129030340_F81DF782 +PHISAT-2_L1_000003966_20251129044206_20251129044209_CC171CC6 +PHISAT-2_L1_000003967_20251129061000_20251129061002_D5DAC5D4 +PHISAT-2_L1_000003968_20251129074827_20251129074829_462898D9 +PHISAT-2_L1_000003969_20251129092138_20251129092140_0B3A348D +PHISAT-2_L1_000003970_20251129105424_20251129105426_FD3AEC4B +PHISAT-2_L1_000003971_20251129122441_20251129122443_7D3B4059 +PHISAT-2_L1_000003972_20251129142033_20251129142035_BA803988 +PHISAT-2_L1_000003973_20251129154752_20251129154754_7840EB7A +PHISAT-2_L1_000003974_20251129161519_20251129161529_556E38E9 +PHISAT-2_L1_000003975_20251129184724_20251129184726_BD87A42E +PHISAT-2_L1_000003976_20251130012213_20251130012216_A4C09F2F +PHISAT-2_L1_000003977_20251130023854_20251130023856_0620E2D1 +PHISAT-2_L1_000003978_20251130041840_20251130041842_E1CC08EB +PHISAT-2_L1_000003979_20251130054940_20251130054942_5B26A6EF +PHISAT-2_L1_000003980_20251130073600_20251130073602_CDA2949C +PHISAT-2_L1_000003981_20251130085748_20251130085750_A9ACABF1 +PHISAT-2_L1_000003983_20251130115936_20251130115938_923EDE22 +PHISAT-2_L1_000003984_20251130152300_20251130152302_87A1C562 +PHISAT-2_L1_000003985_20251201113933_20251201113935_45FBCC7A +PHISAT-2_L1_000003986_20251202003430_20251202003433_4A90D5F3 +PHISAT-2_L1_000003987_20251202004425_20251202004435_71EEF3EB +PHISAT-2_L1_000003989_20251202050037_20251202050039_FE1A5804 +PHISAT-2_L1_000003990_20251202063500_20251202063502_2AFA379C +PHISAT-2_L1_000003991_20251202080717_20251202080720_B0EA86D4 +PHISAT-2_L1_000003993_20251202111503_20251202111505_F13C82EE +PHISAT-2_L1_000003994_20251202130115_20251202130117_98CA1A5A +PHISAT-2_L1_000003995_20251202144519_20251202144522_7984098D +PHISAT-2_L1_000003996_20251202155704_20251202155706_68E381BE +PHISAT-2_L1_000003997_20251202173405_20251202173408_8A771C1F +PHISAT-2_L1_000003998_20251203000643_20251203000646_91FC492F +PHISAT-2_L1_000003999_20251203001939_20251203001949_D9A69989 +PHISAT-2_L1_000004000_20251203025843_20251203025845_25EFBC84 +PHISAT-2_L1_000004001_20251203043711_20251203043713_BA71CA51 +PHISAT-2_L1_000004002_20251203061104_20251203061107_C040DBEF +PHISAT-2_L1_000004003_20251203073939_20251203073941_18B1C1DF +PHISAT-2_L1_000004004_20251203093011_20251203093013_FA6C4910 +PHISAT-2_L1_000004005_20251203104526_20251203104528_DAEF8529 +PHISAT-2_L1_000004006_20251203141730_20251203141732_26F28B0D +PHISAT-2_L1_000004007_20251203184156_20251203184158_B5C8B348 +PHISAT-2_L1_000004010_20251204041520_20251204041522_7C4FD7E4 +PHISAT-2_L1_000004011_20251204054538_20251204054540_849FBF99 +PHISAT-2_L1_000004012_20251204071527_20251204071529_7060C7DC +PHISAT-2_L1_000004013_20251204085225_20251204085227_DA030DA2 +PHISAT-2_L1_000004015_20251204115455_20251204115458_3E32ACC7 +PHISAT-2_L1_000004016_20251204135150_20251204135152_E1001CA7 +PHISAT-2_L1_000004017_20251204150454_20251204150456_7156412B +PHISAT-2_L1_000004021_20251205130125_20251205130128_1538906D +PHISAT-2_L1_000004022_20251205132421_20251205132423_EADBA9EB +PHISAT-2_L1_000004023_20251205145846_20251205145856_04BE90B4 +PHISAT-2_L1_000004024_20251205162012_20251205162014_C5FDE69C +PHISAT-2_L1_000004025_20251205175204_20251205175206_821BF37B +PHISAT-2_L1_000004026_20251206002455_20251206002457_2A8063DA +PHISAT-2_L1_000004027_20251206003843_20251206003853_66FD7656 +PHISAT-2_L1_000004028_20251206015800_20251206015802_89B3D6AD +PHISAT-2_L1_000004029_20251206032113_20251206032115_B7C19460 +PHISAT-2_L1_000004030_20251206045550_20251206045552_D14FF7A3 +PHISAT-2_L1_000004031_20251206062809_20251206062811_0E230FB4 +PHISAT-2_L1_000004032_20251206080133_20251206080135_FF2DEA88 +PHISAT-2_L1_000004033_20251206093702_20251206093704_355B8954 +PHISAT-2_L1_000004034_20251206110533_20251206110535_6FD6D249 +PHISAT-2_L1_000004036_20251207025400_20251207025402_5A55C14E +PHISAT-2_L1_000004037_20251207042547_20251207042551_7D2B2F6C +PHISAT-2_L1_000004038_20251207043138_20251207043140_1694C40A +PHISAT-2_L1_000004039_20251207060511_20251207060513_087DE301 +PHISAT-2_L1_000004040_20251207073642_20251207073644_CBCAC1FF +PHISAT-2_L1_000004041_20251207090845_20251207090847_B5902CCE +PHISAT-2_L1_000004042_20251207092545_20251207092549_743702B0 +PHISAT-2_L1_000004043_20251207104413_20251207104416_13C6A623 +PHISAT-2_L1_000004044_20251207141137_20251207141140_793E26F3 +PHISAT-2_L1_000004045_20251207152452_20251207152455_7D5CE0EF +PHISAT-2_L1_000004046_20251207153746_20251207153749_04FF7427 +PHISAT-2_L1_000004047_20251207170558_20251207170601_8188D896 +PHISAT-2_L1_000004048_20251207183635_20251207183637_D76EA687 +PHISAT-2_L1_000004049_20251208011122_20251208011124_491A5078 +PHISAT-2_L1_000004050_20251208022541_20251208022544_90E54F22 +PHISAT-2_L1_000004051_20251208040749_20251208040752_5D13D94C +PHISAT-2_L1_000004052_20251208054011_20251208054014_E16B44E1 +PHISAT-2_L1_000004053_20251208134520_20251208134523_51DDCBE7 +PHISAT-2_L1_000004054_20251208163428_20251208163431_477AC9D8 +PHISAT-2_L1_000004055_20251208180658_20251208180701_B238261D +PHISAT-2_L1_000004060_20251209161113_20251209161116_39AF57C9 +PHISAT-2_L1_000004062_20251209174604_20251209174607_5F9D8C75 +PHISAT-2_L1_000004064_20251209191938_20251209191941_F6D252E5 +PHISAT-2_L1_000004065_20251210003239_20251210003249_12F56884 +PHISAT-2_L1_000004066_20251210031021_20251210031024_D47D4C7D +PHISAT-2_L1_000004067_20251210044946_20251210044948_51D0D177 +PHISAT-2_L1_000004068_20251210054317_20251210054327_451BB5CC +PHISAT-2_L1_000004069_20251210062147_20251210062150_95E04A3A +PHISAT-2_L1_000004070_20251210070412_20251210070422_718D853A +PHISAT-2_L1_000004071_20251210075555_20251210075557_C25C05DD +PHISAT-2_L1_000004072_20251210092828_20251210092830_C7B87E2D +PHISAT-2_L1_000004073_20251210110000_20251210110002_8C8114E6 +PHISAT-2_L1_000004074_20251211120741_20251211120743_F9AAB81D +PHISAT-2_L1_000004075_20251211140520_20251211140523_D4D24A28 +PHISAT-2_L1_000004076_20251211152940_20251211152942_CB4C9F8D +PHISAT-2_L1_000004077_20251211161305_20251211161315_6945B458 +PHISAT-2_L1_000004078_20251213064151_20251213064154_54787FFA +PHISAT-2_L1_000004079_20251214001438_20251214001440_BF1200DA +PHISAT-2_L1_000004080_20251214002611_20251214002621_379EBBE3 +PHISAT-2_L1_000004081_20251214030506_20251214030508_3B2E85ED +PHISAT-2_L1_000004082_20251214044310_20251214044312_9CB88F11 +PHISAT-2_L1_000004083_20251214061709_20251214061712_5F8A6BCF +PHISAT-2_L1_000004084_20251214065743_20251214065753_439DA3E8 +PHISAT-2_L1_000004085_20251214074910_20251214074912_6109F00D +PHISAT-2_L1_000004086_20251214105521_20251214105524_3F3AE40F +PHISAT-2_L1_000004087_20251214122417_20251214122420_DC68DF9D +PHISAT-2_L1_000004088_20251214142023_20251214142026_F1418062 +PHISAT-2_L1_000004089_20251214153704_20251214153707_3057EFC8 +PHISAT-2_L1_000004090_20251214154815_20251214154818_BDF24F28 +PHISAT-2_L1_000004091_20251214163134_20251214163144_373BD6E2 +PHISAT-2_L1_000004092_20251214171343_20251214171345_FA454ADA +PHISAT-2_L1_000004093_20251214184911_20251214184913_7FE9BB17 +PHISAT-2_L1_000004094_20251215023937_20251215023939_89A50BB2 +PHISAT-2_L1_000004095_20251215041911_20251215041913_EA58F9D4 +PHISAT-2_L1_000004096_20251215055123_20251215055125_76A33D69 +PHISAT-2_L1_000004097_20251215063233_20251215063243_6AD0AB4A +PHISAT-2_L1_000004098_20251215072355_20251215072357_B0A029B4 +PHISAT-2_L1_000004099_20251215085418_20251215085421_73E6795D +PHISAT-2_L1_000004100_20251215090424_20251215090427_14C78F06 +PHISAT-2_L1_000004101_20251215103010_20251215103012_DB5EB875 +PHISAT-2_L1_000004102_20251215120146_20251215120149_137F2523 +PHISAT-2_L1_000004103_20251215135038_20251215135040_0F1FFB26 +PHISAT-2_L1_000004104_20251215173954_20251215174004_375CF9A2 +PHISAT-2_L1_000004105_20251215182403_20251215182405_5F55C31B +PHISAT-2_L1_000004106_20251216100611_20251216100613_567D0A3B +PHISAT-2_L1_000004107_20251216100615_20251216100618_B239ADE8 +PHISAT-2_L1_000004111_20251216130716_20251216130719_0C88F021 +PHISAT-2_L1_000004113_20251216132522_20251216132525_45CF0E85 +PHISAT-2_L1_000004115_20251216150728_20251216150731_9305BA3D +PHISAT-2_L1_000004120_20251217094004_20251217094007_9683DB0E +PHISAT-2_L1_000004121_20251217111152_20251217111154_098A9E36 +PHISAT-2_L1_000004122_20251217130104_20251217130106_AA7CD3EB +PHISAT-2_L1_000004123_20251217143904_20251217143906_C49CE172 +PHISAT-2_L1_000004124_20251217155626_20251217155628_0F25B029 +PHISAT-2_L1_000004125_20251217164952_20251217165002_AA7A724D +PHISAT-2_L1_000004126_20251217173203_20251217173205_CE47BA9F +PHISAT-2_L1_000004127_20251217190700_20251217190702_CB466E59 +PHISAT-2_L1_000004128_20251218025739_20251218025741_59AECA41 +PHISAT-2_L1_000004129_20251218043652_20251218043654_F2510242 +PHISAT-2_L1_000004130_20251218061034_20251218061036_B3844A59 +PHISAT-2_L1_000004131_20251218065056_20251218065106_ADF93E9B +PHISAT-2_L1_000004132_20251218074239_20251218074242_CB000267 +PHISAT-2_L1_000004133_20251218092153_20251218092155_8D609769 +PHISAT-2_L1_000004134_20251218093116_20251218093120_9CF673A4 +PHISAT-2_L1_000004135_20251218104431_20251218104434_FF102546 +PHISAT-2_L1_000004136_20251218141659_20251218141701_B6A0D896 +PHISAT-2_L1_000004137_20251218153730_20251218153732_EDDFCA83 +PHISAT-2_L1_000004138_20251218162447_20251218162457_23D09285 +PHISAT-2_L1_000004139_20251218184127_20251218184129_B1C775ED +PHISAT-2_L1_000004140_20251218214318_20251218214321_1FA21680 +PHISAT-2_L1_000004141_20251219011657_20251219011700_8A941E4B +PHISAT-2_L1_000004142_20251219012821_20251219012831_19275235 +PHISAT-2_L1_000004143_20251219023239_20251219023241_9F43EB1F +PHISAT-2_L1_000004144_20251219041240_20251219041242_EB74C780 +PHISAT-2_L1_000004145_20251219054359_20251219054401_4DA804FE +PHISAT-2_L1_000004146_20251219115355_20251219115357_9EFC400C +PHISAT-2_L1_000004147_20251219135621_20251219135624_57612D8D +PHISAT-2_L1_000004148_20251219150346_20251219150348_E08A25F6 +PHISAT-2_L1_000004149_20251219164747_20251219164749_25D67D03 +PHISAT-2_L1_000004150_20251219173306_20251219173316_3976DCE0 +PHISAT-2_L1_000004151_20251219181801_20251219181803_BA7C1777 +PHISAT-2_L1_000004152_20251219211821_20251219211823_DB5393AB +PHISAT-2_L1_000004153_20251220010301_20251220010311_811F7A9E +PHISAT-2_L1_000004154_20251220022306_20251220022308_A1D4D3A1 +PHISAT-2_L1_000004155_20251220065325_20251220065328_A7F5E522 +PHISAT-2_L1_000004156_20251220112935_20251220112938_34E836B6 +PHISAT-2_L1_000004157_20251220114047_20251220114049_8AE54127 +PHISAT-2_L1_000004158_20251220132320_20251220132322_8E0FEFAE +PHISAT-2_L1_000004159_20251220161956_20251220161958_14DEE9DE +PHISAT-2_L1_000004160_20251220170802_20251220170812_66CD41C7 +PHISAT-2_L1_000004161_20251220175101_20251220175103_B1DE297B +PHISAT-2_L1_000004162_20251220192350_20251220192352_10D6D511 +PHISAT-2_L1_000004167_20251223114622_20251223114625_B0248897 +PHISAT-2_L1_000004168_20251223134156_20251223134158_BF7BF445 +PHISAT-2_L1_000004169_20251223151444_20251223151446_41BB5AEB +PHISAT-2_L1_000004170_20251224034045_20251224034047_D47A27E1 +PHISAT-2_L1_000004171_20251224051403_20251224051405_96ABB059 +PHISAT-2_L1_000004172_20251224064617_20251224064620_1F193ECB +PHISAT-2_L1_000004173_20251224082208_20251224082211_03121D91 +PHISAT-2_L1_000004174_20251224095057_20251224095100_55C454F2 +PHISAT-2_L1_000004176_20251224131615_20251224131617_26CC1794 +PHISAT-2_L1_000004177_20251224145214_20251224145216_61927746 +PHISAT-2_L1_000004178_20251224160837_20251224160839_5E986E9A +PHISAT-2_L1_000004179_20251225142744_20251225142746_442435DD +PHISAT-2_L1_000004181_20251225155028_20251225155030_F4A2407A +PHISAT-2_L1_000004182_20251225171952_20251225171954_1390CBC2 +PHISAT-2_L1_000004183_20251225171956_20251225171959_7EC1E6FD +PHISAT-2_L1_000004184_20251225185152_20251225185156_5DDCB101 +PHISAT-2_L1_000004185_20251225185157_20251225185201_2D37C467 +PHISAT-2_L1_000004186_20251226000506_20251226000516_BAF1C13D +PHISAT-2_L1_000004187_20251226012349_20251226012351_63CF67E1 +PHISAT-2_L1_000004188_20251226024308_20251226024310_291E7690 +PHISAT-2_L1_000004189_20251226042330_20251226042332_F8767574 +PHISAT-2_L1_000004190_20251226055529_20251226055531_071EE2E4 +PHISAT-2_L1_000004191_20251226085856_20251226085858_4037776E +PHISAT-2_L1_000004192_20251226103252_20251226103254_C343C5B4 +PHISAT-2_L1_000004193_20251226120448_20251226120450_E8E349BB +PHISAT-2_L1_000004194_20251226135439_20251226135441_42A6594D +PHISAT-2_L1_000004195_20251226152605_20251226152607_6327B900 +PHISAT-2_L1_000004196_20251226165324_20251226165326_8F93DE27 +PHISAT-2_L1_000004197_20251226232516_20251226232518_6FE5EEAA +PHISAT-2_L1_000004198_20251227005847_20251227005849_56F3393C +PHISAT-2_L1_000004199_20251227005851_20251227005854_57DA4313 +PHISAT-2_L1_000004201_20251227011407_20251227011417_088C2C7D +PHISAT-2_L1_000004205_20251227035141_20251227035146_D6FEF013 +PHISAT-2_L1_000004207_20251227035743_20251227035746_0F8D6C2E +PHISAT-2_L1_000004209_20251227070447_20251227070450_4C068151 +PHISAT-2_L1_000004211_20251227084532_20251227084535_F30ACB33 +PHISAT-2_L1_000004212_20251227133428_20251227133430_FE64A6BE +PHISAT-2_L1_000004213_20251227133432_20251227133435_4759CB43 +PHISAT-2_L1_000004215_20251227151117_20251227151120_EF6D6464 +PHISAT-2_L1_000004217_20251227162849_20251227162852_CE1B71B9 +PHISAT-2_L1_000004219_20251227175934_20251227175937_3488A682 +PHISAT-2_L1_000004220_20251227193213_20251227193216_8416CBC9 +PHISAT-2_L1_000004221_20251227193216_20251227193219_75EB759A +PHISAT-2_L1_000004223_20251227210319_20251227210322_60BB6DE8 +PHISAT-2_L1_000004224_20251228004826_20251228004836_AC7BF2FE +PHISAT-2_L1_000004225_20251228020842_20251228020845_A8E464C5 +PHISAT-2_L1_000004227_20251228050528_20251228050530_5D1B7440 +PHISAT-2_L1_000004228_20251228063849_20251228063851_C6DF0750 +PHISAT-2_L1_000004229_20251228095014_20251228095017_EF8B9E45 +PHISAT-2_L1_000004230_20251228111633_20251228111636_8DFC7059 +PHISAT-2_L1_000004231_20251228130532_20251228130534_A3E0CA26 +PHISAT-2_L1_000004232_20251228141813_20251228141815_BDE9D47F +PHISAT-2_L1_000004233_20251228144845_20251228144848_FCEB9A32 +PHISAT-2_L1_000004234_20251228190947_20251228190949_FD424D24 +PHISAT-2_L1_000004235_20251229002257_20251229002307_D469E6D1 +PHISAT-2_L1_000004236_20251229014114_20251229014116_EBA78163 +PHISAT-2_L1_000004237_20251229030058_20251229030100_AF899D8A +PHISAT-2_L1_000004238_20251229043658_20251229043700_85D7A3C5 +PHISAT-2_L1_000004239_20251229061357_20251229061359_D7DFEEB3 +PHISAT-2_L1_000004240_20251229074558_20251229074601_7C544359 +PHISAT-2_L1_000004241_20251229091743_20251229091746_541EFD08 +PHISAT-2_L1_000004242_20251229105124_20251229105128_C2FDB915 +PHISAT-2_L1_000004243_20251229110105_20251229110107_8CA1BCCC +PHISAT-2_L1_000004246_20251229142147_20251229142150_7786BCD4 +PHISAT-2_L1_000004248_20251229170845_20251229170848_C46A2617 +PHISAT-2_L1_000004250_20251229184539_20251229184542_A6D82786 +PHISAT-2_L1_000004252_20251229214644_20251229214647_C1102858 +PHISAT-2_L1_000004253_20251231113250_20251231113252_60D211F8 +PHISAT-2_L1_000004254_20251231162022_20251231162024_600C1230 +PHISAT-2_L1_000004255_20251231175359_20251231175401_BB004E45 +PHISAT-2_L1_000004256_20251231192443_20251231192445_FA1D2BCF +PHISAT-2_L1_000004257_20260101002959_20260101003001_A0303C68 +PHISAT-2_L1_000004258_20260101014523_20260101014525_40BF73FF +PHISAT-2_L1_000004259_20260101032307_20260101032309_BFA1E6FF +PHISAT-2_L1_000004260_20260101045733_20260101045735_EA9CB9A2 +PHISAT-2_L1_000004261_20260101063104_20260101063107_A0ABB9C8 +PHISAT-2_L1_000004262_20260101080322_20260101080324_4C86A226 +PHISAT-2_L1_000004263_20260101093611_20260101093613_B150C32F +PHISAT-2_L1_000004265_20260101144248_20260101144251_AAB4EDC2 +PHISAT-2_L1_000004266_20260101155215_20260101155218_1AD3475A +PHISAT-2_L1_000004267_20260101172904_20260101172906_E444760D +PHISAT-2_L1_000004268_20260101190018_20260101190020_AC77D90C +PHISAT-2_L1_000004269_20260102025256_20260102025258_B79FA884 +PHISAT-2_L1_000004270_20260102042700_20260102042704_4F87DDD7 +PHISAT-2_L1_000004271_20260102043334_20260102043336_4258519B +PHISAT-2_L1_000004272_20260102060604_20260102060607_9E12ACFE +PHISAT-2_L1_000004273_20260102073742_20260102073745_A3767037 +PHISAT-2_L1_000004276_20260102121440_20260102121442_D67A4DA0 +PHISAT-2_L1_000004277_20260102141238_20260102141241_C6031B0E +PHISAT-2_L1_000004278_20260102152542_20260102152544_979E60B2 +PHISAT-2_L1_000004280_20260102213845_20260102213848_DFC11DFD +PHISAT-2_L1_000004281_20260103011237_20260103011240_E7F8565F +PHISAT-2_L1_000004282_20260103022835_20260103022837_F48AE71E +PHISAT-2_L1_000004283_20260103024612_20260103024615_DECA1F50 +PHISAT-2_L1_000004284_20260103040829_20260103040831_06E2090C +PHISAT-2_L1_000004285_20260103054258_20260103054301_9464FA4C +PHISAT-2_L1_000004286_20260103071404_20260103071407_6713D24B +PHISAT-2_L1_000004287_20260103084448_20260103084451_D1210BBC +PHISAT-2_L1_000004288_20260103101754_20260103101756_D9F17F72 +PHISAT-2_L1_000004289_20260103114841_20260103114844_1DFDE2DF +PHISAT-2_L1_000004290_20260103134548_20260103134551_1E54DF3A +PHISAT-2_L1_000004291_20260104004751_20260104004754_41651091 +PHISAT-2_L1_000004292_20260104034356_20260104034358_0C7947E1 +PHISAT-2_L1_000004293_20260104051427_20260104051429_3CF38003 +PHISAT-2_L1_000004294_20260104064825_20260104064828_B75654FA +PHISAT-2_L1_000004295_20260104081852_20260104081855_A7F92713 +PHISAT-2_L1_000004296_20260104095058_20260104095100_4FBCEFC0 +PHISAT-2_L1_000004297_20260104131310_20260104131312_FD608962 +PHISAT-2_L1_000004298_20260104161001_20260104161003_45A53BED +PHISAT-2_L1_000004299_20260104174332_20260104174334_44088251 +PHISAT-2_L1_000004300_20260104191924_20260104191926_72D59853 +PHISAT-2_L1_000004301_20260105092758_20260105092801_B524CA53 +PHISAT-2_L1_000004303_20260105140147_20260105140150_72833E33 +PHISAT-2_L1_000004304_20260105143100_20260105143102_1B8A84B0 +PHISAT-2_L1_000004305_20260105154240_20260105154242_F8CDE149 +PHISAT-2_L1_000004306_20260105154954_20260105154956_F55F7C75 +PHISAT-2_L1_000004307_20260105185449_20260105185451_736FC865 +PHISAT-2_L1_000004308_20260105215718_20260105215720_ABDA034E +PHISAT-2_L1_000004309_20260106012209_20260106012212_CB1AB907 +PHISAT-2_L1_000004310_20260106024444_20260106024446_00989921 +PHISAT-2_L1_000004311_20260106042500_20260106042502_54194281 +PHISAT-2_L1_000004312_20260106055607_20260106055609_ED76D692 +PHISAT-2_L1_000004314_20260106152645_20260106152647_C3F90BA0 +PHISAT-2_L1_000004315_20260106165346_20260106165348_46133EC4 +PHISAT-2_L1_000004316_20260106213027_20260106213029_4B9F3E2B +PHISAT-2_L1_000004317_20260107010418_20260107010420_9DD88168 +PHISAT-2_L1_000004318_20260107022035_20260107022037_CEFAED26 +PHISAT-2_L1_000004319_20260107035257_20260107035301_B2181D52 +PHISAT-2_L1_000004320_20260107035945_20260107035947_B3AF374B +PHISAT-2_L1_000004321_20260107053336_20260107053338_411DBC1A +PHISAT-2_L1_000004322_20260107070602_20260107070605_3D602D4E +PHISAT-2_L1_000004323_20260107083731_20260107083734_662608E9 +PHISAT-2_L1_000004324_20260107100838_20260107100841_7223AA89 +PHISAT-2_L1_000004325_20260107114046_20260107114048_E851B4F3 +PHISAT-2_L1_000004327_20260107131209_20260107131212_F5131F69 +PHISAT-2_L1_000004328_20260107133542_20260107133544_9592E28B +PHISAT-2_L1_000004330_20260107180151_20260107180153_32D2DBCE +PHISAT-2_L1_000004331_20260108003924_20260108003926_E3281119 +PHISAT-2_L1_000004332_20260108033224_20260108033226_D064A8B2 +PHISAT-2_L1_000004333_20260108050631_20260108050633_4FE2DD59 +PHISAT-2_L1_000004335_20260108081151_20260108081153_4AB399DB +PHISAT-2_L1_000004338_20260108130706_20260108130709_63F54C29 +PHISAT-2_L1_000004339_20260108155955_20260108155957_51509D7B +PHISAT-2_L1_000004340_20260108173946_20260108173949_1EC27518 +PHISAT-2_L1_000004341_20260108191053_20260108191056_B6FC3F90 +PHISAT-2_L1_000004342_20260108203932_20260108203935_4DCE8E2D +PHISAT-2_L1_000004343_20260109105212_20260109105216_3F61AA89 +PHISAT-2_L1_000004344_20260109184501_20260109184505_062CF25C +PHISAT-2_L1_000004345_20260111022956_20260111022958_296DE3AD +PHISAT-2_L1_000004346_20260111034929_20260111034931_807FEFCB +PHISAT-2_L1_000004347_20260111052327_20260111052329_B8781E2D +PHISAT-2_L1_000004348_20260111065724_20260111065727_6B0E2421 +PHISAT-2_L1_000004349_20260111083024_20260111083027_556612C8 +PHISAT-2_L1_000004350_20260111084646_20260111084648_4449579A +PHISAT-2_L1_000004351_20260111113534_20260111113537_B6B40765 +PHISAT-2_L1_000004352_20260111132640_20260111132643_30DC9910 +PHISAT-2_L1_000004353_20260111175415_20260111175418_189B97CD +PHISAT-2_L1_000004354_20260111192450_20260111192453_0FEEBD5E +PHISAT-2_L1_000004356_20260112014539_20260112014542_8C96F6E8 +PHISAT-2_L1_000004357_20260112045750_20260112045753_E6E3FECD +PHISAT-2_L1_000004359_20260112080322_20260112080325_3AAFFBAB +PHISAT-2_L1_000004361_20260112093850_20260112093853_15EA5386 +PHISAT-2_L1_000004363_20260112125650_20260112125652_50D75947 +PHISAT-2_L1_000004365_20260112141140_20260112141143_D3C7B699 +PHISAT-2_L1_000004367_20260112143504_20260112143506_211462C2 +PHISAT-2_L1_000004369_20260112155224_20260112155227_AD0C3813 +PHISAT-2_L1_000004371_20260112190245_20260112190248_AF979433 +PHISAT-2_L1_000004373_20260112220544_20260112220547_B28282FB +PHISAT-2_L1_000004374_20260113025511_20260113025514_A9CF71A4 +PHISAT-2_L1_000004375_20260113042658_20260113042702_0C932853 +PHISAT-2_L1_000004376_20260113043330_20260113043333_C8D9F62B +PHISAT-2_L1_000004378_20260113073748_20260113073751_3AF04E7E +PHISAT-2_L1_000004380_20260113092647_20260113092651_E53A508C +PHISAT-2_L1_000004381_20260113104256_20260113104259_D7258F80 +PHISAT-2_L1_000004383_20260113141228_20260113141231_E46CB9F3 +PHISAT-2_L1_000004384_20260113152555_20260113152558_019D554B +PHISAT-2_L1_000004385_20260113153515_20260113153518_BCE8DB93 +PHISAT-2_L1_000004386_20260113170243_20260113170246_63B7CD5E +PHISAT-2_L1_000004387_20260113183755_20260113183757_8A258586 +PHISAT-2_L1_000004388_20260114011153_20260114011155_D19124D6 +PHISAT-2_L1_000004389_20260114022821_20260114022824_ADE907D2 +PHISAT-2_L1_000004390_20260114040816_20260114040819_E8542F4B +PHISAT-2_L1_000004391_20260114054034_20260114054037_D2B3C07B +PHISAT-2_L1_000004392_20260114071559_20260114071602_8AD653D1 +PHISAT-2_L1_000004393_20260114090348_20260114090351_67FA858C +PHISAT-2_L1_000004417_20260116172100_20260116172102_3F4BAED5 +PHISAT-2_L1_000004418_20260116185426_20260116185428_6CB19F2E +PHISAT-2_L1_000004419_20260116215505_20260116215508_CD2AAA06 +PHISAT-2_L1_000004420_20260117024423_20260117024425_9606EC57 +PHISAT-2_L1_000004422_20260117055758_20260117055800_F640D365 +PHISAT-2_L1_000004423_20260117072956_20260117072959_E7937DF5 +PHISAT-2_L1_000004424_20260117090316_20260117090319_E581A690 +PHISAT-2_L1_000004425_20260117103614_20260117103617_A935DC6F +PHISAT-2_L1_000004426_20260117120543_20260117120546_79D4AE8B +PHISAT-2_L1_000004427_20260117133539_20260117133541_CF125D56 +PHISAT-2_L1_000004428_20260117140331_20260117140334_9141B10B +PHISAT-2_L1_000004429_20260117152346_20260117152348_9828F0E7 +PHISAT-2_L1_000004430_20260117165815_20260117165818_B2F6BA0A +PHISAT-2_L1_000004431_20260117182902_20260117182905_110B70AD +PHISAT-2_L1_000004432_20260118010327_20260118010330_34C55F12 +PHISAT-2_L1_000004433_20260118021946_20260118021949_E4B0EA4C +PHISAT-2_L1_000004434_20260118035204_20260118035208_4C9EC33E +PHISAT-2_L1_000004435_20260118040108_20260118040110_A20FAA5A +PHISAT-2_L1_000004436_20260118100713_20260118100716_11EAC28D +PHISAT-2_L1_000004437_20260118114400_20260118114403_53BD128D +PHISAT-2_L1_000004438_20260118131103_20260118131106_2F3730B6 +PHISAT-2_L1_000004439_20260118144420_20260118144423_461E0CD9 +PHISAT-2_L1_000004440_20260118150011_20260118150013_24961EBF +PHISAT-2_L1_000004441_20260118151223_20260118151226_A2E224E1 +PHISAT-2_L1_000004442_20260118162530_20260118162533_18D77A53 +PHISAT-2_L1_000004443_20260118193234_20260118193237_60C29F87 +PHISAT-2_L1_000004444_20260119020826_20260119020829_7CC484E3 +PHISAT-2_L1_000004445_20260119033125_20260119033128_24EA9F36 +PHISAT-2_L1_000004446_20260119050529_20260119050532_C26C1C40 +PHISAT-2_L1_000004447_20260119063852_20260119063855_13E21EA5 +PHISAT-2_L1_000004448_20260119081408_20260119081410_5A535B6D +PHISAT-2_L1_000004449_20260119094244_20260119094247_179E3EAC +PHISAT-2_L1_000004450_20260119111741_20260119111744_E5976F0D +PHISAT-2_L1_000004451_20260119130559_20260119130602_AAC4DEBC +PHISAT-2_L1_000004452_20260119144506_20260119144509_D771926B +PHISAT-2_L1_000004453_20260119173645_20260119173647_BF99F48F +PHISAT-2_L1_000004457_20260121115635_20260121115637_E183F748 +PHISAT-2_L1_000004458_20260121121429_20260121121433_EC22582F +PHISAT-2_L1_000004459_20260121135143_20260121135145_366872F1 +PHISAT-2_L1_000004460_20260121151433_20260121151435_418C3930 +PHISAT-2_L1_000004461_20260121164958_20260121165000_65E49ACD +PHISAT-2_L1_000004462_20260121182035_20260121182037_2E8B5B98 +PHISAT-2_L1_000004463_20260121183443_20260121183447_3B50B9EF +PHISAT-2_L1_000004465_20260122100358_20260122100403_8B8C6489 +PHISAT-2_L1_000004466_20260122143433_20260122143443_F78A3636 +PHISAT-2_L1_000004467_20260122210531_20260122210535_D28EC2CA +PHISAT-2_L1_000004468_20260123001405_20260123001409_FA4FD79C +PHISAT-2_L1_000004469_20260123002344_20260123002348_17C4095D +PHISAT-2_L1_000004470_20260123014323_20260123014325_C0375DFD +PHISAT-2_L1_000004472_20260123031701_20260123031703_ABF8B60C +PHISAT-2_L1_000004473_20260123045548_20260123045550_790B76FF +PHISAT-2_L1_000004474_20260123050841_20260123050845_D93386EE +PHISAT-2_L1_000004475_20260123062833_20260123062835_1B84013B +PHISAT-2_L1_000004477_20260123143915_20260123143917_613DB64D +PHISAT-2_L1_000004480_20260123190052_20260123190054_5D658F52 +PHISAT-2_L1_000004482_20260124011748_20260124011750_A779871E +PHISAT-2_L1_000004484_20260124090803_20260124090806_3D4DB073 +PHISAT-2_L1_000004485_20260124103921_20260124103923_B727020D +PHISAT-2_L1_000004486_20260124141014_20260124141016_DC441020 +PHISAT-2_L1_000004487_20260124152917_20260124152921_20B8BEF0 +PHISAT-2_L1_000004489_20260124170444_20260124170446_103D587C +PHISAT-2_L1_000004490_20260124183301_20260124183304_C9DD13BA +PHISAT-2_L1_000004491_20260125011000_20260125011002_113DC40D +PHISAT-2_L1_000004492_20260125022556_20260125022558_A6291E81 +PHISAT-2_L1_000004494_20260125040439_20260125040441_B33F06FD +PHISAT-2_L1_000004495_20260125053643_20260125053645_9ACF0BFC +PHISAT-2_L1_000004496_20260125071136_20260125071139_59B1B264 +PHISAT-2_L1_000004499_20260125114609_20260125114612_DC40593A +PHISAT-2_L1_000004500_20260125120426_20260125120430_AE019D96 +PHISAT-2_L1_000004502_20260125180831_20260125180833_8D15D0B3 +PHISAT-2_L1_000004503_20260125182436_20260125182440_445E427A +PHISAT-2_L1_000004504_20260126003004_20260126003008_49093563 +PHISAT-2_L1_000004506_20260126034051_20260126034053_AF1C24FE +PHISAT-2_L1_000004507_20260126051132_20260126051135_4506C704 +PHISAT-2_L1_000004508_20260126052439_20260126052443_66E01B97 +PHISAT-2_L1_000004510_20260126112932_20260126112936_26705399 +PHISAT-2_L1_000004511_20260126142430_20260126142440_688549D6 +PHISAT-2_L1_000004512_20260126144844_20260126144846_28E631AB +PHISAT-2_L1_000004513_20260126174009_20260126174011_03EAF334 +PHISAT-2_L1_000004514_20260126191557_20260126191559_0AE87B4C +PHISAT-2_L1_000004515_20260126193408_20260126193412_338F5253 +PHISAT-2_L1_000004516_20260126204415_20260126204417_3F63E812 +PHISAT-2_L1_000004517_20260126205527_20260126205531_9CA55DFF +PHISAT-2_L1_000004519_20260127142237_20260127142239_7B0DA474 +PHISAT-2_L1_000004520_20260127154820_20260127154822_E4A57485 +PHISAT-2_L1_000004521_20260127171741_20260127171743_FF058C37 +PHISAT-2_L1_000004522_20260127184535_20260127184537_CE7A5859 +PHISAT-2_L1_000004523_20260128024031_20260128024033_F0600014 +PHISAT-2_L1_000004526_20260128085750_20260128085754_B2AB9F30 +PHISAT-2_L1_000004528_20260128103419_20260128103423_CE2458FC +PHISAT-2_L1_000004531_20260129150745_20260129150747_C920A56F +PHISAT-2_L1_000004532_20260129175541_20260129175543_100B0BB2 +PHISAT-2_L1_000004534_20260130082225_20260130082227_9B98015D +PHISAT-2_L1_000004535_20260130094217_20260130094220_7E53D1CF +PHISAT-2_L1_000004539_20260130173230_20260130173232_6493D425 +PHISAT-2_L1_000004543_20260131060920_20260131060922_7A15E1CF +PHISAT-2_L1_000004547_20260131092953_20260131092957_2762F98B +PHISAT-2_L1_000004549_20260131104949_20260131104953_8C3FDC05 +PHISAT-2_L1_000004551_20260131141318_20260131141320_A3B4491B +PHISAT-2_L1_000004552_20260131153437_20260131153441_E99188AD +PHISAT-2_L1_000004553_20260131171010_20260131171012_E99CBAE0 +PHISAT-2_L1_000004554_20260131183942_20260131183944_3316C1A3 +PHISAT-2_L1_000004555_20260202113433_20260202113437_256A73AE +PHISAT-2_L1_000004556_20260202142931_20260202142941_A9EDAE0F +PHISAT-2_L1_000004558_20260202161528_20260202161530_FD7FF2B8 +PHISAT-2_L1_000004559_20260202210025_20260202210029_C9E695C7 +PHISAT-2_L1_000004560_20260203001837_20260203001841_6CEA724A +PHISAT-2_L1_000004562_20260203170956_20260203170959_70CCAFB5 +PHISAT-2_L1_000004564_20260203185540_20260203185543_09D2779D +PHISAT-2_L1_000004565_20260203204311_20260203204313_ADE9EC1F +PHISAT-2_L1_000004566_20260204012614_20260204012616_9B0E6F4B +PHISAT-2_L1_000004567_20260204024739_20260204024741_A1B1628D +PHISAT-2_L1_000004569_20260204073204_20260204073207_C350E99F +PHISAT-2_L1_000004570_20260204085804_20260204085806_A450EBD7 +PHISAT-2_L1_000004571_20260204152345_20260204152349_5C9A28F3 +PHISAT-2_L1_000004572_20260204165923_20260204165925_F38B22BD +PHISAT-2_L1_000004573_20260204182930_20260204182932_31D397BC +PHISAT-2_L1_000004574_20260204201642_20260204201644_9564FA3B +PHISAT-2_L1_000004576_20260205023451_20260205023453_20EF7F75 +PHISAT-2_L1_000004577_20260205035258_20260205035302_36DFE460 +PHISAT-2_L1_000004578_20260205114057_20260205114059_8808CBFC +PHISAT-2_L1_000004579_20260205161941_20260205161944_EF134CE7 +PHISAT-2_L1_000004582_20260205180337_20260205180339_BA2C89B0 +PHISAT-2_L1_000004586_20260205223805_20260205223808_BAA6A9B6 +PHISAT-2_L1_000004587_20260206002411_20260206002415_6636FBCF +PHISAT-2_L1_000004589_20260206015355_20260206015357_E675E705 +PHISAT-2_L1_000004599_20260208121344_20260208121348_5416397E +PHISAT-2_L1_000004600_20260208145920_20260208145930_925EEF13 +PHISAT-2_L1_000004603_20260208181206_20260208181209_4400D61D +PHISAT-2_L1_000004604_20260208183352_20260208183356_0D487CA5 +PHISAT-2_L1_000004605_20260208211930_20260208211933_2D203884 +PHISAT-2_L1_000004606_20260209035207_20260209035210_7DAF886C +PHISAT-2_L1_000004608_20260209070208_20260209070211_8CB2982E +PHISAT-2_L1_000004609_20260209100301_20260209100306_0B612DEA +PHISAT-2_L1_000004610_20260210002233_20260210002237_B0E5CEAC +PHISAT-2_L1_000004611_20260210003743_20260210003747_60C77CF3 +PHISAT-2_L1_000004614_20260210050814_20260210050818_CDE47A18 +PHISAT-2_L1_000004624_20260211140827_20260211140829_4D5C9CDE +PHISAT-2_L1_000004637_20260213205251_20260213205255_668435E0 +PHISAT-2_L1_000004639_20260214030523_20260214030525_F2F61408 +PHISAT-2_L1_000004641_20260214061654_20260214061656_BB563109 +PHISAT-2_L1_000004642_20260214092116_20260214092119_803D63BE +PHISAT-2_L1_000004643_20260214105046_20260214105049_8674F998 +PHISAT-2_L1_000004644_20260214105728_20260214105732_1CBE6138 +PHISAT-2_L1_000004645_20260214142302_20260214142304_AB1410D3 +PHISAT-2_L1_000004646_20260214152810_20260214152820_79AA2716 +PHISAT-2_L1_000004656_20260215183708_20260215183712_7C881B92 +PHISAT-2_L1_000004657_20260216005343_20260216005345_87115033 +PHISAT-2_L1_000004658_20260216113759_20260216113802_24DE4FEF +PHISAT-2_L1_000004663_20260216205626_20260216205629_97A6CEB3 +PHISAT-2_L1_000004665_20260217001602_20260217001606_82C85CBA +PHISAT-2_L1_000004673_20260227193556_20260227193601_255B0922 +PHISAT-2_L1_000004674_20260227205714_20260227205719_97ECB2A3 +PHISAT-2_L1_000004675_20260228001523_20260228001528_6E374531 +PHISAT-2_L1_000004676_20260228092811_20260228092816_939227DA +PHISAT-2_L1_000004677_20260228185053_20260228185058_7A0BEC20 +PHISAT-2_L1_000004678_20260301085843_20260301085848_9BA9D311 +PHISAT-2_L1_000004679_20260301103510_20260301103515_3427AFA0 +PHISAT-2_L1_000004680_20260301122102_20260301122107_34C899C3 +PHISAT-2_L1_000004681_20260301151947_20260301151952_7D86DE1F +PHISAT-2_L1_000004682_20260301184101_20260301184106_1A0364D3 +PHISAT-2_L1_000004683_20260302034849_20260302034854_89A8EB0A +PHISAT-2_L1_000004684_20260302211109_20260302211114_C124001D +PHISAT-2_L1_000004685_20260303001938_20260303001943_D44813AB +PHISAT-2_L1_000004686_20260304215119_20260304215124_418930E5 +PHISAT-2_L1_000004687_20260307185140_20260307185145_D87138FE +PHISAT-2_L1_000004689_20260308055710_20260308055713_30A85319 +PHISAT-2_L1_000004691_20260308103156_20260308103159_3193F9FD +PHISAT-2_L1_000004693_20260308212633_20260308212636_9AC91B1E +PHISAT-2_L1_000004694_20260309034925_20260309034930_D99DB3AF +PHISAT-2_L1_000004695_20260311025930_20260311025933_53E28047 +PHISAT-2_L1_000004697_20260311043535_20260311043538_4996C0AA +PHISAT-2_L1_000004699_20260311074026_20260311074029_471A827B +PHISAT-2_L1_000004700_20260311091220_20260311091223_9AD60DD8 +PHISAT-2_L1_000004701_20260311092921_20260311092926_23141EE8 +PHISAT-2_L1_000004702_20260311183645_20260311183648_68E590E4 +PHISAT-2_L1_000004703_20260312102038_20260312102040_FA0E1121 +PHISAT-2_L1_000004704_20260312114943_20260312114946_37D180E5 +PHISAT-2_L1_000004705_20260312164344_20260312164346_6D1930A6 +PHISAT-2_L1_000004706_20260312181057_20260312181059_DFA40219 +PHISAT-2_L1_000004707_20260313021800_20260313021803_A903D2C2 +PHISAT-2_L1_000004708_20260313034407_20260313034410_50A995D5 +PHISAT-2_L1_000004709_20260313051544_20260313051547_8B5116B4 +PHISAT-2_L1_000004710_20260313064508_20260313064511_BE527BAE +PHISAT-2_L1_000004711_20260313112106_20260313112109_E8D0746A +PHISAT-2_L1_000004712_20260313161030_20260313161033_E3BDA041 +PHISAT-2_L1_000004713_20260313191825_20260313191828_FECC925E +PHISAT-2_L1_000004714_20260314002009_20260314002012_1F68CB78 +PHISAT-2_L1_000004715_20260314031252_20260314031255_63CAA12A +PHISAT-2_L1_000004716_20260314062125_20260314062128_76B706C9 +PHISAT-2_L1_000004717_20260314092445_20260314092448_344B70E8 +PHISAT-2_L1_000004718_20260314155020_20260314155023_80B13AF7 +PHISAT-2_L1_000004719_20260314185246_20260314185249_21228B6D +PHISAT-2_L1_000004720_20260315041645_20260315041648_F813AE90 +PHISAT-2_L1_000004721_20260315042544_20260315042546_2BCF6C42 +PHISAT-2_L1_000004722_20260315055711_20260315055713_A4E3359F +PHISAT-2_L1_000004723_20260315072857_20260315072859_5BA46C0D +PHISAT-2_L1_000004724_20260315120337_20260315120340_1111C1E7 +PHISAT-2_L1_000004725_20260315182610_20260315182613_B4E465A9 +PHISAT-2_L1_000004726_20260316034908_20260316034912_B1CBC50F +PHISAT-2_L1_000004727_20260316035519_20260316035522_61FAA95F +PHISAT-2_L1_000004728_20260316070203_20260316070206_0F108CF4 +PHISAT-2_L1_000004729_20260316083257_20260316083300_8A7D6F0C +PHISAT-2_L1_000004730_20260316114041_20260316114044_B131AFE3 +PHISAT-2_L1_000004731_20260316133103_20260316133106_D952539B +PHISAT-2_L1_000004732_20260317094202_20260317094205_59AAFC25 +PHISAT-2_L1_000004733_20260317143039_20260317143042_A0D05871 +PHISAT-2_L1_000004734_20260317155508_20260317155511_C3BC0A06 +PHISAT-2_L1_000004735_20260317190508_20260317190511_6BDC5042 +PHISAT-2_L1_000004737_20260318042916_20260318042920_55E91AD3 +PHISAT-2_L1_000004738_20260318043535_20260318043538_07D1DFCC +PHISAT-2_L1_000004739_20260318060829_20260318060832_FB9C147B +PHISAT-2_L1_000004740_20260318074056_20260318074059_7901AA6E +PHISAT-2_L1_000004741_20260318092849_20260318092853_1147373C +PHISAT-2_L1_000004742_20260318104335_20260318104338_62B525AC +PHISAT-2_L1_000004743_20260318104928_20260318104938_E68CF5A2 +PHISAT-2_L1_000004744_20260318183703_20260318183713_827F48C5 +PHISAT-2_L1_000004745_20260319022936_20260319022939_D7C36089 +PHISAT-2_L1_000004746_20260319071441_20260319071444_1F2F09C6 +PHISAT-2_L1_000004747_20260319134407_20260319134410_D03E2B61 +PHISAT-2_L1_000004748_20260319145424_20260319145427_58B9F555 +PHISAT-2_L1_000004749_20260319163743_20260319163746_C59049D7 +PHISAT-2_L1_000004750_20260319164304_20260319164307_DA46CDEF +PHISAT-2_L1_000004751_20260319181015_20260319181019_0AA8EE38 +PHISAT-2_L1_000004752_20260320034324_20260320034327_8AF02D8D +PHISAT-2_L1_000004753_20260320051427_20260320051430_068A74FB +PHISAT-2_L1_000004754_20260320064415_20260320064418_672DEFA3 +PHISAT-2_L1_000004755_20260320094646_20260320094649_62530F41 +PHISAT-2_L1_000004756_20260320131426_20260320131429_6C8F35A6 +PHISAT-2_L1_000004757_20260320144425_20260320144428_E7D3041E +PHISAT-2_L1_000004758_20260320191756_20260320191759_AAE109A6 +PHISAT-2_L1_000004759_20260321030853_20260321030856_E4B850C6 +PHISAT-2_L1_000004760_20260321061916_20260321061920_EE7FAF34 +PHISAT-2_L1_000004761_20260321075315_20260321075318_97C421DA +PHISAT-2_L1_000004762_20260321105820_20260321105825_A4119BB5 +PHISAT-2_L1_000004763_20260321153951_20260321153954_02A8FBEE +PHISAT-2_L1_000004764_20260321172125_20260321172128_7FD2E4E8 +PHISAT-2_L1_000004765_20260321185116_20260321185119_3B3A0D68 +PHISAT-2_L1_000004766_20260322024426_20260322024429_8CF42BA1 +PHISAT-2_L1_000004767_20260322042131_20260322042134_3A20BD5E +PHISAT-2_L1_000004768_20260322055519_20260322055522_BE3EC7FC +PHISAT-2_L1_000004769_20260322072707_20260322072710_52377257 +PHISAT-2_L1_000004770_20260322090049_20260322090052_BBD56F8B +PHISAT-2_L1_000004771_20260322102854_20260322102857_69B5A9AD +PHISAT-2_L1_000004772_20260322140019_20260322140022_9945205D +PHISAT-2_L1_000004773_20260322152037_20260322152039_D8B19817 +PHISAT-2_L1_000004774_20260322182127_20260322182130_69229D37 +PHISAT-2_L1_000004775_20260322182712_20260322182714_7D4BB063 +PHISAT-2_L1_000004776_20260322212551_20260322212554_2C4C0021 +PHISAT-2_L1_000004777_20260323005851_20260323005854_8812E66D +PHISAT-2_L1_000004778_20260323034810_20260323034814_8E0B9106 +PHISAT-2_L1_000004779_20260323035416_20260323035419_6D5D2BCA +PHISAT-2_L1_000004780_20260323052938_20260323052941_3BDD4812 +PHISAT-2_L1_000004781_20260323065929_20260323065932_4E026AB7 +PHISAT-2_L1_000004782_20260323100312_20260323100314_F6531044 +PHISAT-2_L1_000004783_20260323132959_20260323133002_4FF70F87 +PHISAT-2_L1_000004784_20260323145532_20260323145535_AE74447D +PHISAT-2_L1_000004785_20260323162346_20260323162349_52B2FA56 +PHISAT-2_L1_000004786_20260323180032_20260323180035_DA380793 +PHISAT-2_L1_000004787_20260323192756_20260323192759_62AF8329 +PHISAT-2_L1_000004788_20260324014709_20260324014711_BFC5891D +PHISAT-2_L1_000004789_20260324032116_20260324032118_39AFFFC0 +PHISAT-2_L1_000004790_20260324050017_20260324050020_23F6F762 +PHISAT-2_L1_000004791_20260324063102_20260324063105_43890886 +PHISAT-2_L1_000004792_20260324080512_20260324080515_408FF539 +PHISAT-2_L1_000004793_20260324094155_20260324094157_CA8E6F03 +PHISAT-2_L1_000004794_20260324123954_20260324123957_4A05873B +PHISAT-2_L1_000004795_20260324141302_20260324141305_79401240 +PHISAT-2_L1_000004796_20260324155233_20260324155236_B4E42C89 +PHISAT-2_L1_000004797_20260324173121_20260324173124_66271D37 +PHISAT-2_L1_000004798_20260324190442_20260324190445_5169DCAF +PHISAT-2_L1_000004799_20260324220726_20260324220729_A7D6DA9C +PHISAT-2_L1_000004800_20260325000524_20260325000527_96DF47FA +PHISAT-2_L1_000004801_20260325025257_20260325025259_3A672940 +PHISAT-2_L1_000004802_20260325042805_20260325042809_467F0E2F +PHISAT-2_L1_000004803_20260325043437_20260325043439_455E05F2 +PHISAT-2_L1_000004804_20260325060718_20260325060720_573EDE7A +PHISAT-2_L1_000004805_20260325073947_20260325073949_5CF1B878 +PHISAT-2_L1_000004806_20260325090741_20260325090743_29F08766 +PHISAT-2_L1_000004807_20260325104342_20260325104344_1C4EA685 +PHISAT-2_L1_000004809_20260325121555_20260325121558_D4C4F18A +PHISAT-2_L1_000004810_20260325141308_20260325141310_332D61FE +PHISAT-2_L1_000004811_20260325170724_20260325170726_A48DFFE3 +PHISAT-2_L1_000004812_20260325183740_20260325183742_26495BC3 +PHISAT-2_L1_000004813_20260325213954_20260325213956_2EFBE255 +PHISAT-2_L1_000004814_20260326010817_20260326010819_F6F73922 +PHISAT-2_L1_000004815_20260326022817_20260326022819_9810C35C +PHISAT-2_L1_000004816_20260326040649_20260326040652_E859A3F6 +PHISAT-2_L1_000004817_20260326054017_20260326054019_5E5C56AA +PHISAT-2_L1_000004818_20260326071337_20260326071339_E38A2F9E +PHISAT-2_L1_000004819_20260326072459_20260326072501_8DCDFA02 +PHISAT-2_L1_000004820_20260326101402_20260326101405_04CB730F +PHISAT-2_L1_000004821_20260326114855_20260326114858_294335C3 +PHISAT-2_L1_000004822_20260326145822_20260326145825_B4897F8E +PHISAT-2_L1_000004823_20260326163618_20260326163621_8107D891 +PHISAT-2_L1_000004824_20260326193908_20260326193911_F47462CD +PHISAT-2_L1_000004825_20260327020112_20260327020115_04BB1914 +PHISAT-2_L1_000004826_20260327034055_20260327034058_0A062ABE +PHISAT-2_L1_000004827_20260327051319_20260327051322_5614C304 +PHISAT-2_L1_000004828_20260327064250_20260327064253_8C09C73B +PHISAT-2_L1_000004829_20260327094519_20260327094522_0F61562E +PHISAT-2_L1_000004830_20260327095009_20260327095012_4A860662 +PHISAT-2_L1_000004831_20260327112328_20260327112331_1F8F9492 +PHISAT-2_L1_000004832_20260327145657_20260327145700_90DA8FB5 +PHISAT-2_L1_000004833_20260327160602_20260327160605_5043C0F0 +PHISAT-2_L1_000004834_20260327174725_20260327174728_548F1ECC +PHISAT-2_L1_000004835_20260327191626_20260327191629_CB087757 +PHISAT-2_L1_000004836_20260327204457_20260327204500_C380C087 +PHISAT-2_L1_000004837_20260328001607_20260328001610_17AF0EF7 +PHISAT-2_L1_000004838_20260328030648_20260328030651_8E432BF4 +PHISAT-2_L1_000004839_20260328044539_20260328044542_AA2B11A3 +PHISAT-2_L1_000004840_20260328061345_20260328061348_216EC627 +PHISAT-2_L1_000004841_20260328075123_20260328075126_D26D80B8 +PHISAT-2_L1_000004842_20260328091841_20260328091844_9F577102 +PHISAT-2_L1_000004843_20260328105723_20260328105726_47038289 +PHISAT-2_L1_000004844_20260328135815_20260328135818_A2F8A831 +PHISAT-2_L1_000004845_20260328153843_20260328153846_6F9FF0FF +PHISAT-2_L1_000004846_20260328154754_20260328154757_C6C26DBB +PHISAT-2_L1_000004847_20260328184940_20260328184943_1B33EA04 +PHISAT-2_L1_000004848_20260329005749_20260329005752_C2BBA8FE +PHISAT-2_L1_000004849_20260329042005_20260329042008_24CEC3C8 +PHISAT-2_L1_000004850_20260329055435_20260329055438_83764B3A +PHISAT-2_L1_000004851_20260329072609_20260329072612_28A70F24 +PHISAT-2_L1_000004852_20260329085841_20260329085844_1271ACEE +PHISAT-2_L1_000004854_20260329120055_20260329120058_CE9FFBE0 +PHISAT-2_L1_000004855_20260329135125_20260329135128_38CC7DB8 +PHISAT-2_L1_000004856_20260329151846_20260329151849_579F637D +PHISAT-2_L1_000004857_20260329164536_20260329164539_09276EC4 +PHISAT-2_L1_000004858_20260329182040_20260329182043_36F19516 +PHISAT-2_L1_000004859_20260329212420_20260329212423_EFD2C4A4 +PHISAT-2_L1_000004860_20260330021325_20260330021328_86A3948F +PHISAT-2_L1_000004861_20260330022735_20260330022738_C9691129 +PHISAT-2_L1_000004862_20260330035215_20260330035218_816FA25F +PHISAT-2_L1_000004863_20260330052528_20260330052531_717DE5DD +PHISAT-2_L1_000004864_20260330065916_20260330065919_138D0A4D +PHISAT-2_L1_000004865_20260330095749_20260330095752_606F61C5 +PHISAT-2_L1_000004866_20260330132725_20260330132728_3A3F8ED9 +PHISAT-2_L1_000004867_20260330150510_20260330150513_E69DD560 +PHISAT-2_L1_000004868_20260330162136_20260330162139_AADF8F00 +PHISAT-2_L1_000004869_20260330175843_20260330175846_FE01DF84 +PHISAT-2_L1_000004870_20260330192436_20260330192439_82575412 +PHISAT-2_L1_000004871_20260331015559_20260331015602_397EB734 +PHISAT-2_L1_000004872_20260331033131_20260331033134_1E3F1AED +PHISAT-2_L1_000004873_20260331045817_20260331045820_6AB6154D +PHISAT-2_L1_000004874_20260331080340_20260331080343_94908C74 +PHISAT-2_L1_000004875_20260331081913_20260331081916_07538EE5 +PHISAT-2_L1_000004876_20260331111024_20260331111027_EE19F207 +PHISAT-2_L1_000004877_20260331123744_20260331123747_EA7A5A0A +PHISAT-2_L1_000004878_20260331141117_20260331141120_68A07810 +PHISAT-2_L1_000004879_20260331144020_20260331144023_A491A4A3 +PHISAT-2_L1_000004880_20260331160106_20260331160109_E34BFD34 +PHISAT-2_L1_000004881_20260331172853_20260331172856_C8216B15 +PHISAT-2_L1_000004882_20260331185916_20260331185919_67F82B11 +PHISAT-2_L1_000004883_20260331220528_20260331220531_EE88E8AD +PHISAT-2_L1_000004885_20260401043226_20260401043229_547459AB +PHISAT-2_L1_000004886_20260401060522_20260401060525_AD8869D4 +PHISAT-2_L1_000004887_20260401073746_20260401073749_B41A3113 +PHISAT-2_L1_000004888_20260401103829_20260401103832_3B68CFA4 +PHISAT-2_L1_000004889_20260401121331_20260401121334_FD71FB61 +PHISAT-2_L1_000004890_20260401141100_20260401141103_F4F9F044 +PHISAT-2_L1_000004891_20260401152218_20260401152221_E3D3B0AC +PHISAT-2_L1_000004892_20260401153317_20260401153320_09BA7C98 +PHISAT-2_L1_000004893_20260401170237_20260401170240_C6798CC6 +PHISAT-2_L1_000004894_20260401171328_20260401171337_EE0B58D7 +PHISAT-2_L1_000004895_20260401183321_20260401183330_8EC056C9 +PHISAT-2_L1_000004896_20260401200138_20260401200147_B2129214 +PHISAT-2_L1_000004897_20260401213649_20260401213652_F9D7210F +PHISAT-2_L1_000004898_20260402010615_20260402010618_1A00C9AC +PHISAT-2_L1_000004899_20260402011627_20260402011636_F1E7F702 +PHISAT-2_L1_000004900_20260402022609_20260402022612_7F11DA3E +PHISAT-2_L1_000004901_20260402024107_20260402024116_4590B202 +PHISAT-2_L1_000004902_20260402040517_20260402040520_B289D836 +PHISAT-2_L1_000004903_20260402054122_20260402054125_50063E8E +PHISAT-2_L1_000004904_20260402071100_20260402071103_36A1CF56 +PHISAT-2_L1_000004905_20260402084151_20260402084154_4EE6FCF2 +PHISAT-2_L1_000004906_20260402101343_20260402101346_50748287 +PHISAT-2_L1_000004909_20260402134045_20260402134048_F813E283 +PHISAT-2_L1_000004910_20260402150614_20260402150617_889FC53B +PHISAT-2_L1_000004911_20260402151457_20260402151500_27E05F71 +PHISAT-2_L1_000004912_20260402162144_20260402162153_069B21F5 +PHISAT-2_L1_000004913_20260402163540_20260402163543_7BE3CE98 +PHISAT-2_L1_000004915_20260402180644_20260402180647_B63C74FC +PHISAT-2_L1_000004916_20260402193817_20260402193820_88268DEA +PHISAT-2_L1_000004917_20260402223945_20260402223954_A386FEC4 +PHISAT-2_L1_000004918_20260403015006_20260403015015_810FCFB8 +PHISAT-2_L1_000004919_20260403020901_20260403020904_A0807663 +PHISAT-2_L1_000004920_20260403033657_20260403033700_CFDE5AB9 +PHISAT-2_L1_000004921_20260403035727_20260403035736_4D9AF32C +PHISAT-2_L1_000004922_20260403045543_20260403045552_FE74FF34 +PHISAT-2_L1_000004923_20260403051040_20260403051043_54ECD1DE +PHISAT-2_L1_000004924_20260403052206_20260403052214_F9D60519 +PHISAT-2_L1_000004925_20260403064354_20260403064357_646BC4F4 +PHISAT-2_L1_000004927_20260403081534_20260403081537_42DCA99B +PHISAT-2_L1_000004928_20260403093737_20260403093746_93DFFD36 +PHISAT-2_L1_000004929_20260403094710_20260403094713_55ECAA4C +PHISAT-2_L1_000004930_20260403112230_20260403112233_B74A6260 +PHISAT-2_L1_000004931_20260403160511_20260403160514_7AFD51BC +PHISAT-2_L1_000004932_20260403173339_20260403173348_54957B91 +PHISAT-2_L1_000004933_20260403174508_20260403174511_ABE906C0 +PHISAT-2_L1_000004934_20260403175119_20260403175128_4D74657B +PHISAT-2_L1_000004935_20260403191409_20260403191412_424DCCE5 +PHISAT-2_L1_000004936_20260403203754_20260403203803_A99E3233 +PHISAT-2_L1_000004937_20260403221637_20260403221640_11BBD657 +PHISAT-2_L1_000004938_20260404014555_20260404014558_64C420E1 +PHISAT-2_L1_000004939_20260404015521_20260404015530_BB1999ED +PHISAT-2_L1_000004940_20260404030329_20260404030332_806CEF71 +PHISAT-2_L1_000004941_20260404033201_20260404033210_C80774FD +PHISAT-2_L1_000004942_20260404043836_20260404043845_395DBE1C +PHISAT-2_L1_000004944_20260404050015_20260404050024_EC469570 +PHISAT-2_L1_000004946_20260404061715_20260404061718_FA5940DE +PHISAT-2_L1_000004947_20260404074905_20260404074908_72C30C39 +PHISAT-2_L1_000004948_20260404092018_20260404092021_DC170862 +PHISAT-2_L1_000004951_20260404135243_20260404135252_8D3C91F2 +PHISAT-2_L1_000004952_20260404160421_20260404160430_1798EA5D +PHISAT-2_L1_000004953_20260404171731_20260404171734_934AC285 +PHISAT-2_L1_000004954_20260404173025_20260404173034_EEFA3E40 +PHISAT-2_L1_000004955_20260404184811_20260404184814_48A30816 +PHISAT-2_L1_000004956_20260404201507_20260404201516_0F651301 +PHISAT-2_L1_000004957_20260405005236_20260405005245_A28B67B5 +PHISAT-2_L1_000004958_20260405013003_20260405013012_47E71389 +PHISAT-2_L1_000004959_20260405023450_20260405023453_B13E0804 +PHISAT-2_L1_000004960_20260405025731_20260405025740_DD15D565 +PHISAT-2_L1_000004961_20260405053540_20260405053549_32B63F21 +PHISAT-2_L1_000004962_20260405055952_20260405060000_C27E6B36 +PHISAT-2_L1_000004963_20260405071927_20260405071936_4BDD3AEF +PHISAT-2_L1_000004964_20260405084420_20260405084429_89BFBA00 +PHISAT-2_L1_000004965_20260405091306_20260405091309_C952B9C1 +PHISAT-2_L1_000004966_20260405101917_20260405101926_A4CC23D9 +PHISAT-2_L1_000004967_20260405134707_20260405134711_5E22B5E3 +PHISAT-2_L1_000004968_20260405151611_20260405151615_910C0A36 +PHISAT-2_L1_000004969_20260405200754_20260405200757_97778D38 +PHISAT-2_L1_000004970_20260405213204_20260405213207_75F34B92 +PHISAT-2_L1_000004971_20260406022606_20260406022609_4427197F +PHISAT-2_L1_000004972_20260406052248_20260406052251_EA576281 +PHISAT-2_L1_000004973_20260406070356_20260406070359_4C70B894 +PHISAT-2_L1_000004974_20260406082426_20260406082429_6E4A6D9D +PHISAT-2_L1_000004975_20260406132529_20260406132532_09A23F7E +PHISAT-2_L1_000004976_20260406161728_20260406161731_5E1C3FDF +PHISAT-2_L1_000004977_20260406162353_20260406162356_5B17DFDB +PHISAT-2_L1_000004978_20260406175633_20260406175636_ABE5BC07 +PHISAT-2_L1_000004979_20260407031701_20260407031704_43AF7A48 +PHISAT-2_L1_000004980_20260407045409_20260407045418_850F7FCC +PHISAT-2_L1_000004981_20260407061950_20260407061959_D5F384DB +PHISAT-2_L1_000004982_20260407062902_20260407062905_47A50CCA +PHISAT-2_L1_000004983_20260407080112_20260407080115_F833DF9A +PHISAT-2_L1_000004984_20260407093031_20260407093034_A15DD441 +PHISAT-2_L1_000004985_20260407110507_20260407110510_CF26B547 +PHISAT-2_L1_000004986_20260407154718_20260407154721_8135E341 +PHISAT-2_L1_000004987_20260407160147_20260407160150_A7EC5657 +PHISAT-2_L1_000004988_20260408073442_20260408073451_741E0AA8 +PHISAT-2_L1_000004989_20260408090029_20260408090038_594EF45D +PHISAT-2_L1_000004990_20260408120334_20260408120343_3EADEA76 +PHISAT-2_L1_000004991_20260409010310_20260409010313_EFE428F8 +PHISAT-2_L1_000004992_20260409024040_20260409024043_B31608B6 +PHISAT-2_L1_000004993_20260409035539_20260409035544_7887381F +PHISAT-2_L1_000004994_20260409040048_20260409040051_4E9FBC33 +PHISAT-2_L1_000004995_20260409053136_20260409053145_1DFCD9F1 +PHISAT-2_L1_000004996_20260409053825_20260409053828_3A445028 +PHISAT-2_L1_000004997_20260409065820_20260409065829_7B22E4B4 +PHISAT-2_L1_000004998_20260409070829_20260409070832_2C72F07C +PHISAT-2_L1_000004999_20260409083953_20260409083956_E22EA879 +PHISAT-2_L1_000005000_20260409101018_20260409101021_B10178C8 +PHISAT-2_L1_000005001_20260409114559_20260409114602_7A693214 +PHISAT-2_L1_000005002_20260409133428_20260409133431_E2E9E340 +PHISAT-2_L1_000005003_20260409150256_20260409150300_346A04A1 +PHISAT-2_L1_000005004_20260409151421_20260409151424_7DE41D90 +PHISAT-2_L1_000005005_20260409163119_20260409163122_B362B292 +PHISAT-2_L1_000005006_20260409193516_20260409193519_D54BD403 +PHISAT-2_L1_000005007_20260410021047_20260410021050_04C69FB4 +PHISAT-2_L1_000005008_20260410032831_20260410032834_D7091699 +PHISAT-2_L1_000005009_20260410050728_20260410050731_D626FE60 +PHISAT-2_L1_000005010_20260410064045_20260410064048_84ADFAA2 +PHISAT-2_L1_000005012_20260411025928_20260411025931_1FB815CD +PHISAT-2_L1_000005013_20260411044130_20260411044133_5E238C4E +PHISAT-2_L1_000005015_20260411073712_20260411073721_31DBF7EC +PHISAT-2_L1_000005016_20260411074727_20260411074730_6188B28A +PHISAT-2_L1_000005018_20260411091810_20260411091813_11786C69 +PHISAT-2_L1_000005019_20260411093425_20260411093429_352388B5 +PHISAT-2_L1_000005020_20260411105030_20260411105033_0A0AF29D +PHISAT-2_L1_000005021_20260411122127_20260411122130_148C637D +PHISAT-2_L1_000005023_20260411152730_20260411152733_59BDA6F5 +PHISAT-2_L1_000005024_20260411171451_20260411171454_3D06BD9E +PHISAT-2_L1_000005026_20260411184230_20260411184241_F1662863 +PHISAT-2_L1_000005027_20260412011903_20260412011906_77938850 +PHISAT-2_L1_000005028_20260412023120_20260412023123_8560DC79 +PHISAT-2_L1_000005029_20260412041242_20260412041245_7C0C1AF1 +PHISAT-2_L1_000005030_20260412054507_20260412054510_A8ADC29D +PHISAT-2_L1_000005032_20260412101905_20260412101908_8199945F +PHISAT-2_L1_000005033_20260412151445_20260412151448_E323C2BD +PHISAT-2_L1_000005035_20260412164247_20260412164250_2359EF52 +PHISAT-2_L1_000005036_20260412181929_20260412181932_891A2BCE +PHISAT-2_L1_000005037_20260412211802_20260412211805_94A957A3 +PHISAT-2_L1_000005038_20260413022122_20260413022125_A382288C +PHISAT-2_L1_000005039_20260413033813_20260413033816_B584875F +PHISAT-2_L1_000005040_20260413034820_20260413034823_D6A7EB00 +PHISAT-2_L1_000005041_20260413051918_20260413051921_6912748E +PHISAT-2_L1_000005042_20260413065232_20260413065235_1D97DD6D +PHISAT-2_L1_000005045_20260413132154_20260413132157_9E4AEF3F +PHISAT-2_L1_000005046_20260413145706_20260413145709_5963E906 +PHISAT-2_L1_000005047_20260413160226_20260413160235_9C7199DC +PHISAT-2_L1_000005048_20260413161705_20260413161708_F93601CF +PHISAT-2_L1_000005049_20260413174704_20260413174707_DFE5C156 +PHISAT-2_L1_000005050_20260413192234_20260413192237_90B9E67B +PHISAT-2_L1_000005051_20260413222426_20260413222435_F029DC87 +PHISAT-2_L1_000005052_20260414002355_20260414002358_246FECB9 +PHISAT-2_L1_000005053_20260414015447_20260414015450_1BE0A58D +PHISAT-2_L1_000005054_20260414031325_20260414031328_FAE16B48 +PHISAT-2_L1_000005055_20260414045152_20260414045155_0B9B490F +PHISAT-2_L1_000005056_20260414062310_20260414062313_14BDC8E1 +PHISAT-2_L1_000005057_20260414075741_20260414075744_A169BEE1 +PHISAT-2_L1_000005060_20260414105212_20260414105221_B575C923 +PHISAT-2_L1_000005061_20260414110054_20260414110057_8E7612EE +PHISAT-2_L1_000005062_20260414154503_20260414154506_6965848A +PHISAT-2_L1_000005063_20260414155727_20260414155730_4027CB74 +PHISAT-2_L1_000005064_20260414172527_20260414172530_4484C2CD +PHISAT-2_L1_000005065_20260414185628_20260414185631_416D30D1 +PHISAT-2_L1_000005066_20260415012624_20260415012627_E405230D +PHISAT-2_L1_000005067_20260415025130_20260415025133_698EEDE3 +PHISAT-2_L1_000005068_20260415042548_20260415042551_9722AB0D +PHISAT-2_L1_000005069_20260415055944_20260415055947_9D7F2888 \ No newline at end of file diff --git a/notebooks/sentinel2a_night_imaging_products.csv b/notebooks/sentinel2a_night_imaging_products.csv new file mode 100644 index 0000000..e6a5ab8 --- /dev/null +++ b/notebooks/sentinel2a_night_imaging_products.csv @@ -0,0 +1,130 @@ +id,name,s3_path,content_start,content_end,publication_date,modification_date,content_length,origin_date,collection,night_imaging_mode,night_mode_rule,product_type,processing_level,operational_mode,platform_serial_identifier,instrument_short_name,tile_id,relative_orbit_number,orbit_number,cloud_cover,processing_baseline,quality_status,attributes_json +bb691e1c-7c75-4dc6-99a2-4569162265fb,S2A_MSIL1C_20251203T182201_N0511_R070_T40RDP_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40RDP_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:37:28.114723Z,2025-12-04T10:37:28.114723Z,4208809,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDP,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RDP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RDP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40RDP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40RDP""}" +59e80aba-922c-41fb-a2e5-66d4e5879a6f,S2A_MSIL1C_20251203T182201_N0511_R070_T40RDQ_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40RDQ_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:37:24.375365Z,2025-12-04T10:37:24.375365Z,6990005,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDQ,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RDQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RDQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40RDQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40RDQ""}" +d08dbe6a-1d5f-4c56-935f-9af55016476b,S2A_MSIL1C_20251203T182201_N0511_R070_T40REQ_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40REQ_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:37:24.538840Z,2025-12-04T10:37:24.538840Z,5219692,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40REQ,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40REQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40REQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40REQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40REQ""}" +3253c27f-6e6b-4b4e-8dbd-253a408f39a6,S2A_MSIL1C_20251203T182201_N0511_R070_T40RER_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40RER_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:37:57.102928Z,2025-12-04T10:37:57.102928Z,4899897,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RER,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RER_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RER_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40RER_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40RER""}" +481fc645-9286-42ba-bb4f-97851262e5fe,S2A_MSIL1C_20251203T182201_N0511_R070_T40RFQ_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40RFQ_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:37:27.486771Z,2025-12-04T10:37:27.486771Z,4944320,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RFQ,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RFQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RFQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40RFQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40RFQ""}" +1a8c1e8b-0930-42a3-9721-5369961a8795,S2A_MSIL1C_20251203T182201_N0511_R070_T40RFR_20251203T183534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T182201_N0511_R070_T40RFR_20251203T183534.SAFE,2025-12-03T18:22:01.024000Z,2025-12-03T18:22:01.024000Z,2025-12-04T10:38:00.513601Z,2025-12-04T10:38:00.513601Z,4351092,2025-12-04T10:34:46.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RFR,70,54579,0.0,,,"{""beginningDateTime"": ""2025-12-03T18:22:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11"", ""endingDateTime"": ""2025-12-03T18:22:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RFR_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54579, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T18:35:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T182201_054579_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 70, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T183534_A054579_T40RFR_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T183534_S20251203T182159_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T183534_A054579_T40RFR_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:46Z,2025-12-04T10:34:45Z,2025-12-04T10:34:46Z"", ""tileId"": ""40RFR""}" +3b73d2ce-130e-42ae-b50f-d3065217c722,S2A_MSIL1C_20251203T214931_N0511_R072_T30UWU_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T30UWU_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:56.031266Z,2025-12-04T10:37:56.031266Z,4452235,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UWU,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UWU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UWU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T30UWU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""30UWU""}" +848449c6-bb2d-4c1e-a8de-89ff810ef55c,S2A_MSIL1C_20251203T214931_N0511_R072_T30UXU_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T30UXU_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:33.525838Z,2025-12-04T10:37:33.525838Z,6678274,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UXU,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UXU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UXU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T30UXU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""30UXU""}" +42cea71f-1480-4601-89ba-8bb08ca763bd,S2A_MSIL1C_20251203T214931_N0511_R072_T30UYU_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T30UYU_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:25.384841Z,2025-12-04T10:37:25.384841Z,5631875,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYU,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UYU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UYU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T30UYU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""30UYU""}" +f31c8eca-28fb-4be7-928f-e920a510a878,S2A_MSIL1C_20251203T214931_N0511_R072_T30UYV_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T30UYV_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:23.878771Z,2025-12-04T10:37:23.878771Z,5215695,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYV,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UYV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T30UYV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T30UYV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""30UYV""}" +7438acc2-bd50-489d-bf19-2d474fe33a71,S2A_MSIL1C_20251203T214931_N0511_R072_T31UCP_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T31UCP_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:24.145282Z,2025-12-04T10:37:24.145282Z,5619200,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCP,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T31UCP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T31UCP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T31UCP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""31UCP""}" +f1d7367c-0bb7-4975-944c-16496acd99ac,S2A_MSIL1C_20251203T214931_N0511_R072_T31UCQ_20251203T234208.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/03/S2A_MSIL1C_20251203T214931_N0511_R072_T31UCQ_20251203T234208.SAFE,2025-12-03T21:49:31.024000Z,2025-12-03T21:49:31.024000Z,2025-12-04T10:37:26.985508Z,2025-12-04T10:37:26.985508Z,5009363,2025-12-04T10:34:39.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCQ,72,54581,0.0,,,"{""beginningDateTime"": ""2025-12-03T21:49:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11"", ""endingDateTime"": ""2025-12-03T21:49:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T31UCQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54581, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-03T23:42:08.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251203T214931_054581_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 72, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251203T234208_A054581_T31UCQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251203T234208_S20251203T214934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251203T234208_A054581_T31UCQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T10:34:38Z,2025-12-04T10:34:36Z,2025-12-04T10:34:39Z"", ""tileId"": ""31UCQ""}" +83f0c065-18a6-481d-ba91-3c0d41a088dd,S2A_MSIL1C_20251204T125201_N0511_R081_T53SPU_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T53SPU_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:09.413125Z,2025-12-04T15:40:09.413125Z,5398366,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SPU,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SPU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SPU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T53SPU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:16Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""53SPU""}" +5273489d-6b52-44e4-bcf6-78e3deab627e,S2A_MSIL1C_20251204T125201_N0511_R081_T53SPV_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T53SPV_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:52.738357Z,2025-12-04T15:40:52.738357Z,5852282,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SPV,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SPV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SPV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T53SPV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:16Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""53SPV""}" +f1c869bf-9493-40c2-a1b7-fcf018c2b410,S2A_MSIL1C_20251204T125201_N0511_R081_T53SQU_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T53SQU_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:11.078058Z,2025-12-04T15:40:11.078058Z,5266961,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SQU,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SQU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SQU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T53SQU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:16Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""53SQU""}" +d692f67d-8c7d-4a5a-8ea3-4276be89cd32,S2A_MSIL1C_20251204T125201_N0511_R081_T53SQV_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T53SQV_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:47.402260Z,2025-12-04T15:40:47.402260Z,5920457,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SQV,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SQV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T53SQV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T53SQV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:15Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""53SQV""}" +669319c7-9c79-4ad9-b9e5-57929bf5745b,S2A_MSIL1C_20251204T125201_N0511_R081_T54STD_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T54STD_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:46.787285Z,2025-12-04T15:40:46.787285Z,4961171,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54STD,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54STD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54STD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T54STD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:15Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""54STD""}" +555404e8-9857-49d5-8caa-8d6334cb10e7,S2A_MSIL1C_20251204T125201_N0511_R081_T54STE_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T54STE_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:12.589682Z,2025-12-04T15:40:12.589682Z,6237356,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54STE,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54STE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54STE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T54STE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:16Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""54STE""}" +77495394-7eb8-4a40-ba84-5e62da27716c,S2A_MSIL1C_20251204T125201_N0511_R081_T54SUD_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T54SUD_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:14.292987Z,2025-12-04T15:40:14.292987Z,4628560,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUD,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54SUD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54SUD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T54SUD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:15Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""54SUD""}" +a32ed58d-e7cd-42e9-83bb-f88d908f6626,S2A_MSIL1C_20251204T125201_N0511_R081_T54SUE_20251204T150641.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/04/S2A_MSIL1C_20251204T125201_N0511_R081_T54SUE_20251204T150641.SAFE,2025-12-04T12:52:01.024000Z,2025-12-04T12:52:01.024000Z,2025-12-04T15:40:47.746929Z,2025-12-04T15:40:47.746929Z,5147600,2025-12-04T15:37:16.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUE,81,54590,0.0,,,"{""beginningDateTime"": ""2025-12-04T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11"", ""endingDateTime"": ""2025-12-04T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54SUE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54590, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-04T15:06:41.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251204T125201_054590_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251204T150641_A054590_T54SUE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251204T150641_S20251204T125204_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251204T150641_A054590_T54SUE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-04T15:37:15Z,2025-12-04T15:37:14Z,2025-12-04T15:37:16Z"", ""tileId"": ""54SUE""}" +c850fbde-7a6e-4971-8588-af02e249349e,S2A_MSIL1C_20251205T153341_N0511_R097_T47NRB_20251205T193648.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/05/S2A_MSIL1C_20251205T153341_N0511_R097_T47NRB_20251205T193648.SAFE,2025-12-05T15:33:41.024000Z,2025-12-05T15:33:41.024000Z,2025-12-05T20:08:44.914644Z,2025-12-05T20:08:44.914644Z,4596730,2025-12-05T20:05:50.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,47NRB,97,54606,0.0,,,"{""beginningDateTime"": ""2025-12-05T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11"", ""endingDateTime"": ""2025-12-05T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T47NRB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54606, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-05T19:36:48.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251205T153341_054606_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T47NRB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251205T193648_A054606_T47NRB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-05T20:05:50Z,2025-12-05T20:05:49Z,2025-12-05T20:05:50Z"", ""tileId"": ""47NRB""}" +7d1dddd3-637e-4812-89fb-d7c839cf91eb,S2A_MSIL1C_20251205T153341_N0511_R097_T48NTF_20251205T193648.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/05/S2A_MSIL1C_20251205T153341_N0511_R097_T48NTF_20251205T193648.SAFE,2025-12-05T15:33:41.024000Z,2025-12-05T15:33:41.024000Z,2025-12-05T20:08:44.140632Z,2025-12-05T20:08:44.140632Z,4672661,2025-12-05T20:05:51.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NTF,97,54606,0.0,,,"{""beginningDateTime"": ""2025-12-05T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11"", ""endingDateTime"": ""2025-12-05T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NTF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54606, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-05T19:36:48.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251205T153341_054606_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NTF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251205T193648_A054606_T48NTF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-05T20:05:50Z,2025-12-05T20:05:49Z,2025-12-05T20:05:51Z"", ""tileId"": ""48NTF""}" +c30f515e-5ffc-4f9a-91ce-d0fb181d8eb4,S2A_MSIL1C_20251205T153341_N0511_R097_T48NTG_20251205T193648.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/05/S2A_MSIL1C_20251205T153341_N0511_R097_T48NTG_20251205T193648.SAFE,2025-12-05T15:33:41.024000Z,2025-12-05T15:33:41.024000Z,2025-12-05T20:08:48.532554Z,2025-12-05T20:08:48.532554Z,6040366,2025-12-05T20:05:51.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NTG,97,54606,0.0,,,"{""beginningDateTime"": ""2025-12-05T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11"", ""endingDateTime"": ""2025-12-05T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NTG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54606, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-05T19:36:48.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251205T153341_054606_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NTG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251205T193648_A054606_T48NTG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-05T20:05:50Z,2025-12-05T20:05:49Z,2025-12-05T20:05:51Z"", ""tileId"": ""48NTG""}" +910c0f41-5844-4eb1-9c14-f3887c4522b1,S2A_MSIL1C_20251205T153341_N0511_R097_T48NUG_20251205T193648.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/05/S2A_MSIL1C_20251205T153341_N0511_R097_T48NUG_20251205T193648.SAFE,2025-12-05T15:33:41.024000Z,2025-12-05T15:33:41.024000Z,2025-12-05T20:08:47.319734Z,2025-12-05T20:08:47.319734Z,5241745,2025-12-05T20:05:51.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NUG,97,54606,0.0,,,"{""beginningDateTime"": ""2025-12-05T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11"", ""endingDateTime"": ""2025-12-05T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NUG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54606, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-05T19:36:48.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251205T153341_054606_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NUG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251205T193648_A054606_T48NUG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-05T20:05:50Z,2025-12-05T20:05:49Z,2025-12-05T20:05:51Z"", ""tileId"": ""48NUG""}" +d338f353-ce51-4025-9825-187e3ebcc071,S2A_MSIL1C_20251205T153341_N0511_R097_T48NVG_20251205T193648.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/05/S2A_MSIL1C_20251205T153341_N0511_R097_T48NVG_20251205T193648.SAFE,2025-12-05T15:33:41.024000Z,2025-12-05T15:33:41.024000Z,2025-12-05T20:08:43.730062Z,2025-12-05T20:08:43.730062Z,5218649,2025-12-05T20:05:50.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NVG,97,54606,0.0,,,"{""beginningDateTime"": ""2025-12-05T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11"", ""endingDateTime"": ""2025-12-05T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NVG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54606, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-05T19:36:48.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251205T153341_054606_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251205T193648_A054606_T48NVG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251205T193648_S20251205T153342_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251205T193648_A054606_T48NVG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-05T20:05:50Z,2025-12-05T20:05:49Z,2025-12-05T20:05:50Z"", ""tileId"": ""48NVG""}" +7c91d617-fdec-4a21-b7c5-06a753e397a2,S2A_MSIL1C_20251206T183141_N0511_R113_T39RYJ_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T39RYJ_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:27.939365Z,2025-12-06T21:01:27.939365Z,5439971,2025-12-06T20:57:53.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RYJ,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RYJ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RYJ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T39RYJ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:53Z,2025-12-06T20:57:40Z,2025-12-06T20:57:53Z"", ""tileId"": ""39RYJ""}" +106d0f44-7675-4e83-a7b2-815a7bf1d270,S2A_MSIL1C_20251206T183141_N0511_R113_T39RYK_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T39RYK_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:25.660490Z,2025-12-06T21:01:25.660490Z,5260640,2025-12-06T20:57:53.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RYK,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RYK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RYK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T39RYK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:53Z,2025-12-06T20:57:40Z,2025-12-06T20:57:53Z"", ""tileId"": ""39RYK""}" +d1d8c56c-7b45-42c3-9cda-649e080389fe,S2A_MSIL1C_20251206T183141_N0511_R113_T39RZH_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T39RZH_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:22.968665Z,2025-12-06T21:01:22.968665Z,5987667,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RZH,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RZH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RZH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T39RZH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""39RZH""}" +f1a3465b-b149-48ea-bfe2-cd84469a9234,S2A_MSIL1C_20251206T183141_N0511_R113_T39RZJ_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T39RZJ_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:24.403745Z,2025-12-06T21:01:24.403745Z,6488606,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RZJ,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RZJ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T39RZJ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T39RZJ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""39RZJ""}" +823c7b87-6381-4802-9486-fa9f76631fab,S2A_MSIL1C_20251206T183141_N0511_R113_T40RBN_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RBN_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:00:50.089598Z,2025-12-06T21:00:50.089598Z,5926356,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RBN,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RBN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""40RBN""}" +1ee3ca4f-93a0-4af0-a339-03dbb0d234e4,S2A_MSIL1C_20251206T183141_N0511_R113_T40RBP_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RBP_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:00:52.667147Z,2025-12-06T21:00:52.667147Z,6242980,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RBP,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RBP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""40RBP""}" +81e81729-29f4-47e8-b74a-8b0805f033d6,S2A_MSIL1C_20251206T183141_N0511_R113_T40RBQ_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RBQ_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:00:52.434797Z,2025-12-06T21:00:52.434797Z,5277156,2025-12-06T20:57:41.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RBQ,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RBQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RBQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:41Z"", ""tileId"": ""40RBQ""}" +e3fa702d-b14e-4858-b5c6-e6fed1895841,S2A_MSIL1C_20251206T183141_N0511_R113_T40RCN_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RCN_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:20.388920Z,2025-12-06T21:01:20.388920Z,5240189,2025-12-06T20:57:53.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RCN,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RCN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:53Z,2025-12-06T20:57:40Z,2025-12-06T20:57:53Z"", ""tileId"": ""40RCN""}" +2982d2f8-1fca-408c-81e5-a0f31a65fe02,S2A_MSIL1C_20251206T183141_N0511_R113_T40RCP_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RCP_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:00:49.275496Z,2025-12-06T21:00:49.275496Z,6835733,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RCP,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RCP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""40RCP""}" +e5db880c-cb54-4579-8bab-21c10c187560,S2A_MSIL1C_20251206T183141_N0511_R113_T40RCQ_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RCQ_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:00:48.346551Z,2025-12-06T21:00:48.346551Z,6500711,2025-12-06T20:57:40.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RCQ,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RCQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RCQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:40Z,2025-12-06T20:57:40Z,2025-12-06T20:57:40Z"", ""tileId"": ""40RCQ""}" +d0437053-f874-4838-8c77-46f6d7959fbb,S2A_MSIL1C_20251206T183141_N0511_R113_T40RDN_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RDN_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:01:54.139462Z,2025-12-06T21:01:54.139462Z,4541685,2025-12-06T20:57:53.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDN,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RDN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RDN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RDN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:53Z,2025-12-06T20:57:40Z,2025-12-06T20:57:53Z"", ""tileId"": ""40RDN""}" +cecf48ad-946e-4315-a338-c6d612e001c5,S2A_MSIL1C_20251206T183141_N0511_R113_T40RDP_20251206T202612.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/06/S2A_MSIL1C_20251206T183141_N0511_R113_T40RDP_20251206T202612.SAFE,2025-12-06T18:31:41.024000Z,2025-12-06T18:31:41.024000Z,2025-12-06T21:02:02.484910Z,2025-12-06T21:02:02.484910Z,4748852,2025-12-06T20:57:53.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDP,113,54622,0.0,,,"{""beginningDateTime"": ""2025-12-06T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11"", ""endingDateTime"": ""2025-12-06T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RDP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54622, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-06T20:26:12.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251206T183141_054622_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251206T202612_A054622_T40RDP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251206T202612_S20251206T183140_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251206T202612_A054622_T40RDP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-06T20:57:53Z,2025-12-06T20:57:40Z,2025-12-06T20:57:53Z"", ""tileId"": ""40RDP""}" +6761c9d6-31f1-493e-bc35-98aff785849c,S2A_MSIL1C_20251209T202601_N0511_R014_T34SFG_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T34SFG_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:41.384433Z,2025-12-09T21:22:41.384433Z,5469280,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SFG,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SFG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SFG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T34SFG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""34SFG""}" +e9ffd182-104f-45b5-bb0a-2fb7f7be0673,S2A_MSIL1C_20251209T202601_N0511_R014_T34SFH_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T34SFH_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:05.354104Z,2025-12-09T21:22:05.354104Z,5239004,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SFH,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SFH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SFH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T34SFH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""34SFH""}" +97d38760-f645-45cf-bead-b0217940769d,S2A_MSIL1C_20251209T202601_N0511_R014_T34SGG_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T34SGG_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:41.492541Z,2025-12-09T21:22:41.492541Z,4506957,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SGG,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SGG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SGG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T34SGG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""34SGG""}" +9b1a4983-c8ed-46b0-b4bc-847b2c11294f,S2A_MSIL1C_20251209T202601_N0511_R014_T34SGH_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T34SGH_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:04.691371Z,2025-12-09T21:22:04.691371Z,5087530,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SGH,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SGH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T34SGH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T34SGH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""34SGH""}" +40b6b233-2405-4491-b592-f641c13a51e6,S2A_MSIL1C_20251209T202601_N0511_R014_T35SKB_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T35SKB_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:41.357217Z,2025-12-09T21:22:41.357217Z,4446665,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SKB,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SKB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SKB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T35SKB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""35SKB""}" +c297e35b-2a5b-4486-8291-0fde29b67259,S2A_MSIL1C_20251209T202601_N0511_R014_T35SKC_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T35SKC_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:41.970651Z,2025-12-09T21:22:41.970651Z,5639943,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SKC,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SKC_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SKC_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T35SKC_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""35SKC""}" +ae493d1e-9599-4b9a-a4e5-bdb68890535f,S2A_MSIL1C_20251209T202601_N0511_R014_T35SLB_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T35SLB_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:06.809759Z,2025-12-09T21:22:06.809759Z,4041917,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SLB,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SLB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SLB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T35SLB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""35SLB""}" +917a3aef-6972-4862-805f-e78e733cdb00,S2A_MSIL1C_20251209T202601_N0511_R014_T35SLC_20251209T205123.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/09/S2A_MSIL1C_20251209T202601_N0511_R014_T35SLC_20251209T205123.SAFE,2025-12-09T20:26:01.024000Z,2025-12-09T20:26:01.024000Z,2025-12-09T21:22:51.439623Z,2025-12-09T21:22:51.439623Z,4724145,2025-12-09T21:19:31.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SLC,14,54666,0.0,,,"{""beginningDateTime"": ""2025-12-09T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11"", ""endingDateTime"": ""2025-12-09T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SLC_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54666, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-09T20:51:23.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251209T202601_054666_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251209T205123_A054666_T35SLC_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251209T205123_S20251209T202600_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251209T205123_A054666_T35SLC_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-09T21:19:31Z,2025-12-09T21:19:30Z,2025-12-09T21:19:31Z"", ""tileId"": ""35SLC""}" +84d142b6-8bfa-485b-9697-46230341f9ed,S2A_MSIL1C_20251210T213931_N0511_R029_T30UYU_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T30UYU_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:20.775038Z,2025-12-11T00:06:20.775038Z,4919537,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYU,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T30UYU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T30UYU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T30UYU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:26Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""30UYU""}" +e09338a1-ed1d-4922-ae3c-f910cfceac5e,S2A_MSIL1C_20251210T213931_N0511_R029_T30UYV_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T30UYV_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:59.869868Z,2025-12-11T00:06:59.869868Z,5377694,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYV,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T30UYV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T30UYV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T30UYV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:25Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""30UYV""}" +2b97f52e-9151-45d6-b2ed-129aea306bfd,S2A_MSIL1C_20251210T213931_N0511_R029_T31UCP_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UCP_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:20.540695Z,2025-12-11T00:06:20.540695Z,5790783,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCP,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UCP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UCP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UCP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:26Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""31UCP""}" +8a4b3e60-f619-4ee0-b36f-f864f389b3a4,S2A_MSIL1C_20251210T213931_N0511_R029_T31UCQ_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UCQ_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:21.486592Z,2025-12-11T00:06:21.486592Z,5945762,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCQ,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UCQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UCQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UCQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:26Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""31UCQ""}" +635d0985-e5ba-4a01-b7a3-bfcb6fb05986,S2A_MSIL1C_20251210T213931_N0511_R029_T31UDP_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UDP_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:18.523325Z,2025-12-11T00:06:18.523325Z,4430313,2025-12-11T00:03:25.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UDP,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UDP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UDP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UDP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:25Z,2025-12-11T00:03:25Z,2025-12-11T00:03:25Z"", ""tileId"": ""31UDP""}" +2fdd89a5-b706-42ea-91cc-2c86f91141fb,S2A_MSIL1C_20251210T213931_N0511_R029_T31UDQ_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UDQ_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:21.002650Z,2025-12-11T00:06:21.002650Z,5592625,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UDQ,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UDQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UDQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UDQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:26Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""31UDQ""}" +b9fc339e-1b70-4741-bca8-d38332f84b28,S2A_MSIL1C_20251210T213931_N0511_R029_T31UEP_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UEP_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:22.084973Z,2025-12-11T00:06:22.084973Z,4592198,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UEP,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UEP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UEP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UEP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:25Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""31UEP""}" +2fc0e17e-d3c5-4f4c-bc90-995d76cb6057,S2A_MSIL1C_20251210T213931_N0511_R029_T31UEQ_20251210T233426.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/10/S2A_MSIL1C_20251210T213931_N0511_R029_T31UEQ_20251210T233426.SAFE,2025-12-10T21:39:31.024000Z,2025-12-10T21:39:31.024000Z,2025-12-11T00:06:54.703761Z,2025-12-11T00:06:54.703761Z,5621864,2025-12-11T00:03:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UEQ,29,54681,0.0,,,"{""beginningDateTime"": ""2025-12-10T21:39:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11"", ""endingDateTime"": ""2025-12-10T21:39:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UEQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54681, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-10T23:34:26.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251210T213931_054681_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251210T233426_A054681_T31UEQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251210T233426_S20251210T213934_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251210T233426_A054681_T31UEQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T00:03:26Z,2025-12-11T00:03:25Z,2025-12-11T00:03:26Z"", ""tileId"": ""31UEQ""}" +fba7e00d-28d4-47cb-9fc3-a35d77341280,S2A_MSIL1C_20251211T124211_N0511_R038_T54SUD_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SUD_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:27:02.952015Z,2025-12-11T14:27:02.952015Z,4165652,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUD,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SUD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SUD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SUD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SUD""}" +822ee4a0-92fe-46b0-a2e4-9f5504232b0e,S2A_MSIL1C_20251211T124211_N0511_R038_T54SUE_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SUE_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:27:31.599255Z,2025-12-11T14:27:31.599255Z,6959163,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUE,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SUE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SUE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SUE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SUE""}" +c34481bf-f4c4-43c1-94e5-5fdb311ea6dc,S2A_MSIL1C_20251211T124211_N0511_R038_T54SVE_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SVE_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:26:55.808913Z,2025-12-11T14:26:55.808913Z,4985612,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SVE,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SVE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SVE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SVE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SVE""}" +0f278aaa-8547-4b72-b241-13995c06a2fa,S2A_MSIL1C_20251211T124211_N0511_R038_T54SVF_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SVF_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:27:00.195149Z,2025-12-11T14:27:00.195149Z,4598224,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SVF,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SVF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SVF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SVF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SVF""}" +c6a7c408-4e5d-4bcc-b33c-1cb3898f385b,S2A_MSIL1C_20251211T124211_N0511_R038_T54SWE_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SWE_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:27:14.330424Z,2025-12-11T14:27:14.330424Z,5076978,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SWE,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SWE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SWE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SWE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SWE""}" +3511f0f2-34f8-4e72-b4e7-153a4e560f13,S2A_MSIL1C_20251211T124211_N0511_R038_T54SWF_20251211T135234.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T124211_N0511_R038_T54SWF_20251211T135234.SAFE,2025-12-11T12:42:11.024000Z,2025-12-11T12:42:11.024000Z,2025-12-11T14:27:07.310262Z,2025-12-11T14:27:07.310262Z,4494477,2025-12-11T14:21:13.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SWF,38,54690,0.0,,,"{""beginningDateTime"": ""2025-12-11T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11"", ""endingDateTime"": ""2025-12-11T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SWF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54690, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T13:52:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T124211_054690_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T135234_A054690_T54SWF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T135234_S20251211T124207_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T135234_A054690_T54SWF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T14:21:13Z,2025-12-11T14:21:12Z,2025-12-11T14:21:13Z"", ""tileId"": ""54SWF""}" +6c7f068d-7059-42fa-9ed7-cc5aebd1c858,S2A_MSIL1C_20251211T210721_N0511_R043_T32TPL_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T32TPL_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:56.321147Z,2025-12-11T23:37:56.321147Z,4269996,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TPL,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TPL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TPL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T32TPL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""32TPL""}" +1f85aec8-f1a1-4d49-be84-1c25734a549b,S2A_MSIL1C_20251211T210721_N0511_R043_T32TPM_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T32TPM_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:55.489461Z,2025-12-11T23:37:55.489461Z,5066313,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TPM,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TPM_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TPM_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T32TPM_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""32TPM""}" +50fb2812-e6eb-434b-a826-81fe80ed7ec9,S2A_MSIL1C_20251211T210721_N0511_R043_T32TQL_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T32TQL_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:53.939471Z,2025-12-11T23:37:53.939471Z,4555485,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TQL,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TQL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TQL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T32TQL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""32TQL""}" +c41eef18-8440-4c32-a724-b8a381be5299,S2A_MSIL1C_20251211T210721_N0511_R043_T32TQM_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T32TQM_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:54.157197Z,2025-12-11T23:37:54.157197Z,5420357,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TQM,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TQM_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T32TQM_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T32TQM_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""32TQM""}" +1d3489f3-ebdb-44b5-aec2-12f3342f80a3,S2A_MSIL1C_20251211T210721_N0511_R043_T33TTF_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T33TTF_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:53.990483Z,2025-12-11T23:37:53.990483Z,4478535,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TTF,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TTF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TTF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T33TTF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""33TTF""}" +01840663-b6be-40b2-a21e-a3040039e1a6,S2A_MSIL1C_20251211T210721_N0511_R043_T33TTG_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T33TTG_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:37:53.799274Z,2025-12-11T23:37:53.799274Z,5427402,2025-12-11T23:34:15.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TTG,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TTG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TTG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T33TTG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:15Z,2025-12-11T23:34:13Z,2025-12-11T23:34:15Z"", ""tileId"": ""33TTG""}" +f48f5166-0564-442a-b41c-6863e611aab7,S2A_MSIL1C_20251211T210721_N0511_R043_T33TUG_20251211T230616.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/11/S2A_MSIL1C_20251211T210721_N0511_R043_T33TUG_20251211T230616.SAFE,2025-12-11T21:07:21.024000Z,2025-12-11T21:07:21.024000Z,2025-12-11T23:38:00.664489Z,2025-12-11T23:38:00.664489Z,6334376,2025-12-11T23:34:14.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TUG,43,54695,0.0,,,"{""beginningDateTime"": ""2025-12-11T21:07:21.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11"", ""endingDateTime"": ""2025-12-11T21:07:21.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TUG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54695, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-11T23:06:16.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251211T210721_054695_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251211T230616_A054695_T33TUG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251211T230616_S20251211T210723_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251211T230616_A054695_T33TUG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-11T23:34:14Z,2025-12-11T23:34:13Z,2025-12-11T23:34:14Z"", ""tileId"": ""33TUG""}" +1fe5dd0f-d636-43a8-8a02-08c01bb36498,S2A_MSIL1C_20251212T221731_N0511_R058_T29TQE_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T29TQE_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:19.782832Z,2025-12-12T23:01:19.782832Z,5096408,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,29TQE,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T29TQE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T29TQE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T29TQE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""29TQE""}" +8b3bdd51-63d5-4417-b06d-902e0811e9a5,S2A_MSIL1C_20251212T221731_N0511_R058_T30TTK_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T30TTK_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:52.668539Z,2025-12-12T23:01:52.668539Z,5396474,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TTK,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TTK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TTK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T30TTK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""30TTK""}" +39a7f3a5-da72-497f-a74c-916b2a80b354,S2A_MSIL1C_20251212T221731_N0511_R058_T30TUK_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T30TUK_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:54.227605Z,2025-12-12T23:01:54.227605Z,5006059,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TUK,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TUK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TUK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T30TUK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""30TUK""}" +69c7d757-b4bd-4884-b572-0db82cc8144b,S2A_MSIL1C_20251212T221731_N0511_R058_T30TUL_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T30TUL_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:25.212118Z,2025-12-12T23:01:25.212118Z,3663829,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TUL,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TUL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TUL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T30TUL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""30TUL""}" +19cd516e-0d23-4987-8c98-2ec7610d066f,S2A_MSIL1C_20251212T221731_N0511_R058_T30TVK_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T30TVK_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:17.761009Z,2025-12-12T23:01:17.761009Z,5151856,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TVK,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TVK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TVK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T30TVK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""30TVK""}" +85a3c9a9-b94a-4ea1-bbb8-92155819818f,S2A_MSIL1C_20251212T221731_N0511_R058_T30TVL_20251212T222930.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/12/S2A_MSIL1C_20251212T221731_N0511_R058_T30TVL_20251212T222930.SAFE,2025-12-12T22:17:31.024000Z,2025-12-12T22:17:31.024000Z,2025-12-12T23:01:53.773584Z,2025-12-12T23:01:53.773584Z,4147162,2025-12-12T22:58:22.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TVL,58,54710,0.0,,,"{""beginningDateTime"": ""2025-12-12T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11"", ""endingDateTime"": ""2025-12-12T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TVL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54710, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-12T22:29:30.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251212T221731_054710_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251212T222930_A054710_T30TVL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251212T222930_S20251212T221725_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251212T222930_A054710_T30TVL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-12T22:58:22Z,2025-12-12T22:58:21Z,2025-12-12T22:58:22Z"", ""tileId"": ""30TVL""}" +ca060b3e-1e6f-43f8-9e41-0866dcc1933b,S2A_MSIL1C_20251214T125201_N0511_R081_T53SPU_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T53SPU_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:25.021870Z,2025-12-14T15:39:25.021870Z,5334402,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SPU,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SPU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SPU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T53SPU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:04Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""53SPU""}" +c3df7082-6b99-400f-a617-6548759c7221,S2A_MSIL1C_20251214T125201_N0511_R081_T53SPV_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T53SPV_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:26.354165Z,2025-12-14T15:39:26.354165Z,5860821,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SPV,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SPV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SPV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T53SPV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:03Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""53SPV""}" +b356c274-1def-4d0a-a369-a460b430e406,S2A_MSIL1C_20251214T125201_N0511_R081_T53SQU_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T53SQU_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:28.173253Z,2025-12-14T15:39:28.173253Z,5203606,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SQU,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SQU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SQU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T53SQU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:03Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""53SQU""}" +5da4cc4b-b528-465a-a584-39050bacf86f,S2A_MSIL1C_20251214T125201_N0511_R081_T53SQV_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T53SQV_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:25.996156Z,2025-12-14T15:39:25.996156Z,5923221,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,53SQV,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SQV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T53SQV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T53SQV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:03Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""53SQV""}" +9ed7635d-45db-4b2b-9e93-404a662dc622,S2A_MSIL1C_20251214T125201_N0511_R081_T54STD_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T54STD_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:26.760098Z,2025-12-14T15:39:26.760098Z,4897330,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54STD,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54STD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54STD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T54STD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:04Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""54STD""}" +93c5b248-f839-4dd7-8090-c04eb390a631,S2A_MSIL1C_20251214T125201_N0511_R081_T54STE_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T54STE_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:30.609441Z,2025-12-14T15:39:30.609441Z,6230357,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54STE,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54STE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54STE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T54STE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:04Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""54STE""}" +6e617721-11ba-451a-9def-fffc36f8e624,S2A_MSIL1C_20251214T125201_N0511_R081_T54SUD_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T54SUD_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:25.402241Z,2025-12-14T15:39:25.402241Z,4575120,2025-12-14T15:36:19.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUD,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54SUD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54SUD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T54SUD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:18Z,2025-12-14T15:36:02Z,2025-12-14T15:36:19Z"", ""tileId"": ""54SUD""}" +1495d430-be58-435a-abf6-1d46c771041c,S2A_MSIL1C_20251214T125201_N0511_R081_T54SUE_20251214T150714.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/14/S2A_MSIL1C_20251214T125201_N0511_R081_T54SUE_20251214T150714.SAFE,2025-12-14T12:52:01.024000Z,2025-12-14T12:52:01.024000Z,2025-12-14T15:39:28.290079Z,2025-12-18T10:18:58.266940Z,5151084,2025-12-14T15:36:04.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUE,81,54733,0.0,,,"{""beginningDateTime"": ""2025-12-14T12:52:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11"", ""endingDateTime"": ""2025-12-14T12:52:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54SUE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54733, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-14T15:07:14.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251214T125201_054733_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 81, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251214T150714_A054733_T54SUE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251214T150714_S20251214T125203_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251214T150714_A054733_T54SUE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-14T15:36:04Z,2025-12-14T15:36:02Z,2025-12-14T15:36:04Z"", ""tileId"": ""54SUE""}" +6be1e5a4-2671-4fbb-af99-c5780e46510c,S2A_MSIL1C_20251215T153341_N0511_R097_T47NRB_20251215T175440.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/15/S2A_MSIL1C_20251215T153341_N0511_R097_T47NRB_20251215T175440.SAFE,2025-12-15T15:33:41.024000Z,2025-12-15T15:33:41.024000Z,2025-12-15T18:27:18.651907Z,2025-12-15T18:27:18.651907Z,4530587,2025-12-15T18:24:17.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,47NRB,97,54749,0.0,,,"{""beginningDateTime"": ""2025-12-15T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11"", ""endingDateTime"": ""2025-12-15T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T47NRB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54749, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-15T17:54:40.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251215T153341_054749_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T47NRB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251215T175440_A054749_T47NRB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-15T18:24:16Z,2025-12-15T18:24:15Z,2025-12-15T18:24:17Z"", ""tileId"": ""47NRB""}" +08bb1692-0ebd-4201-b623-367d738baaf4,S2A_MSIL1C_20251215T153341_N0511_R097_T48NTF_20251215T175440.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/15/S2A_MSIL1C_20251215T153341_N0511_R097_T48NTF_20251215T175440.SAFE,2025-12-15T15:33:41.024000Z,2025-12-15T15:33:41.024000Z,2025-12-15T18:27:19.108455Z,2025-12-15T18:27:19.108455Z,4670953,2025-12-15T18:24:17.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NTF,97,54749,0.0,,,"{""beginningDateTime"": ""2025-12-15T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11"", ""endingDateTime"": ""2025-12-15T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NTF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54749, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-15T17:54:40.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251215T153341_054749_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NTF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251215T175440_A054749_T48NTF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-15T18:24:16Z,2025-12-15T18:24:15Z,2025-12-15T18:24:17Z"", ""tileId"": ""48NTF""}" +ff1813f5-ca74-4728-8683-b5a93f7e8c9b,S2A_MSIL1C_20251215T153341_N0511_R097_T48NTG_20251215T175440.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/15/S2A_MSIL1C_20251215T153341_N0511_R097_T48NTG_20251215T175440.SAFE,2025-12-15T15:33:41.024000Z,2025-12-15T15:33:41.024000Z,2025-12-15T18:27:54.983804Z,2025-12-15T18:27:54.983804Z,5947878,2025-12-15T18:24:17.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NTG,97,54749,0.0,,,"{""beginningDateTime"": ""2025-12-15T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11"", ""endingDateTime"": ""2025-12-15T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NTG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54749, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-15T17:54:40.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251215T153341_054749_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NTG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251215T175440_A054749_T48NTG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-15T18:24:16Z,2025-12-15T18:24:15Z,2025-12-15T18:24:17Z"", ""tileId"": ""48NTG""}" +e5c2c371-adf0-423a-bc53-39aa42f90973,S2A_MSIL1C_20251215T153341_N0511_R097_T48NUG_20251215T175440.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/15/S2A_MSIL1C_20251215T153341_N0511_R097_T48NUG_20251215T175440.SAFE,2025-12-15T15:33:41.024000Z,2025-12-15T15:33:41.024000Z,2025-12-15T18:27:22.505809Z,2025-12-15T18:27:22.505809Z,5203776,2025-12-15T18:24:17.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NUG,97,54749,0.0,,,"{""beginningDateTime"": ""2025-12-15T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11"", ""endingDateTime"": ""2025-12-15T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NUG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54749, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-15T17:54:40.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251215T153341_054749_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NUG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251215T175440_A054749_T48NUG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-15T18:24:16Z,2025-12-15T18:24:15Z,2025-12-15T18:24:17Z"", ""tileId"": ""48NUG""}" +49544f7d-945c-43ec-a5f1-965ec6a51ea4,S2A_MSIL1C_20251215T153341_N0511_R097_T48NVG_20251215T175440.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/15/S2A_MSIL1C_20251215T153341_N0511_R097_T48NVG_20251215T175440.SAFE,2025-12-15T15:33:41.024000Z,2025-12-15T15:33:41.024000Z,2025-12-15T18:27:21.688841Z,2025-12-15T18:27:21.688841Z,5205069,2025-12-15T18:24:17.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,48NVG,97,54749,0.0,,,"{""beginningDateTime"": ""2025-12-15T15:33:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11"", ""endingDateTime"": ""2025-12-15T15:33:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NVG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54749, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-15T17:54:40.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251215T153341_054749_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 97, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251215T175440_A054749_T48NVG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251215T175440_S20251215T153341_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251215T175440_A054749_T48NVG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-15T18:24:16Z,2025-12-15T18:24:15Z,2025-12-15T18:24:17Z"", ""tileId"": ""48NVG""}" +f4429425-8556-409b-8f09-ad7241072aab,S2A_MSIL1C_20251216T183141_N0511_R113_T39RZH_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T39RZH_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:22:10.103761Z,2025-12-16T19:22:10.103761Z,6039055,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RZH,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T39RZH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T39RZH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T39RZH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""39RZH""}" +91391b26-df5b-4963-93d4-3b91a7c84599,S2A_MSIL1C_20251216T183141_N0511_R113_T39RZJ_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T39RZJ_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:22:09.945872Z,2025-12-16T19:22:09.945872Z,4486239,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,39RZJ,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T39RZJ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T39RZJ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T39RZJ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""39RZJ""}" +9fe6faec-6189-462b-b564-4ae812425a1f,S2A_MSIL1C_20251216T183141_N0511_R113_T40RBN_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RBN_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:21:38.130376Z,2025-12-16T19:21:38.130376Z,5980598,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RBN,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RBN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RBN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RBN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""40RBN""}" +60c88f29-701a-493e-a1ad-536c0f510069,S2A_MSIL1C_20251216T183141_N0511_R113_T40RBP_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RBP_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:21:36.746300Z,2025-12-16T19:21:36.746300Z,4389870,2025-12-16T19:17:34.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RBP,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RBP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RBP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RBP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:34Z,2025-12-16T19:17:31Z,2025-12-16T19:17:34Z"", ""tileId"": ""40RBP""}" +4911e308-c52d-4c88-8994-f9553ac49364,S2A_MSIL1C_20251216T183141_N0511_R113_T40RCN_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RCN_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:21:35.261832Z,2025-12-16T19:21:35.261832Z,4889710,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RCN,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RCN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RCN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RCN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""40RCN""}" +57e391c3-dad9-4a25-95b0-ab8ed45cbbc8,S2A_MSIL1C_20251216T183141_N0511_R113_T40RCP_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RCP_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:22:09.907535Z,2025-12-16T19:22:09.907535Z,5008627,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RCP,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RCP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RCP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RCP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""40RCP""}" +1696f712-72b4-401d-a70f-0dc9f7426670,S2A_MSIL1C_20251216T183141_N0511_R113_T40RDN_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RDN_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:21:35.607126Z,2025-12-16T19:21:35.607126Z,4211501,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDN,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RDN_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RDN_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RDN_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""40RDN""}" +9b0dc12d-8c45-4046-be74-a89bab0fa5f4,S2A_MSIL1C_20251216T183141_N0511_R113_T40RDP_20251216T185109.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/16/S2A_MSIL1C_20251216T183141_N0511_R113_T40RDP_20251216T185109.SAFE,2025-12-16T18:31:41.024000Z,2025-12-16T18:31:41.024000Z,2025-12-16T19:21:36.172726Z,2025-12-16T19:21:36.172726Z,4156401,2025-12-16T19:17:32.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,40RDP,113,54765,0.0,,,"{""beginningDateTime"": ""2025-12-16T18:31:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11"", ""endingDateTime"": ""2025-12-16T18:31:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RDP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54765, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-16T18:51:09.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251216T183141_054765_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 113, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251216T185109_A054765_T40RDP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251216T185109_S20251216T183136_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251216T185109_A054765_T40RDP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-16T19:17:32Z,2025-12-16T19:17:31Z,2025-12-16T19:17:32Z"", ""tileId"": ""40RDP""}" +3ff101b2-b9eb-4b54-b99c-17ba8365702c,S2A_MSIL1C_20251219T202601_N0511_R014_T34SFG_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T34SFG_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:21.992225Z,2025-12-19T21:18:21.992225Z,5718923,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SFG,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SFG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SFG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T34SFG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""34SFG""}" +79623176-30db-4627-aa6a-2c59c437480b,S2A_MSIL1C_20251219T202601_N0511_R014_T34SFH_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T34SFH_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:27.012454Z,2025-12-19T21:18:27.012454Z,5910838,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SFH,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SFH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SFH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T34SFH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""34SFH""}" +4ee92846-fd41-47e4-b674-03c4e660b392,S2A_MSIL1C_20251219T202601_N0511_R014_T34SGG_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T34SGG_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:19.811090Z,2025-12-19T21:18:19.811090Z,4702153,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SGG,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SGG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SGG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T34SGG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""34SGG""}" +0ee87c9a-06e1-4356-bc69-eed5066310c7,S2A_MSIL1C_20251219T202601_N0511_R014_T34SGH_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T34SGH_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:24.045676Z,2025-12-19T21:18:24.045676Z,5469183,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,34SGH,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SGH_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T34SGH_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T34SGH_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""34SGH""}" +40fbefb3-e8ef-4c38-9ccd-fc0fd10dd36b,S2A_MSIL1C_20251219T202601_N0511_R014_T35SKB_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T35SKB_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:15.994472Z,2025-12-19T21:18:15.994472Z,4652021,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SKB,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SKB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SKB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T35SKB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""35SKB""}" +17e7835c-821a-4f84-8514-ccc8e28899ba,S2A_MSIL1C_20251219T202601_N0511_R014_T35SKC_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T35SKC_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:20.784380Z,2025-12-19T21:18:20.784380Z,6170832,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SKC,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SKC_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SKC_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T35SKC_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""35SKC""}" +dbb8f400-a170-493e-8aeb-d297bb4918d6,S2A_MSIL1C_20251219T202601_N0511_R014_T35SLB_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T35SLB_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:23.347270Z,2025-12-19T21:18:23.347270Z,4234317,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SLB,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SLB_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SLB_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T35SLB_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:19Z,2025-12-19T21:15:26Z,2025-12-19T21:15:19Z"", ""tileId"": ""35SLB""}" +e8cf8de9-325e-43cb-ad0c-a7f6274565f3,S2A_MSIL1C_20251219T202601_N0511_R014_T35SLC_20251219T204534.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/19/S2A_MSIL1C_20251219T202601_N0511_R014_T35SLC_20251219T204534.SAFE,2025-12-19T20:26:01.024000Z,2025-12-19T20:26:01.024000Z,2025-12-19T21:18:52.750517Z,2025-12-19T21:18:52.750517Z,5006458,2025-12-19T21:15:26.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,35SLC,14,54809,0.0,,,"{""beginningDateTime"": ""2025-12-19T20:26:01.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11"", ""endingDateTime"": ""2025-12-19T20:26:01.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SLC_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54809, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-19T20:45:34.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251219T202601_054809_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 14, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251219T204534_A054809_T35SLC_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251219T204534_S20251219T202602_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251219T204534_A054809_T35SLC_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-19T21:15:26Z,2025-12-19T21:15:26Z,2025-12-19T21:15:26Z"", ""tileId"": ""35SLC""}" +183974b9-4952-4f4a-ad7d-23fdf6e0c2d4,S2A_MSIL1C_20251220T213941_N0511_R029_T30UYU_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T30UYU_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:05:03.468001Z,2025-12-21T00:05:03.468001Z,4637596,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYU,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T30UYU_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T30UYU_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T30UYU_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""30UYU""}" +09ec0dc3-834b-4588-a79f-b8540704f813,S2A_MSIL1C_20251220T213941_N0511_R029_T30UYV_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T30UYV_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:24.385495Z,2025-12-21T00:04:24.385495Z,4769557,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30UYV,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T30UYV_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T30UYV_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T30UYV_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""30UYV""}" +7e020155-a8d4-4f5c-bb34-c5207cc309c0,S2A_MSIL1C_20251220T213941_N0511_R029_T31UCP_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UCP_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:55.148230Z,2025-12-21T00:04:55.148230Z,5414515,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCP,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UCP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UCP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UCP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""31UCP""}" +de63a573-1ad9-4a6e-a4d1-882e3c6c0c2f,S2A_MSIL1C_20251220T213941_N0511_R029_T31UCQ_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UCQ_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:25.164509Z,2025-12-21T00:04:25.164509Z,5180763,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UCQ,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UCQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UCQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UCQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""31UCQ""}" +7f98cac5-1d3c-46a7-91d5-e3f9a1793b92,S2A_MSIL1C_20251220T213941_N0511_R029_T31UDP_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UDP_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:05:00.227859Z,2025-12-21T00:05:00.227859Z,4142741,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UDP,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UDP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UDP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UDP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""31UDP""}" +f16ad986-b35a-4a8d-a980-6272a4a051b9,S2A_MSIL1C_20251220T213941_N0511_R029_T31UDQ_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UDQ_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:26.524696Z,2025-12-21T00:04:26.524696Z,5188477,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UDQ,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UDQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UDQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UDQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""31UDQ""}" +7cead7b9-1a82-4a13-8ad8-a4ea75b3bcb1,S2A_MSIL1C_20251220T213941_N0511_R029_T31UEP_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UEP_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:57.227538Z,2025-12-21T00:04:57.227538Z,4188453,2025-12-21T00:01:58.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UEP,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UEP_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UEP_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UEP_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:57Z,2025-12-21T00:01:42Z,2025-12-21T00:01:58Z"", ""tileId"": ""31UEP""}" +6f08f849-07c1-489c-998c-dd27960f92c5,S2A_MSIL1C_20251220T213941_N0511_R029_T31UEQ_20251220T233332.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/20/S2A_MSIL1C_20251220T213941_N0511_R029_T31UEQ_20251220T233332.SAFE,2025-12-20T21:39:41.024000Z,2025-12-20T21:39:41.024000Z,2025-12-21T00:04:27.068257Z,2025-12-21T00:04:27.068257Z,5211923,2025-12-21T00:01:43.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,31UEQ,29,54824,0.0,,,"{""beginningDateTime"": ""2025-12-20T21:39:41.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11"", ""endingDateTime"": ""2025-12-20T21:39:41.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UEQ_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54824, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-20T23:33:32.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251220T213941_054824_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 29, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251220T233332_A054824_T31UEQ_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251220T233332_S20251220T213938_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251220T233332_A054824_T31UEQ_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T00:01:43Z,2025-12-21T00:01:42Z,2025-12-21T00:01:43Z"", ""tileId"": ""31UEQ""}" +ab3d534e-101f-439b-9b4e-eb4718a3a1cd,S2A_MSIL1C_20251221T124211_N0511_R038_T54SUD_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SUD_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:10.880905Z,2025-12-21T15:31:10.880905Z,4523814,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUD,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SUD_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SUD_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SUD_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:10Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SUD""}" +beff2b02-db16-4444-b822-7b986cbc6817,S2A_MSIL1C_20251221T124211_N0511_R038_T54SUE_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SUE_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:11.205097Z,2025-12-21T15:31:11.205097Z,7047126,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SUE,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SUE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SUE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SUE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:10Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SUE""}" +2addf2c2-3c7c-4890-a992-8af87512b01e,S2A_MSIL1C_20251221T124211_N0511_R038_T54SVE_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SVE_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:05.281283Z,2025-12-21T15:31:05.281283Z,5117509,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SVE,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SVE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SVE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SVE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:09Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SVE""}" +f0782fac-5767-4a1d-b0fc-bb47e53470e4,S2A_MSIL1C_20251221T124211_N0511_R038_T54SVF_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SVF_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:41.942844Z,2025-12-21T15:31:41.942844Z,4644906,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SVF,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SVF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SVF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SVF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:10Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SVF""}" +d464d1f4-4480-4d86-9c94-d5a75b33666a,S2A_MSIL1C_20251221T124211_N0511_R038_T54SWE_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SWE_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:07.687293Z,2025-12-21T15:31:07.687293Z,5187624,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SWE,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SWE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SWE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SWE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:10Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SWE""}" +855097a6-e1cf-4a1d-a1ef-a4759aec4ab6,S2A_MSIL1C_20251221T124211_N0511_R038_T54SWF_20251221T145627.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T124211_N0511_R038_T54SWF_20251221T145627.SAFE,2025-12-21T12:42:11.024000Z,2025-12-21T12:42:11.024000Z,2025-12-21T15:31:08.311403Z,2025-12-21T15:31:08.311403Z,4531806,2025-12-21T15:28:10.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,54SWF,38,54833,0.0,,,"{""beginningDateTime"": ""2025-12-21T12:42:11.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11"", ""endingDateTime"": ""2025-12-21T12:42:11.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SWF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54833, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T14:56:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T124211_054833_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 38, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T145627_A054833_T54SWF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T145627_S20251221T124210_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T145627_A054833_T54SWF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T15:28:09Z,2025-12-21T15:28:08Z,2025-12-21T15:28:10Z"", ""tileId"": ""54SWF""}" +166602bb-eb5a-466b-b347-3e0342c86764,S2A_MSIL1C_20251221T210731_N0511_R043_T32TPL_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T32TPL_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:38.909451Z,2025-12-21T23:27:38.909451Z,4100806,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TPL,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TPL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TPL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T32TPL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""32TPL""}" +403c6b64-4ace-4179-9082-a1053382db83,S2A_MSIL1C_20251221T210731_N0511_R043_T32TPM_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T32TPM_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:40.759874Z,2025-12-21T23:27:40.759874Z,4983659,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TPM,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TPM_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TPM_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T32TPM_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""32TPM""}" +da67dc00-acc0-4175-8898-0acd00cb804f,S2A_MSIL1C_20251221T210731_N0511_R043_T32TQL_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T32TQL_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:38.162602Z,2025-12-21T23:27:38.162602Z,4341889,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TQL,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TQL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TQL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T32TQL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""32TQL""}" +c02318fd-8b52-4858-9dd0-39de4f010493,S2A_MSIL1C_20251221T210731_N0511_R043_T32TQM_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T32TQM_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:42.901938Z,2025-12-21T23:27:42.901938Z,5340432,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,32TQM,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TQM_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T32TQM_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T32TQM_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""32TQM""}" +2befd44c-67c2-4829-b520-7b944e088606,S2A_MSIL1C_20251221T210731_N0511_R043_T33TTF_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T33TTF_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:38.379585Z,2025-12-21T23:27:38.379585Z,4262223,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TTF,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TTF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TTF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T33TTF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""33TTF""}" +4eab528e-e21d-4200-977c-41cbf9742a2a,S2A_MSIL1C_20251221T210731_N0511_R043_T33TTG_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T33TTG_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:44.260446Z,2025-12-21T23:27:44.260446Z,5304537,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TTG,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TTG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TTG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T33TTG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""33TTG""}" +635b8c4b-b73a-4496-8d4d-8dfe8ad34ee1,S2A_MSIL1C_20251221T210731_N0511_R043_T33TUG_20251221T225304.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/21/S2A_MSIL1C_20251221T210731_N0511_R043_T33TUG_20251221T225304.SAFE,2025-12-21T21:07:31.024000Z,2025-12-21T21:07:31.024000Z,2025-12-21T23:27:39.000334Z,2025-12-21T23:27:39.000334Z,6171746,2025-12-21T23:24:48.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,33TUG,43,54838,0.0,,,"{""beginningDateTime"": ""2025-12-21T21:07:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11"", ""endingDateTime"": ""2025-12-21T21:07:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TUG_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54838, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-21T22:53:04.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251221T210731_054838_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 43, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251221T225304_A054838_T33TUG_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251221T225304_S20251221T210727_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251221T225304_A054838_T33TUG_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-21T23:24:48Z,2025-12-21T23:24:47Z,2025-12-21T23:24:48Z"", ""tileId"": ""33TUG""}" +c4f9dfa6-9752-4d93-844b-db54712d80ac,S2A_MSIL1C_20251222T221731_N0511_R058_T29TQE_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T29TQE_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:58:35.869173Z,2025-12-22T22:58:35.869173Z,5553129,2025-12-22T22:54:36.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,29TQE,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T29TQE_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T29TQE_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T29TQE_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:36Z"", ""tileId"": ""29TQE""}" +45b10ae7-704e-4814-8327-506a27b61c44,S2A_MSIL1C_20251222T221731_N0511_R058_T29TQF_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T29TQF_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:57:29.184851Z,2025-12-22T22:57:29.184851Z,4232668,2025-12-22T22:54:36.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,29TQF,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T29TQF_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T29TQF_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T29TQF_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:36Z"", ""tileId"": ""29TQF""}" +701a8424-85ca-48aa-ada8-41b21c6b32cf,S2A_MSIL1C_20251222T221731_N0511_R058_T30TTK_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T30TTK_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:58:04.411505Z,2025-12-22T22:58:04.411505Z,6068977,2025-12-22T22:54:37.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TTK,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TTK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TTK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T30TTK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:37Z"", ""tileId"": ""30TTK""}" +2a4a7fed-b946-4263-a1be-3c8a81cc612a,S2A_MSIL1C_20251222T221731_N0511_R058_T30TUK_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T30TUK_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:57:59.972208Z,2025-12-22T22:57:59.972208Z,5312478,2025-12-22T22:54:37.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TUK,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TUK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TUK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T30TUK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:37Z"", ""tileId"": ""30TUK""}" +e456d6b2-ea23-4a8f-a320-a4433e0f7bdd,S2A_MSIL1C_20251222T221731_N0511_R058_T30TUL_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T30TUL_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:58:05.743099Z,2025-12-22T22:58:05.743099Z,4111285,2025-12-22T22:54:36.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TUL,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TUL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TUL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T30TUL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:36Z"", ""tileId"": ""30TUL""}" +d9253ea5-a813-47f0-8d63-2956acb9a81d,S2A_MSIL1C_20251222T221731_N0511_R058_T30TVK_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T30TVK_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:58:02.733530Z,2025-12-22T22:58:02.733530Z,5321437,2025-12-22T22:54:37.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TVK,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TVK_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TVK_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T30TVK_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:37Z"", ""tileId"": ""30TVK""}" +e446cf18-1f55-4666-a7a6-8c26dc222219,S2A_MSIL1C_20251222T221731_N0511_R058_T30TVL_20251222T222827.SAFE,/eodata/Sentinel-2/MSI/L1C/2025/12/22/S2A_MSIL1C_20251222T221731_N0511_R058_T30TVL_20251222T222827.SAFE,2025-12-22T22:17:31.024000Z,2025-12-22T22:17:31.024000Z,2025-12-22T22:57:29.803239Z,2025-12-22T22:57:29.803239Z,4419025,2025-12-22T22:54:36.000000Z,SENTINEL-2,True,platformSerialIdentifier=A; operationalMode=INS-RAW,S2MSI1C,S2MSI1C,INS-RAW,A,MSI,30TVL,58,54853,0.0,,,"{""beginningDateTime"": ""2025-12-22T22:17:31.024000Z"", ""cloudCover"": 0.0, ""datastripId"": ""S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11"", ""endingDateTime"": ""2025-12-22T22:17:31.024000Z"", ""granuleIdentifier"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TVL_N05.11"", ""instrumentShortName"": ""MSI"", ""operationalMode"": ""INS-RAW"", ""orbitNumber"": 54853, ""origin"": ""ESA"", ""platformSerialIdentifier"": ""A"", ""platformShortName"": ""SENTINEL-2"", ""processingDate"": ""2025-12-22T22:28:27.000000Z"", ""processingLevel"": ""S2MSI1C"", ""processorVersion"": ""05.11"", ""productGroupId"": ""GS2A_20251222T221731_054853_N05.11"", ""productType"": ""S2MSI1C"", ""relativeOrbitNumber"": 58, ""sourceProduct"": ""S2A_OPER_MSI_L1C_TL_2APS_20251222T222827_A054853_T30TVL_N05.11,S2A_OPER_MSI_L1C_DS_2APS_20251222T222827_S20251222T221728_N05.11,S2A_OPER_MSI_L1C_TC_2APS_20251222T222827_A054853_T30TVL_N05.11.jp2"", ""sourceProductOriginDate"": ""2025-12-22T22:54:36Z,2025-12-22T22:54:36Z,2025-12-22T22:54:36Z"", ""tileId"": ""30TVL""}" diff --git a/notebooks/sentinel2a_night_imaging_products.gpkg b/notebooks/sentinel2a_night_imaging_products.gpkg new file mode 100644 index 0000000000000000000000000000000000000000..4e194326e8bcbff9b9389a286c0edc1d2bf55ef5 GIT binary patch literal 372736 zcmeEP2V4}#_dl>87O)|9Pb^qC+}&%tr-nI-fFSii!Ge2DQHlcAL=(HQ$C7A_nwV(R zXkv@T7Eu$8Jtncmn5MDD7F%rb|Mp<_mb*g_5b)=J?xU-3XJ_8bcV_pMc{39q8=0D8 zlA1HK(%BrTTvAiw;vzv(sYD{F1AlwMU;ZbD|5W4&_}4`u@jb=Sp)nDmqWj|i){*#6 zY+DKLxO(2>?k9OZ%KMM_A^d-g07d{KfDyn5U<5D%7y*m`MgSv#5x@vw1WE~kn$4hK z&ssI$TA{`=i3eOf`j-+fTr5TaBY+XW2w(&-0vG{|07d{KfDyn5IEO$liCbrhSCwYz z2^mI{IW@y%l=d@a_RC@i^-ncOUEK`QT zB+VX?onuPx`IP^;b(DCyG#hB;62xZZn6gvZ44%nTp>W|pQtLy{U^1@mM`ri-5-->B zsbiXS4~>`73a)xaQ%|Y^0gM1f03(1AzzARjFaj8X7lObTPnT-ZO`>abc7va5wkabAoH=O}o05^*uYXPo z*z5gLGy0_r%E~kjG2~>MO>EAPEK~M#AEXFMB_rUETt_N3q(Va|{pAFaoa=pU&8Woq z!2y>B>(Im1BM`gh_g3q2_MotD^ z0gM1f03(1AzzARj{`U}QSs~i}xt;@T|NrlGEUqy|03(1AzzARjFaj6>i~vReBY+XW z2w((62smZ`=f(e@l6YEn@)PC8|HTMk1TX>^0gM1f03(1AzzARjFaj6>i~vU9rAMH( zONHp?FEEgd!SnwweOKZNVgxV(7y*m`MgSv#5x@vw1TX>^0gM1f;8_S1Vg7%=#B=|% zio$6a0gM1f03(1AzzARjFaj6>i~vReBY+XW2)q;sC|%s5y&Abzsq)+<|8VR=dQ5a= zQfPD(zyIF}iRX!zq7}Fj7y*m`MgSv#5x@vw1TX>^0gM1f03(1Azz8^vK--GZUeDkA zk8=dz_i~vReBY+XW2w(&-0vG{|07l?tM8N6ze@V@kvHG}97y*m` zMgSv#5x@vw1TX>^0gM1f03(1AzzDo31i1NsZ2!L~G;ui?0gM1f03(1AzzARjFaj6> zi~vReBY+WjIT7H_|HJnG%h@-$Ru}<{07d{KfDyn5U<5D%7y*m`MgSv#5qMDu;Q9X- zg(NNqBY+XW2w(&-0vG{|07d{KfDyn5U<5D%FE0W$JpPf?l5~@JJgk1!W3$H_)m^H; z@7}-KrfLJ-M!Pqw^i`!{6=~P2E}y_7&;O0p)pBc;AgeN-%*jga*UyyIZ_vPgDLJWW zrj&FRZVl)E8J23y>7O!Wkde(X**+5#7oydLNOf`Hp`jshQeWG2M`id*14Ft*$Aw4} zVuHEM(OsnZ3@x0b(NXs0_(~y%G(;N|CXI{k4h4jUM@i#DB13|7(l~8+d`KH@V04_$ zPwJajPiba`G>6rvnWVmUb@KI<4o%HWgVtnA4Vf9)IazFKMvkUnB@ApvMrMvwZ<3~& zva_W*{n-pD>DyM?JuC!j-XMg2x8e%!9R-Q?RCHWSg>bY+)-J zta)V!u!cv)hs5bh2xDHEw3zS()Trzo zFLRNkW*AMwvj?Z8=9p60Avu{AI>q+gO(AXXc#I3G?&d9%xlCj%-z3{~Te=4S`fCFt zL!`E;(l(YtQZm?dlT;VdLnn=jhQA4sk$$44hDYf_xG%DhR^V$@SZaS$YQO$DQoCe} zRLJ`}J5DPsKhZnd)=!kp4B67tQ$%QSQYSn#%C>~I(zuW=@L7)v3W?8y8^l76 zDI+Ia1a;fCS=h_IA&Zcv&ExNTx~y4n>Y+C6)Et_4T0PS@hC}%3Xe?yeaZR~7I+?BQSSMSf*mh< z*r_+ub~G7MN_5)I!Eb5nMe0agMh1>oQ@OwQU93#S<0m+r%e{2ih|l1eOe&!o5lbpYcmI z!bd;VoNCI-OUN6&enwNaAuDxIPAV7`7JjIoa3GHzRYHZ`-zh;xDUM8C|eer!hSNDxQ-$Pm7= z;v{%+GP8^zsvL@Mqsg3_k!mTzW;oi8yS7~Xe+`$Kk}7lD)RnGQoLM2rT2h;I!G4)O5CA zYDT}5L0Or`A%>jnJOP)L3Hof&bHo=IQ9ea4z^9Fcv!KR_v|7K6O!xq0wjG<~o##U6 zSeUsc)|`uL{W>Va*8T<0jQFW?vw#a!B7I1<#V^w@3&aw9sV%M5m7VKMKQ%p4Y1O(2L>l-E!#P+5nLF~{ES{Ayd>-C?!!u=REh+hPvX0@Z!VzNiK2Rstx;#58mB&dhWf z6J2y|hSMC1q>FGF5=)@VaQS`OaMz4Xhq?@BW3?R<-Nen?WU4a8P~;{Rr8W8ONDPnD zC1@k1I*Z@5NV=JiG$B4bDpYFW+9uU#vA%{|3@z@OnlZxi{}F9FH>&I%+y0qmkZCyh z4zs}|$j&!&tv3?J3~T7--M+ocxK>s>#+qy~VXUOCK>yez+L^j`?jt{;Bu5@2k=aqu ziJWc7v@?uF4x)ahlpKReYVX)7;1%+d7G&PGZA^p8T*H$r?ap_iXPX8OF=ZG`He~Gr z?Y2p5!`W(nkhATC%*Jls(a|nby5*JmJiY(9hC!_Ye0`q#ypObv)W@7^^l|h8NVN&N z= zR)P07k3&9ggJ3q-oSBsl#$Oia8n!xeguEbla|o;y9adVcA-*7GyZ<(?mTe&G3@=WNgEo|8Std5-oR;hE!^={dmDT%lRCy%2Z2Ry#btHl2oKLc(jMgSv#5x@vw1TX>^0gM1f03(1Azz7r-0k1J!j(Vfv z;{66(>W_p=gW+&#I2108a^TW93ocCt!KG;iT$-i9MLGa3&HKZ}#|)PiM!2-p!=+VU zxU}vA7vElRX_E|>wmsm|E)g#6b#U>EgNrN%F8)z)=@1DQqAOg;Ft|`%;35x(iy{y% zN(2|xYj9C_f(xyI3q!+2qk>CE1zb8&aOq6I;1W?6E|In2(v3UTFUkWh(beG+!!7lX^0gM1f03(1A_#Z={wM&I)*XM?t zNXBsXzpHB(iTgpg;2%bySP0B?b!{e@R4-wS=a`;B@T(Bi+&#Ndqeh-}yj?1Q%V}mx zXpE%71#n1ptPlu-#CHtc+L#9EIt9#tKQ>Puw!Ur5n+DJM$cA=i;KMG<656rm)^lsH07r05hxTyU)T3As|P@Q>Ga z3F%B%ee@=Xw#$Inw_pg| z)4`HKAC1&Us1VmZ1>5ff0cMt`6$p4s9TaZl3gCJmIwmBJ>+KY- zyMyCXC~XW}tliFaYD&E521P0vZXEcNB*z6J42xE+epze=1p8T`aaa>wq~n@s38g}* zX86%(t%o&|FP;nJi{fG?p^4Bku9h~?b1C^iTT;1jzNoxtK8@7EfXibEapWEiiPv(E z71p=hBLyE2*T6b9EM*8$j9gE0ISclpT&aPVD1TTL%n-@#YQp8nA1R{L%&bIH78hL1 zB@11XA4VCPl{qB8!$Y|q7xyLiPUj%4wk~&u;T+DqYD70=7v^w=8!CdDJE|< zU0ybu!BwO#^(*Pvv@bvhpEE~;+u@M%A25jG04~t1Xv>JO>p1K8AlXmoP2r}}(M?q{ zS2!16n)fDJUUi>Q(i~vReBY+XW2w((? zgurxa4A|e}oUy-;_m}O`?W~!5e^sTpq+hD%`dzBw7Z@6h=Kjz!y#DZDtNqQzZSoIi z&+=CGP76j=T8{ec;g*_0Ccco`Z;g619}1~mYr%kH7pv#~vSoOS@56(UD@EVG8eSvU z{U?uYi+Tm49;?4uy=8Tc+|i3YIt4f0~d}az?QK^KunP3Q9j#keyPYk(aXlZvj{% zIT7+4r?G=ZaxSS7JB=;na-GUMjV(7wHARc;?!ukMg;c9JPGf6LIQySg%K6b}^>n^S z`yUtper4=5&V!2r@4vb%oW}Wm3GZ}1qE;x2>NHl;w%%1IoW{@TQhW2gp#5*no4%#pBWEzp0k{Z=F93Z7Kw#uO@VS^GuvbHR9H~JYq)< z$hcf1_gYQYlMAZ`BR9zjgDl@h>6v68`Wvl z&sA-&D$P0;zQo15MlR2cuZ+>~^U}${y#1Af%g%gNGdI3L-#Wj(7L1~6Osu!@i<-Gt zAFrI6(J>f(-8jgwX>85hzaM0N@kYB~l=0}q++Ro4%xzNNYv0N?!RT_6-9uVN*3A9v zmjTOu^$JG%HhZ@{qH5+2L93U>R}V%%&YE}hNW+>!qwk-->+{|98o3dRd_Ci#eK+g2 z?(A}-M(%j^t;&6Xp4Rzh$Vy0$IykUd3edw+bRDWf`svD_Z66Hu*==7>J_6~}eMgPV z0=m&n*IYkHUlh1@&Um2LTx0+(52-hL?224C3g#J4CF=H013hn?E|1h6; zFu88yz1_WpOnf09WUJfdUJgR%w*<}keres@N;MkDx;_p+m(Mo``}t=5%x0avayuXVV$TwVy{ci$pJElP+H5k)^o&9!Q&3>4 zvZUT5lN)F-RSgCeNwLn`s|k(`Nhjjdi!{|x2%8t8YN$0z#-C9`^gV4q)nHAE_58IU zyRxxY6R^F?Es$_*ufnjvs)l9L-eSb3znu1}(52<2YVbp{V{-BmUvl>kp(J3xxS- z*AugP{N$axdGDu2cTF%_S$o9&dW*ett8SG49_t&7u1xJ4n3?LGyV1vU?3}v6X#K50 zt6C_$bHnW{Vl_`yGfRNg=rP}fR^@K{i;rC=pr;ogHyHC!I z-1TP=>X`c95en$7L4W_W18CHLdrwsP|u`b3rJ(x@)!mK<8H8Gq^I)mG)r3e^e%s(2X7w4^Z+{U%GTc%K=UAk`@Vmz#l;}BH)UVi zXplb>D?!{?v&|Xxm&2=|9Swp!Ec3Ct@U-i+zP)A z%87;ef#1&kvvA~&dbzL1p8mQq(5DY}?lcwX(RVccIJ(;05B$dh{jT!0jtzje?GH6U zvb2Iy$Y`a3l__YJm9a*ahUH^=iZrP7a>`)8Xw3Qo!$;7vXe@vJUspClxezu5rDXB# ze}%t-B$b49(OABP5B9&1)a(6Q1=*F2P}X6gT)0q%VS$D6t0k0$E-fdaEbuRTp{xU; zY+3)$+5c0q{r`#@|In=IK5u~ipXkK=J1@OwRFfQ-(HEu+{QETc5Cx+{-tA^K5UXC* z9H?Heb<&J`1N64;0Ru8~K@~f@dR>Q2qC)sWxBtB|>t86;cIx2l+Ndu+1J#6Q_M%l0 zg;GxvtVu0X6ABZkA|xm!a!M^z5-OHb>s6#dp>WbaKry=5E~P)8T{xS9x9FH1C&!>@1;2r8^a2X*r&XaO@w*8x~j{$_LF)DY4g>kZ`v=sU$K9C`De@0+yCU-v?N#*;{N_G#W$a|H z-1$9%KgSh)U@?U*t&uDJY1sTg zZC(E_*#Fif-L}gG*_Dyd4Z%XUaG@K5?f<+zXkHDcJSTbhE-f#i%kwV>p&P>6|0+q9 zZ7$qt1o-C^0yAAlI=SE7+_xKU9PnvdRPDDGx7Skb(Vw0F>pS^OFp9`L7cf#8Vhz3H z_PaZGEy=gv@^)zH#y#^r&Vg$^KU0&~#?2pG4n|{}Pp+R=<6yMIZ&PZf zq&*6G5c1Pl&k&S+;@5HR7u%tbOvS~nJ|U>#qWJ224!1*H(7uMXfZ5&MXDB7mJo9y4 zE+2JMwL{nTd^^g^KLk;dT3u!VJt6DXf%CEu)VcEAb<=?!^~K#)93B4A?a$u<`o{^^ z_WS`f-#Dagd*xQ^5ERr-*R9HmwrCV_Z24P2zqO>v_PV>gu-F507{xcYL z_gV16!%y0wl|!E-{Q&fx)_c0vgmlR%pVS|LuG=y3hx?FT`KQfY{{nhtSlh75kREZf zsmleRPj^k9cpcJZZol`s4|K++T7Kz(_rbegkyQb2Tl`gWrJgo`uA*1VVd_G`z^X-~ z!Uz|$iDr#*g~>$Pt1hIDA_?)*MFqEbOs-1^0%Mt2)YE9 zPeV9dy7=rQIjj@Y$QjP;m&+Aae*xsON$TUL7qf#@*zb-mU4MZE;P#Res^=|Tv~T2# zS-J@2S~^u&y2vpi)UcM(YNtPA>7wIm6>I6DP!r2KGdZ_#)-w96^?0G7i*jx;URf_) z570RM6T~u%jJqv6M=giW@XLspyRTm*UzjQILJ;KVI4aMteI|Y*1mMFFG=|*Wm>ZKuGo?^(zMWqAi-Pt7D;Y zD^lLBaW2(YXzai1!s;FUp*4zf(eLU|IRrh{$6WaiXr*Sy6*~V-0#UqgGI?qoBOJ0V-PmpD#ppWg|ojVI!7mB@m(tg+HYtU|$4# zA!<#Exp`X5uB?QpE))w<&i;4!#e-pC{qkcWTEzH&;hp9dk-aQJROnKB8ECVJOc)U_ zREP@v%U+1;K#1n;|36gXUd?r=Q>HI|2qREp1g6&>4)F-igo3U>(o08l$g8rCZ)Oax7<2$l2x1f39nz<-%a#h*|J8?kOu0#!&( z!~Xe=C-{u#&kU18c`z-H;4fHn$P_G z=S`dVeHDz}c`rm7^biWmFQl}EQfd1aY};!fC^<=+!D|k(4uqbPmN7;nA(Jyklfq1p zgo2SfEA%K`Y_~FSq8G|WEQLxS^c0joLy(MIv?z}kde)@aQ8mTv%0}pMEyqHy5TR!o z7TEqTcF^5RDD*^KS}sCQ#J{YC9>-RSv2UY=tyEYlxHf|LC8FAG$}jMt`?G*?dZEU)18gd-KkN z{oi0r=+FOE5yca5_CNpd?1pJGQl18*FW-!Q;~3Q%z1QH4#z+1Gr$KVq;WJUK(Xj2? z0vrDwjC|d?e!PD`Yqaq5wI@?g2cvQQ#w!<2Y>m21xqo5P-eA-}`Rcn*7q&*7DvY?@ z1^fqNTrR#D`>3^0iC)H-6a9i`AYJYEA9Dz+x995Ijr(mDPZeA11!2D z)r^cGXbN`bA(V1CO&Rrc5$yk%va$aQVI!78B@lWF!e6aqXtjeNI%`s7wSi)GWhL}t zu>EgY|Ih1GDb|Q5N(aLN+yAeY{V#NBISD<1f7uJY7~cM`&_&|D5H9$K5x@u(1A%FA zIj|M8Gw}?O9jgCGPHl~1LI%wl?BRyxQPY8h&V+(4-C5C6O4uN`FD zKs5d5uKrx+s#6+m3xrIzg^XH8eANmH9rY;n;?mlIXoaqxde?Fm&G_N-wxe4GqK_s@ zVjBa^GqWw9Rw@aGJMhm$8qDAXfJFc-X@Wxl6kr3hCWC_2I}CawDFp@YZrpo(3N(~&;MiTsLr_$N~-vV%J$qDlLi|A|{`Jxul<#noP5uK%j2$9|W%tdsLs#VNI zbon*Ov;ScUXWr;5E&IPb&i{jyG3-*;$Ji&178dH9uQ1{^>X<)X$Ln+!e$YjWi<2i{}BH_5Xb))!|=md ziiN=RtSl#|TJF5_t&G!7lGe`ndCeLY{qgp8ufyB4Xw>E>Zqq;;5#s;3sg~IHjOc@9 zEUFxRIcPzyR>-tx?u|^t69`&=!tqYe%7K+!}gxMx{5`>tUL(vOFK z+A0%h-Sv;(p9u8kwr^<00-adbdkNP*>4rq@T%c{+YgDKdM$!yZEeaaq3yd^ux@2G! zGNY1JEA?_YnEMXSKM+34wyKt}2NEYIN>9~t%toyHltk51`>SX*#W+&6grw*;ZN%)# zOw|g(s#acnfg`!d?~C)|?Rl(f6(PRhMXFkSm)dJec1tZwMb+Z@7f00s1d)0CMt$dqc8I?w*s6J~=CY%A z*agwv{%D+Z#o?H3K7 zG@nJSR)z#--qE5OSH7;Y73c{rH{{>n(jt}g!_UtF-F5W*v&(L15p#0lm6q?bsLJAs zpZxQy7P)Q@8a`toi)Ou6OIQDp7IpF1_~6b5)=Jyfk7A8RGX+cSLJlF8?i1>0@VY~7p7>Eq8-`8LQ+({5HY(l zQ$4UfoIk(qz#fKSfmM%JO!eTqw7gUgo_}#vkCIJ2B!WFW(>2q{O?0264cgvE&!VQ0 z9TvyE0sh!W6?%7@t3_<~mh%lEZHCdtkU3-5iX zMQ^X%(*3uQEQ$%;)MVxcaPofh%P#W>77bmq?H_ip7G)i2(EHjj7F}KFHAit;i|T)U zzE{>z7L9FH;X);F5~~)zJN8}X_58G^H{?Vd&bN4Wdj35;05uMV0)1v+T=6&42%%X*z`^7B;p}6_!_S8@M zv1nBr?~ot1Xc3h;?nJ#*7WwN2_Itcsiyn7fyJ5}%D~QXd9jLeg@EX5i`dgy`FAu-v z>a{>CCj_)z3Utqizu28XyREOFS_Aarp4*c-IzEJXhoiIq8rO9<(5F^+*!%_1w)n%I zH)fEu6m0lU!lAtIlj&)S;x@gZRR+C5MU!ghg>Zsn>G-0Ba3O5OQn3U=7@`I!f{Ti< zxBsn411FsjvnwkhoPdRJ;X)XO1s1}umJk-Yw48*nz`r;`xMWW01b+X2SF@zbBe>un zMxay>m|i=>$*GTp2V?#_4cf}c_tHj;A8yrB4ts_U>abXARrR>34_j4(&%{5>7nc6l zz*(t_%3k$h^>QQ3aF}EyK|<)GoYBh|J&-1t`XFgm&XNXW5mcXG>()o5I3J(jn2lH$ zDT(Ss_|r7Oh>t#o=mJaVBLp|*Cxy7R7PBie)h8HFeH1$N0mA~TKChVS!*^+UsXjda za!`GO;rsyC^k$L?^_+;WA3ps2SD8=U&<^GM?mZq zflzw?MG-tqP^U{Wdq0UPlEf~|W z8fv#g^=Z$y!jNhGV%8hk8sO42|I% zq21)YvsR2dYJ2XFtEZF0P+OmmWX*xzmmE3mB+wuK9rmMNwmaI?{V0K;Jr`CSoL3EK za_Xk=5TKj)Z6I3*?Y-UiV!I@uZQHLh6SSFDFfu}IAUP+zLB=q&L1r{kYDPtv8Oorv z7lMS2BIS(28vjo*aEu9=5E9D^L3lzAKg#J%ZwUv7=oFESAeFd$a2AdRrt1kx0Vj}H zE%|38kvf8a6H6@d)+(A(7O?+qlcFcp5!mHrBsB_o>Bj$C0B#~V(dK#a|Mrc1G4cOU zuBB6j_q~g2x%huT)Cy%$$~ZLnCjJ#&%1{#s@S%Zm$&Nsic~SqKVYkh z@R?$hD;}r?5A%ibnV;;bIE^cuFSN8(BelWA8etwpMzXLW5-g2`qmfx74ND_UmVkY| zLGR#v!Mx9o1Jx*|Y*Zu1Yy@3}t6uR{Bcs5u|5aU7yC$6K;)~>H_I;jlQ0A4QReH0~)GMm=}kkuobGI<9@G*W>Xn8 z?koyJjWs_0L;F-hE{_8~j-DEZUjMdAh0en&p$}ZT+<0$N7)tuM-G3*}R6+;l{XBEg z@GulLc+t&4-7BM6jhngOH-(|=eW$&jv9GewNQv)O=4zrFx|#a!j{DGP+xD4B6>Eg4 ze%M-u+hm5NVf{Y?%hO=#KE*0n*wa?eIB)+4myP{j2pd7_luXD`Dt{%VP%$d2*FbO$ z2uacHM+xkBAy)?We{d`oa)k;x7#3Ee6$`l{ZZgBYG!~!U%VhrxU0O~;PT*f0Ay+c{ zKRA}R|MznH|L=XSnT8+02)vXCObZ+UTO~O&l@lZL`r!Rhl~L;f8r@CM!h*)R4M~j; zLv=T5n7(5FK_zJDR|9(V=Tx;m>-yZ}R5d;m|1e)z|NBGgw}H%wOOE+>KUP^N)Hc7` z3=MV`RCWp^BgiIX1+d356`mR7kL6HiB+a5>-g4 zAqdXirtc^ zoV}lw>g1+0^7B*AHf{S?KtSKB6*61=8zBEECZ=&*7&e|)4;p? zoVx+px~wampzz~KYmUD?^=<&qY-Vcn)IA+<2DEwmixH-gVQ4{@>>j&-p67A!1CHKY zYf!s0Rc;0}@b2o-6zH=T_Dk-$-wZgKUh76xplO9ay$$GXy&5d#=*nhws|rJC4X6^0J|_E?gu`77Z3=j%QR0s79EL-XI&Ukun+!T5Mv3iuCf+G{ka zK2xXHKQMW#Vd}xy=#8!${|$(0zWnZ(aC_D1RGpva zHXeUJfG?b9zTjK=J7K*+b1O^v@Cu&lEyNpuTC7tiU9m0( z=z!z9I#e{@30T^%&-9r<-+XV*J3~x&0%mtyIDG-ofooTtCP`ouKeLkCB}uN38I%+RPa5O|V<4RO4+J?j++VbRpb$2K?ou*UNeQYF1dGW< z0hat!i8U#1akjv&ELA1!A9#kU#2a%jeE&Wi4^U3=0Pv>gX}{&AD)IcwK~>`X19AO8 z=&77oFTk73DL)PGqxklA!2E?>D?~?xp_()~H1bW6(DMMqTMvVZ#JfG6ksn$JXr zq1pTY%T}wcnfOBZ%rBe0Z!1)7+e0uW17S2kXq#N2mnoDq#J8y#Gi(B&R1j)7@s=hX zod4(8{wETW63ZaStxz_Clqs1|qZIyfXg#BJVE+qAVf(xUc4a2ixR&Gj|3c>fEyDua z|F4q$FY3~A5o#j-Wi8Y=*7@`Q73xXcr@{sQFaj6>Kww&y8R7|sI-%b&y7Li5qBAyC76?K%i{!P8#)UQ|m_0&OykQpNTe@X`_je$tk4?Ho-CI zLFf<$Z~~ZN2>_fcqcq#w|0JV>FRqHPuKy>w71+x7$e?_oV|hXWyX!c+{-0#**Z&ul z4KD>O`81RY*5KN%|9?&rsUc~NlJZw8A+Eu?{-4WblN4zjDP{+$un&%kU#ML==l@v% z_K=)t@SOGk4jTDF*8f|| z{}bGb_ROr*eyJJUg8Ptot!1%&8k=Lz%u0_pWu>xd;YL$NPO3T8l*K(#@PYoBSvgT` zy2-LyKO{;Q9u*QPqeKh#VL5*=n`22A4=X~WfX$Z_{IDvR;l-~1=le2m{XZaTg|evY z|4DAQgrc7R_na<$p3t#o&tK%mw}&5__5~DN|8Fh8;gBkV(BVqT{~lNuxjpwL*S9&T zX{K-^H%Kg_nUDXkEU6OVS{a*u|6dW97HD)betv4-;73EZSXGbDd%n5j1gIWF;w`ry z?uoWy=HlnQ#~!=7=L#((@|nl4A2Dc7R3G=V1y($q{HmZbUHU&Sz#a1OKxj!7CM5(RwGFh5UUbkzgh;MMX4$9-47JWzZbfc5UUbJnIC_Vss!Jq_L@M!_43vc z@nTg8o_}#v2~u>FaQ-KRvo{>*7x1LLDiH|#`BMhi&)*rRY29Blo4U535hYnLKM_pJ z-?jz+R`W_A8q>7tz;iuB_G@DhBKJ1G^S<&k8cm+H>v7`MKq1rk&qsZ<{zf3mb-TA= z`HwW3K6v5wcN;(7K3%DqcXS^Z&y_a2h7({cUz<21g8iHpm{%V>Y~gV;jp&I3lGers zA@|e=y>0;Qwys;>NkBh7cRlVp&@~^N4B_Z^S_a}&S?)pT;E7sSn)RU3rJ55be+@#j!R%&!6ME99#qTH7$owHku+~{Xc94D5I4m1hp9qw27i=hSA#}N^5yT9NGU7Wn=#r!bU7b ziQ?P;6ydL?6>{2<&=!*VwE14luB?Q1L=YC*g$ivL7FMGb3+#y_2DkeS?OMsF6gYvv;Gv zN&rxAv0h2wJx(z z&|Q1gsPlWnynZoQnU=RIq#(?28j@ZvGtnkE55OR&WsJdKl$i~L*+>#bqgZ6yU)S=HK&;4;tn>_@pk6?uyx! znJR?+7hHV5WdPdwFJM?;Rj9b3kk)tlrBa3XE-f!ri05Apsu1`urf0EEE^6aVd}8rW zjfT#o(aFoPiJ=z*(a2@huJ26{`7gNj|LqU0S-4?5jS^=rOAd#J_)Pr6|7-q+Gm5`H zox*~DVG{ZMm(ZRQGaHzeK>K(Q?AmKG(P{(3$_SMS_WzeFVJAR?ijkR2MkS$A$w|Us zfBv8K1t}o(6!D>9W#F_gl#N&ll|bl0{67JK4{GcFe}d4nCdFqz6|*ZFp~tlx+y8|K zJlkm+rT)-%Y(qQz`jn#FC>Kczqc_+jXtY2 zqutF!HOlqeIGFn6stmot3sjJ{x5d?z4e`bdF+4C z2ly^6FI9-=Uk<8JC};ntIBEai*8g*_=bI|D_4mZ&zqD#}>c4S;ZDHzrjk<5f64J*0 z4;j%p&TY909S;6#K|Dmt*=Blkfv$u3H8q-l@Z29GZU&;bc8Ym23MA8z>Zb4tL8!-j z-iNp(yLZr!+}K=X~8m~7xRz5zV? zw(W&O{wO)AR>|aq5!U}h%)g9fRjdq-{bLLYxf-SdopyRF;=7cM{a*+hu@owS(4*A; z1W75B3VWevO-d$JVs>RE^txdCzc8n_W%ObD|JAbp;Z4u$(sB}d0{^lXdR+wjf1bpB zitD_W$DYGA`G1YT^sGKkYGMu6n6~y@tP;%ml`W6`+u`d#R68yG+*=j;(N1IPy_)LX# zXla8b=K@i~`D5zRU#ZZ0W@h70-v^?%u8s@Y{EZ6nl}@>KtbrWrH}uIIW;)dG`+?UM zHUj!kyYMY*f!?D2@ccrcFBWCq{0OdWSfn{;zvj#(ScqrACIUWiB3M$%vsDZ=y=5jYqu<5tTA=m@_+te zJ~80^>3{zQnfXk7A+;7?nzt4T8Jj_`f4gcVdgQr75faXz^`1Qw=DSBC*8N7}t{4Wb zIQ^;j_Z1`2ds_}({CFsX-drE;)5IkbjmvJ=VE$YN+45ubu=yWJ8D+FVp_C~I@P6w} z;PYl_i2K(QW>#so-*bjk>0qxK(t5@%Ny<}n3L;K8jK=bW5*)`)FaK9LSpHu`Hi8u3 z@@eFxMq$7F|Jg~5hC3Wre*$h9*&H@ICo6SO-lAhpyNHeniA#awRQCzuP zrwYsexf^m)t`hm0pRxSkakYxI{9mXEw`NbRQu3p(bj*KX0AQ8%@_!3lN>T$a5n=gR z)^)*Je1j=F8}i`V!vhd_=8K7J2zUDF?WUy#D{$efnJcU&zic+RJN@FgWcC zuvz~v6yR`76-DYmNsPwwK@hFa6K;}@Zc;Xj_AKu@KmVU2sdB|N=l`|Mi5p*L2u#cF z<)o&=oL|-ZJ5W|!y8Y9%TAfI=vc}#a{!eJs|NZ5gLqQo4Ru6ERPRrMVKK&Fl6+V&A ze0%!wzZiJ=vubw8E#)SW?frbO&b^oT@0 z#}0JZ(9T{nvgJp@fxc!nNy*fd9(M01NI2+NO_*h%|1f5?f>No}_Ph5NuIWVav-|vK zqjWSK$85x^M@cjtrN4>*NE~T8LJ|s+iP`0U*m#jtdYVoY)^xbpeSUbQ6p%_$B8}@s zn%7vHwz=}!2Mi*5UrlcU^mntn{qhmeQ9BHiDgn(`ZqAYo-K+c&fqKTXF2`mv z$Sd>K+=f86ye*lJfDZp|!0UB@HvTM`*%|0g!*c(w3v``?B_VR4`Nr>>HmmacV;R(H z>}1>R}5XJ#8{7lm@-tK-)W=xsQ?~`(HS0M)+)%ic~CwjaW<-TPjkV zy~Pk}rCj86w&?DZI4LsiwwPU6NyVTTEENltioyXXFWTvhrDC~BMWIjag<6?NMS*|W zOT{2K)TRcAFjrTd#C;@O@DC&K0uY$dA{jKT#KL#a7c{M(YERzX>Oce{K1tg#yGA6M z`&GhkiC1XUW%I$WV#M}+9jMltk8hu>b1wpY(zg%U=U>=WFhA2LXNF!_9Q*@(;XL!Wl)8s&N84*Mr?xh1oD7=Xq2ce{I-_LJY*){{ z#19eZ$i>F9A9^yVq522y>7OD{@AI7_Z$6|^zX!>2|DK2t8Zk5{rrO@S5h$oh? zwf8B|QC^+y>;k&otUX6$(EfR?5B2c^JbtRQvSl35w)nt)h@?qQ(A@EXM%Zlt4qk%I zmJ~8Gqg2XS18kqDD#FZ5kYh)IGt>P=nRzLMjaU^bw&n#hFG_z(1)8O3w}Cv(OPtj8 zgA6gdGSj@UKf*HI@6aCs!@@dUfc+6gobDH_sh4WzMd;J=(!BUFRSudL_#>uQNNOe- zSI-G4=~Yqr9a$p+dEN}0JSR2+eO))BmA{-pOLSiIzSD{P5$+%*`Goi@z&uol7>+GKOpU-Tg58rG7pey>{un%1M+w_nCHXxfR$ z{zHN0nFVdDK>N!gkaX3ihUde;KOi~$dLYovR&R)k1=^OsiU7f5rWl!;;I{wc_UvUz z)+kfTRj}&~O!g8g#(DcckU!J5bnX8_*oehKNu-d+2u(g zVW0L=^NI&z`@e801j7PLp<;*sznoG?=+knNLIVF{Ng;)!seXs^{|fv0|3KdUcew-h zKV0zd{{;dwEA)Vknv0@&93MGlMo%^Z4f(rCgUDqxYUCCD)t?a}&7*-6nn&B7^;V_S zjzGF58EY5SW6+c{`~K|h9f7L%UtE3HO&T?hmsId;9DzQ(d1BuChiG(H=~KZB^yf{8 zk1rjd(SGgB`ZIw3>d>m1TldrG=n#+efz7Rznmy`DZcHG|WSpokS-O@+yN`FD6$msd zJ^gF-bu`j1@7N;;=%H)BeX|+RgEnmZDjVq0zby-D33QuV#`P0{RvNmR+5>$#?O6H* zpwCWavz&(o&MOY`FS7fbV^oYuS?L|z73?EmgXwExF956aF4f#Kgvk+apmnD)Pv3LLy0 z?EhB#J<{)x46-fsMce-j3Df_2N+mOzm9XfHQORYD+^CSr^$f|X4YWeZIBWmQnYiSx zr5_bnI2*B8D7F;Jo8(t0Y4M)7c~VH66r5vesSM%?IbTPaNFhth@%+Ez`Tx9Of$jfS z$^IAjX?aK?G5<1_LKfEf^Zzc(VE=!(;NQ!MzzjoTGs#3}Ce(TFJ8!G<2D{`-S(VNZ zohJm$dt-yW#0I-`#NTLGbOahOX?t9D2!on<&+ApQT?FF6<~xI*iZLq`6a#iQoPPwH zAS(z)FQd%_1IHn&DFsQWDVBAx6O!OI1<}K8|8H3e$-TY8PDtDnrLz>Wa5gVU6(R|L zlC#H2+oh0{#+uZtwWpX}nW;iySQRQ<72>ze!3O!OVUXv&>g8vUi}{y>Dg;|0P0vbj za@U!}jgOKBRZd1eZC_i`tWh!=v(7!K`_h{M2MnE_CTBbf5Tq=(>&(v1|J=J#BN^@f z;*!UxhPMLvOhZpy4XXD0t$;6PE9O>fkc_^IGK?SI`A)#{GqPDZuT6(bV#j{+Jm z=w#RoG+!CMvWm%L4m95MFrcEBYt z_9_^qLSa@LWei07!~Xx^kcKt?q>NE1O$HUKBu%V?Ff^r(RLbSn4FCv64NI`;s6=7c z8F)esB@<3B08l#E0HBC$1TnX_%LA7c-IwMfewwY zSFQd#4+D5+^}5&pM1SN#z>HSL`5C}`&YVA5HpzVu@cYFU-jg0Aq24<_Qg2DQ9}rwO zVZ`D`Nhtc$bG!ce?@qv}4?OnOf0BeUY9HO_9(y~WQ?HvBHvx@;$#+gJ`X@k5->P`% zX_C+g+xnW62Ff5;lVH)C37LYDvvAarQZAD-EUTc*3@9;j`x$q5MFkOOIo~f|)k!ED zRi_X(FG|&+{FQ_fPJ6W)_<5fs(1L`d=zd7dF7MM;`l?O>R&^{h?$9B5N|#tJ!LYE( z=NB4rk5!$b>;UirRUM&A%SqJ{_?Nw^lK`sDjN0+f-T*)lS|^te>AvEVB-BG%>BEo% zN$CF9!+ssr@JfK80TJ^^qCrz>PMW$Q2t#Kdfjkf_pD<#0!I9%snlq15|X}oesr_&e*%7b^4|LuzDYux zuC~b0ueuZP+49v_FYii1?$=sh-BR^_z?;20uKF2hzA|mU`BX`6NJ8Vxm$KHT-3vIm z^_w9y(8<5OQ6t58FJPwIzEBm=Q5RZ%8w&I{Z||DJ(VrfdcDiAJ=kptTqJkm*=Y4kr zrd4TudJ{B$LH!kV+ikuZF!sXyT1S>AA$6Btt!pRV4oGP;{O*MnNvMWy=jGLRZw9#M zymjioRY|DQ(l06`wYwHziwA5vOOtZ5Qf6Rb+dnwz6_%l?XgS29v5efTHqi#gf!Dh* zp{Oexp;!nTv6L!-{jXH`Gqjv0MEn2qLeZL(yz7FPU0Df59Ttj(3q=?fSSS`d06=)B zUncus=+bf$iUR+#7m7N;{=Xn`pXz#n6K42_5qR|wnC=q?{)%S=Pzb8um8G4?2A^3~ zzY(h+BHiFi0WE6m50>2e+p79i1C(^*j$iWMo`gEhF^0bN-DNvf@86zh*x~z=5TBVZ z{M@Huoj$z&cR<>ZrmDJYk`T{i@GAdryr8`0k2<%xyybGh{R6dPY5`q$>BwW%zquUn z;fK-9WI*4(`#JN)-pc{8o6lC~=&$43JUIn)?QdsK?f~>xXZDQo+IKm?wtfVy*TXJ_ zl#DRxVMhRpAmRK$3j7l)wNWjn^(^aXFJ|Gh4Wdu%pU`#TV=>{0(wmAYgpF7?DuF5n z=MRzu1fh!dV&YXXYf@;)Wih)lQ^mUAsTeK*fgfIZI~3+m#lWz@s@N;0it$}qUaA<+ zzZ_JtE^q)qR_wF4#TA4UZ?ca`OYXS7s}DO#H)qVK2)5x8uWcdaBk0I(_`!9UC=K9uZhw=2n-i7#YQ?-e1RLm@RPoo~9SFN>~L zUY_##`&x7}`^ku&DJ=S{(e}7$YqaQ>Khyuc-gPo>0Oz{0gT-B^3@r zC5y;L&|SEE8YL`kv_C89*-4;a!I?<3KgAG)S`qtTa@lQ%fQmGgPksP%kP0S85 zsx(9?@0DZ$I977}@bf|??Hl=GLM5SGOQ#BlF#na=c-CV zc0N=xzdd|I>m@GUKRGPQ16PtgWWG{ryj?n%y4TKV37|$%4Sk-eT6rOs+XWTEqoM*cB!tH(k0p0ZLPr6-% zO0;iwPW=Sv4=)C8dJOc*37-UT=|_jpnE3?gy{~WE^%!X1rGHec4fUz~#f^*H^EJ9} zxyR9cBl~4>=@FA+@3jVc`k2?lYD4`M550e*fwpar%A_LIYKoMRq#iZ^RKhNRjL~G4 znayT{TxF(BD#}6pKXis;p%z>=Ld`K7v6Lx^P*eIV2nyExS?&M4!3XkAND4VROU%wP zh`}YD|Me-I4FI{39*l(=Xa92@!s$$TPG?@I1&hAKFEl6)3$>yI#l1+O#&@Z`OtRVk zUl3K7rqdlt*c=J=B`NmDz;l0oOu@*_^Pk!nd4yu+*n#AQQ zs4nAzc{K91Xugne_jMs)@9VpPz3)uW*viAzyF7vKexF@;hK7I;o%8n5 z(EmngQP_8_zB~*jxv(FAr^Mdg=QACdxHaRNKp}i)zVKQrjNeRMXfITr z9Dlb?y%-irz18flX8EPCzVFQ$$DL5n7>-M#8Q@Z&3E%U@|^6$XQX+ovB^NkV8O z%>OHC*ejVKl!Tr&m}!-R9s7mPDu^cQ{J%UtHn9w*N(yBo)?G@XDk=RLMnx)B4pb!} zDVd!oW>+?<64!F<4=BVRU>O!zReF_FB~h1_i>f5zUo2HgUVMK5$C{h}k8pDSzw29x zU!QHoqMr4(UvVQ@q#E97&iEuPa$7%pF*ijo2qA9%KZ_X{JRXF^P5+=u|Hs}{z&DX} z@lv2rC{UzWu|tZctVDK$WKs=HDWw7wD;tC2lmZ7F?o#C7a1M8Or^VgnaCa?!6uIwh z+TAQ^%B7a_ap~{(ao@}A%$uE^-T(j1y!U2M3ngFaRHgd^wlPXHX=}*A>9rXoTe_%j zc#IOY-lYf^c{1qvAGtb^;2&TPO7G$${~ik<6;%D{%1^Lf5OHhovLFB*PC3^(u2Z6x zTetQA{gFN*qnQi@!M1xEZnyT#ta<%!b_YVSjHL4Q)E68(ul-SD3u@A?;VCB0N z8f;_xFV$}Nr7y_l_oE>tQY`_Y|2VtrFV1_=${PKxJQ~@pvLLX22cy< z?0-Mj{`dO<4L^IA{x3!#Ruf?5R>|CtXMNq>7fY9K&Tj9~^51J08osYFc4B(zpW5LWvGkfFi0vHw$1Bjhd_p-NIuQXrTt&? zWt9eN;X8jSF))4~;MItVRh`O*E75~aF9RjB|Hc0Q{l$G%2vk~{zs%?oEnz=Dxe?ui zxcG*%z<)ovajvmTC5x_00Fa#acw^^ou}b9iCH8ISG7OsG+-vH*K1%ea;n~tp0ki^F zKHYn|trCfvdDYOBH+3qj?SCzUfuT?8MK~Ns3qfrL3ikiSxCo=9Qk_O#WlN)>Moc&+iA@2^y;{O+>roEFk7=hS|Dl7BlmF@7jQHhP~OV@RwQn7|oTl%1DE2)yIX@%mWqg=+EZQ+Ari+u_S0{NGt9eT0ysh*2B*9SSE z#^1wFfo$GCO2Uv@nxRD+S`49!dIs|4X*9rJASaoG!f6VpEbPYAAB!uwGC8VcJMuJm< ziMl{7vm%B6m2cHaAbSy!wV{i~0hT*l*!*wt_$hBPbK>#YcG-u@$K$g<;4(rY*fRJ| zJig^_r7Iqv?}^cM5y!aMmqqqCj%7nUzHzt+S`IG}X8bdTw?S~cR^PpQROhyV`kwlZ z73CEwh7t`!8{ppTGfpn;l8yuWlAa~J)2x3!jHqcS(;AO2q0$qN|NTe$ul6`!oeNz| zx*vXSrfk409-nW(;*?4YbzxhA)E)3W5bVeEKjM~tB+Nn=jjuZ7^Y`+%GRW=Z$T8C= z?r@C{9~=B<$F9YiJt+|1duNg0`>sBStF&Z( zo;RCH_@K_?UU%4B#U*~l**HNU0)Qls@R!l1t;|D_!H?EtyZ% zfc!Q^&-u?C+TS%k=uw3&Z#|*@#RWr;2D--QAAV#>^)fz4eCKWLUhb~^O|Cjpt?P=H z1>#HI3Yz{W+|MJ-=g@VKSD}e$j^yK4VQtu?(~Z?Pe8uVqx;ewAn!Z8 zz2XLt+fAP46i zQq78K3WD6UG$kVRS~&L=(_vCePHjmO)B=dAZ3Ci~)qIO;=>}0a#*e*q;h{KizeW%> z6$Q=e`mH(}fvDOJqU`=ZI{}Sw{>>LpE%@?hYLJ^9MAKsbXC{bpk2EC)n#KR~Ga_?A zl+&LLAgWHb|8sgcIQNBr?0@zVu#bR+5f~fd2dSB@N&Qq(w4vMYcU|L0uJZEx?ByEY zJjR=;1xp#LR-Qb4u9<*pI)R#MqaT%fu-kMISE}Vv}E1aR3HK~`t zs0k0WQ?FF17fcJ2(QT(*Y0NLcztca``UU?;vx$1~`fX3W!UG|mz|q&rptc87l}Fom zaf@$l==|&9uEpZV9bP^By~{&rlfVzQ$Tsycbq>N|fGi_fz)_pv5!K1jZ+;-0?w+~Reu zP@XE)e9+WZt;xd*xA+m03og3`?K7nZKMqj3#dDo8*AIu^$_ykU5$PC!9x*Kgr#6{b zE243!hF~ag4S-ZsgfbGA=>l=N&ge)88nZ1Y}Zdr{GGcvM>F7_k{$N(U4YJ(Rv zX%U?-3e-IPR-J9^|8TqgZ`}W9znCfPf0!0_5K6aG+m8uC+#}5{5aRS_0|;^Ue~#e} zd9T7h_P=ZzfpH-|u$5trec7nmfSZTsm54`^FL+hEUo5`QTZQ`g9Sc-|_2%F%R`>>X zsRUaEQrTReDsxN3JGF_5nkMo=uH){<^^YnMzdHPZ-`&zaXvwrv7gvf)#OJDcWvNGA zA2j4hxxIHCO2pUc`eCpBoi{2--NxLH7w47k>^gSa<@s*$H~qqE7kKQA6za|!j)MGn z^NsU)KwjLon`^ZxZt>Sn{W7)@$iqHvYuy#(3+FTuQ6R55y>3tL$!_tp=5(vq3*_?E zbF?ZB@~dO>YV-q{yUA6bcMk9P+#As=Pj;^Lx>$VNi}kt7lutV~ksfqvcqqDfd?fX5 z&s?z&$|V_CvNp)R>UWRZgZx5P|1AP}LABdsSb6i!;4d`B918Os_qIY?RVbtx5(>ALbT+Yw&^TrvYTSo91pdvq2I!=p{NG zgtF&Rc8Z`G~T&=5!&)1bkel2gXB*HlEO!t9Uv*xZ)1=&s!rbj&jJ4b zE8rjdU-AfyFXC0+VT3jI_|n#aU)OG^j;6?lpIKGECTcz_=eFLLz{{?}@VD&brVn4~-0zjAK78PV6vw|hzp7FbZ8+#UdC5m`C45_W&rX+` zsL!}VZe3k`QMZ}V;<9gQpo$IV%%;oxqIsHvK}E0BKwbZg3i=24MFq>3zccu94PN=P zhRR8+ylS8u#X4@wRnr%_)qAFT3i8LUpKkwE!xxp8jz97kOM#h=GN2U#E0 z+4Ta*+|5NO4(`2Q$rm{{UlrMCV|8@9beTQfK^}6W;>BhstD_Wda_IF#W1 zs5)8}PyF%piw_!kx&F&yjy2Gl$)#u1dg_Bz&4-}Xt~HQX(?`8V-SR=d@9Dg2w|fnK z(BemxDOYh_4YZoPlCTTL=PJG>!5w7%g5W-TL9Umt`7Q$F=-ECq_JRDRmNKj~$Ri4F z8*u^ThE69dRR=k7%S5k>AlDZEGodiZ#SY*7{UOMODusDYfbrk7y;!?Mkj6`TM85$;|QhXNQ4(sJy>Fs|e-+cg7j3I5aP9o zRz(NOdq!d#eGu`YTe(xt0#IftPyNof%0vZKMb8T?Qa#(^!&ma`R;1*#-9D(rgkQHF zIb0QeTK(mI*)u*U^g>td`c+j?uT`xY{&m*}CGH-t8T32UuauLR@E#V4@qAUKy{e*n zrS3a_0_J6ZU}2-F)rI z5&O2}@I_Af#s>~Qf zN7IlK(PaN8O@3if$myd(bxAJ~WCuu!cFHnP4YPx)agm&TAVzo>egR=xn2;bdozU!{ z$|7S}@2+~Yn7wFyMq z1ym)u$ft?FP@S#p|1dwh{m*Vy@WAv9Rq?Y^mGq}7h9ONdKay8eOsp>(?SFXFllqZe zRE5)@E~+9-Rh0Azfki@V?f)=8*8W#mY5z+`-d@}NhzX>^@{F$43QW`gg#GVw@6_1k z=RMH0=>3;Q!Fm8U7^hd4D_d);51RP(fp@5PRm2TSR)eZmjO+CV9CrQ1VoW5~l3@SK z2#7?Z7?Q#@dI>?()`BV#*0`Y!Ks8l0LX^u0sER#ti43P@7VLk%C}fkbP@Qc+mA!L2 zsHOs{#%Wm)QFGI=M2IuSZ{!@ zhGjKEu96XIM0(OB4LQ~6Te7=2aBzv|-jBk22t~Utu zX9G22Tj|0eh&;?5(Q; z^Dp#3vm)Oust@+~`X+KRxUls11&J*(yj$WHorgI z0BLmfT1sTVA%Ct|Cx&#oddNhBYYB;r6f+VrZ6OH_Z!5qIG&$7~VZpYs|5H&TM4gO) zoWv9M8N^acAjcOq3~C@$XDg5kw%h-y?f)BRpWXgXxBox?PX9QI>Vij_P4+*0X_BUt z?LjV>v;T9#`F}IvAN!wu1neV_ju99eQrF7-fNnP&W0b&_f_=MA>XxS}s^_|Y)i3LO zQ2f*$7yb~gXRzKleM=gO`2jV&wO2oTFSu%Qm7+(N+g=tf<{INFPpT7^f6{6XzESUG zV=BqEdmxu3&%$Sc67%+?TA2ZpQaX_glfZd{gn@yhnRGIdRttRu>jcZE)kK<1R0w@-roZomwLh!n%oe_}l(0o1_1 zB3wc;V!cF)8E}hEbvPl04>3!QjrKnYhv-0}z@`GHI-Hacq&S0%+-XuH`0C??Tns4y zEd|wmuShH>WDt$#N#YnG6~zDJVYpe5&*WI4Iw-}#UnXn)|BVCe;c#L8zX#Qs-(+S5 z)g?VtK~Nq0fH0ZBneDqlb(Xr7&Y-&Fo+LTd!670 zF*%ukhz_VrdZ&#blaWJo$aEc|!`?3Y#YhgSGkc^~fXw&jX37Rq1l4^{f7(EX{aUc! zgKzx*lYbPRtdsOzF{aX|U||Geqvf!5 z(ldNep+POY;V-B6FV5ZF-Q5cnEs-NIJ}*BK*X|-{W0sR+*-w; ziczb=2E-{*zb#+#j4dLdE^w{G)@c{#o>;`7701pk=(bcC_gKw7kX3j<+epYZE6*J zaIZBe<2u7BUvpw8&UTLLRF3!ho7+JD`OkH~Rs{V|?iSs$734C3wN?-yOB0@bX3MA7 zxv`l9`OYG*acueMx`o~SLH1oyrwd!Yyy~!XtUS->t20}^uG`D)%|U)YG~g?HfB9SN zUe^(1^ZV6G8JSj$u`Egg`TR9ntw=+XTG&d_kQ7ZBNJ?UHD3Z>K8#sIr7Wuv za+?fLDO~JHLLe#eO(AE}VtL#~3`_cKc8C2y^$eEWl zyikXGhr2BX`9b*_j&UG6ulhZLmCpyyf3X|n!yEHWV&%9;dtU4Snd{uAru%;>UfByZ zoacV2$P_4F(QjIWyB8uK)Ensl{n=k{>5+nkyioDpzl|OM@(`EH_xt7bLgxJi(_cn0 z3?ri8=u7}D*8V5NxCkd{TB60I3@kfa^8dFCT1{+Y|EHoxh$0yPEl8?^(-K_#O;Vj? z`=2lJtA1Lj&Q_q+#Lo^|se%?v3%mWFfkoyY(EjHiX*Pituiy5d)dYg-3IM`5<~Zn( zw=eu-|NB23fmnjFl6qY4=MuCB(EQzABJNjU5&dpg--Pc{q8+;99Yzc7ZI*g8J`{MV z8(idZ2-gMdRq~a%i@C;H_3nQo6e|B4HJJQpaiOQvfcLzKqZYkWqQk=~m47jvK|3z2 zh_3ZW3FjGY4G5pXpvs7veCm!8<*aaR_wJbt8lk+h;oT`E>bSx^tlKOGJzZ79_0NM! zlxNz7*eXC>xSKHVua<<&b-2bLGKjU1&yUpNA{tC*k;I_WkdU6Ak?OQ*pdOYD+4S#k zr^0Y7s}XX6bW;zhTq5zLFp7qSLt%qJE`&vaMP1BFZL;;y#BMJq?{8bMmz!|L4ZDnM zx0ll#diWz!5AKm>7xm!uX9M*BdwIO043g{?w_=g_fzOzb5gG>VtGwH1;BO4Nx#x3* z>eH0ySgR||f6FhhmrDU?y_+*@%**Z!YEvvWeBz%FN4mt zJy;@YixS;jvu@es-VB;qjjCGbs1j}K;Tq-sD}$~Sop9X+7LgT?Lb}iG$)Fn(6s@km zRHCwfzh70k2W+-~{1Ugy(F-+uDjORe!|QVDXmktbyJ?C)MDYqBuQ@dN`7?9ig zF!j&m@Ytx}!k$3p?kO0P=-LW9p0n*?jydg3#;53?`xp z1LXgcYB0$Erx%N8gG2%gw=1l0|*=Kf5*je{vZ5f|Fe(4 z4>a7Zg3`hIf=sIcR-+{$wXsAegV;u#ps+Mh8y{0@qa*_`OZMZ# zEvpf7jSNs5jPRr-1cqCnHl`xQgknNDr}*s0A=Ms2u9nqAa})1M90 z#)m!sPh#cye>v_ftlj0GJm}h0Reen6f_6G?{F)E7-Q7DsYBgKcW&RKq z+Hjyy(awkSA(2!5T>(>6sNLegEiVG|A(w#aHC``Op?|tR+Ia4?Gomj@Z%o^vLVpt1 zcMY8CZ0byMXWzegvbjf`3jJ|*=+th|`2xGo#Fd9mdudnVx63*6H*vr9)(B#}Gnz7E z;=Ew!ujB5`0TCdt7H!%S0CM8=L+eFboYBPn#ir~5Ieh$)i+Mrb5kKGK5Xj|^oY?6P z@_e_PcUf5$vcU1#W@mJ-x%bWsAdlWK^34($kNT~4U4IO+`S=h9EvCn1dXbLQ!Xde^ z6fe?fX;==R0VJhbjTDnuI8+CN1e_#In*9F>8jdx=!+jfbAPHBnNqMb5R0p$gs7@Ny z@TkSslan-S$zuc@V}O~K)4x-MhhZ3dh>1k(DZ@zFxAFhxMd63r@#>N)lCVn8IcjH7 z{(p9W%Q{?`{%`*ODQ_}!{Qsd{<3r{B|5-&a55xj+`i}p<{{P9(GU-qq7*W$urZuT9L8s?Xo$o)=e+5atI+y=H`F^;$ znX&;h|9`##i&H9XAjy6$*zdtN{{P88etReYf91FS|Hf}AXa5@$gllAwDp>|zk{T_Xm#iZxl7!<2 z#E>m8<$6N$XDB6A3bqYZvaE*ZE^PPGPn8J56Qjhm>>GcDB&uX8@+;!UtFt9l3bs=v zc0Iu|t_2J5JyZP^>{KZ&M%1vk5coalE5ko z2LJvL5}HVsatv>#((0F=zD1@#vu!VJg&T|EtF<_XP^tAB%>W9yaOtbEp=sqq!$dlR+q>w?U6?pJxfvFkUg5LU=>$@^KkkmIaP{}f!Q zLQ^`n{CufQZZxURq0618s}NHVL*-`WM&A7v-##%M+P_rgpFO3W(1?5Iei6l}(5pq) zTArEagaXvPJC0^l$ozf?gHA`$j6?*OCWRz3dPp*ZL*yEvrKAQLQmx+J|Rt>nN0rr&Mq@wU9IIqrzpyp$@|Bd_q{3lFktiiM}8Lf6u zOQRDW|4y^<|38ZT&p*;^0ySQLx!*koS}0=AXdOwBN#iVg$x|5s(_m zn)QTcUPF2nnD2x<+RMWdfK>(L?2!L;kO~#sD5u*9*AsHXz%}Wnb!4g6{ri0ip9j9i zRpKt@8hbnGGg%WVqvL;n{^XX2Z`8cL6#M`%nv#h05)C5)A4st0Wel8zY=CVKg9eiB zQ5KFq=0B4FHOACO$y*;jmJMxdTp!c2^^uAio{MCR`rwo&q+lV5Z~Oz2?0Hj>_w>iS zI-dGu_0h+8xR2eQ{|@!xjIT_OKd{^L*<{bdo1VmGvy1w0`qM>yESm1A{Fq|v!w2m7 zagI3n2Ur6lmkKqmtoY}S;#2n%{gX87(7sg`W}^z=}JCOT-T3^JK9NwVpi=apQqI$#RQ21>C*!C z6>uJtqIIP!&3VzKf`~Ti{`#*IMglS>7|I_Ux#}nHh z$^PdbX*Pi%uRmQNm?8V$o45Zx9GvSodi*C$NBd2tV+6((!GJ1Rv-Oeq?3b^n%Rf>S zf6#L6HCdvf1*-PP#Y!r4ds(BVPry4eM@~?m1O8V8{#)gZpl89I@{OuhgS*hZTRG zOi*k&@utMaDnNZ=D+k}$@>a27;cM)14HX(RDyW+4wzrB3UzZm;5AvDDd;JHTeXCe} zP#*CPJ|2XImKh|39yUxQ zaCDMHCxz5WdYuR-XhzSFm{eoXrGYxxX8pk1vKpStWRN;xo)R$zXTq5rF8Qq!zNlGC z1+UJQ)XBbn@Ez*J8GH8igXkvu=$~Qh1m5&)T|eOUX9IO&{Qiv zxlVA(v)caGV>C%paP*&EheOg@njl1s9+K9=-an=_X!VR%Vj=#Yw-vrw1joW7n%Kap zEmbukrB(x_bg|&YwC5V}dLJI!LtFsx1v3G8FYD>kb%{VRW_W#dh{|g>zw%Gpy z{pkX+RMxv|S@?38JGHT@llT8~IypG^g@5dS_7V6`j=HdrR5APwztk{n>cW~-Gr{^sUKq%!ooZJPx&B&l>fwr(-Kwb&SE)g{K=08ID#K#^aKVt?a$iv1NdBo+lG2sR>ObM zGDf`!%u^IlK%7kcysE<*?KX4P_l9TK%hTe z)GGs9FRW@(S=6i-6uR>DT9F14LHXT+3CoIs%yq_G zKaGRS8>2Uf0C@-iAt@oEFo{8=mr;5doL-~TU@4R2V00LKfu)!!s0|lG1hynJ&^sA~ zj90+dg0wbC4o0Vp|4*wL4i${`*qpgoiunJ3DZ=FhA(y}=KS=`!^Y%Ym%dAM{woa%H zGVms)8-Qd3kZvH0;{VwJF6eM!^uNUaTewMfSy$V!OAnoQm!A4)IAIL)WY1yIF)>W{ znCPgkNvDpnY@<=IZ%Aar&<2r#xOe2YfkVc2*@w!-{~LdRd4LH%{;9|Rr_!zT#Q&Rm zV)Xx)O1asWMfSf`YWw*Aq~VglyyK6RWS?U4F|wI{{vY=&lj8qjL`_4P*7$#14E^lh zrAM?@9~|992mW*Hk#;F2R~Q@>tqcw||6(Ma|7ZS4|IPk4&4}cnHtv47xtX$oZ{z<> z4OpB~X#gR%rR48{DgNK|BWCGG+}!?WUvZgk+U_kz^StbcvY+7phwdrt9%T;-wbd-v=O7Z23Bu4btU z*9g}rM^()0GkP&i>TuW}hjhAdv=GgR*dv8S8l6T;Q8XqYC59CCE%(}{q!wQ0ABwD@ z7M9fru^vl5wZNp1-=CIAOh*ePeHVarn2PGH+$B_JGiu>wrxrkNj1$mEa=yU?~saVw_pF6Gs{9#uguQ*_wgQy|~Y`=Kx^ zd%oSyoB_Gd@g99DgUsE`*b5)J=t*xR@+eikDcs!ct{-zH5Z>s|v(szWS5l}fqcfDN z;EnoSuDtn-4~2p@MU{;%?TzO8%@|RpA%&WKUGgcQfH$f-dfT37%_wwCr=8v}5e}`b zRP4PXl0r_C)gyI)wCxLTnT=^pgC@DYxy;4^6bk4axxOn5;+}%hpS3F})L_KZJI7vl zq19bk>mJ8ke@iky(|dNW8tA!r(NKAm_HvaLCf?cEIktp`~wH_z;ZM}<08zU z(-X8tDkCJc^&qXbjs2gB8X;z zAvLT_jTF+hL^)AQ3N8QDaHs-Mz13BlkKO&y3pFo4sLpQTdI6gn$(%}Xm1BZ$blhW*_Mq*4O)j%}7h!A6t8d(giNCQ!U z5Gg6fwK&O0aDB@B0H)6S1?duoWw0;3^dJ@~sE^5T-&jxA)>ld+_>HunKS-+Ti zWJ9aZV@>#SbM&^dE$RyP=L-R-U0=F>Orc>E!gj5R{s{ItSBbm$|84!j98}HkkJjLf zn5IaPmV(eVaZ9tB_bNeEFD)zr|TG;LX^!opsi0hAI{|g>zwt$>KzpX)zRn6`HA9Qfe z?|9G(L(hJReFT2M5g6-L%}RfTc+v4)&%I?R_4T(66|$^G$W1apg zh|^G6aemII8!q1HPUm%t^URf^F1zwfsRaA`{mX90#ml6qdb4xG8b0$%q2%qx;pHkQ zWa!B6&E87idZ9+Y4jXlVkRip*BI9!8@kT)(zBcUOAw#HinA3?;-ss|}8#M}o%ylmJ z>jj1T-;kn%m0wJGUDO*zE-4$|59ARZ{axRHd~~SK)zep{=#yBY+6Hn{7x9=^AWwH3 zIdLS&Si{O8&p|Hzwlc-ak$z4)UViQRZyin-`zqboM2+VzUXXe(+&iKN5GW2C-scXN2F9KJYySQMy`@p^{ zrKok0`fFN%&q5*3H~KqUq47KgOHVrQg%(|FKEBlfDdLpuxZmvL8CMzFzdYenz+o>G zzjpHQ9UwO?zuu`6$dAJtucQmh5IITR@mG*P>>AdbmAkGl@tBndOBQc#4DuTHBjx&n zd}zheT@68=GS$;_5Xk?w{9w)$&F@bNClG6CNGeF;21qYRlX^IAkd%mMiZK{ulmyP* z)24x$Szaf|T=xU`URqWoq)HiJX0YZ!QerVlretQOqR^N&LUlG{X7=TX?=UmYcC@=6 zq&>ahkGUKHZ+iAJGfsatFf&+=7^|%UYuev&KVbZW9dbT^C58!_&#U`71fo2mFP|kY zf#|P9`J_K-8eR5{X)$yvZCZ}V10cs;%oQqT#6G(TmAOh>BjxJeuC*2#`Dg2|!*}Ni zL_q^9%{6UTY9ju*gk| zrFxN=#3dpI@&SspQk@hh^caR~B`HBh8irFO91Y0M0M^G1$H~YrF&4rfPJ>B}2?B7! z>KHw#h4BA0s^P!-Y&|)N%K;NG@ZE!WeCvuJY8Qh*JOa}HgR|c^waklDJ;j1H2}~}L z$t8T8cGiUd8wa?X!-dxW7XF{|{xc{1pL?i$_fR01=Gh-X>&fAX_T3jc=@H4SB&!~bzIJ@NnFf2RMs z=*?H>;{VMiXUYc5g7o+XEY7L4pp5a!89xYuP=D@6u`vFh`%yxg#s3@Mb#DJZ%pva# z$FP)!mi-s|2&8=k#(G!&{%$m0}za+Tl2Ubs)g#kwQs+dhECxJI}}^OV1Sdb^B9=Jj=$n3O?|062+A zCWgdBKuRdBjLnW`km_WRQox`|c`z~Xj#QXQ5Vsr8z2;fNOf0JrP=)j}6I?D4d*UPz zHPgXFEYAYcA}sO^d?!$6J7yAOXC~}!JU6|Pvehsr^D{^#4)Th*(i)z$ERK>&p zh8(pXxV%Ud$Xw^AAoc2kThwTP-{xM-Si)h+^kuaijsIAx{oxgAv}t|) zW0V~9QBkG3tX3o0w3?nJJmkoHeDxBYhN3X7NUMh z(8ycfVaRTvdskPbDx_Q-HyVR&rk<-r%8)@`uLVhU? z@``8TD|^<{NZqfJDSaDx`I_hS^qOyZE;kiiTj&PXK&Jw{l+ zbHX3Xm&MG9JN@rlH3BM=A?8GT5;BRHmJ0V<*!2luPJB_jAUAm8!m?ZfAA`U95-62NG~3^?Y1#kxwyZ_~E9plu zNVkrGlNm)5Dfa(`MUCF|6R5MSc<&gIZ{A2(7PmVxrXa!(0QY)Cu zcw)dGQ@#eEzeBw9b|chi%I7VECzO(-GidCqd{YJM2W<8}?qctmA4DTZ$%6sbUbg~f@U+n*+u6RA;^ z1DB_5^pc|lYE#dG)nNT#^Zl4X?c}I*csyRPk{WG)*YKon9LQTb*LeC1?1UtDuEdJuTGn9QAy?SBp}f6kwFbHN#Y*q{kCvmwRY#9*3i8Jpou~W;a^G1;yEX&)$k_Wi zdV*|zKVXbgxQw7h1Z{ww4VfO8jZDnI_6EitaD#izLSKkLD*E!On(PWAGoSRKC2!Fl+n=-dE^-Xx~2psDFpUi4l#} z=yQ+VXKRu)nm@Vu9}jT>sucxPYqzG<6n$+qU&vK%deC8@KPE@{!wY)v1=N`Jd{yCf z6KEtKbu`x_N3gH+1(qX5(#Zd?zdqDSjY@T@dAw{F8YL3zb7=Fc(ap96{_<%6@;-;k zfdx&S;5xNpQsVnI5*l53v!Tl3U^Qw(m#eZ?PNPZGty9a?YNYtP_oi`eXyjKZ?09c~ zHM+m<;JSeWX|yh8$Zt#iV88zab7IzT8tpB;x6c}-8g+Zv{q}DwX;fJscekxVjp~q( zWC6QqbTl&mp#F8$=;g$>TH-8?`mH*AuCWYO9tUx&StCFUiMY&@1P{N;%HyR{%KaR;Z;v!KG}tmoc=6E$)wahMqpf}a#k{z+&jk)4rj^3#2GsVHV2aNWTx|5IJ-A*-eo&) zsRjP?EOXHny?R6wq~;5`$`xOZJFtvp9%f9W|C;N~+PJEbPEn(&wi1m3?`~D)DyBxS zhL?8uk_RFK3(i>9(M^pW)O|5>!WRnt^PAT%A4;gv8>jw>eV$P0boZ62n9`5UN+29K+^R&UgfNhE9^W-+6UdGaLTil!xkZ8TPmY3IrOvo>u^?}I)ot7f zkX4;q7X1_C-pgt%I|uS#5s#0|0$Ck*J@h)r+#pP(ij42}l0x&EJE^CIgXiP$3ekn! zXf(`YxVv*0*zgjVqWcT5@6XI~&_5H&(d^Kdh^D!K5PW(SH2_1hRljjFl*|H|P1?^yYV zFn;Zw_~AxiT+uSH9$}4tz>w*Ks`Rw59ua---G~h;!FogyxXGcLY3DkP)Tpk{60)Z+ zjkwC(#s9VS2lMgJ;W|nyk!nRU4SQMup(RDMR>z2>VpCDH43MKqd;P1q+zCKu--LE}*i(+wReybpKMX)qdNj{lsj(bgtKa!G z^DF?}IX6$$r=}e3xuQS2_(cF3IYVB&1$foDb?txQJjkbNcMEreD7g)uC5!1@Or795 z#dRj5UUKIB$1$l6Gl<0^nN$WSriX(7894Y4LfItnUjwcqWY)(2!!wUi+r<7)MNMX* zn8Z^m#l$pb!T#rqf_+U%W?96xMgBkI0NYV4RTP71VYmN(GW(x@rrBiw^ZL_+Vj1xN zH@@qf{h!+*?^8!M$C~}`zc>Q1+S1?8r_YBnwg~O@Xx`HRgspmTcO9^Z;8i{a=Z4X! zweDm4XTq%%HlO~d-&Ug=&ZdjFO0%vxRf?}IM_glE<$t3xJ)fLdaS^D@m~96_^8%GA zS*lQz)vp4Ow|}!0pL5I6>A!mpY56Vyjk-1ZbFOC)P=9-^XO0g6==Hh|-TU97QN_cB zx|RJLfMnbI1#I7*@vR&4`;%#D9FiK#L@la;iXHQMUt3VJIZ{)9&h2b?tGFD{ zBz$b~=BTpcjS4=8-YZ7`);e#GV$IRbkgYQcSNo{wKQXGzWEQMa^(M{kk$0` zZUeGk%}(0+!#^no=I#^~3NqIjuCsZY6`bhFL+80pznd7=q8s$D&V$Nc zAIMjV<)2pgbOQO*iUUQaQ?C@S4PxhKTsQxPjIk5Bs_Wl=7|E=vr^h#kq9y-YOZy+Jfu2wGr zH#&@9514^}AoZV~)N8a_OlBbgfFul;kfiAV0F0JF3U(@}34iE0FXvCJWR3mtvUu zVRGyMGY%Jm{_OyOlsCyP>}or9>7n!P(o-K@QC+F2(!h1=Kui9-AdO10DMo32>>uDH~X?^0RWT2 zV0DR(Y8%xV#;&4osFEGft{s^eLzn1Iq59}3reg!0zH>~JA<8(s6~DcpU6<&XAf}U^ zt!z3R!q`RB>%+tt%LUU4r{$!SO-PwMt-h@gsPC!oXl#*y=Y@LpIJ%V2Q2cj*zW)dxp+(LwIOq+Xg$uCTyJLKz&&Eg63Qk^Zaw&sXQN z>?Yq2H#bu@V3z-%Z@}V|N((3^eJ$AUfgt{$`%z3=_z|vTpPs<~pMBLi`@cAA{}=x+ zn!fgXwlo5JdMY6KYp^coy?>~XQk0O@{Y zTCs#6G-;qZ;kKbVsi+ZxL`JBN%#*}v87VmGn5Q~?QKL^21?rNiPF80Gpn}5fRL2-G zU=f#KTA1)TQ*#~JsZLsQ9cLod;U8&ArjkY)p0WXJs1C0`i>XeEgaGWT&f5PathE0P zJxfeiE{s4IYtF56=STz!JF%x#@6t~cyM_ehIpX!ur-3Fzeujh&-Lk#Cjt~4oS@^sjhXJ-V;{jg-U>F!SyT&La^JhNEa@u^~p-}3mAha%7~ ztCkh4P$)s+MNT}l=|BW3bw2-<#4fKDx4TV0J9}RQni^HrrN`;FilSq>l^nh&01{$Y({qu(pc$3shE1_>_FizEgEtcn|GMnvOUy$HMlG&lu5 zZhDP{0Dxp}%^v{B+5cg-0mW3*2v90R_CMt*Aqk1Z5-9RTEo*uT)Y%La!|b4#Iw-=l zu!CZ{9RT=unoX1QquBraBTb2EHUULmzwJRWjJN+EI5>}Sd|=5EwEt!wf&c#zh^<(> zyu*<1;^c-+J0g(V_=RI)oSrB)+P^1}7ehF)2xyd@=d;3BJfb@DG7H+fgw;`&JC=pkQ%*0;YwXiv46% zjC-WnMa4M%*+9koD)t*2?FPr@_DnquFAq|jiQT>I`I*yKM4+Y>PrXWP_Ed3Y;_j9$ z>b*CCR9*ln?&8c^pO_R}_Q+U)Qmzx6a&vuJN&=R?PA`%%QUD!VhKt}307?Xz00})I zrb!5AOBu#y8FXYpAzn5BomABbP#}Y#L*rtp*pmG(_DnAFtCT2EXQTap_Rj5~lM3h< zr-dDKekRZnJko3d9fAHV2Avf9|Ey|m|9^^ub4|x7|NnNL{SJPP5r{2P4D9vqWE|kB zki*cM?>;qSP}SS@?p9)J4=Pn+>M_e@oyMvdm*3y);bizXl5%wDcUXD4>5l+cPn70E-d z`t4GpXIs8jncR{=H~QSV5pi0HuGDM!rFIJjt=l=d7IjyN=-R#39RqzkJLf*`_Fjq1 z`@@igUMHb+BE3wjgNT1UoRv&!G$I2<>1d2HNTq~@69vR!I3Xc0(^d(EM}|qnq2az9 zRe~!dm{g2gZJ&!RxJsr`4bNTJdT=m+9D@ygLJWRpCQJMKMG`p4L@t(j${a)(RJovxm;PK7RA_0ddBRF}?7$A(>W`g#q5LPa6UrlCom zZ^{2j{!t0uaK-^{>~Nv}zqv}Lyh+v(E90(`(5~^J@~)DsBA5qafnEF^S4qp=N|&o7 z-xJoaO+sVb?8_Re1PWmMZ0#z^-lH4?S4rM2Mc@nxzLlBmDw+H&jjodHh?<5nt*(+3 zo*q}p??2LirAmBt&Q&t`ez>`rvH>&y0loo?Qz|V~iEYXFJ&*{zBKaT1mVT6)xk?&e zbqM$mDQcxt+>169cCCW%e2M+>YYS@_v}^g>Y7hD;(c|C+A0N$9nm~zlihDAl&v=*S z3_AHSq*vqqO1{$CS$`jXI5Z^)y_w&oQV4(&*BGa)5w^U=cxZgW3uoPJP|hh0m{oS^ zN00~YtaSDxbV7Y&Qr^EoUfIvFqATcIIC!f!Tkf&(c$LB+Z*l#6;seN2S{0uX$eU~0sy^+f~Yt# zCekpJSR~O)2^~YoWVlqD(*94LFeyRJ$2Op5S&a~7G5~70*pmQAqXY*47-uBlovFxg zZm>|D%|Ok^4r;9Z&pr^AGev&$1@aMmi8IqF&JJp<6MtCmu1Nt5rf`F3J%m6+_0%_t z)}56=viHh%9i}!iUBp!i zTS(p;2KMpRtvik!1AA9o;zUCDiL~3l&04EEj|bzOQ=V&7*n=0KFU;k0yBrQ)sP?h# zpWc9cRV*pK>mMb$b+GISR*s%HDq$zch2D%S`4;4xYtANa1)00Kj{`!7l>VqhZEKaz z>(YQh>W=+36nq3!XZQ76t3fXQdJ*&cO(kmIs-s`e00zZv-olGl&?Q zS32gP63vuWTYUp$&BS)yBK9iLg=Z5g_%&ou@8YKx3|*r{M_%uExiW}Bc@7t-yaK3K zt%dVt)uBJ`Yx$-e;A}df&fT~47Nga5)q|k;KV?k6k^=88XVKhtfxX@ zwz2P1Q6uCg8KFXir-Xu>euDjXo(l0rk+oI|)!B*)h56d4P^wf2riIBUwNs%qo`no^ zJZa4?dBwyul-X$C^N%!}s1UC|T~tVF$&|O&z7O*S`#!ob*!R}#zd!fMKW{I5_uK#S zq+|eq=+-~GH!j*siByNHY&rorz~={W1rRm2hq+4On>5E02P#qjA*+Uzg+{o_T;n&I z{559y%#@(gZ0YZViv%-h&73WV&yP}~8;?5o_y}^jBhMet0sG$R{6Kw=#->hXxBV}b z(hvcrl|d++3=RNbbhJoA>m?$I3`}5+K>~U3EjXR=F9^IDMyIpnMeQ)lhPgHI|7ls& zPDPCng)#toVyUN$k`a_3jV%XyrXux*NkVlt13kO_Z}k6XA4m%OAEt%rOKk_ep91u_ zN19!r$LUWO=w)b8JB+jc9T&6v|BL@mjbD4WfBF%Kb#w)PfZ|rTMy{w^x?UX*29>_} zWEW%_Mr~a4)?UD_Z?tRLdC4sSHFJhRJ9NAK;e&AT#~PvChCv}$c}-o994c7fFmL3= zhp?~fYca_2I@qCe7)7E#M zH3pT`=KdIa3bsxXzm|Is`nb-R>({|Xw?Qh?!KwiKBW5J9G@xfl@C1-aHF^rN|C1IH z2wJ8}WN70iHrOgjRgI9lWP~co;H)Hqkbdhm!0rDh7d3BkM5xX-REfQF`}#mC>jTDV zVW&#zc9rDc=^tl(K=4Sjg(?a3+nOq|s@eVjLRRko-^(3z=28^~dEUHw+X-jT?#aD|jq6iuGw5~2 zKWDb<2K)O_Bi7gOWKiHA9k2Um1jq zwf&a$>jC=T{dV(tE6_i7QpntBkd@EYtQZWkazN+VgFtRqXY7nvkQ>!nFp-rfF$wrM zkjM9V-F+y?iO&WGO#s>aehj#ll7gWRhv(7&Wtf%_F}MbjML2<}&6&hJHDV7C`2COP3C&A`|H1P*EAPNXWu50nt`St? z8o9OW%q*AfX}7;6O%pnOF3X_BH;B!WD@t^;9rH_$atxaJ)bGK^%iupC={45@hz38 zO2{mPO7fpoGpZD98~Z;MHA3!^0jeY+AXPF&N-Vfanu;O<`v}$9iYf)$?f=xaO2|-{ z7Iypp=d%C#N19DkiPvv?suXOr{|i`Y{|{W-(1+iCqO z3cmY1$XT-gpOklTZwQrk{X@#DM=1G5bPwX<8-hL0HO@6wXwZhg5&$IYHOzN@=x8OX zy0=1;E@c>0Ot;KuGdLw2t9-oLQvkU>&km^`=#=PQOMiD=c~hsd+Wx0V17yXOvI+kg zDVuag2mb#wE+Vy zy1%}xtN%Qs*tN0$k{$gL6!|9JJzK4@3SA}VR~_3+WuivxS;!}cy5*Zz z`XYZ3S1I@2@LbD6ROqJ9)~QEoyi`cXhj$vLQ=yT>lT-V>pDUbe9H>zh8jC7*QWrx% zS8$DEds?X8G`OpH`m#&)3SCtw;kVdM397q_TwjadtPZm3dQZ=8HSQ{8dpqPR3i5*+ z@t1RgyfN%mxe_3AohOFHFKX2eI(;Ve$mG>$6b=3^*`cgKg?0@6<@6n|3yLjmzlPKZ zS0VHM!)eDdQYzDmFb!;gKq@3S3P~*1ig2lzmNHr$O*0lkA;~ZThpiJ+D5Q*t3?uPy z@5bC#2wVY2TEO>!`quwH=|{8uk)$7Kv-p1FY-auc z^8<)kRNT;?60mO$cv%GwQYC?7$CWT9#EIQMvH^ms$xxjP?I7*`)tXQSPUT zn`>_m@UEglT&3&t<_(%t3qa<8>U87YuN0;0xy?{0ROr`t8u76a35srqPUOA|$k=oA z^cjOLy;N|GbILmRbBiKO-_1^f>+50D8gP{=XFB z{~e|O0YlY(iufX`|MUokxO$G zl^0)Bc+9w_pBSV<=9SE;k*)22?q;?Ik_Bk6|C={=EmS!Cj3P4XQqY06DXEzG{TN8_ zh16>q5kW!LeX&LlL6Pu(MS7aR7zvIsl#EKb6=InRVc`+{{yz6*vO2$?_4a?NYIttK zb}s`|i1dV;h9pqmY=tCIA-<^5AE$VAHlsr9o!hBUDpbfgElftMoeHIKD};ZiSy#v( z!~PdM(rlqZ0{yn8Lab`m{&%+0{*OAb=;q=2=Tq4KEpML7nHZ7D_Wy)`+(*n+CMa@u z#_#(#g+=XT<(x9}Mdu&Q{udKkJ(&0g5iX{{{+D8q|DV=CWSd5VLG~M&l+;+*|L0#2 z_{bRJ|BZ{@@Synp|EvW)%W8NO${^@TJV{DSi7kO1Uljgw2(QkTpcifjz0^UE+pNv> z{eQdtpDp&k@q?1YW3mhMxG9wlpvUe1=eX$LJQM!0|NSH*Fy1R~d54kK?8lEPHF^Dx zmWgrK9}nz3vf9HqUDb6CLtpzN7v$S=E!gS2t72IgnqDQw4Sw1zF)sFrvSDyN72+zp zeeQ}5Q7R<=aMkPFz>jhI!_C@XuC79t3tgU?zuVt&hn^nyYg$5udXIXwd%fmETxg%= zzn;sbLIVml9lN#ZdtRy7@HS7_hc|JeOHqDv-}xgaQSLYL{IB9dTlSeh^rJs&-wuKu z^Sz3@d)W8)7?A&N@3Q#*r-Zn2llJr+0rK4THx``)Io!$Z>M)So9Y)j2olb~5^I%L^ z9LQ5Hwe7AynGhEpFWtKbWF_exy#VCy{ymBx1i7C6T=72p65<*Ty|wQG$k%oyUf2S1 zz0gBNuYk-AQk{D0zEyIl(3~1AH~7?k9Jl@JfRiJOs!+IN`E?)bJdNv8uV}mC9zfNc zcXU`2@I3C&*U*LYVSI{uRrH?O`eodKex-NUfWf_ddhL*QonFTMue~b)YvNklVc#+t zZ~+z67zIIP$x2AX%$yJeO#lJQ;t~P`M1f!kpmhbr?YiD-ukCHEwbyE^w^nPfmg^N< zQ7U!s)#|maTC4tTty^o=tN)pknGlhxP{sEDClAjX=ACcOnR(Bd`M#N)IUghTy*>Y4 zPUhdJo4cuI$I@8%d(yUvBG+GT*8ThR?!KdA;)tlf4V^b0E*Diy{xKUaPmDYS4Bofu zYOlIoh=I$dfVb{Dgx{*0)D(NFJ6vwuJTvQf*sZ#6uJo$&h0875kBUJgQ8}{E>}(O7 zZy-l#3^mAMrY4vaFi#FABg~UZpL#q(#K`p4W2UDWn%S1;5x-K6Emrz%p_y15CKXBL z@Yh6Jf!5$FQqjE1_^o4$wH+`XffASv&3-jBgWZCC9?|ai4Q#htzo+LBwkCZ+p_#4z zjt|Y!VQ97>+YROee43Z)T+f((e)IJ^b$Qa;m|T9lE@SPRt9tmx5kGj%ztDrQbK-8$ zi8IDu+!FS@GdPaue)8IYoTYc_j#n&C%Y@5Ma^g+h$8+wDZLWl=l&P#``Qq$IaV~rY z5GoW$!2EwAgE2H4W&{k)6~mVTM8e3NNKq@3+Soc|i~Ikyj&U--QjP7Z|J$656y~OZ z!~bQnN1aUbD)rSr*{bWn`~Ni7$)NH7u!XI|@0v#_MT~^qf^{3&v7Sb@ScI9Os9r4NAv7w>C1bwr=7$JQ1NR}zKh zKA(JkNZ?q`3GtK1`?oy)XEom6+NgHp{b2(MrBQYv$79F)x3*jD9Pdx>2?~88qnO_J zoI;<-s27mW4|P>Be5qE#bStVA;o$omV`=HL&*w)~ht6s0{u(OUEM=R=`%~EuOHF0w z9AlE%L}g79DEI>EDw3F_N!G*6lzOdDtxwhJMPyP+%PWR8n^nsueTvZM@qP2r0v;Lf z|F|yIp3q0q+R%PUi}{ezczc>*2b%)2ZzPFE0z&h+@8u$P_F@qtb!cE-A|t~u+7ZYGz311c4^jcPBsFF(If zL5#~hAGW%uj>z2Vz3$DA6vX^9TU`44>xf-gmn~Th3c|&8&DrDKbi^B%R}8E>r67{d z?$7k`)e(Uym)?8xs)Ep)znj;oi;j?dc=!0I2MVI4(<(V4H!8h#MA3f>xBJ4Kb9cJ! z5(u3jv$M>>FbA=H)$YnoaDPLM*QMf_3PN!zV!;}?yvNO_W+`0G3OV-m2Doe*JaY3g zxO{>f+;bINZWw%i|82O89eD8S4Y)j`=dH#7c)Tr-AHMOQmm`zFSKUN%`2N2L{`8-n zErHVkM#|yCJekNS&1+>+8`}wEyZ@)1pxsMv)-LsYoM7wK*u2tXJl$hfF;9|3a8g^j zto1=}wpGI?*4wJll$NyJyZ*zDDc}IEmynVb{-WL3G{4l-^Z^U=tdw77Cz?1O?@H+8&VRv{O z-Uqx_dFy!dd6RHH9)vsMJ#crNhj-y!;9cSU$UDh9i{)Y^SUMJqNiYHnz=H9)_-1?= zz5y@6tMGJuJa!5D0Xu`8!wzGgW3OZHVvDf3SQWMmn~LATZ{k1Tm+&+AIo@Di94~^` zkH_V8!*23id8>I#cyI7#@uu^B;@#t!d4;?@UKTHtmx_(Y%CWInGN!<^m;ejI7vb;X zuj8xma(pU27SF{Ru|3!hY#X*2+kmaYd@*m#6LaR?=ibJXaV;K;6Sx8wW+Kc$n2xYJ!jTA55q3kEjL;Wh3c?Wx{SbCV=!(zW3a|>W3a|>W3a|>W3a|>W3a|>W3a|=1Uj-^0Tob#7PV7@^ zEVdLB8w*7SeQ`nlIE%iZ$dC_*BkJj4f~EOJQ&E1&gnYf(Vm2D}1;x3>N#iV*5=D4; zMMXszTwP+wnPA8_hMCOy;iVED_+9)b z{2Kg+{jdtK3a|>W3a|>W3a|>W3a|>W3a|>W3a|>W3jCoJaDp=?csRkS5i*x!VGhS(j#sE_<{$d-{>VE&FUi4~^GZLC1IL*@49EJqqC&#(NfqdI!575# zd4uMiK$`1maQNhZRqFYx$uBOEH1Di-U$;+W3OqLj<|R3yOB#pMkFLWXUAodsoXErbb>#7BCuzP1NE?HLbmLO8 zaSew&GRH{sJwe)y>mYOKDe^$sW%5WBpm{z>yZI5wcx66$_~0z^__lPK?+w!K_X3&o z50eL88$%vh98L4RKzil|ka^sd+*h}XY}C8bd;mxvwW*octfcugkY2C|WWMqStoJC{ z_^yWLUqbvS&$Hy-0eZ4A>I%*G1*03?fPPYc^6<}V$j=|lqIm%rlhX}k8CH=8_5_nh zwr0_MA22p?D9FlLOYXk}kGX0Z%?E-kr~g3v56J@uZ;%JK_oexMAj_3R_6L?PfcArF z-VtOid;oGv&yq(bOe9afwT|W;fFU~&WM};q@ki_#wo@>f01x*4k z&@{S9mD%vQYSWd|w7nnVKTGVSN;-BxRqH#9=0||0KoZ)2s?tZRR3H9XOYiGul2C9QvmZZE;+3_ z^S+ucC;j36p!cQu3~T>cuoCveiFW-b6O0`Z2C@oYB^#1IhV95CTp9(&2Hb@0`%lInFw)=_xq((B)u4f&TWppT7@t)COHtiHW&}( zv2N$idO&=50sszkin!Mu{pM_4R15&BWqbg}RMYmJL*`xhi)!|Us{rV|fO>ll&2xt= zxK*yI{{Acg^E7t6*N``FUr@c0a2F6)E&%YuF52E>$lE`~HuHy=C^KB;_scJ;RkBe4 zWKIGxwM>^6B7WD+UH~lZ3u5Yy)8*u=LgIc>tqgew*{kp5(tH8pcly5!z>=>)46hT- zk5fgDoTX~oln6*51K{T_G#{ZN?$1^o*>Mq&y*`3`3eD%K$g3AsufNyHYQHOz=EGE) z?f0xaWxsPb&5Mb?UgL?lw_$^=EeEk(3ut}<5%fPBiMZF&AwL>u(i&-gJR$z>7!fz4 z8i2nJ18OHnnimmLZ&(h+S1hsPrG)D4WEACtbv(N$zXjo2Ws z_u9Wh)tv*~{L2#EXBAn@1^M|#vvsb5C%&JcrzSVhmzCriEJn!_t<}jIGF8J*O^zQr zRFljXw5JjQpNvg~8;?wip~^~3fT@+9Gy{WxpBAS{;3sNh!UTB*xdMKlXnukwjb0!V zV)(&mkvbRwKRzX4q*lvMOy;Mg>f=i_MJ1NWcI!hz_&_r>K7k*j(Q4ox#3m=|+IA>t zcak;yf?Pf8R8JfPyO^$^INiQ~4Wf=s zXPERbX*JAf&F~@8+HpQ0IZCaxt>;z=DYcomO51GEr#qu*fP{iPETwdYjjj%Fv9?)9h;;v zo|yz%P1{_J-dd?3xY(3yEH+WjN<)QQNy+g#GC6}kT$3@#YC;)=z!yqiYJc#^ZrQp5 z)tq2=|4I)SRSW4$0R5%UH5M8zMtz>qU@0>j^*N@pV#|}e(-Zp}(_fhQ`nOfbTo~v$ z_bL6cH8!TBb2ROlDc=l_uo%u}W+~;TXj1tP9X3C@#d0WLNQLV#J}xv>7|p@xgwq!r zii{!9*2?vNq7?nN{&;6U2Pbz9XR&^0636MHH-{rRxh3XYqn2WC%?ye;G0as?cXSWekNczlj z;#7o^_;bLzplVMY(P!(iwMD~~#N{LMrg(Rqt?=ohDfgQ$X^FRrFHN*0DhVuc4gM`$ zjxa^mZ%j}U%+4vD*EifEmBh>AKU0P@X$j};8SiAm@>iJF{Qdf2E%DCm(F+|qD+&4B zaf5kq{{{_Ml3wDeBwFsTSR@tah$8bsWky+cs3cor43+0*=Y~SsAc>IYiK7fMDswkX z+D+x`rqcbw**bqM^)bxuZD%2t!qnv{WUMCKXo3&S4B;vCgR4+cI4mz578p*MhYLmF z5#sRQT#YRk@niBEKV}t^`dAtnCX5ilRM45W0v}y9Y)@2+wGxFy#w2P_(IlkCCup>x zqLM;`CC_9oN->%X42AJ9IJFey6&TIYq>^tcF`5k)IOD0IPzR&ZXz2AqlgYFc5fn$L zroU*Cgd9u?u1RK7A2S`0>Rt~ei-*0hIcYr%KrH66BB*!DIFs3u0OKhtu{xBI%Cz1> zdTI?VG+JxUF0dq&6=fUEaE(+VWm6x&pw!23!X-Al|?D<^E54**PsA=(J*Ito!PkvySLyav3C(Dc3R@vtg2w)&gc~!3Glf0L$(-L)a_`5_wM35xVf`!@6vXDf z8LxkOT1))$_f2sXI~0WfmXEp@{zprcmpApS+oT|hBA3U#|CN^5wR6(2=_?dOMM2}m zY2RpV2eEzC?#fMYe?yJerQ(?iLUAf$!5X-{$IYi^DO}D9IrjAixNI6ca`Q5{e1aU@ za}``}7<_*JZMcjbc<|~CxIClht;PU&ye*GEHv;-Rqs$O0%$4SaN^+#K&?qtdFUpW7 zl|~3=-9F zf^~ww?gW`+?UW;9ogg)#JmuXZq+voKB?&!C{ZO;1tRy~{S~Zk9wW)q=AJ|49uWuJm z(A%X>EfLy33?S6hv=z* zI#sI|kx41`^*5)gB4G(JM{d z%MEn-@oM*`Dl5P4HsD^~K=ZiTBW$nQW3C){ZrK627npJN!y*4Y?<6Xx z4)yU-dzN=qdtMm$P2o=UydfK1$79uT^9IXW+4#fzPz9G%r_k|KSPweE_?> z5O^<3rFo^A`{0@y8~$%-Ki}>ZG=-Iiucl#l??8KIe~Q&!35V2PdtjTa9uK(Jrqbn@ z)Lxx#slCoEN4$6RAet{xb2p2u^)~LXt9PQB``&KIpMv#f1D~uc+TLufx5xyrv*YaQ zEw%DP??d~Qz-Que+MfMl6?m)y^O9WXOIk15E}9hHtRv-%>p^U{dnBrCrH`!3M;?d8w7cnX?sBG-keQl+%kcn-3LL)E6k-rPkwagELn>W z1b!LAK=%dzrS1EZTV9z-)&}o_e0R|8DDytTSaQqtGi2@7YVxg-aZwY>|i_TxSRej}Jmnt|Ne4JY?Z*#!I) z3ee+&D7u^+#P8euG4M;84SF>6r1=nX=ej&{PyTt}7kv|SKgYc9Fc9(kKD-0%kANOr zXWBlS+_ir^xo`6az>nVv_^`2d>MK>SH3J61lIKh z!9#zh`EpVgA50GU1P6g1#M`xd1!{N1?>GR0^O&q{lTf=4Nh}3{n2s)!?-wLMH`hWQKzb}(0>i_@% literal 0 HcmV?d00001 diff --git a/notebooks/sentinel2a_night_imaging_products_summary.json b/notebooks/sentinel2a_night_imaging_products_summary.json new file mode 100644 index 0000000..1a4fa36 --- /dev/null +++ b/notebooks/sentinel2a_night_imaging_products_summary.json @@ -0,0 +1,21 @@ +{ + "created_utc": "2026-06-03T15:14:05.313125+00:00", + "source_client": "phidown.search.CopernicusDataSearcher", + "source_module": "/Users/roberto.delprete/Downloads/phidown/phidown/search.py", + "query_url": "https://catalogue.dataspace.copernicus.eu/odata/v1/Products?$filter=(Collection/Name eq 'SENTINEL-2') and Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'platformSerialIdentifier' and att/OData.CSC.StringAttribute/Value eq 'A') and Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'operationalMode' and att/OData.CSC.StringAttribute/Value eq 'INS-RAW')&$orderby=ContentDate/Start asc&$top=1000&$expand=Attributes&$count=true", + "record_count": 129, + "catalog_count": 129, + "content_start_min": "2025-12-03T18:22:01.024000Z", + "content_start_max": "2025-12-22T22:17:31.024000Z", + "product_type_counts": { + "S2MSI1C": 129 + }, + "operational_mode_counts": { + "INS-RAW": 129 + }, + "platform_serial_identifier_counts": { + "A": 129 + }, + "output_gpkg": "/Users/roberto.delprete/Downloads/phidown/notebooks/sentinel2a_night_imaging_products.gpkg", + "output_csv": "/Users/roberto.delprete/Downloads/phidown/notebooks/sentinel2a_night_imaging_products.csv" +} diff --git a/phidown/cli.py b/phidown/cli.py index c918db7..37ff77f 100644 --- a/phidown/cli.py +++ b/phidown/cli.py @@ -859,6 +859,11 @@ def _main_list_subcommand(argv: Optional[Sequence[str]] = None) -> None: def main() -> None: """Main entry point for phidown CLI.""" + # Support local agent-skill management: `phidown skill add|remove ...` + if len(sys.argv) > 1 and sys.argv[1] == 'skill': + from .skill_cli import skill_main + sys.exit(skill_main(sys.argv[2:])) + # Support subcommand-style UX: `phidown list ...` if len(sys.argv) > 1 and sys.argv[1] == 'list': try: @@ -876,6 +881,9 @@ def main() -> None: formatter_class=argparse.RawDescriptionHelpFormatter, epilog=""" Examples: + # Install phidown guidance for Codex, Claude Code, and Cursor + phidown skill add --engine all + # List products using subcommand style phidown list --collection SENTINEL-1 --product-type GRD --bbox -5 40 5 45 --start-date 2024-01-01T00:00:00 --end-date 2024-01-31T23:59:59 diff --git a/phidown/skill_cli.py b/phidown/skill_cli.py new file mode 100644 index 0000000..f066bba --- /dev/null +++ b/phidown/skill_cli.py @@ -0,0 +1,214 @@ +"""Local agent skill installation helpers for phidown.""" + +import argparse +import json +import os +import shutil +import sys +from pathlib import Path +from typing import List, Optional, Sequence + + +SUPPORTED_ENGINES = ("codex", "claude", "cursor") +SKILL_NAME = "phidown" + + +def _package_root() -> Path: + return Path(__file__).resolve().parents[1] + + +def _default_source_dir() -> Path: + root = _package_root() + candidates = [ + root / "skills" / SKILL_NAME, + root / "plugins" / SKILL_NAME / "skills" / SKILL_NAME, + Path.cwd() / "skills" / SKILL_NAME, + ] + for candidate in candidates: + if (candidate / "SKILL.md").is_file(): + return candidate + raise FileNotFoundError( + "Cannot find phidown skill assets. Expected skills/phidown/SKILL.md " + "in the installed package or current repository." + ) + + +def _strip_frontmatter(text: str) -> str: + lines = text.splitlines() + if not lines or lines[0].strip() != "---": + return text.strip() + for index, line in enumerate(lines[1:], start=1): + if line.strip() == "---": + return "\n".join(lines[index + 1 :]).strip() + return text.strip() + + +def _description_from_skill(text: str) -> str: + lines = text.splitlines() + if not lines or lines[0].strip() != "---": + return "Use phidown to search and download Copernicus and PhiSat-2 data." + for line in lines[1:]: + if line.strip() == "---": + break + if line.startswith("description:"): + return line.split(":", 1)[1].strip().strip("\"'") + return "Use phidown to search and download Copernicus and PhiSat-2 data." + + +def _copy_skill_dir(source_dir: Path, target_dir: Path) -> str: + if not (source_dir / "SKILL.md").is_file(): + raise FileNotFoundError(f"Missing skill entrypoint: {source_dir / 'SKILL.md'}") + if source_dir.resolve() == target_dir.resolve(): + return "already current" + if target_dir.exists(): + if not target_dir.is_dir(): + raise FileExistsError(f"Target exists and is not a directory: {target_dir}") + shutil.rmtree(target_dir) + target_dir.parent.mkdir(parents=True, exist_ok=True) + shutil.copytree(source_dir, target_dir) + return "installed" + + +def _remove_path(target: Path) -> str: + if target.is_dir(): + shutil.rmtree(target) + return "removed" + if target.exists(): + target.unlink() + return "removed" + return "not installed" + + +def _codex_target() -> Path: + return Path(os.environ.get("CODEX_HOME", Path.home() / ".codex")) / "skills" / SKILL_NAME + + +def _claude_target() -> Path: + return Path.home() / ".claude" / "skills" / SKILL_NAME + + +def _cursor_target(project_dir: Path) -> Path: + return project_dir / ".cursor" / "rules" / f"{SKILL_NAME}.mdc" + + +def _cursor_rule_text(source_dir: Path) -> str: + skill_text = (source_dir / "SKILL.md").read_text(encoding="utf-8") + body = _strip_frontmatter(skill_text) + description = _description_from_skill(skill_text) + commands_path = source_dir / "references" / "commands.md" + commands = "" + if commands_path.is_file(): + commands = "\n\n## Command Patterns\n\n" + commands_path.read_text(encoding="utf-8").strip() + return ( + "---\n" + f"description: {json.dumps(description)}\n" + "alwaysApply: false\n" + "---\n\n" + f"{body}{commands}\n" + ) + + +def _write_cursor_rule(source_dir: Path, target: Path) -> str: + target.parent.mkdir(parents=True, exist_ok=True) + target.write_text(_cursor_rule_text(source_dir), encoding="utf-8") + return "installed" + + +def _expand_engines(engine: str) -> List[str]: + return list(SUPPORTED_ENGINES) if engine == "all" else [engine] + + +def add_skill(engine: str, source_dir: Optional[Path] = None, cursor_project_dir: Optional[Path] = None) -> List[str]: + source = source_dir or _default_source_dir() + project_dir = cursor_project_dir or Path.cwd() + messages: List[str] = [] + + for selected in _expand_engines(engine): + if selected == "codex": + target = _codex_target() + status = _copy_skill_dir(source, target) + messages.append(f"{selected}: {status} at {target}") + elif selected == "claude": + target = _claude_target() + status = _copy_skill_dir(source, target) + messages.append(f"{selected}: {status} at {target}") + elif selected == "cursor": + target = _cursor_target(project_dir) + status = _write_cursor_rule(source, target) + messages.append(f"{selected}: {status} at {target}") + else: + raise ValueError(f"Unsupported engine: {selected}") + return messages + + +def remove_skill(engine: str, cursor_project_dir: Optional[Path] = None) -> List[str]: + project_dir = cursor_project_dir or Path.cwd() + messages: List[str] = [] + + for selected in _expand_engines(engine): + if selected == "codex": + target = _codex_target() + elif selected == "claude": + target = _claude_target() + elif selected == "cursor": + target = _cursor_target(project_dir) + else: + raise ValueError(f"Unsupported engine: {selected}") + status = _remove_path(target) + messages.append(f"{selected}: {status} at {target}") + return messages + + +def _build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser( + prog="phidown skill", + description="Install or remove phidown guidance for local agentic tools.", + ) + subparsers = parser.add_subparsers(dest="command", required=True) + + for command in ("add", "remove"): + subparser = subparsers.add_parser(command) + subparser.add_argument( + "--engine", + choices=(*SUPPORTED_ENGINES, "all"), + default="codex", + help="Agent engine to manage (default: codex). Use all for codex, claude, and cursor.", + ) + subparser.add_argument( + "--cursor-project-dir", + type=Path, + default=Path.cwd(), + help="Project directory for Cursor .cursor/rules output (default: current directory).", + ) + if command == "add": + subparser.add_argument( + "--source-dir", + type=Path, + help="Override source skill directory containing SKILL.md.", + ) + return parser + + +def skill_main(argv: Optional[Sequence[str]] = None) -> int: + parser = _build_parser() + args = parser.parse_args(argv) + + try: + if args.command == "add": + messages = add_skill(args.engine, source_dir=args.source_dir, cursor_project_dir=args.cursor_project_dir) + elif args.command == "remove": + messages = remove_skill(args.engine, cursor_project_dir=args.cursor_project_dir) + else: + parser.error("Expected add or remove") + return 2 + except Exception as exc: + print(f"phidown skill {args.command} failed: {exc}", file=sys.stderr) + return 1 + + for message in messages: + print(message) + return 0 + + +if __name__ == "__main__": + sys.exit(skill_main()) diff --git a/pyproject.toml b/pyproject.toml index 0796f0e..d9b4c3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,11 +79,11 @@ distribution = true [tool.pdm.build] # Package only source and required config files; avoid bundling local downloaded data (e.g. *.SAFE folders). -includes = ["phidown/*.py", "phidown/**/*.py", "phidown/config.json"] +includes = ["phidown/*.py", "phidown/**/*.py", "phidown/config.json", "skills/phidown/**"] [tool.pdm.sdist] # Keep source distributions lean and reproducible. -includes = ["phidown/*.py", "phidown/**/*.py", "phidown/config.json", "README.md", "LICENSE"] +includes = ["phidown/*.py", "phidown/**/*.py", "phidown/config.json", "skills/phidown/**", "README.md", "LICENSE"] [tool.pdm.wheel] # Universal wheel (pure Python, no platform-specific code) diff --git a/readme.md b/readme.md index 26c65ba..dff9e73 100644 --- a/readme.md +++ b/readme.md @@ -76,6 +76,23 @@ If you manage marketplaces from the Codex CLI, you can also add this repository codex plugin marketplace add /absolute/path/to/phidown ``` +### Local agent skills + +Install the bundled phidown guidance for local agentic tools: + +```bash +phidown skill add # Codex: $CODEX_HOME/skills/phidown +phidown skill add --engine claude # Claude Code: ~/.claude/skills/phidown +phidown skill add --engine cursor # Cursor project rule: .cursor/rules/phidown.mdc +phidown skill add --engine all +``` + +Remove the local files with the matching command: + +```bash +phidown skill remove --engine all +``` + ## Credentials Create a shared `.s5cfg` file for both CDSE and PhiSat-2. Keep the existing diff --git a/tests/test_skill_cli.py b/tests/test_skill_cli.py new file mode 100644 index 0000000..99d3d6d --- /dev/null +++ b/tests/test_skill_cli.py @@ -0,0 +1,67 @@ +"""Tests for local agent skill installation CLI.""" + +import sys +from pathlib import Path +from unittest.mock import patch + +import pytest + +from phidown.cli import main +from phidown.skill_cli import skill_main + + +def test_add_codex_installs_phidown_skill(monkeypatch, tmp_path): + monkeypatch.setenv("CODEX_HOME", str(tmp_path / "codex")) + + assert skill_main(["add", "--engine", "codex"]) == 0 + + target = tmp_path / "codex" / "skills" / "phidown" + assert (target / "SKILL.md").is_file() + assert (target / "references" / "commands.md").is_file() + assert (target / "agents" / "openai.yaml").is_file() + + +def test_add_all_installs_codex_claude_and_cursor(monkeypatch, tmp_path): + home = tmp_path / "home" + project = tmp_path / "project" + project.mkdir() + monkeypatch.setenv("CODEX_HOME", str(home / ".codex")) + monkeypatch.setenv("HOME", str(home)) + monkeypatch.chdir(project) + + assert skill_main(["add", "--engine", "all"]) == 0 + + assert (home / ".codex" / "skills" / "phidown" / "SKILL.md").is_file() + assert (home / ".claude" / "skills" / "phidown" / "SKILL.md").is_file() + + cursor_rule = project / ".cursor" / "rules" / "phidown.mdc" + assert cursor_rule.is_file() + assert "description:" in cursor_rule.read_text(encoding="utf-8") + assert "Phidown" in cursor_rule.read_text(encoding="utf-8") + + +def test_remove_all_removes_installed_targets(monkeypatch, tmp_path): + home = tmp_path / "home" + project = tmp_path / "project" + project.mkdir() + monkeypatch.setenv("CODEX_HOME", str(home / ".codex")) + monkeypatch.setenv("HOME", str(home)) + monkeypatch.chdir(project) + + assert skill_main(["add", "--engine", "all"]) == 0 + assert skill_main(["remove", "--engine", "all"]) == 0 + + assert not (home / ".codex" / "skills" / "phidown").exists() + assert not (home / ".claude" / "skills" / "phidown").exists() + assert not (project / ".cursor" / "rules" / "phidown.mdc").exists() + + +def test_main_dispatches_skill_subcommand(monkeypatch, tmp_path): + monkeypatch.setenv("CODEX_HOME", str(tmp_path / "codex")) + + with patch.object(sys, "argv", ["phidown", "skill", "add", "--engine", "codex"]): + with pytest.raises(SystemExit) as exc_info: + main() + + assert exc_info.value.code == 0 + assert (tmp_path / "codex" / "skills" / "phidown" / "SKILL.md").is_file() From 54a2a3cc5352ffda9a6875653dddbf773f6a8439 Mon Sep 17 00:00:00 2001 From: roberto_esaclear Date: Wed, 10 Jun 2026 13:37:09 +0200 Subject: [PATCH 2/3] security patch --- docs/source/changelog.rst | 3 +- docs/source/getting_started.rst | 2 +- docs/source/installation.rst | 2 +- pyproject.toml | 4 +- readme.md | 4 +- uv.lock | 3257 ++++++------------------------- 6 files changed, 648 insertions(+), 2624 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 397fb55..23851e7 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -580,7 +580,8 @@ Support Policy - **0.1.11**: End of life ### Python Support -- **Python 3.9+**: Fully supported +- **Python 3.10+**: Fully supported +- **Python 3.9**: End of life - **Python 3.8**: End of life - **Python 3.7**: End of life diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index 3f356aa..8747aa9 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -10,7 +10,7 @@ Prerequisites Before you begin, make sure you have: -1. Python 3.9 or newer +1. Python 3.10 or newer 2. A Copernicus Data Space account: ``_ 3. S3 credentials from the `S3 Key Manager `_ 4. A PhiSat-2 INSULA account if you plan to use ``--provider phisat2`` diff --git a/docs/source/installation.rst b/docs/source/installation.rst index c3dc81f..1f4c8f6 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -6,7 +6,7 @@ Requirements Phi-Down requires: -* Python 3.9 or newer +* Python 3.10 or newer * ``s5cmd`` on your ``PATH`` for S3 downloads * Copernicus Data Space credentials for authenticated downloads * PhiSat-2 INSULA credentials if you plan to use ``--provider phisat2`` diff --git a/pyproject.toml b/pyproject.toml index d9b4c3c..ceb8ed2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ dependencies = [ "requests>=2.32.5", ] -requires-python = ">=3.9" +requires-python = ">=3.10" license = { text = "Apache-2.0" } [project.scripts] @@ -64,7 +64,7 @@ test = [ docs = [ "sphinx>=7.0.0,<8.0.0", # Use 7.x for better compatibility "sphinx-rtd-theme>=1.3.0,<4.0.0", - "sphinx-autodoc-typehints>=1.24.0,<3.0.0", # Compatible with Python 3.9 + "sphinx-autodoc-typehints>=1.24.0,<3.0.0", # Compatible with Python 3.10 "myst-parser>=3.0.0,<4.0.0", # Use 3.x for compatibility "sphinx-copybutton>=0.5.0", "sphinx-autoapi>=2.5.0,<4.0.0", # More conservative range diff --git a/readme.md b/readme.md index dff9e73..cb4492a 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,7 @@ ![Phi-Down Logo](./assets/banner.png) [![PyPI](https://img.shields.io/pypi/v/phidown.svg)](https://pypi.org/project/phidown/) -[![Python](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://www.python.org/downloads/) +[![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/) [![Docs](https://img.shields.io/badge/docs-online-blue.svg)](https://esa-philab.github.io/phidown) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.15332053.svg)](https://doi.org/10.5281/zenodo.15332053) @@ -48,7 +48,7 @@ uv sync ``` Requirements: -- Python 3.9+ +- Python 3.10+ - `s5cmd` available on your `PATH` for S3 downloads ### As a Codex plugin diff --git a/uv.lock b/uv.lock index b83c6c8..fbdd3ca 100644 --- a/uv.lock +++ b/uv.lock @@ -1,18 +1,13 @@ version = 1 revision = 3 -requires-python = ">=3.9" +requires-python = ">=3.10" resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", - "python_full_version < '3.10'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] [[package]] @@ -80,8 +75,7 @@ version = "0.9.21" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ipywidgets" }, - { name = "psygnal", version = "0.14.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "psygnal", version = "0.15.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "psygnal" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/be/5e/cbea445bf062b81e4d366ca29dae4f0aedc7a64f384afc24670e07bec560/anywidget-0.9.21.tar.gz", hash = "sha256:b8d0172029ac426573053c416c6a587838661612208bb390fa0607862e594b27", size = 390517, upload-time = "2025-11-12T17:06:03.035Z" } @@ -98,39 +92,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321, upload-time = "2024-02-06T09:43:09.663Z" }, ] -[[package]] -name = "astroid" -version = "3.3.11" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/18/74/dfb75f9ccd592bbedb175d4a32fc643cf569d7c218508bfbd6ea7ef9c091/astroid-3.3.11.tar.gz", hash = "sha256:1e5a5011af2920c7c67a53f65d536d65bfa7116feeaf2354d8b94f29573bb0ce", size = 400439, upload-time = "2025-07-13T18:04:23.177Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/af/0f/3b8fdc946b4d9cc8cc1e8af42c4e409468c84441b933d037e101b3d72d86/astroid-3.3.11-py3-none-any.whl", hash = "sha256:54c760ae8322ece1abd213057c4b5bba7c49818853fc901ef09719a60dbf9dec", size = 275612, upload-time = "2025-07-13T18:04:21.07Z" }, -] - [[package]] name = "astroid" version = "4.1.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "typing-extensions", marker = "python_full_version == '3.10.*'" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a2/4c/569eefb533ce71bc9f4f12a4a0d7f0ba27e500681dec1312d4657e849d20/astroid-4.1.1.tar.gz", hash = "sha256:445d831fe785df8c670bbb46b900b8424b82f85b4af187103f71a63a63ebed43", size = 412522, upload-time = "2026-02-23T02:36:30.315Z" } wheels = [ @@ -207,8 +174,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jmespath" }, { name = "python-dateutil" }, - { name = "urllib3", version = "1.26.20", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "urllib3", version = "2.6.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/77/ef/1c8f89da69b0c3742120e19a6ea72ec46ac0596294466924fdd4cf0f36bb/botocore-1.42.66.tar.gz", hash = "sha256:39756a21142b646de552d798dde2105759b0b8fa0d881a34c26d15bd4c9448fa", size = 14977446, upload-time = "2026-03-11T19:58:07.714Z" } wheels = [ @@ -221,8 +187,7 @@ version = "0.12.45" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ipywidgets" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "pandas" }, { name = "traitlets" }, @@ -254,34 +219,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9b/42/960fc9896ddeb301716fdd554bab7941c35fb90a1dc7260b77df3366f87f/cachelib-0.13.0-py3-none-any.whl", hash = "sha256:8c8019e53b6302967d4e8329a504acf75e7bc46130291d30188a6e4e58162516", size = 20914, upload-time = "2024-04-13T14:18:26.361Z" }, ] -[[package]] -name = "cachetools" -version = "6.2.6" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/39/91/d9ae9a66b01102a18cd16db0cf4cd54187ffe10f0865cc80071a4104fbb3/cachetools-6.2.6.tar.gz", hash = "sha256:16c33e1f276b9a9c0b49ab5782d901e3ad3de0dd6da9bf9bcd29ac5672f2f9e6", size = 32363, upload-time = "2026-01-27T20:32:59.956Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/90/45/f458fa2c388e79dd9d8b9b0c99f1d31b568f27388f2fdba7bb66bbc0c6ed/cachetools-6.2.6-py3-none-any.whl", hash = "sha256:8c9717235b3c651603fff0076db52d6acbfd1b338b8ed50256092f7ce9c85bda", size = 11668, upload-time = "2026-01-27T20:32:58.527Z" }, -] - [[package]] name = "cachetools" version = "7.0.5" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/af/dd/57fe3fdb6e65b25a5987fd2cdc7e22db0aef508b91634d2e57d22928d41b/cachetools-7.0.5.tar.gz", hash = "sha256:0cd042c24377200c1dcd225f8b7b12b0ca53cc2c961b43757e774ebe190fd990", size = 37367, upload-time = "2026-03-09T20:51:29.451Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/06/f3/39cf3367b8107baa44f861dc802cbf16263c945b62d8265d36034fc07bea/cachetools-7.0.5-py3-none-any.whl", hash = "sha256:46bc8ebefbe485407621d0a4264b23c080cedd913921bad7ac3ed2f26c183114", size = 13918, upload-time = "2026-03-09T20:51:27.33Z" }, @@ -301,8 +242,7 @@ name = "cffi" version = "2.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser", version = "2.23", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' and implementation_name != 'PyPy'" }, - { name = "pycparser", version = "3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and implementation_name != 'PyPy'" }, + { name = "pycparser", marker = "implementation_name != 'PyPy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ @@ -377,18 +317,58 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a0/1d/ec1a60bd1a10daa292d3cd6bb0b359a81607154fb8165f3ec95fe003b85c/cffi-2.0.0-cp314-cp314t-win32.whl", hash = "sha256:1fc9ea04857caf665289b7a75923f2c6ed559b8298a1b8c49e59f7dd95c8481e", size = 180487, upload-time = "2025-09-08T23:23:40.423Z" }, { url = "https://files.pythonhosted.org/packages/bf/41/4c1168c74fac325c0c8156f04b6749c8b6a8f405bbf91413ba088359f60d/cffi-2.0.0-cp314-cp314t-win_amd64.whl", hash = "sha256:d68b6cef7827e8641e8ef16f4494edda8b36104d79773a334beaa1e3521430f6", size = 191726, upload-time = "2025-09-08T23:23:41.742Z" }, { url = "https://files.pythonhosted.org/packages/ae/3a/dbeec9d1ee0844c679f6bb5d6ad4e9f198b1224f4e7a32825f47f6192b0c/cffi-2.0.0-cp314-cp314t-win_arm64.whl", hash = "sha256:0a1527a803f0a659de1af2e1fd700213caba79377e27e4693648c2923da066f9", size = 184195, upload-time = "2025-09-08T23:23:43.004Z" }, - { url = "https://files.pythonhosted.org/packages/c0/cc/08ed5a43f2996a16b462f64a7055c6e962803534924b9b2f1371d8c00b7b/cffi-2.0.0-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:fe562eb1a64e67dd297ccc4f5addea2501664954f2692b69a76449ec7913ecbf", size = 184288, upload-time = "2025-09-08T23:23:48.404Z" }, - { url = "https://files.pythonhosted.org/packages/3d/de/38d9726324e127f727b4ecc376bc85e505bfe61ef130eaf3f290c6847dd4/cffi-2.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:de8dad4425a6ca6e4e5e297b27b5c824ecc7581910bf9aee86cb6835e6812aa7", size = 180509, upload-time = "2025-09-08T23:23:49.73Z" }, - { url = "https://files.pythonhosted.org/packages/9b/13/c92e36358fbcc39cf0962e83223c9522154ee8630e1df7c0b3a39a8124e2/cffi-2.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:4647afc2f90d1ddd33441e5b0e85b16b12ddec4fca55f0d9671fef036ecca27c", size = 208813, upload-time = "2025-09-08T23:23:51.263Z" }, - { url = "https://files.pythonhosted.org/packages/15/12/a7a79bd0df4c3bff744b2d7e52cc1b68d5e7e427b384252c42366dc1ecbc/cffi-2.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3f4d46d8b35698056ec29bca21546e1551a205058ae1a181d871e278b0b28165", size = 216498, upload-time = "2025-09-08T23:23:52.494Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ad/5c51c1c7600bdd7ed9a24a203ec255dccdd0ebf4527f7b922a0bde2fb6ed/cffi-2.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:e6e73b9e02893c764e7e8d5bb5ce277f1a009cd5243f8228f75f842bf937c534", size = 203243, upload-time = "2025-09-08T23:23:53.836Z" }, - { url = "https://files.pythonhosted.org/packages/32/f2/81b63e288295928739d715d00952c8c6034cb6c6a516b17d37e0c8be5600/cffi-2.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:cb527a79772e5ef98fb1d700678fe031e353e765d1ca2d409c92263c6d43e09f", size = 203158, upload-time = "2025-09-08T23:23:55.169Z" }, - { url = "https://files.pythonhosted.org/packages/1f/74/cc4096ce66f5939042ae094e2e96f53426a979864aa1f96a621ad128be27/cffi-2.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:61d028e90346df14fedc3d1e5441df818d095f3b87d286825dfcbd6459b7ef63", size = 216548, upload-time = "2025-09-08T23:23:56.506Z" }, - { url = "https://files.pythonhosted.org/packages/e8/be/f6424d1dc46b1091ffcc8964fa7c0ab0cd36839dd2761b49c90481a6ba1b/cffi-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0f6084a0ea23d05d20c3edcda20c3d006f9b6f3fefeac38f59262e10cef47ee2", size = 218897, upload-time = "2025-09-08T23:23:57.825Z" }, - { url = "https://files.pythonhosted.org/packages/f7/e0/dda537c2309817edf60109e39265f24f24aa7f050767e22c98c53fe7f48b/cffi-2.0.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:1cd13c99ce269b3ed80b417dcd591415d3372bcac067009b6e0f59c7d4015e65", size = 211249, upload-time = "2025-09-08T23:23:59.139Z" }, - { url = "https://files.pythonhosted.org/packages/2b/e7/7c769804eb75e4c4b35e658dba01de1640a351a9653c3d49ca89d16ccc91/cffi-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:89472c9762729b5ae1ad974b777416bfda4ac5642423fa93bd57a09204712322", size = 218041, upload-time = "2025-09-08T23:24:00.496Z" }, - { url = "https://files.pythonhosted.org/packages/aa/d9/6218d78f920dcd7507fc16a766b5ef8f3b913cc7aa938e7fc80b9978d089/cffi-2.0.0-cp39-cp39-win32.whl", hash = "sha256:2081580ebb843f759b9f617314a24ed5738c51d2aee65d31e02f6f7a2b97707a", size = 172138, upload-time = "2025-09-08T23:24:01.7Z" }, - { url = "https://files.pythonhosted.org/packages/54/8f/a1e836f82d8e32a97e6b29cc8f641779181ac7363734f12df27db803ebda/cffi-2.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:b882b3df248017dba09d6b16defe9b5c407fe32fc7c65a9c69798e6175601be9", size = 182794, upload-time = "2025-09-08T23:24:02.943Z" }, +] + +[[package]] +name = "cftime" +version = "1.6.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/65/dc/470ffebac2eb8c54151eb893055024fe81b1606e7c6ff8449a588e9cd17f/cftime-1.6.5.tar.gz", hash = "sha256:8225fed6b9b43fb87683ebab52130450fc1730011150d3092096a90e54d1e81e", size = 326605, upload-time = "2025-10-13T18:56:26.352Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/45/dcc38d7b293107d3e33b3d94b2619687eb414a4f16880e2e841cdb6ac49a/cftime-1.6.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8ad81e8cb0eb873b33c3d1e22c6168163fdc64daa8f7aeb4da8092f272575f4d", size = 510221, upload-time = "2025-10-13T18:55:52.976Z" }, + { url = "https://files.pythonhosted.org/packages/68/63/2875341516fcfe80f1a16f86b420aec9441223ab5381d554441c9fdae56e/cftime-1.6.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:12d95c6af852114a13301c5a61e41afdbd1542e72939c1083796f8418b9b8b0e", size = 490684, upload-time = "2025-10-13T18:55:54.685Z" }, + { url = "https://files.pythonhosted.org/packages/80/7f/85f2c4c7ae8300b7871af7d7d144ad06f71dc0dd6258f0d18fd966067d1b/cftime-1.6.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2659b7df700e27d9e3671f686ce474dfb5fc274966961edf996acc148dfa094a", size = 1592268, upload-time = "2025-10-13T19:39:10.992Z" }, + { url = "https://files.pythonhosted.org/packages/6c/9a/72dbd72498e958edf41a770bbd05e68141774325a945092059f4eb9c653d/cftime-1.6.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:94cebdfcda6a985b8e69aed22d00d6b8aa1f421495adbdcff1d59b3e896d81e2", size = 1624716, upload-time = "2025-10-13T18:55:55.848Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/2c4c720ad8bbe87994ca62a0e3c09d3786b984af664a91a6f3a668aa0b13/cftime-1.6.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:179681b023349a2fe277ceccc89d4fc52c0dd105cb59b7187b5bc5d442875133", size = 1705927, upload-time = "2025-10-13T18:55:57.711Z" }, + { url = "https://files.pythonhosted.org/packages/da/77/66484061dee5fbcb2fdcfa6a491d4efb880725117f4a339d20a5323105df/cftime-1.6.5-cp310-cp310-win_amd64.whl", hash = "sha256:d8b9fdecb466879cfe8ca4472b229b6f8d0bb65e4ffd44266ae17484bac2cf38", size = 472435, upload-time = "2025-10-13T18:55:59.092Z" }, + { url = "https://files.pythonhosted.org/packages/e4/f6/9da7aba9548ede62d25936b8b448acd7e53e5dcc710896f66863dcc9a318/cftime-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:474e728f5a387299418f8d7cb9c52248dcd5d977b2a01de7ec06bba572e26b02", size = 512733, upload-time = "2025-10-13T18:56:00.189Z" }, + { url = "https://files.pythonhosted.org/packages/1f/d5/d86ad95fc1fd89947c34b495ff6487b6d361cf77500217423b4ebcb1f0c2/cftime-1.6.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ab9e80d4de815cac2e2d88a2335231254980e545d0196eb34ee8f7ed612645f1", size = 492946, upload-time = "2025-10-13T18:56:01.262Z" }, + { url = "https://files.pythonhosted.org/packages/4f/93/d7e8dd76b03a9d5be41a3b3185feffc7ea5359228bdffe7aa43ac772a75b/cftime-1.6.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ad24a563784e4795cb3d04bd985895b5db49ace2cbb71fcf1321fd80141f9a52", size = 1689856, upload-time = "2025-10-13T19:39:12.873Z" }, + { url = "https://files.pythonhosted.org/packages/3e/8d/86586c0d75110f774e46e2bd6d134e2d1cca1dedc9bb08c388fa3df76acd/cftime-1.6.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a3cda6fd12c7fb25eff40a6a857a2bf4d03e8cc71f80485d8ddc65ccbd80f16a", size = 1718573, upload-time = "2025-10-13T18:56:02.788Z" }, + { url = "https://files.pythonhosted.org/packages/bb/fe/7956914cfc135992e89098ebbc67d683c51ace5366ba4b114fef1de89b21/cftime-1.6.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:28cda78d685397ba23d06273b9c916c3938d8d9e6872a537e76b8408a321369b", size = 1788563, upload-time = "2025-10-13T18:56:04.075Z" }, + { url = "https://files.pythonhosted.org/packages/e5/c7/6669708fcfe1bb7b2a7ce693b8cc67165eac00d3ac5a5e8f6ce1be551ff9/cftime-1.6.5-cp311-cp311-win_amd64.whl", hash = "sha256:93ead088e3a216bdeb9368733a0ef89a7451dfc1d2de310c1c0366a56ad60dc8", size = 473631, upload-time = "2025-10-13T18:56:05.159Z" }, + { url = "https://files.pythonhosted.org/packages/82/c5/d70cb1ab533ca790d7c9b69f98215fa4fead17f05547e928c8f2b8f96e54/cftime-1.6.5-cp311-cp311-win_arm64.whl", hash = "sha256:3384d69a0a7f3d45bded21a8cbcce66c8ba06c13498eac26c2de41b1b9b6e890", size = 459383, upload-time = "2026-01-02T21:16:47.317Z" }, + { url = "https://files.pythonhosted.org/packages/b6/c1/e8cb7f78a3f87295450e7300ebaecf83076d96a99a76190593d4e1d2be40/cftime-1.6.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:eef25caed5ebd003a38719bd3ff8847cd52ef2ea56c3ebdb2c9345ba131fc7c5", size = 504175, upload-time = "2025-10-13T18:56:06.398Z" }, + { url = "https://files.pythonhosted.org/packages/50/1a/86e1072b09b2f9049bb7378869f64b6747f96a4f3008142afed8955b52a4/cftime-1.6.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c87d2f3b949e45463e559233c69e6a9cf691b2b378c1f7556166adfabbd1c6b0", size = 485980, upload-time = "2025-10-13T18:56:08.669Z" }, + { url = "https://files.pythonhosted.org/packages/35/28/d3177b60da3f308b60dee2aef2eb69997acfab1e863f0bf0d2a418396ce5/cftime-1.6.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:82cb413973cc51b55642b3a1ca5b28db5b93a294edbef7dc049c074b478b4647", size = 1591166, upload-time = "2025-10-13T19:39:14.109Z" }, + { url = "https://files.pythonhosted.org/packages/d1/fd/a7266970312df65e68b5641b86e0540a739182f5e9c62eec6dbd29f18055/cftime-1.6.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85ba8e7356d239cfe56ef7707ac30feaf67964642ac760a82e507ee3c5db4ac4", size = 1642614, upload-time = "2025-10-13T18:56:09.815Z" }, + { url = "https://files.pythonhosted.org/packages/c4/73/f0035a4bc2df8885bb7bd5fe63659686ea1ec7d0cc74b4e3d50e447402e5/cftime-1.6.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:456039af7907a3146689bb80bfd8edabd074c7f3b4eca61f91b9c2670addd7ad", size = 1688090, upload-time = "2025-10-13T18:56:11.442Z" }, + { url = "https://files.pythonhosted.org/packages/88/15/8856a0ab76708553ff597dd2e617b088c734ba87dc3fd395e2b2f3efffe8/cftime-1.6.5-cp312-cp312-win_amd64.whl", hash = "sha256:da84534c43699960dc980a9a765c33433c5de1a719a4916748c2d0e97a071e44", size = 464840, upload-time = "2025-10-13T18:56:12.506Z" }, + { url = "https://files.pythonhosted.org/packages/3a/85/451009a986d9273d2208fc0898aa00262275b5773259bf3f942f6716a9e7/cftime-1.6.5-cp312-cp312-win_arm64.whl", hash = "sha256:c62cd8db9ea40131eea7d4523691c5d806d3265d31279e4a58574a42c28acd77", size = 450534, upload-time = "2026-01-02T21:16:48.784Z" }, + { url = "https://files.pythonhosted.org/packages/2e/60/74ea344b3b003fada346ed98a6899085d6fd4c777df608992d90c458fda6/cftime-1.6.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4aba66fd6497711a47c656f3a732c2d1755ad15f80e323c44a8716ebde39ddd5", size = 502453, upload-time = "2025-10-13T18:56:13.545Z" }, + { url = "https://files.pythonhosted.org/packages/1e/14/adb293ac6127079b49ff11c05cf3d5ce5c1f17d097f326dc02d74ddfcb6e/cftime-1.6.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:89e7cba699242366e67d6fb5aee579440e791063f92a93853610c91647167c0d", size = 484541, upload-time = "2025-10-13T18:56:14.612Z" }, + { url = "https://files.pythonhosted.org/packages/4f/74/bb8a4566af8d0ef3f045d56c462a9115da4f04b07c7fbbf2b4875223eebd/cftime-1.6.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2f1eb43d7a7b919ec99aee709fb62ef87ef1cf0679829ef93d37cc1c725781e9", size = 1591014, upload-time = "2025-10-13T19:39:15.346Z" }, + { url = "https://files.pythonhosted.org/packages/ba/08/52f06ff2f04d376f9cd2c211aefcf2b37f1978e43289341f362fc99f6a0e/cftime-1.6.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e02a1d80ffc33fe469c7db68aa24c4a87f01da0c0c621373e5edadc92964900b", size = 1633625, upload-time = "2025-10-13T18:56:15.745Z" }, + { url = "https://files.pythonhosted.org/packages/cf/33/03e0b23d58ea8fab94ecb4f7c5b721e844a0800c13694876149d98830a73/cftime-1.6.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:18ab754805233cdd889614b2b3b86a642f6d51a57a1ec327c48053f3414f87d8", size = 1684269, upload-time = "2025-10-13T18:56:17.04Z" }, + { url = "https://files.pythonhosted.org/packages/a4/60/a0cfba63847b43599ef1cdbbf682e61894994c22b9a79fd9e1e8c7e9de41/cftime-1.6.5-cp313-cp313-win_amd64.whl", hash = "sha256:6c27add8f907f4a4cd400e89438f2ea33e2eb5072541a157a4d013b7dbe93f9c", size = 465364, upload-time = "2025-10-13T18:56:18.05Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e8/ec32f2aef22c15604e6fda39ff8d581a00b5469349f8fba61640d5358d2c/cftime-1.6.5-cp313-cp313-win_arm64.whl", hash = "sha256:31d1ff8f6bbd4ca209099d24459ec16dea4fb4c9ab740fbb66dd057ccbd9b1b9", size = 450468, upload-time = "2026-01-02T21:16:50.193Z" }, + { url = "https://files.pythonhosted.org/packages/ea/6c/a9618f589688358e279720f5c0fe67ef0077fba07334ce26895403ebc260/cftime-1.6.5-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:c69ce3bdae6a322cbb44e9ebc20770d47748002fb9d68846a1e934f1bd5daf0b", size = 502725, upload-time = "2025-10-13T18:56:19.424Z" }, + { url = "https://files.pythonhosted.org/packages/d8/e3/da3c36398bfb730b96248d006cabaceed87e401ff56edafb2a978293e228/cftime-1.6.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e62e9f2943e014c5ef583245bf2e878398af131c97e64f8cd47c1d7baef5c4e2", size = 485445, upload-time = "2025-10-13T18:56:20.853Z" }, + { url = "https://files.pythonhosted.org/packages/32/93/b05939e5abd14bd1ab69538bbe374b4ee2a15467b189ff895e9a8cdaddf6/cftime-1.6.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7da5fdaa4360d8cb89b71b8ded9314f2246aa34581e8105c94ad58d6102d9e4f", size = 1584434, upload-time = "2025-10-13T19:39:17.084Z" }, + { url = "https://files.pythonhosted.org/packages/7f/89/648397f9936e0b330999c4e776ebf296ec3c6a65f9901687dbca4ab820da/cftime-1.6.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bff865b4ea4304f2744a1ad2b8149b8328b321dd7a2b9746ef926d229bd7cd49", size = 1609812, upload-time = "2025-10-13T18:56:21.971Z" }, + { url = "https://files.pythonhosted.org/packages/e7/0f/901b4835aa67ad3e915605d4e01d0af80a44b114eefab74ae33de6d36933/cftime-1.6.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e552c5d1c8a58f25af7521e49237db7ca52ed2953e974fe9f7c4491e95fdd36c", size = 1669768, upload-time = "2025-10-13T18:56:24.027Z" }, + { url = "https://files.pythonhosted.org/packages/22/d5/e605e4b28363e7a9ae98ed12cabbda5b155b6009270e6a231d8f10182a17/cftime-1.6.5-cp314-cp314-win_amd64.whl", hash = "sha256:e645b095dc50a38ac454b7e7f0742f639e7d7f6b108ad329358544a6ff8c9ba2", size = 463818, upload-time = "2025-10-13T18:56:25.376Z" }, + { url = "https://files.pythonhosted.org/packages/3d/89/a8f85ae697ff10206ec401c2621f5ca9f327554f586d62f244739ceeb347/cftime-1.6.5-cp314-cp314-win_arm64.whl", hash = "sha256:b9044d7ac82d3d8af189df1032fdc871bbd3f3dd41a6ec79edceb5029b71e6e0", size = 459862, upload-time = "2026-01-02T20:45:02.625Z" }, + { url = "https://files.pythonhosted.org/packages/ab/05/7410e12fd03a0c52717e74e6a1b49958810807dda212e23b65d43ea99676/cftime-1.6.5-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:9ef56460cb0576e1a9161e1428c9e1a633f809a23fa9d598f313748c1ae5064e", size = 533781, upload-time = "2026-01-02T20:45:04.818Z" }, + { url = "https://files.pythonhosted.org/packages/44/ba/10e3546426d3ed9f9cc82e4a99836bb6fac1642c7830f7bdd0ac1c3f0805/cftime-1.6.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:4f4873d38b10032f9f3111c547a1d485519ae64eee6a7a2d091f1f8b08e1ba50", size = 515218, upload-time = "2026-01-02T20:45:06.788Z" }, + { url = "https://files.pythonhosted.org/packages/bd/68/efa11eae867749e921bfec6a865afdba8166e96188112dde70bb8bb49254/cftime-1.6.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ccce0f4c9d3f38dd948a117e578b50d0e0db11e2ca9435fb358fd524813e4b61", size = 1579932, upload-time = "2026-01-02T20:45:11.194Z" }, + { url = "https://files.pythonhosted.org/packages/9d/6c/0971e602c1390a423e6621dfbad9f1d375186bdaf9c9c7f75e06f1fbf355/cftime-1.6.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:19cbfc5152fb0b34ce03acf9668229af388d7baa63a78f936239cb011ccbe6b1", size = 1555894, upload-time = "2026-01-02T20:45:16.351Z" }, + { url = "https://files.pythonhosted.org/packages/ad/fc/8475a15b7c3209a4a68b563dfc5e01ce74f2d8b9822372c3d30c68ab7f39/cftime-1.6.5-cp314-cp314t-win_amd64.whl", hash = "sha256:4470cd5ef3c2514566f53efbcbb64dd924fa0584637d90285b2f983bd4ee7d97", size = 513027, upload-time = "2026-01-02T20:45:20.023Z" }, + { url = "https://files.pythonhosted.org/packages/f7/80/4ecbda8318fbf40ad4e005a4a93aebba69e81382e5b4c6086251cd5d0ee8/cftime-1.6.5-cp314-cp314t-win_arm64.whl", hash = "sha256:034c15a67144a0a5590ef150c99f844897618b148b87131ed34fda7072614662", size = 469065, upload-time = "2026-01-02T20:45:23.398Z" }, ] [[package]] @@ -477,58 +457,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c7/5e/1aab5cb737039b9c59e63627dc8bbc0d02562a14f831cc450e5f91d84ce1/charset_normalizer-3.4.5-cp314-cp314-win32.whl", hash = "sha256:ee57b926940ba00bca7ba7041e665cc956e55ef482f851b9b65acb20d867e7a2", size = 133009, upload-time = "2026-03-06T06:02:23.289Z" }, { url = "https://files.pythonhosted.org/packages/40/65/e7c6c77d7aaa4c0d7974f2e403e17f0ed2cb0fc135f77d686b916bf1eead/charset_normalizer-3.4.5-cp314-cp314-win_amd64.whl", hash = "sha256:4481e6da1830c8a1cc0b746b47f603b653dadb690bcd851d039ffaefe70533aa", size = 143511, upload-time = "2026-03-06T06:02:26.195Z" }, { url = "https://files.pythonhosted.org/packages/ba/91/52b0841c71f152f563b8e072896c14e3d83b195c188b338d3cc2e582d1d4/charset_normalizer-3.4.5-cp314-cp314-win_arm64.whl", hash = "sha256:97ab7787092eb9b50fb47fa04f24c75b768a606af1bcba1957f07f128a7219e4", size = 133775, upload-time = "2026-03-06T06:02:27.473Z" }, - { url = "https://files.pythonhosted.org/packages/be/76/96dec962aa996081c48f544d5e9e97322006a1e67e8f76bad41f3fb0b151/charset_normalizer-3.4.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:259cd1ca995ad525f638e131dbcc2353a586564c038fc548a3fe450a91882139", size = 283220, upload-time = "2026-03-06T06:02:53.024Z" }, - { url = "https://files.pythonhosted.org/packages/cc/80/050c340587611be9743eff02d1ca34b5fc76a4356849dcb74dfd898d6d87/charset_normalizer-3.4.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a28afb04baa55abf26df544e3e5c6534245d3daa5178bc4a8eeb48202060d0e", size = 189988, upload-time = "2026-03-06T06:02:54.448Z" }, - { url = "https://files.pythonhosted.org/packages/c7/a3/bb6caf9f5544ccaaca5c7e387fa868868d3420bcb03e8bc30f37be2e8a72/charset_normalizer-3.4.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ff95a9283de8a457e6b12989de3f9f5193430f375d64297d323a615ea52cbdb3", size = 207786, upload-time = "2026-03-06T06:02:55.808Z" }, - { url = "https://files.pythonhosted.org/packages/ee/50/e56713141f2fdb3a4d46092425d58dc97a48e1e10ce321ac6ba43862aacf/charset_normalizer-3.4.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:708c7acde173eedd4bfa4028484426ba689d2103b28588c513b9db2cd5ecde9c", size = 203556, upload-time = "2026-03-06T06:02:57.31Z" }, - { url = "https://files.pythonhosted.org/packages/22/34/ed0cfd388dd9106725afc2beb036adbaa167fc0b5a9ee8cd3940757fb060/charset_normalizer-3.4.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:aa92ec1102eaff840ccd1021478af176a831f1bccb08e526ce844b7ddda85c22", size = 196552, upload-time = "2026-03-06T06:02:59.05Z" }, - { url = "https://files.pythonhosted.org/packages/9a/8b/da4a4c3d26c539fdd777cfbd2c0d83e77e1218879517ef91c4ece7238563/charset_normalizer-3.4.5-cp39-cp39-manylinux_2_31_armv7l.whl", hash = "sha256:5fea359734b140d0d6741189fea5478c6091b54ffc69d7ce119e0a05637d8c99", size = 184289, upload-time = "2026-03-06T06:03:00.448Z" }, - { url = "https://files.pythonhosted.org/packages/d3/05/9f67c1f94ea9ae1e08c8fa2182b1f5411732e18643e7080fc8c10ba1e021/charset_normalizer-3.4.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e545b51da9f9af5c67815ca0eb40676c0f016d0b0381c86f20451e35696c5f95", size = 195282, upload-time = "2026-03-06T06:03:02.161Z" }, - { url = "https://files.pythonhosted.org/packages/59/5e/aaf84a2e37e75470640e965d6619c6d9a521eb7c8aa097f2586907859198/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:30987f4a8ed169983f93e1be8ffeea5214a779e27ed0b059835c7afe96550ad7", size = 192889, upload-time = "2026-03-06T06:03:03.629Z" }, - { url = "https://files.pythonhosted.org/packages/eb/94/9b714873baf9a841613e8b49a5a3cd77d985d2c6c80f5038a5057395ebac/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:149ec69866c3d6c2fb6f758dbc014ecb09f30b35a5ca90b6a8a2d4e54e18fdfe", size = 185738, upload-time = "2026-03-06T06:03:05.173Z" }, - { url = "https://files.pythonhosted.org/packages/ab/e5/bf57e1a9210a6ba78c740d66d05165a55b2cbeca29a83b8c659c9eb2d6c6/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:530beedcec9b6e027e7a4b6ce26eed36678aa39e17da85e6e03d7bd9e8e9d7c9", size = 209458, upload-time = "2026-03-06T06:03:06.54Z" }, - { url = "https://files.pythonhosted.org/packages/65/91/3c8cb46d840840f2593028fd708ea50695f8f61e1c490530ef1cce824f56/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:14498a429321de554b140013142abe7608f9d8ccc04d7baf2ad60498374aefa2", size = 195792, upload-time = "2026-03-06T06:03:08Z" }, - { url = "https://files.pythonhosted.org/packages/b0/43/783be5c6932fa8846a98313a2242fbcfe0c06c1c0ac2d6856b99d93069eb/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:2820a98460c83663dd8ec015d9ddfd1e4879f12e06bb7d0500f044fb477d2770", size = 204829, upload-time = "2026-03-06T06:03:09.488Z" }, - { url = "https://files.pythonhosted.org/packages/36/7d/138b5311c32fd24396321db796538cc748287c92da5e6fc1996babc06f99/charset_normalizer-3.4.5-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:aa2f963b4da26daf46231d9b9e0e2c9408a751f8f0d0f44d2de56d3caf51d294", size = 198558, upload-time = "2026-03-06T06:03:11.585Z" }, - { url = "https://files.pythonhosted.org/packages/9c/87/ddd8bbdd703707c019fe9d14b678011627e6c5131dfdefe42aff151d718c/charset_normalizer-3.4.5-cp39-cp39-win32.whl", hash = "sha256:82cc7c2ad42faec8b574351f8bc2a0c049043893853317bd9bb309f5aba6cb5a", size = 132370, upload-time = "2026-03-06T06:03:13.327Z" }, - { url = "https://files.pythonhosted.org/packages/59/f6/d7cd28ae6d4dd47170b95153986789d69af4d5844f640edbc5138e4a70a2/charset_normalizer-3.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:92263f7eca2f4af326cd20de8d16728d2602f7cfea02e790dcde9d83c365d7cc", size = 142877, upload-time = "2026-03-06T06:03:15.041Z" }, - { url = "https://files.pythonhosted.org/packages/9c/26/8d68681566f288998eb36a0c60dd2c5c8aa93ee67b0d7e3dc72606650828/charset_normalizer-3.4.5-cp39-cp39-win_arm64.whl", hash = "sha256:014837af6fabf57121b6254fa8ade10dceabc3528b27b721a64bbc7b8b1d4eb4", size = 133186, upload-time = "2026-03-06T06:03:16.476Z" }, { url = "https://files.pythonhosted.org/packages/c5/60/3a621758945513adfd4db86827a5bafcc615f913dbd0b4c2ed64a65731be/charset_normalizer-3.4.5-py3-none-any.whl", hash = "sha256:9db5e3fcdcee89a78c04dffb3fe33c79f77bd741a624946db2591c81b2fc85b0", size = 55455, upload-time = "2026-03-06T06:03:17.827Z" }, ] -[[package]] -name = "click" -version = "8.1.8" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "colorama", marker = "python_full_version < '3.10' and sys_platform == 'win32'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593, upload-time = "2024-12-21T18:38:44.339Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188, upload-time = "2024-12-21T18:38:41.666Z" }, -] - [[package]] name = "click" version = "8.3.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "colorama", marker = "python_full_version >= '3.10' and sys_platform == 'win32'" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } wheels = [ @@ -540,8 +477,7 @@ name = "click-plugins" version = "1.1.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "click" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c3/a4/34847b59150da33690a36da3681d6bbc2ec14ee9a846bc30a6746e5984e4/click_plugins-1.1.1.2.tar.gz", hash = "sha256:d7af3984a99d243c131aa1a828331e7630f4a88a9741fd05c927b204bcf92261", size = 8343, upload-time = "2025-06-25T00:47:37.555Z" } wheels = [ @@ -553,8 +489,7 @@ name = "cligj" version = "0.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "click" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ea/0d/837dbd5d8430fd0f01ed72c4cfb2f548180f4c68c635df84ce87956cff32/cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27", size = 9803, upload-time = "2021-05-28T21:23:27.935Z" } wheels = [ @@ -566,8 +501,7 @@ name = "color-operations" version = "0.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/49/d5/8daa1179809f0d8eab39bd83ce8131e84691eb6ba55f19b7b365a822fea3/color_operations-0.2.0.tar.gz", hash = "sha256:f1bff5cff5992ec7d240f1979320a981f2e9f77d983e9298291e02f3ffaac9bf", size = 18042, upload-time = "2025-03-27T08:42:14.222Z" } @@ -596,12 +530,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/28/54/eeffafffc815a8bb550d4ac1ae5a7bc86df0891e505b78c37a575ca35cb3/color_operations-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d2eb9dd747c081a801fc3b831bdf28f5115857934b00c4950c9ceecfb90d91f", size = 193013, upload-time = "2025-03-27T09:18:34.191Z" }, { url = "https://files.pythonhosted.org/packages/7f/87/835e83190dd00e2737162f9d66e5a1afcff2b6fb580b6545760749a2e0ec/color_operations-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fcca6e5593f05cf164d1a302c91c012acab2edf5a4d38c6cc0d4bc7b62388e7", size = 198605, upload-time = "2025-03-27T09:18:35.794Z" }, { url = "https://files.pythonhosted.org/packages/60/a4/b1a27ad6490fd316a2e6ba4d05c8dd9f5d867414707d1cd18dcfdb3dbe1f/color_operations-0.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:317d11b425ab802e1c343d8d1356f538e102d6ca57e435b7386593c69f630ac5", size = 132514, upload-time = "2025-03-27T09:18:37.22Z" }, - { url = "https://files.pythonhosted.org/packages/8a/15/d9e6cf0cba404aaee3350b668e25a92b110f10947ef05824157b95c8f594/color_operations-0.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e31687b5a9debaa2ac5333d7f31dbb582e649e844dfea6c30210c7013cc89c85", size = 86561, upload-time = "2025-03-27T09:18:38.122Z" }, - { url = "https://files.pythonhosted.org/packages/52/42/a588fb44b386d91048fdc96a666e48e04b2d14e4d56fb77469c762411152/color_operations-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2d3ffa9359d573670834edfd5df846e9a7f21e1aa4981605d55029616a80be7d", size = 50992, upload-time = "2025-03-27T09:18:40.321Z" }, - { url = "https://files.pythonhosted.org/packages/18/2c/f67e8799f89951177a18f5530eb63c86d4a08d11d71ab4b85ce84e920560/color_operations-0.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c0064b1c4394b68fc72227a02f04460274ecb77d9668f85f5c465fd382fd21e7", size = 49294, upload-time = "2025-03-27T09:18:41.211Z" }, - { url = "https://files.pythonhosted.org/packages/7b/c8/67802ffaf2e2ef3d01c8a2e41dbb22fa4effcbd18e4e3864ddadde8ce598/color_operations-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:366b91d972540f748f31c40154c05e028059a6177fabb2be876890583545633d", size = 179822, upload-time = "2025-03-27T09:18:42.102Z" }, - { url = "https://files.pythonhosted.org/packages/9f/69/d11c29f0ac11930b3596b7708bf801417a7022b7cef026bb26ab3e33b9c1/color_operations-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c210cdc582aa3c62437a06a3a660d545687274ce097606a1ed46453c3cca30ad", size = 186302, upload-time = "2025-03-27T09:18:43.827Z" }, - { url = "https://files.pythonhosted.org/packages/0c/fb/6e22e1a1a0b26fb876b4a4b2bb385786728607f9781d503be1a26d38a678/color_operations-0.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0f73e6d142691b4fa671bf890ee86e7d946d610ce6e9044f447ee75b305be6a6", size = 133473, upload-time = "2025-03-27T09:18:45.211Z" }, ] [[package]] @@ -623,81 +551,12 @@ wheels = [ ] [[package]] -name = "contourpy" -version = "1.3.0" +name = "configobj" +version = "5.0.9" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f5/f6/31a8f28b4a2a4fa0e01085e542f3081ab0588eff8e589d39d775172c9792/contourpy-1.3.0.tar.gz", hash = "sha256:7ffa0db17717a8ffb127efd0c95a4362d996b892c2904db72428d5b52e1938a4", size = 13464370, upload-time = "2024-08-27T21:00:03.328Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/6c/e0/be8dcc796cfdd96708933e0e2da99ba4bb8f9b2caa9d560a50f3f09a65f3/contourpy-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:880ea32e5c774634f9fcd46504bf9f080a41ad855f4fef54f5380f5133d343c7", size = 265366, upload-time = "2024-08-27T20:50:09.947Z" }, - { url = "https://files.pythonhosted.org/packages/50/d6/c953b400219443535d412fcbbc42e7a5e823291236bc0bb88936e3cc9317/contourpy-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:76c905ef940a4474a6289c71d53122a4f77766eef23c03cd57016ce19d0f7b42", size = 249226, upload-time = "2024-08-27T20:50:16.1Z" }, - { url = "https://files.pythonhosted.org/packages/6f/b4/6fffdf213ffccc28483c524b9dad46bb78332851133b36ad354b856ddc7c/contourpy-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92f8557cbb07415a4d6fa191f20fd9d2d9eb9c0b61d1b2f52a8926e43c6e9af7", size = 308460, upload-time = "2024-08-27T20:50:22.536Z" }, - { url = "https://files.pythonhosted.org/packages/cf/6c/118fc917b4050f0afe07179a6dcbe4f3f4ec69b94f36c9e128c4af480fb8/contourpy-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36f965570cff02b874773c49bfe85562b47030805d7d8360748f3eca570f4cab", size = 347623, upload-time = "2024-08-27T20:50:28.806Z" }, - { url = "https://files.pythonhosted.org/packages/f9/a4/30ff110a81bfe3abf7b9673284d21ddce8cc1278f6f77393c91199da4c90/contourpy-1.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cacd81e2d4b6f89c9f8a5b69b86490152ff39afc58a95af002a398273e5ce589", size = 317761, upload-time = "2024-08-27T20:50:35.126Z" }, - { url = "https://files.pythonhosted.org/packages/99/e6/d11966962b1aa515f5586d3907ad019f4b812c04e4546cc19ebf62b5178e/contourpy-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69375194457ad0fad3a839b9e29aa0b0ed53bb54db1bfb6c3ae43d111c31ce41", size = 322015, upload-time = "2024-08-27T20:50:40.318Z" }, - { url = "https://files.pythonhosted.org/packages/4d/e3/182383743751d22b7b59c3c753277b6aee3637049197624f333dac5b4c80/contourpy-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7a52040312b1a858b5e31ef28c2e865376a386c60c0e248370bbea2d3f3b760d", size = 1262672, upload-time = "2024-08-27T20:50:55.643Z" }, - { url = "https://files.pythonhosted.org/packages/78/53/974400c815b2e605f252c8fb9297e2204347d1755a5374354ee77b1ea259/contourpy-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3faeb2998e4fcb256542e8a926d08da08977f7f5e62cf733f3c211c2a5586223", size = 1321688, upload-time = "2024-08-27T20:51:11.293Z" }, - { url = "https://files.pythonhosted.org/packages/52/29/99f849faed5593b2926a68a31882af98afbeac39c7fdf7de491d9c85ec6a/contourpy-1.3.0-cp310-cp310-win32.whl", hash = "sha256:36e0cff201bcb17a0a8ecc7f454fe078437fa6bda730e695a92f2d9932bd507f", size = 171145, upload-time = "2024-08-27T20:51:15.2Z" }, - { url = "https://files.pythonhosted.org/packages/a9/97/3f89bba79ff6ff2b07a3cbc40aa693c360d5efa90d66e914f0ff03b95ec7/contourpy-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:87ddffef1dbe5e669b5c2440b643d3fdd8622a348fe1983fad7a0f0ccb1cd67b", size = 216019, upload-time = "2024-08-27T20:51:19.365Z" }, - { url = "https://files.pythonhosted.org/packages/b3/1f/9375917786cb39270b0ee6634536c0e22abf225825602688990d8f5c6c19/contourpy-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0fa4c02abe6c446ba70d96ece336e621efa4aecae43eaa9b030ae5fb92b309ad", size = 266356, upload-time = "2024-08-27T20:51:24.146Z" }, - { url = "https://files.pythonhosted.org/packages/05/46/9256dd162ea52790c127cb58cfc3b9e3413a6e3478917d1f811d420772ec/contourpy-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:834e0cfe17ba12f79963861e0f908556b2cedd52e1f75e6578801febcc6a9f49", size = 250915, upload-time = "2024-08-27T20:51:28.683Z" }, - { url = "https://files.pythonhosted.org/packages/e1/5d/3056c167fa4486900dfbd7e26a2fdc2338dc58eee36d490a0ed3ddda5ded/contourpy-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbc4c3217eee163fa3984fd1567632b48d6dfd29216da3ded3d7b844a8014a66", size = 310443, upload-time = "2024-08-27T20:51:33.675Z" }, - { url = "https://files.pythonhosted.org/packages/ca/c2/1a612e475492e07f11c8e267ea5ec1ce0d89971be496c195e27afa97e14a/contourpy-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4865cd1d419e0c7a7bf6de1777b185eebdc51470800a9f42b9e9decf17762081", size = 348548, upload-time = "2024-08-27T20:51:39.322Z" }, - { url = "https://files.pythonhosted.org/packages/45/cf/2c2fc6bb5874158277b4faf136847f0689e1b1a1f640a36d76d52e78907c/contourpy-1.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:303c252947ab4b14c08afeb52375b26781ccd6a5ccd81abcdfc1fafd14cf93c1", size = 319118, upload-time = "2024-08-27T20:51:44.717Z" }, - { url = "https://files.pythonhosted.org/packages/03/33/003065374f38894cdf1040cef474ad0546368eea7e3a51d48b8a423961f8/contourpy-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637f674226be46f6ba372fd29d9523dd977a291f66ab2a74fbeb5530bb3f445d", size = 323162, upload-time = "2024-08-27T20:51:49.683Z" }, - { url = "https://files.pythonhosted.org/packages/42/80/e637326e85e4105a802e42959f56cff2cd39a6b5ef68d5d9aee3ea5f0e4c/contourpy-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:76a896b2f195b57db25d6b44e7e03f221d32fe318d03ede41f8b4d9ba1bff53c", size = 1265396, upload-time = "2024-08-27T20:52:04.926Z" }, - { url = "https://files.pythonhosted.org/packages/7c/3b/8cbd6416ca1bbc0202b50f9c13b2e0b922b64be888f9d9ee88e6cfabfb51/contourpy-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e1fd23e9d01591bab45546c089ae89d926917a66dceb3abcf01f6105d927e2cb", size = 1324297, upload-time = "2024-08-27T20:52:21.843Z" }, - { url = "https://files.pythonhosted.org/packages/4d/2c/021a7afaa52fe891f25535506cc861c30c3c4e5a1c1ce94215e04b293e72/contourpy-1.3.0-cp311-cp311-win32.whl", hash = "sha256:d402880b84df3bec6eab53cd0cf802cae6a2ef9537e70cf75e91618a3801c20c", size = 171808, upload-time = "2024-08-27T20:52:25.163Z" }, - { url = "https://files.pythonhosted.org/packages/8d/2f/804f02ff30a7fae21f98198828d0857439ec4c91a96e20cf2d6c49372966/contourpy-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:6cb6cc968059db9c62cb35fbf70248f40994dfcd7aa10444bbf8b3faeb7c2d67", size = 217181, upload-time = "2024-08-27T20:52:29.13Z" }, - { url = "https://files.pythonhosted.org/packages/c9/92/8e0bbfe6b70c0e2d3d81272b58c98ac69ff1a4329f18c73bd64824d8b12e/contourpy-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:570ef7cf892f0afbe5b2ee410c507ce12e15a5fa91017a0009f79f7d93a1268f", size = 267838, upload-time = "2024-08-27T20:52:33.911Z" }, - { url = "https://files.pythonhosted.org/packages/e3/04/33351c5d5108460a8ce6d512307690b023f0cfcad5899499f5c83b9d63b1/contourpy-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:da84c537cb8b97d153e9fb208c221c45605f73147bd4cadd23bdae915042aad6", size = 251549, upload-time = "2024-08-27T20:52:39.179Z" }, - { url = "https://files.pythonhosted.org/packages/51/3d/aa0fe6ae67e3ef9f178389e4caaaa68daf2f9024092aa3c6032e3d174670/contourpy-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0be4d8425bfa755e0fd76ee1e019636ccc7c29f77a7c86b4328a9eb6a26d0639", size = 303177, upload-time = "2024-08-27T20:52:44.789Z" }, - { url = "https://files.pythonhosted.org/packages/56/c3/c85a7e3e0cab635575d3b657f9535443a6f5d20fac1a1911eaa4bbe1aceb/contourpy-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c0da700bf58f6e0b65312d0a5e695179a71d0163957fa381bb3c1f72972537c", size = 341735, upload-time = "2024-08-27T20:52:51.05Z" }, - { url = "https://files.pythonhosted.org/packages/dd/8d/20f7a211a7be966a53f474bc90b1a8202e9844b3f1ef85f3ae45a77151ee/contourpy-1.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eb8b141bb00fa977d9122636b16aa67d37fd40a3d8b52dd837e536d64b9a4d06", size = 314679, upload-time = "2024-08-27T20:52:58.473Z" }, - { url = "https://files.pythonhosted.org/packages/6e/be/524e377567defac0e21a46e2a529652d165fed130a0d8a863219303cee18/contourpy-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3634b5385c6716c258d0419c46d05c8aa7dc8cb70326c9a4fb66b69ad2b52e09", size = 320549, upload-time = "2024-08-27T20:53:06.593Z" }, - { url = "https://files.pythonhosted.org/packages/0f/96/fdb2552a172942d888915f3a6663812e9bc3d359d53dafd4289a0fb462f0/contourpy-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0dce35502151b6bd35027ac39ba6e5a44be13a68f55735c3612c568cac3805fd", size = 1263068, upload-time = "2024-08-27T20:53:23.442Z" }, - { url = "https://files.pythonhosted.org/packages/2a/25/632eab595e3140adfa92f1322bf8915f68c932bac468e89eae9974cf1c00/contourpy-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:aea348f053c645100612b333adc5983d87be69acdc6d77d3169c090d3b01dc35", size = 1322833, upload-time = "2024-08-27T20:53:39.243Z" }, - { url = "https://files.pythonhosted.org/packages/73/e3/69738782e315a1d26d29d71a550dbbe3eb6c653b028b150f70c1a5f4f229/contourpy-1.3.0-cp312-cp312-win32.whl", hash = "sha256:90f73a5116ad1ba7174341ef3ea5c3150ddf20b024b98fb0c3b29034752c8aeb", size = 172681, upload-time = "2024-08-27T20:53:43.05Z" }, - { url = "https://files.pythonhosted.org/packages/0c/89/9830ba00d88e43d15e53d64931e66b8792b46eb25e2050a88fec4a0df3d5/contourpy-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b11b39aea6be6764f84360fce6c82211a9db32a7c7de8fa6dd5397cf1d079c3b", size = 218283, upload-time = "2024-08-27T20:53:47.232Z" }, - { url = "https://files.pythonhosted.org/packages/53/a1/d20415febfb2267af2d7f06338e82171824d08614084714fb2c1dac9901f/contourpy-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3e1c7fa44aaae40a2247e2e8e0627f4bea3dd257014764aa644f319a5f8600e3", size = 267879, upload-time = "2024-08-27T20:53:51.597Z" }, - { url = "https://files.pythonhosted.org/packages/aa/45/5a28a3570ff6218d8bdfc291a272a20d2648104815f01f0177d103d985e1/contourpy-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:364174c2a76057feef647c802652f00953b575723062560498dc7930fc9b1cb7", size = 251573, upload-time = "2024-08-27T20:53:55.659Z" }, - { url = "https://files.pythonhosted.org/packages/39/1c/d3f51540108e3affa84f095c8b04f0aa833bb797bc8baa218a952a98117d/contourpy-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32b238b3b3b649e09ce9aaf51f0c261d38644bdfa35cbaf7b263457850957a84", size = 303184, upload-time = "2024-08-27T20:54:00.225Z" }, - { url = "https://files.pythonhosted.org/packages/00/56/1348a44fb6c3a558c1a3a0cd23d329d604c99d81bf5a4b58c6b71aab328f/contourpy-1.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d51fca85f9f7ad0b65b4b9fe800406d0d77017d7270d31ec3fb1cc07358fdea0", size = 340262, upload-time = "2024-08-27T20:54:05.234Z" }, - { url = "https://files.pythonhosted.org/packages/2b/23/00d665ba67e1bb666152131da07e0f24c95c3632d7722caa97fb61470eca/contourpy-1.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:732896af21716b29ab3e988d4ce14bc5133733b85956316fb0c56355f398099b", size = 313806, upload-time = "2024-08-27T20:54:09.889Z" }, - { url = "https://files.pythonhosted.org/packages/5a/42/3cf40f7040bb8362aea19af9a5fb7b32ce420f645dd1590edcee2c657cd5/contourpy-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d73f659398a0904e125280836ae6f88ba9b178b2fed6884f3b1f95b989d2c8da", size = 319710, upload-time = "2024-08-27T20:54:14.536Z" }, - { url = "https://files.pythonhosted.org/packages/05/32/f3bfa3fc083b25e1a7ae09197f897476ee68e7386e10404bdf9aac7391f0/contourpy-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c6c7c2408b7048082932cf4e641fa3b8ca848259212f51c8c59c45aa7ac18f14", size = 1264107, upload-time = "2024-08-27T20:54:29.735Z" }, - { url = "https://files.pythonhosted.org/packages/1c/1e/1019d34473a736664f2439542b890b2dc4c6245f5c0d8cdfc0ccc2cab80c/contourpy-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f317576606de89da6b7e0861cf6061f6146ead3528acabff9236458a6ba467f8", size = 1322458, upload-time = "2024-08-27T20:54:45.507Z" }, - { url = "https://files.pythonhosted.org/packages/22/85/4f8bfd83972cf8909a4d36d16b177f7b8bdd942178ea4bf877d4a380a91c/contourpy-1.3.0-cp313-cp313-win32.whl", hash = "sha256:31cd3a85dbdf1fc002280c65caa7e2b5f65e4a973fcdf70dd2fdcb9868069294", size = 172643, upload-time = "2024-08-27T20:55:52.754Z" }, - { url = "https://files.pythonhosted.org/packages/cc/4a/fb3c83c1baba64ba90443626c228ca14f19a87c51975d3b1de308dd2cf08/contourpy-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:4553c421929ec95fb07b3aaca0fae668b2eb5a5203d1217ca7c34c063c53d087", size = 218301, upload-time = "2024-08-27T20:55:56.509Z" }, - { url = "https://files.pythonhosted.org/packages/76/65/702f4064f397821fea0cb493f7d3bc95a5d703e20954dce7d6d39bacf378/contourpy-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:345af746d7766821d05d72cb8f3845dfd08dd137101a2cb9b24de277d716def8", size = 278972, upload-time = "2024-08-27T20:54:50.347Z" }, - { url = "https://files.pythonhosted.org/packages/80/85/21f5bba56dba75c10a45ec00ad3b8190dbac7fd9a8a8c46c6116c933e9cf/contourpy-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3bb3808858a9dc68f6f03d319acd5f1b8a337e6cdda197f02f4b8ff67ad2057b", size = 263375, upload-time = "2024-08-27T20:54:54.909Z" }, - { url = "https://files.pythonhosted.org/packages/0a/64/084c86ab71d43149f91ab3a4054ccf18565f0a8af36abfa92b1467813ed6/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:420d39daa61aab1221567b42eecb01112908b2cab7f1b4106a52caaec8d36973", size = 307188, upload-time = "2024-08-27T20:55:00.184Z" }, - { url = "https://files.pythonhosted.org/packages/3d/ff/d61a4c288dc42da0084b8d9dc2aa219a850767165d7d9a9c364ff530b509/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4d63ee447261e963af02642ffcb864e5a2ee4cbfd78080657a9880b8b1868e18", size = 345644, upload-time = "2024-08-27T20:55:05.673Z" }, - { url = "https://files.pythonhosted.org/packages/ca/aa/00d2313d35ec03f188e8f0786c2fc61f589306e02fdc158233697546fd58/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:167d6c890815e1dac9536dca00828b445d5d0df4d6a8c6adb4a7ec3166812fa8", size = 317141, upload-time = "2024-08-27T20:55:11.047Z" }, - { url = "https://files.pythonhosted.org/packages/8d/6a/b5242c8cb32d87f6abf4f5e3044ca397cb1a76712e3fa2424772e3ff495f/contourpy-1.3.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:710a26b3dc80c0e4febf04555de66f5fd17e9cf7170a7b08000601a10570bda6", size = 323469, upload-time = "2024-08-27T20:55:15.914Z" }, - { url = "https://files.pythonhosted.org/packages/6f/a6/73e929d43028a9079aca4bde107494864d54f0d72d9db508a51ff0878593/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:75ee7cb1a14c617f34a51d11fa7524173e56551646828353c4af859c56b766e2", size = 1260894, upload-time = "2024-08-27T20:55:31.553Z" }, - { url = "https://files.pythonhosted.org/packages/2b/1e/1e726ba66eddf21c940821df8cf1a7d15cb165f0682d62161eaa5e93dae1/contourpy-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:33c92cdae89ec5135d036e7218e69b0bb2851206077251f04a6c4e0e21f03927", size = 1314829, upload-time = "2024-08-27T20:55:47.837Z" }, - { url = "https://files.pythonhosted.org/packages/b3/e3/b9f72758adb6ef7397327ceb8b9c39c75711affb220e4f53c745ea1d5a9a/contourpy-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a11077e395f67ffc2c44ec2418cfebed032cd6da3022a94fc227b6faf8e2acb8", size = 265518, upload-time = "2024-08-27T20:56:01.333Z" }, - { url = "https://files.pythonhosted.org/packages/ec/22/19f5b948367ab5260fb41d842c7a78dae645603881ea6bc39738bcfcabf6/contourpy-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e8134301d7e204c88ed7ab50028ba06c683000040ede1d617298611f9dc6240c", size = 249350, upload-time = "2024-08-27T20:56:05.432Z" }, - { url = "https://files.pythonhosted.org/packages/26/76/0c7d43263dd00ae21a91a24381b7e813d286a3294d95d179ef3a7b9fb1d7/contourpy-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e12968fdfd5bb45ffdf6192a590bd8ddd3ba9e58360b29683c6bb71a7b41edca", size = 309167, upload-time = "2024-08-27T20:56:10.034Z" }, - { url = "https://files.pythonhosted.org/packages/96/3b/cadff6773e89f2a5a492c1a8068e21d3fccaf1a1c1df7d65e7c8e3ef60ba/contourpy-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fd2a0fc506eccaaa7595b7e1418951f213cf8255be2600f1ea1b61e46a60c55f", size = 348279, upload-time = "2024-08-27T20:56:15.41Z" }, - { url = "https://files.pythonhosted.org/packages/e1/86/158cc43aa549d2081a955ab11c6bdccc7a22caacc2af93186d26f5f48746/contourpy-1.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4cfb5c62ce023dfc410d6059c936dcf96442ba40814aefbfa575425a3a7f19dc", size = 318519, upload-time = "2024-08-27T20:56:21.813Z" }, - { url = "https://files.pythonhosted.org/packages/05/11/57335544a3027e9b96a05948c32e566328e3a2f84b7b99a325b7a06d2b06/contourpy-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68a32389b06b82c2fdd68276148d7b9275b5f5cf13e5417e4252f6d1a34f72a2", size = 321922, upload-time = "2024-08-27T20:56:26.983Z" }, - { url = "https://files.pythonhosted.org/packages/0b/e3/02114f96543f4a1b694333b92a6dcd4f8eebbefcc3a5f3bbb1316634178f/contourpy-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:94e848a6b83da10898cbf1311a815f770acc9b6a3f2d646f330d57eb4e87592e", size = 1258017, upload-time = "2024-08-27T20:56:42.246Z" }, - { url = "https://files.pythonhosted.org/packages/f3/3b/bfe4c81c6d5881c1c643dde6620be0b42bf8aab155976dd644595cfab95c/contourpy-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d78ab28a03c854a873787a0a42254a0ccb3cb133c672f645c9f9c8f3ae9d0800", size = 1316773, upload-time = "2024-08-27T20:56:58.58Z" }, - { url = "https://files.pythonhosted.org/packages/f1/17/c52d2970784383cafb0bd918b6fb036d98d96bbf0bc1befb5d1e31a07a70/contourpy-1.3.0-cp39-cp39-win32.whl", hash = "sha256:81cb5ed4952aae6014bc9d0421dec7c5835c9c8c31cdf51910b708f548cf58e5", size = 171353, upload-time = "2024-08-27T20:57:02.718Z" }, - { url = "https://files.pythonhosted.org/packages/53/23/db9f69676308e094d3c45f20cc52e12d10d64f027541c995d89c11ad5c75/contourpy-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:14e262f67bd7e6eb6880bc564dcda30b15e351a594657e55b7eec94b6ef72843", size = 211817, upload-time = "2024-08-27T20:57:06.328Z" }, - { url = "https://files.pythonhosted.org/packages/d1/09/60e486dc2b64c94ed33e58dcfb6f808192c03dfc5574c016218b9b7680dc/contourpy-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:fe41b41505a5a33aeaed2a613dccaeaa74e0e3ead6dd6fd3a118fb471644fd6c", size = 261886, upload-time = "2024-08-27T20:57:10.863Z" }, - { url = "https://files.pythonhosted.org/packages/19/20/b57f9f7174fcd439a7789fb47d764974ab646fa34d1790551de386457a8e/contourpy-1.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eca7e17a65f72a5133bdbec9ecf22401c62bcf4821361ef7811faee695799779", size = 311008, upload-time = "2024-08-27T20:57:15.588Z" }, - { url = "https://files.pythonhosted.org/packages/74/fc/5040d42623a1845d4f17a418e590fd7a79ae8cb2bad2b2f83de63c3bdca4/contourpy-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ec4dc6bf570f5b22ed0d7efba0dfa9c5b9e0431aeea7581aa217542d9e809a4", size = 215690, upload-time = "2024-08-27T20:57:19.321Z" }, - { url = "https://files.pythonhosted.org/packages/2b/24/dc3dcd77ac7460ab7e9d2b01a618cb31406902e50e605a8d6091f0a8f7cc/contourpy-1.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:00ccd0dbaad6d804ab259820fa7cb0b8036bda0686ef844d24125d8287178ce0", size = 261894, upload-time = "2024-08-27T20:57:23.873Z" }, - { url = "https://files.pythonhosted.org/packages/b1/db/531642a01cfec39d1682e46b5457b07cf805e3c3c584ec27e2a6223f8f6c/contourpy-1.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca947601224119117f7c19c9cdf6b3ab54c5726ef1d906aa4a69dfb6dd58102", size = 311099, upload-time = "2024-08-27T20:57:28.58Z" }, - { url = "https://files.pythonhosted.org/packages/38/1e/94bda024d629f254143a134eead69e21c836429a2a6ce82209a00ddcb79a/contourpy-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:c6ec93afeb848a0845a18989da3beca3eec2c0f852322efe21af1931147d12cb", size = 215838, upload-time = "2024-08-27T20:57:32.913Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/f5/c4/c7f9e41bc2e5f8eeae4a08a01c91b2aea3dfab40a3e14b25e87e7db8d501/configobj-5.0.9.tar.gz", hash = "sha256:03c881bbf23aa07bccf1b837005975993c4ab4427ba57f959afdd9d1a2386848", size = 101518, upload-time = "2024-09-21T12:47:46.315Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/c4/0679472c60052c27efa612b4cd3ddd2a23e885dcdc73461781d2c802d39e/configobj-5.0.9-py2.py3-none-any.whl", hash = "sha256:1ba10c5b6ee16229c79a05047aeda2b55eb4e80d7c7d8ecf17ec1ca600c79882", size = 35615, upload-time = "2024-11-26T14:03:32.972Z" }, ] [[package]] @@ -705,10 +564,11 @@ name = "contourpy" version = "1.3.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } wheels = [ @@ -775,15 +635,10 @@ name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, @@ -898,10 +753,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c5/56/6ddca50b53624e1ca3ce1d1e49ff22db46c47ea5fb4c0cc5c9b90a616364/debugpy-1.8.20-cp314-cp314-manylinux_2_34_x86_64.whl", hash = "sha256:077a7447589ee9bc1ff0cdf443566d0ecf540ac8aa7333b775ebcb8ce9f4ecad", size = 4269425, upload-time = "2026-01-29T23:03:56.518Z" }, { url = "https://files.pythonhosted.org/packages/c5/d9/d64199c14a0d4c476df46c82470a3ce45c8d183a6796cfb5e66533b3663c/debugpy-1.8.20-cp314-cp314-win32.whl", hash = "sha256:352036a99dd35053b37b7803f748efc456076f929c6a895556932eaf2d23b07f", size = 5331407, upload-time = "2026-01-29T23:03:58.481Z" }, { url = "https://files.pythonhosted.org/packages/e0/d9/1f07395b54413432624d61524dfd98c1a7c7827d2abfdb8829ac92638205/debugpy-1.8.20-cp314-cp314-win_amd64.whl", hash = "sha256:a98eec61135465b062846112e5ecf2eebb855305acc1dfbae43b72903b8ab5be", size = 5372521, upload-time = "2026-01-29T23:03:59.864Z" }, - { url = "https://files.pythonhosted.org/packages/2b/6b/668f21567e3250463beb6a401e7d598baa2a0907224000d7f68b9442c243/debugpy-1.8.20-cp39-cp39-macosx_15_0_x86_64.whl", hash = "sha256:bff8990f040dacb4c314864da95f7168c5a58a30a66e0eea0fb85e2586a92cd6", size = 2100484, upload-time = "2026-01-29T23:04:09.929Z" }, - { url = "https://files.pythonhosted.org/packages/cf/49/223143d1da586b891f35a45515f152742ad85bfc10d2e02e697f65c83b32/debugpy-1.8.20-cp39-cp39-manylinux_2_34_x86_64.whl", hash = "sha256:70ad9ae09b98ac307b82c16c151d27ee9d68ae007a2e7843ba621b5ce65333b5", size = 3081272, upload-time = "2026-01-29T23:04:11.664Z" }, - { url = "https://files.pythonhosted.org/packages/b1/24/9f219c9290fe8bee4f63f9af8ebac440c802e6181d7f39a79abcb5fdff2f/debugpy-1.8.20-cp39-cp39-win32.whl", hash = "sha256:9eeed9f953f9a23850c85d440bf51e3c56ed5d25f8560eeb29add815bd32f7ee", size = 5285196, upload-time = "2026-01-29T23:04:13.105Z" }, - { url = "https://files.pythonhosted.org/packages/ba/f3/4a12d7b1b09e3b79ba6e3edfa0c677b8b8bdf110bc4b3607e0f29fb4e8b3/debugpy-1.8.20-cp39-cp39-win_amd64.whl", hash = "sha256:760813b4fff517c75bfe7923033c107104e76acfef7bda011ffea8736e9a66f8", size = 5317163, upload-time = "2026-01-29T23:04:15.264Z" }, { url = "https://files.pythonhosted.org/packages/e0/c3/7f67dea8ccf8fdcb9c99033bbe3e90b9e7395415843accb81428c441be2d/debugpy-1.8.20-py2.py3-none-any.whl", hash = "sha256:5be9bed9ae3be00665a06acaa48f8329d2b9632f15fd09f6a9a8c8d9907e54d7", size = 5337658, upload-time = "2026-01-29T23:04:17.404Z" }, ] @@ -924,72 +775,21 @@ wheels = [ ] [[package]] -name = "duckdb" -version = "1.4.4" +name = "donfig" +version = "0.8.1.post1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/36/9d/ab66a06e416d71b7bdcb9904cdf8d4db3379ef632bb8e9495646702d9718/duckdb-1.4.4.tar.gz", hash = "sha256:8bba52fd2acb67668a4615ee17ee51814124223de836d9e2fdcbc4c9021b3d3c", size = 18419763, upload-time = "2026-01-26T11:50:37.68Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a2/9f/67a75f1e88f84946909826fa7aadd0c4b0dc067f24956142751fd9d59fe6/duckdb-1.4.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e870a441cb1c41d556205deb665749f26347ed13b3a247b53714f5d589596977", size = 28884338, upload-time = "2026-01-26T11:48:41.591Z" }, - { url = "https://files.pythonhosted.org/packages/6b/7a/e9277d0567884c21f345ad43cc01aeaa2abe566d5fdf22e35c3861dd44fa/duckdb-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49123b579e4a6323e65139210cd72dddc593a72d840211556b60f9703bda8526", size = 15339148, upload-time = "2026-01-26T11:48:45.343Z" }, - { url = "https://files.pythonhosted.org/packages/4a/96/3a7630d2779d2bae6f3cdf540a088ed45166adefd3c429971e5b85ce8f84/duckdb-1.4.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5e1933fac5293fea5926b0ee75a55b8cfe7f516d867310a5b251831ab61fe62b", size = 13668431, upload-time = "2026-01-26T11:48:47.864Z" }, - { url = "https://files.pythonhosted.org/packages/8e/ad/f62a3a65d200e8afc1f75cf0dd3f0aa84ef0dd07c484414a11f2abed810e/duckdb-1.4.4-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:707530f6637e91dc4b8125260595299ec9dd157c09f5d16c4186c5988bfbd09a", size = 18409546, upload-time = "2026-01-26T11:48:51.142Z" }, - { url = "https://files.pythonhosted.org/packages/a2/5f/23bd586ecb21273b41b5aa4b16fd88b7fecb53ed48d897273651c0c3d66f/duckdb-1.4.4-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:453b115f4777467f35103d8081770ac2f223fb5799178db5b06186e3ab51d1f2", size = 20407046, upload-time = "2026-01-26T11:48:55.673Z" }, - { url = "https://files.pythonhosted.org/packages/8b/d0/4ce78bf341c930d4a22a56cb686bfc2c975eaf25f653a7ac25e3929d98bb/duckdb-1.4.4-cp310-cp310-win_amd64.whl", hash = "sha256:a3c8542db7ffb128aceb7f3b35502ebaddcd4f73f1227569306cc34bad06680c", size = 12256576, upload-time = "2026-01-26T11:48:58.203Z" }, - { url = "https://files.pythonhosted.org/packages/04/68/19233412033a2bc5a144a3f531f64e3548d4487251e3f16b56c31411a06f/duckdb-1.4.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5ba684f498d4e924c7e8f30dd157da8da34c8479746c5011b6c0e037e9c60ad2", size = 28883816, upload-time = "2026-01-26T11:49:01.009Z" }, - { url = "https://files.pythonhosted.org/packages/b3/3e/cec70e546c298ab76d80b990109e111068d82cca67942c42328eaa7d6fdb/duckdb-1.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5536eb952a8aa6ae56469362e344d4e6403cc945a80bc8c5c2ebdd85d85eb64b", size = 15339662, upload-time = "2026-01-26T11:49:04.058Z" }, - { url = "https://files.pythonhosted.org/packages/d3/f0/cf4241a040ec4f571859a738007ec773b642fbc27df4cbcf34b0c32ea559/duckdb-1.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:47dd4162da6a2be59a0aef640eb08d6360df1cf83c317dcc127836daaf3b7f7c", size = 13670044, upload-time = "2026-01-26T11:49:06.627Z" }, - { url = "https://files.pythonhosted.org/packages/11/64/de2bb4ec1e35ec9ebf6090a95b930fc56934a0ad6f34a24c5972a14a77ef/duckdb-1.4.4-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6cb357cfa3403910e79e2eb46c8e445bb1ee2fd62e9e9588c6b999df4256abc1", size = 18409951, upload-time = "2026-01-26T11:49:09.808Z" }, - { url = "https://files.pythonhosted.org/packages/79/a2/ac0f5ee16df890d141304bcd48733516b7202c0de34cd3555634d6eb4551/duckdb-1.4.4-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4c25d5b0febda02b7944e94fdae95aecf952797afc8cb920f677b46a7c251955", size = 20411739, upload-time = "2026-01-26T11:49:12.652Z" }, - { url = "https://files.pythonhosted.org/packages/37/a2/9a3402edeedaecf72de05fe9ff7f0303d701b8dfc136aea4a4be1a5f7eee/duckdb-1.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:6703dd1bb650025b3771552333d305d62ddd7ff182de121483d4e042ea6e2e00", size = 12256972, upload-time = "2026-01-26T11:49:15.468Z" }, - { url = "https://files.pythonhosted.org/packages/f6/e6/052ea6dcdf35b259fd182eff3efd8d75a071de4010c9807556098df137b9/duckdb-1.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:bf138201f56e5d6fc276a25138341b3523e2f84733613fc43f02c54465619a95", size = 13006696, upload-time = "2026-01-26T11:49:18.054Z" }, - { url = "https://files.pythonhosted.org/packages/58/33/beadaa69f8458afe466126f2c5ee48c4759cc9d5d784f8703d44e0b52c3c/duckdb-1.4.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:ddcfd9c6ff234da603a1edd5fd8ae6107f4d042f74951b65f91bc5e2643856b3", size = 28896535, upload-time = "2026-01-26T11:49:21.232Z" }, - { url = "https://files.pythonhosted.org/packages/76/66/82413f386df10467affc87f65bac095b7c88dbd9c767584164d5f4dc4cb8/duckdb-1.4.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6792ca647216bd5c4ff16396e4591cfa9b4a72e5ad7cdd312cec6d67e8431a7c", size = 15349716, upload-time = "2026-01-26T11:49:23.989Z" }, - { url = "https://files.pythonhosted.org/packages/5d/8c/c13d396fd4e9bf970916dc5b4fea410c1b10fe531069aea65f1dcf849a71/duckdb-1.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1f8d55843cc940e36261689054f7dfb6ce35b1f5b0953b0d355b6adb654b0d52", size = 13672403, upload-time = "2026-01-26T11:49:26.741Z" }, - { url = "https://files.pythonhosted.org/packages/db/77/2446a0b44226bb95217748d911c7ca66a66ca10f6481d5178d9370819631/duckdb-1.4.4-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c65d15c440c31e06baaebfd2c06d71ce877e132779d309f1edf0a85d23c07e92", size = 18419001, upload-time = "2026-01-26T11:49:29.353Z" }, - { url = "https://files.pythonhosted.org/packages/2e/a3/97715bba30040572fb15d02c26f36be988d48bc00501e7ac02b1d65ef9d0/duckdb-1.4.4-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b297eff642503fd435a9de5a9cb7db4eccb6f61d61a55b30d2636023f149855f", size = 20437385, upload-time = "2026-01-26T11:49:32.302Z" }, - { url = "https://files.pythonhosted.org/packages/8b/0a/18b9167adf528cbe3867ef8a84a5f19f37bedccb606a8a9e59cfea1880c8/duckdb-1.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d525de5f282b03aa8be6db86b1abffdceae5f1055113a03d5b50cd2fb8cf2ef8", size = 12267343, upload-time = "2026-01-26T11:49:34.985Z" }, - { url = "https://files.pythonhosted.org/packages/f8/15/37af97f5717818f3d82d57414299c293b321ac83e048c0a90bb8b6a09072/duckdb-1.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:50f2eb173c573811b44aba51176da7a4e5c487113982be6a6a1c37337ec5fa57", size = 13007490, upload-time = "2026-01-26T11:49:37.413Z" }, - { url = "https://files.pythonhosted.org/packages/7f/fe/64810fee20030f2bf96ce28b527060564864ce5b934b50888eda2cbf99dd/duckdb-1.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:337f8b24e89bc2e12dadcfe87b4eb1c00fd920f68ab07bc9b70960d6523b8bc3", size = 28899349, upload-time = "2026-01-26T11:49:40.294Z" }, - { url = "https://files.pythonhosted.org/packages/9c/9b/3c7c5e48456b69365d952ac201666053de2700f5b0144a699a4dc6854507/duckdb-1.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0509b39ea7af8cff0198a99d206dca753c62844adab54e545984c2e2c1381616", size = 15350691, upload-time = "2026-01-26T11:49:43.242Z" }, - { url = "https://files.pythonhosted.org/packages/a6/7b/64e68a7b857ed0340045501535a0da99ea5d9d5ea3708fec0afb8663eb27/duckdb-1.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:fb94de6d023de9d79b7edc1ae07ee1d0b4f5fa8a9dcec799650b5befdf7aafec", size = 13672311, upload-time = "2026-01-26T11:49:46.069Z" }, - { url = "https://files.pythonhosted.org/packages/09/5b/3e7aa490841784d223de61beb2ae64e82331501bf5a415dc87a0e27b4663/duckdb-1.4.4-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0d636ceda422e7babd5e2f7275f6a0d1a3405e6a01873f00d38b72118d30c10b", size = 18422740, upload-time = "2026-01-26T11:49:49.034Z" }, - { url = "https://files.pythonhosted.org/packages/53/32/256df3dbaa198c58539ad94f9a41e98c2c8ff23f126b8f5f52c7dcd0a738/duckdb-1.4.4-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7df7351328ffb812a4a289732f500d621e7de9942a3a2c9b6d4afcf4c0e72526", size = 20435578, upload-time = "2026-01-26T11:49:51.946Z" }, - { url = "https://files.pythonhosted.org/packages/a4/f0/620323fd87062ea43e527a2d5ed9e55b525e0847c17d3b307094ddab98a2/duckdb-1.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:6fb1225a9ea5877421481d59a6c556a9532c32c16c7ae6ca8d127e2b878c9389", size = 12268083, upload-time = "2026-01-26T11:49:54.615Z" }, - { url = "https://files.pythonhosted.org/packages/e5/07/a397fdb7c95388ba9c055b9a3d38dfee92093f4427bc6946cf9543b1d216/duckdb-1.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:f28a18cc790217e5b347bb91b2cab27aafc557c58d3d8382e04b4fe55d0c3f66", size = 13006123, upload-time = "2026-01-26T11:49:57.092Z" }, - { url = "https://files.pythonhosted.org/packages/97/a6/f19e2864e651b0bd8e4db2b0c455e7e0d71e0d4cd2cd9cc052f518e43eb3/duckdb-1.4.4-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:25874f8b1355e96178079e37312c3ba6d61a2354f51319dae860cf21335c3a20", size = 28909554, upload-time = "2026-01-26T11:50:00.107Z" }, - { url = "https://files.pythonhosted.org/packages/0e/93/8a24e932c67414fd2c45bed83218e62b73348996bf859eda020c224774b2/duckdb-1.4.4-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:452c5b5d6c349dc5d1154eb2062ee547296fcbd0c20e9df1ed00b5e1809089da", size = 15353804, upload-time = "2026-01-26T11:50:03.382Z" }, - { url = "https://files.pythonhosted.org/packages/62/13/e5378ff5bb1d4397655d840b34b642b1b23cdd82ae19599e62dc4b9461c9/duckdb-1.4.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8e5c2d8a0452df55e092959c0bfc8ab8897ac3ea0f754cb3b0ab3e165cd79aff", size = 13676157, upload-time = "2026-01-26T11:50:06.232Z" }, - { url = "https://files.pythonhosted.org/packages/2d/94/24364da564b27aeebe44481f15bd0197a0b535ec93f188a6b1b98c22f082/duckdb-1.4.4-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1af6e76fe8bd24875dc56dd8e38300d64dc708cd2e772f67b9fbc635cc3066a3", size = 18426882, upload-time = "2026-01-26T11:50:08.97Z" }, - { url = "https://files.pythonhosted.org/packages/26/0a/6ae31b2914b4dc34243279b2301554bcbc5f1a09ccc82600486c49ab71d1/duckdb-1.4.4-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d0440f59e0cd9936a9ebfcf7a13312eda480c79214ffed3878d75947fc3b7d6d", size = 20435641, upload-time = "2026-01-26T11:50:12.188Z" }, - { url = "https://files.pythonhosted.org/packages/d2/b1/fd5c37c53d45efe979f67e9bd49aaceef640147bb18f0699a19edd1874d6/duckdb-1.4.4-cp314-cp314-win_amd64.whl", hash = "sha256:59c8d76016dde854beab844935b1ec31de358d4053e792988108e995b18c08e7", size = 12762360, upload-time = "2026-01-26T11:50:14.76Z" }, - { url = "https://files.pythonhosted.org/packages/dd/2d/13e6024e613679d8a489dd922f199ef4b1d08a456a58eadd96dc2f05171f/duckdb-1.4.4-cp314-cp314-win_arm64.whl", hash = "sha256:53cd6423136ab44383ec9955aefe7599b3fb3dd1fe006161e6396d8167e0e0d4", size = 13458633, upload-time = "2026-01-26T11:50:17.657Z" }, - { url = "https://files.pythonhosted.org/packages/00/c1/edb090813533632b0eaa315092efcf60d5f835f6b74bd25b3fee2c993810/duckdb-1.4.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8097201bc5fd0779d7fcc2f3f4736c349197235f4cb7171622936343a1aa8dbf", size = 28883631, upload-time = "2026-01-26T11:50:20.579Z" }, - { url = "https://files.pythonhosted.org/packages/9f/01/b19f532ee7340ef11c3363300f677074d7d2bf03af5ac76efacf03b4dd76/duckdb-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd1be3d48577f5b40eb9706c6b2ae10edfe18e78eb28e31a3b922dcff1183597", size = 15338844, upload-time = "2026-01-26T11:50:23.641Z" }, - { url = "https://files.pythonhosted.org/packages/08/cd/73cde196b809fc934acd39f05e730f7758e15e845486ee5219fc0513701e/duckdb-1.4.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e041f2fbd6888da090eca96ac167a7eb62d02f778385dd9155ed859f1c6b6dc8", size = 13668224, upload-time = "2026-01-26T11:50:26.151Z" }, - { url = "https://files.pythonhosted.org/packages/de/6a/1aea416dbb729c1548ce6b66c3283dd5441660939ec16077ba431bec6b42/duckdb-1.4.4-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7eec0bf271ac622e57b7f6554a27a6e7d1dd2f43d1871f7962c74bcbbede15ba", size = 18387860, upload-time = "2026-01-26T11:50:28.775Z" }, - { url = "https://files.pythonhosted.org/packages/a1/6d/697bf9688d5c5b470a7210123430661d5f9bd10c9f0aeffa54799de6712d/duckdb-1.4.4-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5cdc4126ec925edf3112bc656ac9ed23745294b854935fa7a643a216e4455af6", size = 20396661, upload-time = "2026-01-26T11:50:32.009Z" }, - { url = "https://files.pythonhosted.org/packages/23/60/8e491e199839a488cd302166defc51c62c25ea2cb36adee14156e610dcfc/duckdb-1.4.4-cp39-cp39-win_amd64.whl", hash = "sha256:c9566a4ed834ec7999db5849f53da0a7ee83d86830c33f471bf0211a1148ca12", size = 12255531, upload-time = "2026-01-26T11:50:34.681Z" }, +dependencies = [ + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/71/80cc718ff6d7abfbabacb1f57aaa42e9c1552bfdd01e64ddd704e4a03638/donfig-0.8.1.post1.tar.gz", hash = "sha256:3bef3413a4c1c601b585e8d297256d0c1470ea012afa6e8461dc28bfb7c23f52", size = 19506, upload-time = "2024-05-23T14:14:31.513Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/d5/c5db1ea3394c6e1732fb3286b3bd878b59507a8f77d32a2cebda7d7b7cd4/donfig-0.8.1.post1-py3-none-any.whl", hash = "sha256:2a3175ce74a06109ff9307d90a230f81215cbac9a751f4d1c6194644b8204f9d", size = 21592, upload-time = "2024-05-23T14:13:55.283Z" }, ] [[package]] name = "duckdb" version = "1.5.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/ee/11/e05a7eb73a373d523e45d83c261025e02bc31ebf868e6282c30c4d02cc59/duckdb-1.5.0.tar.gz", hash = "sha256:f974b61b1c375888ee62bc3125c60ac11c4e45e4457dd1bb31a8f8d3cf277edd", size = 17981141, upload-time = "2026-03-09T12:50:26.372Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/e0/5d/8fa129bbd604d0e91aa9a0a407e7d2acc559b6024c3f887868fd7a13871d/duckdb-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:47fbb1c053a627a91fa71ec883951561317f14a82df891c00dcace435e8fea78", size = 30012348, upload-time = "2026-03-09T12:48:39.133Z" }, @@ -1072,35 +872,11 @@ wheels = [ [[package]] name = "filelock" -version = "3.19.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d", size = 15988, upload-time = "2025-08-14T16:56:01.633Z" }, -] - -[[package]] -name = "filelock" -version = "3.25.2" +version = "3.29.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/94/b8/00651a0f559862f3bb7d6f7477b192afe3f583cc5e26403b44e59a55ab34/filelock-3.25.2.tar.gz", hash = "sha256:b64ece2b38f4ca29dd3e810287aa8c48182bbecd1ae6e9ae126c9b35f1382694", size = 40480, upload-time = "2026-03-11T20:45:38.487Z" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/f9/f38573ed5844586db374d085911740a501ccfa373b455fc9413f09f85237/filelock-3.29.1.tar.gz", hash = "sha256:d97e6b1b9757569626c58caa07dc4beb1613f4a2938b1e8cc81afca398906c9e", size = 59335, upload-time = "2026-06-03T15:19:04.053Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/a5/842ae8f0c08b61d6484b52f99a03510a3a72d23141942d216ebe81fefbce/filelock-3.25.2-py3-none-any.whl", hash = "sha256:ca8afb0da15f229774c9ad1b455ed96e85a81373065fb10446672f64444ddf70", size = 26759, upload-time = "2026-03-11T20:45:37.437Z" }, + { url = "https://files.pythonhosted.org/packages/4c/a0/614c5fe402fd88951df45f4dda2fa3b4e17a99ecd92340771929169b3b95/filelock-3.29.1-py3-none-any.whl", hash = "sha256:85199dfd706869641b72b2e8955d5416a4b2b7dc4b0e8e6d97b4cc1299a6983b", size = 40750, upload-time = "2026-06-03T15:19:02.959Z" }, ] [[package]] @@ -1110,11 +886,9 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "certifi" }, - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "click" }, { name = "click-plugins" }, { name = "cligj" }, - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/51/e0/71b63839cc609e1d62cea2fc9774aa605ece7ea78af823ff7a8f1c560e72/fiona-1.10.1.tar.gz", hash = "sha256:b00ae357669460c6491caba29c2022ff0acfcbde86a95361ea8ff5cd14a86b68", size = 444606, upload-time = "2024-09-16T20:15:47.074Z" } wheels = [ @@ -1134,10 +908,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/23/c8/150094fbc4220d22217f480cc67b6ee4c2f4324b4b58cd25527cd5905937/fiona-1.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f78b781d5bcbbeeddf1d52712f33458775dbb9fd1b2a39882c83618348dd730f", size = 14738178, upload-time = "2024-09-16T20:15:06.848Z" }, { url = "https://files.pythonhosted.org/packages/20/83/63da54032c0c03d4921b854111e33d3a1dadec5d2b7e741fba6c8c6486a6/fiona-1.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:29ceeb38e3cd30d91d68858d0817a1bb0c4f96340d334db4b16a99edb0902d35", size = 17221414, upload-time = "2024-09-16T20:15:09.606Z" }, { url = "https://files.pythonhosted.org/packages/60/14/5ef47002ef19bd5cfbc7a74b21c30ef83f22beb80609314ce0328989ceda/fiona-1.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:15751c90e29cee1e01fcfedf42ab85987e32f0b593cf98d88ed52199ef5ca623", size = 24461486, upload-time = "2024-09-16T20:15:13.399Z" }, - { url = "https://files.pythonhosted.org/packages/98/6b/5b3a12ea7941aeb5394d007ee28e3650d876fabe73662a6c63ff7e5db72a/fiona-1.10.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b62aa8d5a0981bd33d81c247219b1eaa1e655e0a0682b3a4759fccc40954bb30", size = 16145292, upload-time = "2024-09-16T20:15:32.351Z" }, - { url = "https://files.pythonhosted.org/packages/99/10/d690fd53e865c046365d565d5d580531f90bdae3e27fdd7045c96a0fe0ea/fiona-1.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f4b19cb5bd22443ef439b39239272349023556994242a8f953a0147684e1c47f", size = 14751722, upload-time = "2024-09-16T20:15:36.393Z" }, - { url = "https://files.pythonhosted.org/packages/e3/46/7be8d75da40847176a4edc67f85854951940df18b6271dcc276d6ae3937c/fiona-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa7e7e5ad252ef29905384bf92e7d14dd5374584b525632652c2ab8925304670", size = 17291814, upload-time = "2024-09-16T20:15:40.533Z" }, - { url = "https://files.pythonhosted.org/packages/a9/21/5d355e0960a6b0443c9147c4ec81dca65ff3386117d28a5a5a497a6e5dc3/fiona-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:4e82d18acbe55230e9cf8ede2a836d99ea96b7c0cc7d2b8b993e6c9f0ac14dc2", size = 24482341, upload-time = "2024-09-16T20:15:44.639Z" }, ] [[package]] @@ -1160,9 +930,7 @@ version = "3.1.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "blinker" }, - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "click" }, { name = "itsdangerous" }, { name = "jinja2" }, { name = "markupsafe" }, @@ -1207,10 +975,8 @@ dependencies = [ { name = "aniso8601" }, { name = "flask" }, { name = "importlib-resources" }, - { name = "jsonschema", version = "4.25.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "jsonschema", version = "4.26.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "referencing", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "referencing", version = "0.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "jsonschema" }, + { name = "referencing" }, { name = "werkzeug" }, ] sdist = { url = "https://files.pythonhosted.org/packages/43/89/9b9ca58cbb8e9ec46f4a510ba93878e0c88d518bf03c350e3b1b7ad85cbe/flask-restx-1.3.2.tar.gz", hash = "sha256:0ae13d77e7d7e4dce513970cfa9db45364aef210e99022de26d2b73eb4dbced5", size = 2814719, upload-time = "2025-09-23T20:34:25.21Z" } @@ -1225,8 +991,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "branca" }, { name = "jinja2" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "requests" }, { name = "xyzservices" }, @@ -1236,90 +1001,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b5/a8/5f764f333204db0390362a4356d03a43626997f26818a0e9396f1b3bd8c9/folium-0.20.0-py2.py3-none-any.whl", hash = "sha256:f0bc2a92acde20bca56367aa5c1c376c433f450608d058daebab2fc9bf8198bf", size = 113394, upload-time = "2025-06-16T20:22:50.318Z" }, ] -[[package]] -name = "fonttools" -version = "4.60.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/3e/c4/db6a7b5eb0656534c3aa2596c2c5e18830d74f1b9aa5aa8a7dff63a0b11d/fonttools-4.60.2.tar.gz", hash = "sha256:d29552e6b155ebfc685b0aecf8d429cb76c14ab734c22ef5d3dea6fdf800c92c", size = 3562254, upload-time = "2025-12-09T13:38:11.835Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ab/de/9e10a99fb3070accb8884886a41a4ce54e49bf2fa4fc63f48a6cf2061713/fonttools-4.60.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4e36fadcf7e8ca6e34d490eef86ed638d6fd9c55d2f514b05687622cfc4a7050", size = 2850403, upload-time = "2025-12-09T13:35:53.14Z" }, - { url = "https://files.pythonhosted.org/packages/e4/40/d5b369d1073b134f600a94a287e13b5bdea2191ba6347d813fa3da00e94a/fonttools-4.60.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6e500fc9c04bee749ceabfc20cb4903f6981c2139050d85720ea7ada61b75d5c", size = 2398629, upload-time = "2025-12-09T13:35:56.471Z" }, - { url = "https://files.pythonhosted.org/packages/7c/b5/123819369aaf99d1e4dc49f1de1925d4edc7379114d15a56a7dd2e9d56e6/fonttools-4.60.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22efea5e784e1d1cd8d7b856c198e360a979383ebc6dea4604743b56da1cbc34", size = 4893471, upload-time = "2025-12-09T13:35:58.927Z" }, - { url = "https://files.pythonhosted.org/packages/24/29/f8f8acccb9716b899be4be45e9ce770d6aa76327573863e68448183091b0/fonttools-4.60.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:677aa92d84d335e4d301d8ba04afca6f575316bc647b6782cb0921943fcb6343", size = 4854686, upload-time = "2025-12-09T13:36:01.767Z" }, - { url = "https://files.pythonhosted.org/packages/5a/0d/f3f51d7519f44f2dd5c9a60d7cd41185ebcee4348f073e515a3a93af15ff/fonttools-4.60.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:edd49d3defbf35476e78b61ff737ff5efea811acff68d44233a95a5a48252334", size = 4871233, upload-time = "2025-12-09T13:36:06.094Z" }, - { url = "https://files.pythonhosted.org/packages/cc/3f/4d4fd47d3bc40ab4d76718555185f8adffb5602ea572eac4bbf200c47d22/fonttools-4.60.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:126839492b69cecc5baf2bddcde60caab2ffafd867bbae2a88463fce6078ca3a", size = 4988936, upload-time = "2025-12-09T13:36:08.42Z" }, - { url = "https://files.pythonhosted.org/packages/01/6f/83bbdefa43f2c3ae206fd8c4b9a481f3c913eef871b1ce9a453069239e39/fonttools-4.60.2-cp310-cp310-win32.whl", hash = "sha256:ffcab6f5537136046ca902ed2491ab081ba271b07591b916289b7c27ff845f96", size = 2278044, upload-time = "2025-12-09T13:36:10.641Z" }, - { url = "https://files.pythonhosted.org/packages/d4/04/7d9a137e919d6c9ef26704b7f7b2580d9cfc5139597588227aacebc0e3b7/fonttools-4.60.2-cp310-cp310-win_amd64.whl", hash = "sha256:9c68b287c7ffcd29dd83b5f961004b2a54a862a88825d52ea219c6220309ba45", size = 2326522, upload-time = "2025-12-09T13:36:12.981Z" }, - { url = "https://files.pythonhosted.org/packages/e0/80/b7693d37c02417e162cc83cdd0b19a4f58be82c638b5d4ce4de2dae050c4/fonttools-4.60.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a2aed0a7931401b3875265717a24c726f87ecfedbb7b3426c2ca4d2812e281ae", size = 2847809, upload-time = "2025-12-09T13:36:14.884Z" }, - { url = "https://files.pythonhosted.org/packages/f9/9a/9c2c13bf8a6496ac21607d704e74e9cc68ebf23892cf924c9a8b5c7566b9/fonttools-4.60.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dea6868e9d2b816c9076cfea77754686f3c19149873bdbc5acde437631c15df1", size = 2397302, upload-time = "2025-12-09T13:36:17.151Z" }, - { url = "https://files.pythonhosted.org/packages/56/f6/ce38ff6b2d2d58f6fd981d32f3942365bfa30eadf2b47d93b2d48bf6097f/fonttools-4.60.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2fa27f34950aa1fe0f0b1abe25eed04770a3b3b34ad94e5ace82cc341589678a", size = 5054418, upload-time = "2025-12-09T13:36:19.062Z" }, - { url = "https://files.pythonhosted.org/packages/88/06/5353bea128ff39e857c31de3dd605725b4add956badae0b31bc9a50d4c8e/fonttools-4.60.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:13a53d479d187b09bfaa4a35ffcbc334fc494ff355f0a587386099cb66674f1e", size = 5031652, upload-time = "2025-12-09T13:36:21.206Z" }, - { url = "https://files.pythonhosted.org/packages/71/05/ebca836437f6ebd57edd6428e7eff584e683ff0556ddb17d62e3b731f46c/fonttools-4.60.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fac5e921d3bd0ca3bb8517dced2784f0742bc8ca28579a68b139f04ea323a779", size = 5030321, upload-time = "2025-12-09T13:36:23.515Z" }, - { url = "https://files.pythonhosted.org/packages/57/f9/eb9d2a2ce30c99f840c1cc3940729a970923cf39d770caf88909d98d516b/fonttools-4.60.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:648f4f9186fd7f1f3cd57dbf00d67a583720d5011feca67a5e88b3a491952cfb", size = 5154255, upload-time = "2025-12-09T13:36:25.879Z" }, - { url = "https://files.pythonhosted.org/packages/08/a2/088b6ceba8272a9abb629d3c08f9c1e35e5ce42db0ccfe0c1f9f03e60d1d/fonttools-4.60.2-cp311-cp311-win32.whl", hash = "sha256:3274e15fad871bead5453d5ce02658f6d0c7bc7e7021e2a5b8b04e2f9e40da1a", size = 2276300, upload-time = "2025-12-09T13:36:27.772Z" }, - { url = "https://files.pythonhosted.org/packages/de/2f/8e4c3d908cc5dade7bb1316ce48589f6a24460c1056fd4b8db51f1fa309a/fonttools-4.60.2-cp311-cp311-win_amd64.whl", hash = "sha256:91d058d5a483a1525b367803abb69de0923fbd45e1f82ebd000f5c8aa65bc78e", size = 2327574, upload-time = "2025-12-09T13:36:30.89Z" }, - { url = "https://files.pythonhosted.org/packages/c0/30/530c9eddcd1c39219dc0aaede2b5a4c8ab80e0bb88d1b3ffc12944c4aac3/fonttools-4.60.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:e0164b7609d2b5c5dd4e044b8085b7bd7ca7363ef8c269a4ab5b5d4885a426b2", size = 2847196, upload-time = "2025-12-09T13:36:33.262Z" }, - { url = "https://files.pythonhosted.org/packages/19/2f/4077a482836d5bbe3bc9dac1c004d02ee227cf04ed62b0a2dfc41d4f0dfd/fonttools-4.60.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1dd3d9574fc595c1e97faccae0f264dc88784ddf7fbf54c939528378bacc0033", size = 2395842, upload-time = "2025-12-09T13:36:35.47Z" }, - { url = "https://files.pythonhosted.org/packages/dd/05/aae5bb99c5398f8ed4a8b784f023fd9dd3568f0bd5d5b21e35b282550f11/fonttools-4.60.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:98d0719f1b11c2817307d2da2e94296a3b2a3503f8d6252a101dca3ee663b917", size = 4949713, upload-time = "2025-12-09T13:36:37.874Z" }, - { url = "https://files.pythonhosted.org/packages/b4/37/49067349fc78ff0efbf09fadefe80ddf41473ca8f8a25400e3770da38328/fonttools-4.60.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9d3ea26957dd07209f207b4fff64c702efe5496de153a54d3b91007ec28904dd", size = 4999907, upload-time = "2025-12-09T13:36:39.853Z" }, - { url = "https://files.pythonhosted.org/packages/16/31/d0f11c758bd0db36b664c92a0f9dfdcc2d7313749aa7d6629805c6946f21/fonttools-4.60.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1ee301273b0850f3a515299f212898f37421f42ff9adfc341702582ca5073c13", size = 4939717, upload-time = "2025-12-09T13:36:43.075Z" }, - { url = "https://files.pythonhosted.org/packages/d9/bc/1cff0d69522e561bf1b99bee7c3911c08c25e919584827c3454a64651ce9/fonttools-4.60.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c6eb4694cc3b9c03b7c01d65a9cf35b577f21aa6abdbeeb08d3114b842a58153", size = 5089205, upload-time = "2025-12-09T13:36:45.468Z" }, - { url = "https://files.pythonhosted.org/packages/05/e6/fb174f0069b7122e19828c551298bfd34fdf9480535d2a6ac2ed37afacd3/fonttools-4.60.2-cp312-cp312-win32.whl", hash = "sha256:57f07b616c69c244cc1a5a51072eeef07dddda5ebef9ca5c6e9cf6d59ae65b70", size = 2264674, upload-time = "2025-12-09T13:36:49.238Z" }, - { url = "https://files.pythonhosted.org/packages/75/57/6552ffd6b582d3e6a9f01780c5275e6dfff1e70ca146101733aa1c12a129/fonttools-4.60.2-cp312-cp312-win_amd64.whl", hash = "sha256:310035802392f1fe5a7cf43d76f6ff4a24c919e4c72c0352e7b8176e2584b8a0", size = 2314701, upload-time = "2025-12-09T13:36:51.09Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e4/8381d0ca6b6c6c484660b03517ec5b5b81feeefca3808726dece36c652a9/fonttools-4.60.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2bb5fd231e56ccd7403212636dcccffc96c5ae0d6f9e4721fa0a32cb2e3ca432", size = 2842063, upload-time = "2025-12-09T13:36:53.468Z" }, - { url = "https://files.pythonhosted.org/packages/b4/2c/4367117ee8ff4f4374787a1222da0bd413d80cf3522111f727a7b8f80d1d/fonttools-4.60.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:536b5fab7b6fec78ccf59b5c59489189d9d0a8b0d3a77ed1858be59afb096696", size = 2393792, upload-time = "2025-12-09T13:36:55.742Z" }, - { url = "https://files.pythonhosted.org/packages/49/b7/a76b6dffa193869e54e32ca2f9abb0d0e66784bc8a24e6f86eb093015481/fonttools-4.60.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6b9288fc38252ac86a9570f19313ecbc9ff678982e0f27c757a85f1f284d3400", size = 4924020, upload-time = "2025-12-09T13:36:58.229Z" }, - { url = "https://files.pythonhosted.org/packages/bd/4e/0078200e2259f0061c86a74075f507d64c43dd2ab38971956a5c0012d344/fonttools-4.60.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:93fcb420791d839ef592eada2b69997c445d0ce9c969b5190f2e16828ec10607", size = 4980070, upload-time = "2025-12-09T13:37:00.311Z" }, - { url = "https://files.pythonhosted.org/packages/85/1f/d87c85a11cb84852c975251581862681e4a0c1c3bd456c648792203f311b/fonttools-4.60.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7916a381b094db4052ac284255186aebf74c5440248b78860cb41e300036f598", size = 4921411, upload-time = "2025-12-09T13:37:02.345Z" }, - { url = "https://files.pythonhosted.org/packages/75/c0/7efad650f5ed8e317c2633133ef3c64917e7adf2e4e2940c798f5d57ec6e/fonttools-4.60.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:58c8c393d5e16b15662cfc2d988491940458aa87894c662154f50c7b49440bef", size = 5063465, upload-time = "2025-12-09T13:37:04.836Z" }, - { url = "https://files.pythonhosted.org/packages/18/a8/750518c4f8cdd79393b386bc81226047ade80239e58c6c9f5dbe1fdd8ea1/fonttools-4.60.2-cp313-cp313-win32.whl", hash = "sha256:19c6e0afd8b02008caa0aa08ab896dfce5d0bcb510c49b2c499541d5cb95a963", size = 2263443, upload-time = "2025-12-09T13:37:06.762Z" }, - { url = "https://files.pythonhosted.org/packages/b8/22/026c60376f165981f80a0e90bd98a79ae3334e9d89a3d046c4d2e265c724/fonttools-4.60.2-cp313-cp313-win_amd64.whl", hash = "sha256:6a500dc59e11b2338c2dba1f8cf11a4ae8be35ec24af8b2628b8759a61457b76", size = 2313800, upload-time = "2025-12-09T13:37:08.713Z" }, - { url = "https://files.pythonhosted.org/packages/7e/ab/7cf1f5204e1366ddf9dc5cdc2789b571feb9eebcee0e3463c3f457df5f52/fonttools-4.60.2-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:9387c532acbe323bbf2a920f132bce3c408a609d5f9dcfc6532fbc7e37f8ccbb", size = 2841690, upload-time = "2025-12-09T13:37:10.696Z" }, - { url = "https://files.pythonhosted.org/packages/00/3c/0bf83c6f863cc8b934952567fa2bf737cfcec8fc4ffb59b3f93820095f89/fonttools-4.60.2-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:e6f1c824185b5b8fb681297f315f26ae55abb0d560c2579242feea8236b1cfef", size = 2392191, upload-time = "2025-12-09T13:37:12.954Z" }, - { url = "https://files.pythonhosted.org/packages/00/f0/40090d148b8907fbea12e9bdf1ff149f30cdf1769e3b2c3e0dbf5106b88d/fonttools-4.60.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:55a3129d1e4030b1a30260f1b32fe76781b585fb2111d04a988e141c09eb6403", size = 4873503, upload-time = "2025-12-09T13:37:15.142Z" }, - { url = "https://files.pythonhosted.org/packages/dc/e0/d8b13f99e58b8c293781288ba62fe634f1f0697c9c4c0ae104d3215f3a10/fonttools-4.60.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b196e63753abc33b3b97a6fd6de4b7c4fef5552c0a5ba5e562be214d1e9668e0", size = 4968493, upload-time = "2025-12-09T13:37:18.272Z" }, - { url = "https://files.pythonhosted.org/packages/46/c5/960764d12c92bc225f02401d3067048cb7b282293d9e48e39fe2b0ec38a9/fonttools-4.60.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:de76c8d740fb55745f3b154f0470c56db92ae3be27af8ad6c2e88f1458260c9a", size = 4920015, upload-time = "2025-12-09T13:37:20.334Z" }, - { url = "https://files.pythonhosted.org/packages/4b/ab/839d8caf253d1eef3653ef4d34427d0326d17a53efaec9eb04056b670fff/fonttools-4.60.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6ba6303225c95998c9fda2d410aa792c3d2c1390a09df58d194b03e17583fa25", size = 5031165, upload-time = "2025-12-09T13:37:23.57Z" }, - { url = "https://files.pythonhosted.org/packages/de/bf/3bc862796a6841cbe0725bb5512d272239b809dba631a4b0301df885e62d/fonttools-4.60.2-cp314-cp314-win32.whl", hash = "sha256:0a89728ce10d7c816fedaa5380c06d2793e7a8a634d7ce16810e536c22047384", size = 2267526, upload-time = "2025-12-09T13:37:25.821Z" }, - { url = "https://files.pythonhosted.org/packages/fc/a1/c1909cacf00c76dc37b4743451561fbaaf7db4172c22a6d9394081d114c3/fonttools-4.60.2-cp314-cp314-win_amd64.whl", hash = "sha256:fa8446e6ab8bd778b82cb1077058a2addba86f30de27ab9cc18ed32b34bc8667", size = 2319096, upload-time = "2025-12-09T13:37:28.058Z" }, - { url = "https://files.pythonhosted.org/packages/29/b3/f66e71433f08e3a931b2b31a665aeed17fcc5e6911fc73529c70a232e421/fonttools-4.60.2-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:4063bc81ac5a4137642865cb63dd270e37b3cd1f55a07c0d6e41d072699ccca2", size = 2925167, upload-time = "2025-12-09T13:37:30.348Z" }, - { url = "https://files.pythonhosted.org/packages/2e/13/eeb491ff743594bbd0bee6e49422c03a59fe9c49002d3cc60eeb77414285/fonttools-4.60.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:ebfdb66fa69732ed604ab8e2a0431e6deff35e933a11d73418cbc7823d03b8e1", size = 2430923, upload-time = "2025-12-09T13:37:32.817Z" }, - { url = "https://files.pythonhosted.org/packages/b2/e5/db609f785e460796e53c4dbc3874a5f4948477f27beceb5e2d24b2537666/fonttools-4.60.2-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50b10b3b1a72d1d54c61b0e59239e1a94c0958f4a06a1febf97ce75388dd91a4", size = 4877729, upload-time = "2025-12-09T13:37:35.858Z" }, - { url = "https://files.pythonhosted.org/packages/5f/d6/85e4484dd4bfb03fee7bd370d65888cccbd3dee2681ee48c869dd5ccb23f/fonttools-4.60.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:beae16891a13b4a2ddec9b39b4de76092a3025e4d1c82362e3042b62295d5e4d", size = 5096003, upload-time = "2025-12-09T13:37:37.862Z" }, - { url = "https://files.pythonhosted.org/packages/30/49/1a98e44b71030b83d2046f981373b80571868259d98e6dae7bc20099dac6/fonttools-4.60.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:522f017fdb3766fd5d2d321774ef351cc6ce88ad4e6ac9efe643e4a2b9d528db", size = 4974410, upload-time = "2025-12-09T13:37:40.166Z" }, - { url = "https://files.pythonhosted.org/packages/42/07/d6f775d950ee8a841012472c7303f8819423d8cc3b4530915de7265ebfa2/fonttools-4.60.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:82cceceaf9c09a965a75b84a4b240dd3768e596ffb65ef53852681606fe7c9ba", size = 5002036, upload-time = "2025-12-09T13:37:42.639Z" }, - { url = "https://files.pythonhosted.org/packages/73/f6/ba6458f83ce1a9f8c3b17bd8f7b8a2205a126aac1055796b7e7cfebbd38f/fonttools-4.60.2-cp314-cp314t-win32.whl", hash = "sha256:bbfbc918a75437fe7e6d64d1b1e1f713237df1cf00f3a36dedae910b2ba01cee", size = 2330985, upload-time = "2025-12-09T13:37:45.157Z" }, - { url = "https://files.pythonhosted.org/packages/91/24/fea0ba4d3a32d4ed1103a1098bfd99dc78b5fe3bb97202920744a37b73dc/fonttools-4.60.2-cp314-cp314t-win_amd64.whl", hash = "sha256:0e5cd9b0830f6550d58c84f3ab151a9892b50c4f9d538c5603c0ce6fff2eb3f1", size = 2396226, upload-time = "2025-12-09T13:37:47.355Z" }, - { url = "https://files.pythonhosted.org/packages/55/ae/a6d9446cb258d3fe87e311c2d7bacf8e8da3e5809fbdc3a8306db4f6b14e/fonttools-4.60.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a3c75b8b42f7f93906bdba9eb1197bb76aecbe9a0a7cf6feec75f7605b5e8008", size = 2857184, upload-time = "2025-12-09T13:37:49.96Z" }, - { url = "https://files.pythonhosted.org/packages/3a/f3/1b41d0b6a8b908aa07f652111155dd653ebbf0b3385e66562556c5206685/fonttools-4.60.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0f86c8c37bc0ec0b9c141d5e90c717ff614e93c187f06d80f18c7057097f71bc", size = 2401877, upload-time = "2025-12-09T13:37:52.307Z" }, - { url = "https://files.pythonhosted.org/packages/71/57/048fd781680c38b05c5463657d0d95d5f2391a51972176e175c01de29d42/fonttools-4.60.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fe905403fe59683b0e9a45f234af2866834376b8821f34633b1c76fb731b6311", size = 4878073, upload-time = "2025-12-09T13:37:56.477Z" }, - { url = "https://files.pythonhosted.org/packages/45/bb/363364f052a893cebd3d449588b21244a9d873620fda03ad92702d2e1bc7/fonttools-4.60.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:38ce703b60a906e421e12d9e3a7f064883f5e61bb23e8961f4be33cfe578500b", size = 4835385, upload-time = "2025-12-09T13:37:58.882Z" }, - { url = "https://files.pythonhosted.org/packages/1c/38/e392bb930b2436287e6021672345db26441bf1f85f1e98f8b9784334e41d/fonttools-4.60.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9e810c06f3e79185cecf120e58b343ea5a89b54dd695fd644446bcf8c026da5e", size = 4853084, upload-time = "2025-12-09T13:38:01.578Z" }, - { url = "https://files.pythonhosted.org/packages/65/60/0d77faeaecf7a3276a8a6dc49e2274357e6b3ed6a1774e2fdb2a7f142db0/fonttools-4.60.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:38faec8cc1d12122599814d15a402183f5123fb7608dac956121e7c6742aebc5", size = 4971144, upload-time = "2025-12-09T13:38:03.748Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c7/6d3ac3afbcd598631bce24c3ecb919e7d0644a82fea8ddc4454312fc0be6/fonttools-4.60.2-cp39-cp39-win32.whl", hash = "sha256:80a45cf7bf659acb7b36578f300231873daba67bd3ca8cce181c73f861f14a37", size = 1499411, upload-time = "2025-12-09T13:38:05.586Z" }, - { url = "https://files.pythonhosted.org/packages/5a/1c/9dedf6420e23f9fa630bb97941839dddd2e1e57d1b2b85a902378dbe0bd2/fonttools-4.60.2-cp39-cp39-win_amd64.whl", hash = "sha256:c355d5972071938e1b1e0f5a1df001f68ecf1a62f34a3407dc8e0beccf052501", size = 1547943, upload-time = "2025-12-09T13:38:07.604Z" }, - { url = "https://files.pythonhosted.org/packages/79/6c/10280af05b44fafd1dff69422805061fa1af29270bc52dce031ac69540bf/fonttools-4.60.2-py3-none-any.whl", hash = "sha256:73cf92eeda67cf6ff10c8af56fc8f4f07c1647d989a979be9e388a49be26552a", size = 1144610, upload-time = "2025-12-09T13:38:09.5Z" }, -] - [[package]] name = "fonttools" version = "4.62.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/5a/96/686339e0fda8142b7ebed39af53f4a5694602a729662f42a6209e3be91d0/fonttools-4.62.0.tar.gz", hash = "sha256:0dc477c12b8076b4eb9af2e440421b0433ffa9e1dcb39e0640a6c94665ed1098", size = 3579521, upload-time = "2026-03-09T16:50:06.217Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/82/e0/9db48ec7f6b95bae7b20667ded54f18dba8e759ef66232c8683822ae26fc/fonttools-4.62.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:62b6a3d0028e458e9b59501cf7124a84cd69681c433570e4861aff4fb54a236c", size = 2873527, upload-time = "2026-03-09T16:48:12.416Z" }, @@ -1373,34 +1058,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9c/57/c2487c281dde03abb2dec244fd67059b8d118bd30a653cbf69e94084cb23/fonttools-4.62.0-py3-none-any.whl", hash = "sha256:75064f19a10c50c74b336aa5ebe7b1f89fd0fb5255807bfd4b0c6317098f4af3", size = 1152427, upload-time = "2026-03-09T16:50:04.074Z" }, ] -[[package]] -name = "fsspec" -version = "2025.10.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/24/7f/2747c0d332b9acfa75dc84447a066fdf812b5a6b8d30472b74d309bfe8cb/fsspec-2025.10.0.tar.gz", hash = "sha256:b6789427626f068f9a83ca4e8a3cc050850b6c0f71f99ddb4f542b8266a26a59", size = 309285, upload-time = "2025-10-30T14:58:44.036Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/02/a6b21098b1d5d6249b7c5ab69dde30108a71e4e819d4a9778f1de1d5b70d/fsspec-2025.10.0-py3-none-any.whl", hash = "sha256:7c7712353ae7d875407f97715f0e1ffcc21e33d5b24556cb1e090ae9409ec61d", size = 200966, upload-time = "2025-10-30T14:58:42.53Z" }, -] - [[package]] name = "fsspec" version = "2026.2.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/51/7c/f60c259dcbf4f0c47cc4ddb8f7720d2dcdc8888c8e5ad84c73ea4531cc5b/fsspec-2026.2.0.tar.gz", hash = "sha256:6544e34b16869f5aacd5b90bdf1a71acb37792ea3ddf6125ee69a22a53fb8bff", size = 313441, upload-time = "2026-02-05T21:50:53.743Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" }, @@ -1412,8 +1073,7 @@ version = "5.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "beautifulsoup4" }, - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "filelock", version = "3.25.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "filelock" }, { name = "requests", extra = ["socks"] }, { name = "tqdm" }, ] @@ -1431,51 +1091,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/18/67/a7fa2d650602731c90e0a86279841b4586e14228199e8c09165ba4863e29/geojson-3.2.0-py3-none-any.whl", hash = "sha256:69d14156469e13c79479672eafae7b37e2dcd19bdfd77b53f74fa8fe29910b52", size = 15040, upload-time = "2024-12-21T19:37:02.149Z" }, ] -[[package]] -name = "geopandas" -version = "1.0.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pandas", marker = "python_full_version < '3.10'" }, - { name = "pyogrio", version = "0.11.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pyproj", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "shapely", version = "2.0.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/39/08/2cf5d85356e45b10b8d066cf4c3ba1e9e3185423c48104eed87e8afd0455/geopandas-1.0.1.tar.gz", hash = "sha256:b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab", size = 317736, upload-time = "2024-07-02T12:26:52.928Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c4/64/7d344cfcef5efddf9cf32f59af7f855828e9d74b5f862eddf5bfd9f25323/geopandas-1.0.1-py3-none-any.whl", hash = "sha256:01e147d9420cc374d26f51fc23716ac307f32b49406e4bd8462c07e82ed1d3d6", size = 323587, upload-time = "2024-07-02T12:26:50.876Z" }, -] - [[package]] name = "geopandas" version = "1.1.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "packaging", marker = "python_full_version >= '3.10'" }, - { name = "pandas", marker = "python_full_version >= '3.10'" }, - { name = "pyogrio", version = "0.12.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "packaging" }, + { name = "pandas" }, + { name = "pyogrio" }, + { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "pyproj", version = "3.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "shapely", version = "2.1.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "shapely" }, ] sdist = { url = "https://files.pythonhosted.org/packages/85/ba/8e6b2091878e99e86a36a814dcaeff652ed48bdb03d53e78e15aaa63a914/geopandas-1.1.3.tar.gz", hash = "sha256:91a31989b6f566012838d21d5f8033f37dce882079ccb7cfdc40d5ccce7f284f", size = 336718, upload-time = "2026-03-09T21:49:09.545Z" } wheels = [ @@ -1529,11 +1157,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b6/c4/4cff71436168c167af45bc33facc7978b8a205cada5ac32fb957cb6d0757/h3-4.4.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5489c06eb616d28f9905ac23449e807edd0cea280425dcf86641379267006115", size = 862443, upload-time = "2026-01-29T19:22:39.222Z" }, { url = "https://files.pythonhosted.org/packages/e5/ba/92020e90aa74a72f51ff684afaaf05be39c1c3674ae98af4078c1e5865cb/h3-4.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0cfadbd484fbe2cd4aca821e516448edc5763edb208d17b9e42dd7b309fbcc5b", size = 989671, upload-time = "2026-01-29T19:22:40.43Z" }, { url = "https://files.pythonhosted.org/packages/95/5f/ee7d49f219522a9235152cfd5968c9ca13cb7c15e9b827b39fb7640aed8a/h3-4.4.2-cp314-cp314t-win_amd64.whl", hash = "sha256:7767f82d383f4e605b9e79690ddcfaf6264edbf9046396117fdd7ee74473c839", size = 898314, upload-time = "2026-01-29T19:22:41.423Z" }, - { url = "https://files.pythonhosted.org/packages/17/e8/027a1c3e6ecf933df82e0df7963773fa51931ea3c64bb1ace312b484a9ae/h3-4.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0f1edc99f6f1caeed0b178b5085e57057b031fb371011da134d4fbab7128bb2b", size = 827434, upload-time = "2026-01-29T19:22:49.305Z" }, - { url = "https://files.pythonhosted.org/packages/21/84/c5c12fefb1e87bc1be063a437ce434ff790eef8d4a2ed69f19745e69bf29/h3-4.4.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f4ca21dae7d57bf244dc370547214ff01829e7366890aef00528a0a90a1d1295", size = 996460, upload-time = "2026-01-29T19:22:50.561Z" }, - { url = "https://files.pythonhosted.org/packages/a8/5a/4bfde21e4b61047c6e23faff2fee8fb03270fffa40a0b309ddbb71d80a4c/h3-4.4.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ebd0bbd94e765dd61b368df485e261d5adf6042786bf4cbf0998fc92a757ae5a", size = 1034961, upload-time = "2026-01-29T19:22:51.644Z" }, - { url = "https://files.pythonhosted.org/packages/0a/7f/3d7572d78bd53ec839cc31b67f73a3ebf0001c1194dad7953c1b3f2244a8/h3-4.4.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:337fd4f451b25ae539b81beb8f1e81f81e504258d618154c8907fd353503b1d7", size = 1046143, upload-time = "2026-01-29T19:22:53.071Z" }, - { url = "https://files.pythonhosted.org/packages/64/f1/6f16773a2d0279c559dcb2ae2e2c898c4affef11c705c699d2fa32ad60ea/h3-4.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:18ced443ea81ec58407a462ba039064f84fec4325250b3e67143438852f8f540", size = 799170, upload-time = "2026-01-29T19:22:54.19Z" }, ] [[package]] @@ -1601,17 +1224,14 @@ name = "huggingface-hub" version = "1.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "filelock", version = "3.25.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "fsspec", version = "2025.10.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "fsspec", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "filelock" }, + { name = "fsspec" }, { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, { name = "httpx" }, { name = "packaging" }, { name = "pyyaml" }, { name = "tqdm" }, - { name = "typer", version = "0.23.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "typer", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "typer" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d5/7a/304cec37112382c4fe29a43bcb0d5891f922785d18745883d2aa4eb74e4b/huggingface_hub-1.6.0.tar.gz", hash = "sha256:d931ddad8ba8dfc1e816bf254810eb6f38e5c32f60d4184b5885662a3b167325", size = 717071, upload-time = "2026-03-06T14:19:18.524Z" } @@ -1628,91 +1248,28 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, ] -[[package]] -name = "imagesize" -version = "1.5.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/cf/59/4b0dd64676aa6fb4986a755790cb6fc558559cf0084effad516820208ec3/imagesize-1.5.0.tar.gz", hash = "sha256:8bfc5363a7f2133a89f0098451e0bcb1cd71aba4dc02bbcecb39d99d40e1b94f", size = 1281127, upload-time = "2026-03-03T01:59:54.651Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/b1/a0662b03103c66cf77101a187f396ea91167cd9b7d5d3a2e465ad2c7ee9b/imagesize-1.5.0-py2.py3-none-any.whl", hash = "sha256:32677681b3f434c2cb496f00e89c5a291247b35b1f527589909e008057da5899", size = 5763, upload-time = "2026-03-03T01:59:52.343Z" }, -] - [[package]] name = "imagesize" version = "2.0.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/6c/e6/7bf14eeb8f8b7251141944835abd42eb20a658d89084b7e1f3e5fe394090/imagesize-2.0.0.tar.gz", hash = "sha256:8e8358c4a05c304f1fccf7ff96f036e7243a189e9e42e90851993c558cfe9ee3", size = 1773045, upload-time = "2026-03-03T14:18:29.941Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/5f/53/fb7122b71361a0d121b669dcf3d31244ef75badbbb724af388948de543e2/imagesize-2.0.0-py2.py3-none-any.whl", hash = "sha256:5667c5bbb57ab3f1fa4bc366f4fbc971db3d5ed011fd2715fd8001f782718d96", size = 9441, upload-time = "2026-03-03T14:18:27.892Z" }, ] -[[package]] -name = "importlib-metadata" -version = "8.7.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f3/49/3b30cad09e7771a4982d9975a8cbf64f00d4a1ececb53297f1d9a7be1b10/importlib_metadata-8.7.1.tar.gz", hash = "sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb", size = 57107, upload-time = "2025-12-21T10:00:19.278Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fa/5e/f8e9a1d23b9c20a551a8a02ea3637b4642e22c2626e3a13a9a29cdea99eb/importlib_metadata-8.7.1-py3-none-any.whl", hash = "sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151", size = 27865, upload-time = "2025-12-21T10:00:18.329Z" }, -] - [[package]] name = "importlib-resources" version = "6.5.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "zipp", marker = "python_full_version < '3.10'" }, -] sdist = { url = "https://files.pythonhosted.org/packages/cf/8c/f834fbf984f691b4f7ff60f50b514cc3de5cc08abfc3295564dd89c5e2e7/importlib_resources-6.5.2.tar.gz", hash = "sha256:185f87adef5bcc288449d98fb4fba07cea78bc036455dd44c5fc4a2fe78fed2c", size = 44693, upload-time = "2025-01-03T18:51:56.698Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461, upload-time = "2025-01-03T18:51:54.306Z" }, ] -[[package]] -name = "iniconfig" -version = "2.1.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, -] - [[package]] name = "iniconfig" version = "2.3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, @@ -1730,8 +1287,7 @@ dependencies = [ { name = "pyyaml" }, { name = "requests" }, { name = "snakenest" }, - { name = "urllib3", version = "1.26.20", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "urllib3", version = "2.6.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "urllib3" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/75/3a/eb66f5f40ffae49f0445e14f0aa94a541cdf91354686eefba86d9dcc973a/insulaworkflowclient-0.9.3-py3-none-any.whl", hash = "sha256:b7182c2f2a7ef1e11fa0f8edbff1de389438ba88b7d3369cfac82e300238c9c4", size = 30556, upload-time = "2025-12-17T14:41:43.024Z" }, @@ -1761,65 +1317,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/00/60/249e3444fcd9c833704741769981cd02fe2c7ce94126b1394e7a3b26e543/ipyfilechooser-0.6.0-py3-none-any.whl", hash = "sha256:4555c24b30b819c91dc0ae5e6f7e4cf8f90e5cca531a9209a1fe4deee288d5c5", size = 11039, upload-time = "2021-09-15T22:31:55.152Z" }, ] -[[package]] -name = "ipykernel" -version = "6.31.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "appnope", marker = "python_full_version < '3.10' and sys_platform == 'darwin'" }, - { name = "comm", marker = "python_full_version < '3.10'" }, - { name = "debugpy", marker = "python_full_version < '3.10'" }, - { name = "ipython", version = "8.18.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "jupyter-client", version = "8.6.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "jupyter-core", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "matplotlib-inline", marker = "python_full_version < '3.10'" }, - { name = "nest-asyncio", marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "psutil", marker = "python_full_version < '3.10'" }, - { name = "pyzmq", marker = "python_full_version < '3.10'" }, - { name = "tornado", marker = "python_full_version < '3.10'" }, - { name = "traitlets", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a5/1d/d5ba6edbfe6fae4c3105bca3a9c889563cc752c7f2de45e333164c7f4846/ipykernel-6.31.0.tar.gz", hash = "sha256:2372ce8bc1ff4f34e58cafed3a0feb2194b91fc7cad0fc72e79e47b45ee9e8f6", size = 167493, upload-time = "2025-10-20T11:42:39.948Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f6/d8/502954a4ec0efcf264f99b65b41c3c54e65a647d9f0d6f62cd02227d242c/ipykernel-6.31.0-py3-none-any.whl", hash = "sha256:abe5386f6ced727a70e0eb0cf1da801fa7c5fa6ff82147747d5a0406cd8c94af", size = 117003, upload-time = "2025-10-20T11:42:37.502Z" }, -] - [[package]] name = "ipykernel" version = "7.2.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "appnope", marker = "python_full_version >= '3.10' and sys_platform == 'darwin'" }, - { name = "comm", marker = "python_full_version >= '3.10'" }, - { name = "debugpy", marker = "python_full_version >= '3.10'" }, - { name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "appnope", marker = "sys_platform == 'darwin'" }, + { name = "comm" }, + { name = "debugpy" }, + { name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "ipython", version = "9.10.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, { name = "ipython", version = "9.11.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, - { name = "jupyter-client", version = "8.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "jupyter-core", version = "5.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "matplotlib-inline", marker = "python_full_version >= '3.10'" }, - { name = "nest-asyncio", marker = "python_full_version >= '3.10'" }, - { name = "packaging", marker = "python_full_version >= '3.10'" }, - { name = "psutil", marker = "python_full_version >= '3.10'" }, - { name = "pyzmq", marker = "python_full_version >= '3.10'" }, - { name = "tornado", marker = "python_full_version >= '3.10'" }, - { name = "traitlets", marker = "python_full_version >= '3.10'" }, + { name = "jupyter-client" }, + { name = "jupyter-core" }, + { name = "matplotlib-inline" }, + { name = "nest-asyncio" }, + { name = "packaging" }, + { name = "psutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ca/8d/b68b728e2d06b9e0051019640a40a9eb7a88fcd82c2e1b5ce70bef5ff044/ipykernel-7.2.0.tar.gz", hash = "sha256:18ed160b6dee2cbb16e5f3575858bc19d8f1fe6046a9a680c708494ce31d909e", size = 176046, upload-time = "2026-02-06T16:43:27.403Z" } wheels = [ @@ -1842,50 +1359,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/49/69/e9858f2c0b99bf9f036348d1c84b8026f438bb6875effe6a9bcd9883dada/ipyleaflet-0.20.0-py3-none-any.whl", hash = "sha256:b4c20ddc0b17d68e226cd3367ca2215a4db7e2b14374468c0eeaa54b53e4d173", size = 31578, upload-time = "2025-06-13T08:33:37.353Z" }, ] -[[package]] -name = "ipython" -version = "8.18.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "colorama", marker = "python_full_version < '3.10' and sys_platform == 'win32'" }, - { name = "decorator", marker = "python_full_version < '3.10'" }, - { name = "exceptiongroup", marker = "python_full_version < '3.10'" }, - { name = "jedi", marker = "python_full_version < '3.10'" }, - { name = "matplotlib-inline", marker = "python_full_version < '3.10'" }, - { name = "pexpect", marker = "python_full_version < '3.10' and sys_platform != 'win32'" }, - { name = "prompt-toolkit", marker = "python_full_version < '3.10'" }, - { name = "pygments", marker = "python_full_version < '3.10'" }, - { name = "stack-data", marker = "python_full_version < '3.10'" }, - { name = "traitlets", marker = "python_full_version < '3.10'" }, - { name = "typing-extensions", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/b9/3ba6c45a6df813c09a48bac313c22ff83efa26cbb55011218d925a46e2ad/ipython-8.18.1.tar.gz", hash = "sha256:ca6f079bb33457c66e233e4580ebfc4128855b4cf6370dddd73842a9563e8a27", size = 5486330, upload-time = "2023-11-27T09:58:34.596Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/47/6b/d9fdcdef2eb6a23f391251fde8781c38d42acd82abe84d054cb74f7863b0/ipython-8.18.1-py3-none-any.whl", hash = "sha256:e8267419d72d81955ec1177f8a29aaa90ac80ad647499201119e2f05e99aa397", size = 808161, upload-time = "2023-11-27T09:58:30.538Z" }, -] - [[package]] name = "ipython" version = "8.38.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "colorama", marker = "python_full_version == '3.10.*' and sys_platform == 'win32'" }, - { name = "decorator", marker = "python_full_version == '3.10.*'" }, - { name = "exceptiongroup", marker = "python_full_version == '3.10.*'" }, - { name = "jedi", marker = "python_full_version == '3.10.*'" }, - { name = "matplotlib-inline", marker = "python_full_version == '3.10.*'" }, - { name = "pexpect", marker = "python_full_version == '3.10.*' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, - { name = "prompt-toolkit", marker = "python_full_version == '3.10.*'" }, - { name = "pygments", marker = "python_full_version == '3.10.*'" }, - { name = "stack-data", marker = "python_full_version == '3.10.*'" }, - { name = "traitlets", marker = "python_full_version == '3.10.*'" }, - { name = "typing-extensions", marker = "python_full_version == '3.10.*'" }, + { name = "colorama", marker = "python_full_version < '3.11' and sys_platform == 'win32'" }, + { name = "decorator", marker = "python_full_version < '3.11'" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, + { name = "jedi", marker = "python_full_version < '3.11'" }, + { name = "matplotlib-inline", marker = "python_full_version < '3.11'" }, + { name = "pexpect", marker = "python_full_version < '3.11' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "prompt-toolkit", marker = "python_full_version < '3.11'" }, + { name = "pygments", marker = "python_full_version < '3.11'" }, + { name = "stack-data", marker = "python_full_version < '3.11'" }, + { name = "traitlets", marker = "python_full_version < '3.11'" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e5/61/1810830e8b93c72dcd3c0f150c80a00c3deb229562d9423807ec92c3a539/ipython-8.38.0.tar.gz", hash = "sha256:9cfea8c903ce0867cc2f23199ed8545eb741f3a69420bfcf3743ad1cec856d39", size = 5513996, upload-time = "2026-01-05T10:59:06.901Z" } wheels = [ @@ -1897,9 +1390,8 @@ name = "ipython" version = "9.10.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "colorama", marker = "python_full_version == '3.11.*' and sys_platform == 'win32'" }, @@ -1924,12 +1416,8 @@ name = "ipython" version = "9.11.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", ] dependencies = [ { name = "colorama", marker = "python_full_version >= '3.12' and sys_platform == 'win32'" }, @@ -2002,8 +1490,7 @@ version = "8.1.8" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "comm" }, - { name = "ipython", version = "8.18.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "ipython", version = "8.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "ipython", version = "9.10.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, { name = "ipython", version = "9.11.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, { name = "jupyterlab-widgets" }, @@ -2066,45 +1553,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, ] -[[package]] -name = "jsonschema" -version = "4.25.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "attrs", marker = "python_full_version < '3.10'" }, - { name = "jsonschema-specifications", marker = "python_full_version < '3.10'" }, - { name = "referencing", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rpds-py", version = "0.27.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/74/69/f7185de793a29082a9f3c7728268ffb31cb5095131a9c139a74078e27336/jsonschema-4.25.1.tar.gz", hash = "sha256:e4a9655ce0da0c0b67a085847e00a3a51449e1157f4f75e9fb5aa545e122eb85", size = 357342, upload-time = "2025-08-18T17:03:50.038Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bf/9c/8c95d856233c1f82500c2450b8c68576b4cf1c871db3afac5c34ff84e6fd/jsonschema-4.25.1-py3-none-any.whl", hash = "sha256:3fba0169e345c7175110351d456342c364814cfcf3b964ba4587f22915230a63", size = 90040, upload-time = "2025-08-18T17:03:48.373Z" }, -] - [[package]] name = "jsonschema" version = "4.26.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "attrs", marker = "python_full_version >= '3.10'" }, - { name = "jsonschema-specifications", marker = "python_full_version >= '3.10'" }, - { name = "referencing", version = "0.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "rpds-py", version = "0.30.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "attrs" }, + { name = "jsonschema-specifications" }, + { name = "referencing" }, + { name = "rpds-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b3/fc/e067678238fa451312d4c62bf6e6cf5ec56375422aee02f9cb5f909b3047/jsonschema-4.26.0.tar.gz", hash = "sha256:0c26707e2efad8aa1bfc5b7ce170f3fccc2e4918ff85989ba9ffa9facb2be326", size = 366583, upload-time = "2026-01-07T13:41:07.246Z" } wheels = [ @@ -2116,98 +1573,36 @@ name = "jsonschema-specifications" version = "2025.9.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "referencing", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "referencing", version = "0.37.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "referencing" }, ] sdist = { url = "https://files.pythonhosted.org/packages/19/74/a633ee74eb36c44aa6d1095e7cc5569bebf04342ee146178e2d36600708b/jsonschema_specifications-2025.9.1.tar.gz", hash = "sha256:b540987f239e745613c7a9176f3edb72b832a4ac465cf02712288397832b5e8d", size = 32855, upload-time = "2025-09-08T01:34:59.186Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/41/45/1a4ed80516f02155c51f51e8cedb3c1902296743db0bbc66608a0db2814f/jsonschema_specifications-2025.9.1-py3-none-any.whl", hash = "sha256:98802fee3a11ee76ecaca44429fda8a41bff98b00a0f2838151b113f210cc6fe", size = 18437, upload-time = "2025-09-08T01:34:57.871Z" }, ] -[[package]] -name = "jupyter-client" -version = "8.6.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, - { name = "jupyter-core", version = "5.8.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "python-dateutil", marker = "python_full_version < '3.10'" }, - { name = "pyzmq", marker = "python_full_version < '3.10'" }, - { name = "tornado", marker = "python_full_version < '3.10'" }, - { name = "traitlets", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/71/22/bf9f12fdaeae18019a468b68952a60fe6dbab5d67cd2a103cac7659b41ca/jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419", size = 342019, upload-time = "2024-09-17T10:44:17.613Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f", size = 106105, upload-time = "2024-09-17T10:44:15.218Z" }, -] - [[package]] name = "jupyter-client" version = "8.8.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "jupyter-core", version = "5.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, - { name = "pyzmq", marker = "python_full_version >= '3.10'" }, - { name = "tornado", marker = "python_full_version >= '3.10'" }, - { name = "traitlets", marker = "python_full_version >= '3.10'" }, + { name = "jupyter-core" }, + { name = "python-dateutil" }, + { name = "pyzmq" }, + { name = "tornado" }, + { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/05/e4/ba649102a3bc3fbca54e7239fb924fd434c766f855693d86de0b1f2bec81/jupyter_client-8.8.0.tar.gz", hash = "sha256:d556811419a4f2d96c869af34e854e3f059b7cc2d6d01a9cd9c85c267691be3e", size = 348020, upload-time = "2026-01-08T13:55:47.938Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/2d/0b/ceb7694d864abc0a047649aec263878acb9f792e1fec3e676f22dc9015e3/jupyter_client-8.8.0-py3-none-any.whl", hash = "sha256:f93a5b99c5e23a507b773d3a1136bd6e16c67883ccdbd9a829b0bbdb98cd7d7a", size = 107371, upload-time = "2026-01-08T13:55:45.562Z" }, ] -[[package]] -name = "jupyter-core" -version = "5.8.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "platformdirs", version = "4.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pywin32", marker = "python_full_version < '3.10' and platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, - { name = "traitlets", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/99/1b/72906d554acfeb588332eaaa6f61577705e9ec752ddb486f302dafa292d9/jupyter_core-5.8.1.tar.gz", hash = "sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941", size = 88923, upload-time = "2025-05-27T07:38:16.655Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2f/57/6bffd4b20b88da3800c5d691e0337761576ee688eb01299eae865689d2df/jupyter_core-5.8.1-py3-none-any.whl", hash = "sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0", size = 28880, upload-time = "2025-05-27T07:38:15.137Z" }, -] - [[package]] name = "jupyter-core" version = "5.9.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "platformdirs", version = "4.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "traitlets", marker = "python_full_version >= '3.10'" }, + { name = "platformdirs" }, + { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/02/49/9d1284d0dc65e2c757b74c6687b6d319b02f822ad039e5c512df9194d9dd/jupyter_core-5.9.1.tar.gz", hash = "sha256:4d09aaff303b9566c3ce657f580bd089ff5c91f5f89cf7d8846c3cdf465b5508", size = 89814, upload-time = "2025-10-16T19:19:18.444Z" } wheels = [ @@ -2232,125 +1627,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ab/b5/36c712098e6191d1b4e349304ef73a8d06aed77e56ceaac8c0a306c7bda1/jupyterlab_widgets-3.0.16-py3-none-any.whl", hash = "sha256:45fa36d9c6422cf2559198e4db481aa243c7a32d9926b500781c830c80f7ecf8", size = 914926, upload-time = "2025-11-01T21:11:28.008Z" }, ] -[[package]] -name = "kiwisolver" -version = "1.4.7" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286, upload-time = "2024-09-04T09:39:44.302Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440, upload-time = "2024-09-04T09:03:44.9Z" }, - { url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758, upload-time = "2024-09-04T09:03:46.582Z" }, - { url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311, upload-time = "2024-09-04T09:03:47.973Z" }, - { url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109, upload-time = "2024-09-04T09:03:49.281Z" }, - { url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814, upload-time = "2024-09-04T09:03:51.444Z" }, - { url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881, upload-time = "2024-09-04T09:03:53.357Z" }, - { url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972, upload-time = "2024-09-04T09:03:55.082Z" }, - { url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787, upload-time = "2024-09-04T09:03:56.588Z" }, - { url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212, upload-time = "2024-09-04T09:03:58.557Z" }, - { url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399, upload-time = "2024-09-04T09:04:00.178Z" }, - { url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688, upload-time = "2024-09-04T09:04:02.216Z" }, - { url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493, upload-time = "2024-09-04T09:04:04.571Z" }, - { url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191, upload-time = "2024-09-04T09:04:05.969Z" }, - { url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644, upload-time = "2024-09-04T09:04:07.408Z" }, - { url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877, upload-time = "2024-09-04T09:04:08.869Z" }, - { url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347, upload-time = "2024-09-04T09:04:10.106Z" }, - { url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442, upload-time = "2024-09-04T09:04:11.432Z" }, - { url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762, upload-time = "2024-09-04T09:04:12.468Z" }, - { url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319, upload-time = "2024-09-04T09:04:13.635Z" }, - { url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260, upload-time = "2024-09-04T09:04:14.878Z" }, - { url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589, upload-time = "2024-09-04T09:04:16.514Z" }, - { url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080, upload-time = "2024-09-04T09:04:18.322Z" }, - { url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049, upload-time = "2024-09-04T09:04:20.266Z" }, - { url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376, upload-time = "2024-09-04T09:04:22.419Z" }, - { url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231, upload-time = "2024-09-04T09:04:24.526Z" }, - { url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634, upload-time = "2024-09-04T09:04:25.899Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024, upload-time = "2024-09-04T09:04:28.523Z" }, - { url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484, upload-time = "2024-09-04T09:04:30.547Z" }, - { url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078, upload-time = "2024-09-04T09:04:33.218Z" }, - { url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645, upload-time = "2024-09-04T09:04:34.371Z" }, - { url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022, upload-time = "2024-09-04T09:04:35.786Z" }, - { url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536, upload-time = "2024-09-04T09:04:37.525Z" }, - { url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808, upload-time = "2024-09-04T09:04:38.637Z" }, - { url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531, upload-time = "2024-09-04T09:04:39.694Z" }, - { url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894, upload-time = "2024-09-04T09:04:41.6Z" }, - { url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296, upload-time = "2024-09-04T09:04:42.886Z" }, - { url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450, upload-time = "2024-09-04T09:04:46.284Z" }, - { url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168, upload-time = "2024-09-04T09:04:47.91Z" }, - { url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308, upload-time = "2024-09-04T09:04:49.465Z" }, - { url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186, upload-time = "2024-09-04T09:04:50.949Z" }, - { url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877, upload-time = "2024-09-04T09:04:52.388Z" }, - { url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204, upload-time = "2024-09-04T09:04:54.385Z" }, - { url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461, upload-time = "2024-09-04T09:04:56.307Z" }, - { url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358, upload-time = "2024-09-04T09:04:57.922Z" }, - { url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119, upload-time = "2024-09-04T09:04:59.332Z" }, - { url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367, upload-time = "2024-09-04T09:05:00.804Z" }, - { url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884, upload-time = "2024-09-04T09:05:01.924Z" }, - { url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528, upload-time = "2024-09-04T09:05:02.983Z" }, - { url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913, upload-time = "2024-09-04T09:05:04.072Z" }, - { url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627, upload-time = "2024-09-04T09:05:05.119Z" }, - { url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888, upload-time = "2024-09-04T09:05:06.191Z" }, - { url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145, upload-time = "2024-09-04T09:05:07.919Z" }, - { url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448, upload-time = "2024-09-04T09:05:10.01Z" }, - { url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750, upload-time = "2024-09-04T09:05:11.598Z" }, - { url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175, upload-time = "2024-09-04T09:05:13.22Z" }, - { url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963, upload-time = "2024-09-04T09:05:15.925Z" }, - { url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220, upload-time = "2024-09-04T09:05:17.434Z" }, - { url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463, upload-time = "2024-09-04T09:05:18.997Z" }, - { url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842, upload-time = "2024-09-04T09:05:21.299Z" }, - { url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635, upload-time = "2024-09-04T09:05:23.588Z" }, - { url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556, upload-time = "2024-09-04T09:05:25.907Z" }, - { url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364, upload-time = "2024-09-04T09:05:27.184Z" }, - { url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887, upload-time = "2024-09-04T09:05:28.372Z" }, - { url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530, upload-time = "2024-09-04T09:05:30.225Z" }, - { url = "https://files.pythonhosted.org/packages/11/88/37ea0ea64512997b13d69772db8dcdc3bfca5442cda3a5e4bb943652ee3e/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f9362ecfca44c863569d3d3c033dbe8ba452ff8eed6f6b5806382741a1334bd", size = 122449, upload-time = "2024-09-04T09:05:55.311Z" }, - { url = "https://files.pythonhosted.org/packages/4e/45/5a5c46078362cb3882dcacad687c503089263c017ca1241e0483857791eb/kiwisolver-1.4.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8df2eb9b2bac43ef8b082e06f750350fbbaf2887534a5be97f6cf07b19d9583", size = 65757, upload-time = "2024-09-04T09:05:56.906Z" }, - { url = "https://files.pythonhosted.org/packages/8a/be/a6ae58978772f685d48dd2e84460937761c53c4bbd84e42b0336473d9775/kiwisolver-1.4.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f32d6edbc638cde7652bd690c3e728b25332acbadd7cad670cc4a02558d9c417", size = 64312, upload-time = "2024-09-04T09:05:58.384Z" }, - { url = "https://files.pythonhosted.org/packages/f4/04/18ef6f452d311e1e1eb180c9bf5589187fa1f042db877e6fe443ef10099c/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e2e6c39bd7b9372b0be21456caab138e8e69cc0fc1190a9dfa92bd45a1e6e904", size = 1626966, upload-time = "2024-09-04T09:05:59.855Z" }, - { url = "https://files.pythonhosted.org/packages/21/b1/40655f6c3fa11ce740e8a964fa8e4c0479c87d6a7944b95af799c7a55dfe/kiwisolver-1.4.7-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dda56c24d869b1193fcc763f1284b9126550eaf84b88bbc7256e15028f19188a", size = 1607044, upload-time = "2024-09-04T09:06:02.16Z" }, - { url = "https://files.pythonhosted.org/packages/fd/93/af67dbcfb9b3323bbd2c2db1385a7139d8f77630e4a37bb945b57188eb2d/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79849239c39b5e1fd906556c474d9b0439ea6792b637511f3fe3a41158d89ca8", size = 1391879, upload-time = "2024-09-04T09:06:03.908Z" }, - { url = "https://files.pythonhosted.org/packages/40/6f/d60770ef98e77b365d96061d090c0cd9e23418121c55fff188fa4bdf0b54/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5e3bc157fed2a4c02ec468de4ecd12a6e22818d4f09cde2c31ee3226ffbefab2", size = 1504751, upload-time = "2024-09-04T09:06:05.58Z" }, - { url = "https://files.pythonhosted.org/packages/fa/3a/5f38667d313e983c432f3fcd86932177519ed8790c724e07d77d1de0188a/kiwisolver-1.4.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3da53da805b71e41053dc670f9a820d1157aae77b6b944e08024d17bcd51ef88", size = 1436990, upload-time = "2024-09-04T09:06:08.126Z" }, - { url = "https://files.pythonhosted.org/packages/cb/3b/1520301a47326e6a6043b502647e42892be33b3f051e9791cc8bb43f1a32/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8705f17dfeb43139a692298cb6637ee2e59c0194538153e83e9ee0c75c2eddde", size = 2191122, upload-time = "2024-09-04T09:06:10.345Z" }, - { url = "https://files.pythonhosted.org/packages/cf/c4/eb52da300c166239a2233f1f9c4a1b767dfab98fae27681bfb7ea4873cb6/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:82a5c2f4b87c26bb1a0ef3d16b5c4753434633b83d365cc0ddf2770c93829e3c", size = 2338126, upload-time = "2024-09-04T09:06:12.321Z" }, - { url = "https://files.pythonhosted.org/packages/1a/cb/42b92fd5eadd708dd9107c089e817945500685f3437ce1fd387efebc6d6e/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ce8be0466f4c0d585cdb6c1e2ed07232221df101a4c6f28821d2aa754ca2d9e2", size = 2298313, upload-time = "2024-09-04T09:06:14.562Z" }, - { url = "https://files.pythonhosted.org/packages/4f/eb/be25aa791fe5fc75a8b1e0c965e00f942496bc04635c9aae8035f6b76dcd/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:409afdfe1e2e90e6ee7fc896f3df9a7fec8e793e58bfa0d052c8a82f99c37abb", size = 2437784, upload-time = "2024-09-04T09:06:16.767Z" }, - { url = "https://files.pythonhosted.org/packages/c5/22/30a66be7f3368d76ff95689e1c2e28d382383952964ab15330a15d8bfd03/kiwisolver-1.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5b9c3f4ee0b9a439d2415012bd1b1cc2df59e4d6a9939f4d669241d30b414327", size = 2253988, upload-time = "2024-09-04T09:06:18.705Z" }, - { url = "https://files.pythonhosted.org/packages/35/d3/5f2ecb94b5211c8a04f218a76133cc8d6d153b0f9cd0b45fad79907f0689/kiwisolver-1.4.7-cp39-cp39-win32.whl", hash = "sha256:a79ae34384df2b615eefca647a2873842ac3b596418032bef9a7283675962644", size = 46980, upload-time = "2024-09-04T09:06:20.106Z" }, - { url = "https://files.pythonhosted.org/packages/ef/17/cd10d020578764ea91740204edc6b3236ed8106228a46f568d716b11feb2/kiwisolver-1.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:cf0438b42121a66a3a667de17e779330fc0f20b0d97d59d2f2121e182b0505e4", size = 55847, upload-time = "2024-09-04T09:06:21.407Z" }, - { url = "https://files.pythonhosted.org/packages/91/84/32232502020bd78d1d12be7afde15811c64a95ed1f606c10456db4e4c3ac/kiwisolver-1.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:764202cc7e70f767dab49e8df52c7455e8de0df5d858fa801a11aa0d882ccf3f", size = 48494, upload-time = "2024-09-04T09:06:22.648Z" }, - { url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491, upload-time = "2024-09-04T09:06:24.188Z" }, - { url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648, upload-time = "2024-09-04T09:06:25.559Z" }, - { url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257, upload-time = "2024-09-04T09:06:27.038Z" }, - { url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906, upload-time = "2024-09-04T09:06:28.48Z" }, - { url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951, upload-time = "2024-09-04T09:06:29.966Z" }, - { url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715, upload-time = "2024-09-04T09:06:31.489Z" }, - { url = "https://files.pythonhosted.org/packages/d5/df/ce37d9b26f07ab90880923c94d12a6ff4d27447096b4c849bfc4339ccfdf/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:8b01aac285f91ca889c800042c35ad3b239e704b150cfd3382adfc9dcc780e39", size = 58666, upload-time = "2024-09-04T09:06:43.756Z" }, - { url = "https://files.pythonhosted.org/packages/b0/d3/e4b04f43bc629ac8e186b77b2b1a251cdfa5b7610fa189dc0db622672ce6/kiwisolver-1.4.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:48be928f59a1f5c8207154f935334d374e79f2b5d212826307d072595ad76a2e", size = 57088, upload-time = "2024-09-04T09:06:45.406Z" }, - { url = "https://files.pythonhosted.org/packages/30/1c/752df58e2d339e670a535514d2db4fe8c842ce459776b8080fbe08ebb98e/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f37cfe618a117e50d8c240555331160d73d0411422b59b5ee217843d7b693608", size = 84321, upload-time = "2024-09-04T09:06:47.557Z" }, - { url = "https://files.pythonhosted.org/packages/f0/f8/fe6484e847bc6e238ec9f9828089fb2c0bb53f2f5f3a79351fde5b565e4f/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:599b5c873c63a1f6ed7eead644a8a380cfbdf5db91dcb6f85707aaab213b1674", size = 80776, upload-time = "2024-09-04T09:06:49.235Z" }, - { url = "https://files.pythonhosted.org/packages/9b/57/d7163c0379f250ef763aba85330a19feefb5ce6cb541ade853aaba881524/kiwisolver-1.4.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:801fa7802e5cfabe3ab0c81a34c323a319b097dfb5004be950482d882f3d7225", size = 79984, upload-time = "2024-09-04T09:06:51.336Z" }, - { url = "https://files.pythonhosted.org/packages/8c/95/4a103776c265d13b3d2cd24fb0494d4e04ea435a8ef97e1b2c026d43250b/kiwisolver-1.4.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0c6c43471bc764fad4bc99c5c2d6d16a676b1abf844ca7c8702bdae92df01ee0", size = 55811, upload-time = "2024-09-04T09:06:53.078Z" }, -] - [[package]] name = "kiwisolver" version = "1.5.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/ac/f8/06549565caa026e540b7e7bab5c5a90eb7ca986015f4c48dace243cd24d9/kiwisolver-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:32cc0a5365239a6ea0c6ed461e8838d053b57e397443c0ca894dcc8e388d4374", size = 122802, upload-time = "2026-03-09T13:12:37.515Z" }, @@ -2478,28 +1758,23 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anywidget" }, { name = "bqplot" }, - { name = "duckdb", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "duckdb", version = "1.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "duckdb" }, { name = "folium" }, { name = "gdown" }, { name = "geojson" }, - { name = "geopandas", version = "1.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "geopandas", version = "1.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "geopandas" }, { name = "ipyevents" }, { name = "ipyfilechooser" }, { name = "ipyleaflet" }, { name = "ipyvuetify" }, { name = "ipywidgets" }, { name = "maplibre" }, - { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "matplotlib", version = "3.10.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "matplotlib" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "pandas" }, { name = "plotly" }, - { name = "pystac-client", version = "0.8.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pystac-client", version = "0.9.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "pystac-client" }, { name = "python-box" }, { name = "scooby" }, { name = "whiteboxgui" }, @@ -2514,79 +1789,38 @@ wheels = [ maplibre = [ { name = "anywidget" }, { name = "fiona" }, - { name = "geopandas", version = "1.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "geopandas", version = "1.1.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "geopandas" }, { name = "h3" }, { name = "ipyvuetify" }, - { name = "localtileserver", version = "0.10.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "localtileserver", version = "0.11.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "localtileserver" }, { name = "mapclassify", version = "2.8.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "mapclassify", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "maplibre" }, { name = "pmtiles" }, - { name = "rioxarray", version = "0.15.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rioxarray", version = "0.19.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, + { name = "rioxarray", version = "0.19.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, { name = "rioxarray", version = "0.22.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, - { name = "xarray", version = "2024.7.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "xarray", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] -[[package]] -name = "localtileserver" -version = "0.10.6" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "flask", marker = "python_full_version < '3.10'" }, - { name = "flask-caching", marker = "python_full_version < '3.10'" }, - { name = "flask-cors", marker = "python_full_version < '3.10'" }, - { name = "flask-restx", marker = "python_full_version < '3.10'" }, - { name = "requests", marker = "python_full_version < '3.10'" }, - { name = "rio-cogeo", version = "5.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rio-tiler", version = "7.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "scooby", marker = "python_full_version < '3.10'" }, - { name = "server-thread", marker = "python_full_version < '3.10'" }, - { name = "werkzeug", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c8/f1/c5d6c8ff435ae25bd4871058496ed458bf83bb10d4d590e6ac0582d7e272/localtileserver-0.10.6.tar.gz", hash = "sha256:7dbbd4d54e2bc9ec0f218e6891721dd6ef34da6557ee43d613bc8003967ac585", size = 17095893, upload-time = "2025-01-18T00:57:01.268Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e1/76/09a8df7973821af8e0b4708f442b746e29d19fbcc60f42c34fb437c9d3cb/localtileserver-0.10.6-py3-none-any.whl", hash = "sha256:b634c957b8c4c50aadecb465447c8fb1776a70251e85506b5b5e0fed23b2e0b8", size = 17103532, upload-time = "2025-01-18T00:56:56.244Z" }, -] - [[package]] name = "localtileserver" version = "0.11.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "flask", marker = "python_full_version >= '3.10'" }, - { name = "flask-caching", marker = "python_full_version >= '3.10'" }, - { name = "flask-cors", marker = "python_full_version >= '3.10'" }, - { name = "flask-restx", marker = "python_full_version >= '3.10'" }, - { name = "requests", marker = "python_full_version >= '3.10'" }, - { name = "rio-cogeo", version = "6.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "click" }, + { name = "flask" }, + { name = "flask-caching" }, + { name = "flask-cors" }, + { name = "flask-restx" }, + { name = "requests" }, + { name = "rio-cogeo", version = "6.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "rio-cogeo", version = "7.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "rio-tiler", version = "7.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "rio-tiler", version = "7.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "rio-tiler", version = "9.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "scooby", marker = "python_full_version >= '3.10'" }, - { name = "server-thread", marker = "python_full_version >= '3.10'" }, - { name = "werkzeug", marker = "python_full_version >= '3.10'" }, + { name = "scooby" }, + { name = "server-thread" }, + { name = "werkzeug" }, ] sdist = { url = "https://files.pythonhosted.org/packages/07/a5/a00d46fb78e8a16562dbbe7ece8811102511c09660bf9b3e24f388adcf0a/localtileserver-0.11.0.tar.gz", hash = "sha256:3af91f295c93523e0c78d718c2167b65add436782fada38b7207fca524e806b2", size = 30882, upload-time = "2026-02-19T19:57:38.84Z" } wheels = [ @@ -2703,22 +1937,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c2/ca/77123e4d77df3cb1e968ade7b1f808f5d3a5c1c96b18a33895397de292c1/lxml-6.1.0-cp314-cp314t-win32.whl", hash = "sha256:00750d63ef0031a05331b9223463b1c7c02b9004cef2346a5b2877f0f9494dd2", size = 3897377, upload-time = "2026-04-18T04:32:07.656Z" }, { url = "https://files.pythonhosted.org/packages/64/ce/3554833989d074267c063209bae8b09815e5656456a2d332b947806b05ff/lxml-6.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:80410c3a7e3c617af04de17caa9f9f20adaa817093293d69eae7d7d0522836f5", size = 4392701, upload-time = "2026-04-18T04:32:12.113Z" }, { url = "https://files.pythonhosted.org/packages/2b/a0/9b916c68c0e57752c07f8f64b30138d9d4059dbeb27b90274dedbea128ff/lxml-6.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:26dd9f57ee3bd41e7d35b4c98a2ffd89ed11591649f421f0ec19f67d50ec67ac", size = 3817120, upload-time = "2026-04-18T04:32:15.803Z" }, - { url = "https://files.pythonhosted.org/packages/4e/e5/ce4f6c3fd846b6e84fd26e4451e0dd71ed41c11c06f933bc5e14209b8424/lxml-6.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:920354904d1cb86577d4b3cfe2830c2dbe81d6f4449e57ada428f1609b5985f7", size = 8553758, upload-time = "2026-04-18T04:32:27.055Z" }, - { url = "https://files.pythonhosted.org/packages/2a/c3/2dc396e40e6df8fa4f9aed713bd24d3ded0d2c59f6c526f374a4f20e2711/lxml-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c871299c595ee004d186f61840f0bfc4941aa3f17c8ba4a565ead7e4f4f820ee", size = 4607719, upload-time = "2026-04-18T04:32:30.824Z" }, - { url = "https://files.pythonhosted.org/packages/89/cf/b9d36b388e3bffdae6d1c987e91ad08dae487bc1a45f499343d081b8b18e/lxml-6.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d0d799ff958655781296ec870d5e2448e75150da2b3d07f13ff5b0c2c35beefd", size = 5006003, upload-time = "2026-04-18T04:35:32.715Z" }, - { url = "https://files.pythonhosted.org/packages/63/d9/28589f385b6028f1700a5d88444a3278b1b2e81425b71f44fb234082135d/lxml-6.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7ba11752e346bd804ea312ec2eea2532dfa8b8d3261d81a32ef9e6ab16256280", size = 5159902, upload-time = "2026-04-18T04:35:35.444Z" }, - { url = "https://files.pythonhosted.org/packages/57/fc/4d1ecc9f767fce8eec8e36b42c2b046e2076d71cb3f27363920c2c2a3412/lxml-6.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:26c5272c6a4bf4cf32d3f5a7890c942b0e04438691157d341616d02cca74d4bd", size = 5062833, upload-time = "2026-04-18T04:35:38.185Z" }, - { url = "https://files.pythonhosted.org/packages/ee/85/4f183628e66b04390a78db807c79b2956a995f7fed5061fd73a54b9f8b7b/lxml-6.1.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c53fa3a5a52122d590e847a57ccf955557b9634a7f99ff5a35131321b0a85317", size = 5292986, upload-time = "2026-04-18T04:35:41.477Z" }, - { url = "https://files.pythonhosted.org/packages/c2/53/82043639bd363b82b0b480b5ec1f596ec09be6bf65358f0c44ea05e113c3/lxml-6.1.0-cp39-cp39-manylinux_2_28_i686.whl", hash = "sha256:76b958b4ea3104483c20f74866d55aa056546e15ebe83dd7aecd63698f43b755", size = 5416696, upload-time = "2026-04-18T04:35:44.358Z" }, - { url = "https://files.pythonhosted.org/packages/e6/84/12769cfd85fa18595d22ad6f4ea0ec548e3ba78c3111738fa5d1389321d6/lxml-6.1.0-cp39-cp39-manylinux_2_31_armv7l.whl", hash = "sha256:8c11b984b5ce6add4dccc7144c7be5d364d298f15b0c6a57da1991baedc750ce", size = 4773350, upload-time = "2026-04-18T04:35:47.407Z" }, - { url = "https://files.pythonhosted.org/packages/2c/7e/c8ca946407eb1dfc934681f8adfc7903d3541328d03cb372d4df323b0b58/lxml-6.1.0-cp39-cp39-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d3829a6e6fd550a219564912d4002c537f65da4c6ae4e093cc34462f4fa027ad", size = 5361754, upload-time = "2026-04-18T04:35:49.93Z" }, - { url = "https://files.pythonhosted.org/packages/f8/c3/a1eec3a444d1d6004e2eaf299eeaf43974f7cd9b602d191974dc0ef6dd2e/lxml-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:52b0ac6903cf74ebf997eb8c682d2fbac7d1ab7e4c552413eec55868a9b73f39", size = 5111074, upload-time = "2026-04-18T04:35:52.469Z" }, - { url = "https://files.pythonhosted.org/packages/d1/64/8e5b591750799f9e1ae7f72c1fd74c0489d503a255329462a27921e41ccf/lxml-6.1.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:29f5c00cb7d752bce2c70ebd2d31b0a42f9499ffdd3ecb2f31a5b73ee43031ad", size = 4808151, upload-time = "2026-04-18T04:35:55.176Z" }, - { url = "https://files.pythonhosted.org/packages/4d/f0/25dbf84ed5a83d7f3e8bbed7f7ec354e0bda198d4f360dbe67996d6b83fc/lxml-6.1.0-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:c748ebcb6877de89f48ab90ca96642ac458fff5dec291a2b9337cd4d0934e383", size = 5352754, upload-time = "2026-04-18T04:35:57.928Z" }, - { url = "https://files.pythonhosted.org/packages/c2/8b/98a6fd25ffd71ee32000ef402717937514e6a53ea3cd155437d9f1b7efd0/lxml-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:08950a23f296b3f83521577274e3d3b0f3d739bf2e68d01a752e4288bc50d286", size = 5315169, upload-time = "2026-04-18T04:36:00.947Z" }, - { url = "https://files.pythonhosted.org/packages/64/76/f2e129250eb2d79155630c78bfd17a12b8ae4907cba70ef7defb7e46159a/lxml-6.1.0-cp39-cp39-win32.whl", hash = "sha256:11a873c77a181b4fef9c2e357d08ed399542c2af1390101da66720a19c7c9618", size = 3601056, upload-time = "2026-04-18T04:32:40.29Z" }, - { url = "https://files.pythonhosted.org/packages/e8/9f/c2d0bf629547f17e3a3e568d4ee7b42a5ecfbf03e145903c0636ef04ef82/lxml-6.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:81ff55c70b67d19d52b6fd118a114c0a4c97d799cd3089ff9bd9e2ff4b414ee2", size = 4024263, upload-time = "2026-04-18T04:32:42.88Z" }, - { url = "https://files.pythonhosted.org/packages/a1/93/5176afacf2b687efe96fb6933c23685b650df4018a4de43ea0da23e38860/lxml-6.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:481d6e2104285d9add34f41b42b247b76b61c5b5c26c303c2e9707bbf8bd9a64", size = 3670698, upload-time = "2026-04-18T04:32:45.602Z" }, { url = "https://files.pythonhosted.org/packages/f2/88/55143966481409b1740a3ac669e611055f49efd68087a5ce41582325db3e/lxml-6.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:546b66c0dd1bb8d9fa89d7123e5fa19a8aff3a1f2141eb22df96112afb17b842", size = 3930134, upload-time = "2026-04-18T04:32:35.008Z" }, { url = "https://files.pythonhosted.org/packages/b5/97/28b985c2983938d3cb696dd5501423afb90a8c3e869ef5d3c62569282c0f/lxml-6.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5cfa1a34df366d9dc0d5eaf420f4cf2bb1e1bebe1066d1c2fc28c179f8a4004c", size = 4210749, upload-time = "2026-04-18T04:36:03.626Z" }, { url = "https://files.pythonhosted.org/packages/29/67/dfab2b7d58214921935ccea7ce9b3df9b7d46f305d12f0f532ac7cf6b804/lxml-6.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:db88156fcf544cdbf0d95588051515cfdfd4c876fc66444eb98bceb5d6db76de", size = 4318463, upload-time = "2026-04-18T04:36:06.309Z" }, @@ -2732,19 +1950,15 @@ name = "mapclassify" version = "2.8.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", - "python_full_version < '3.10'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "networkx", version = "3.2.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "pandas", marker = "python_full_version < '3.11'" }, - { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "scikit-learn", version = "1.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/cc/b5/3d2baa210db885885f54667cbb90ead5a7e68e74a67519bf1ac32eb1be29/mapclassify-2.8.1.tar.gz", hash = "sha256:306f4cb99ad1ea166b3efd7180c0a199d240bd801de7937327973d829673bc82", size = 4608933, upload-time = "2024-09-24T04:20:02.501Z" } wheels = [ @@ -2756,15 +1970,10 @@ name = "mapclassify" version = "2.10.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, @@ -2888,110 +2097,24 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" }, { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" }, { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" }, - { url = "https://files.pythonhosted.org/packages/56/23/0d8c13a44bde9154821586520840643467aee574d8ce79a17da539ee7fed/markupsafe-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15d939a21d546304880945ca1ecb8a039db6b4dc49b2c5a400387cdae6a62e26", size = 11623, upload-time = "2025-09-27T18:37:29.296Z" }, - { url = "https://files.pythonhosted.org/packages/fd/23/07a2cb9a8045d5f3f0890a8c3bc0859d7a47bfd9a560b563899bec7b72ed/markupsafe-3.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f71a396b3bf33ecaa1626c255855702aca4d3d9fea5e051b41ac59a9c1c41edc", size = 12049, upload-time = "2025-09-27T18:37:30.234Z" }, - { url = "https://files.pythonhosted.org/packages/bc/e4/6be85eb81503f8e11b61c0b6369b6e077dcf0a74adbd9ebf6b349937b4e9/markupsafe-3.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0f4b68347f8c5eab4a13419215bdfd7f8c9b19f2b25520968adfad23eb0ce60c", size = 21923, upload-time = "2025-09-27T18:37:31.177Z" }, - { url = "https://files.pythonhosted.org/packages/6f/bc/4dc914ead3fe6ddaef035341fee0fc956949bbd27335b611829292b89ee2/markupsafe-3.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8fc20152abba6b83724d7ff268c249fa196d8259ff481f3b1476383f8f24e42", size = 20543, upload-time = "2025-09-27T18:37:32.168Z" }, - { url = "https://files.pythonhosted.org/packages/89/6e/5fe81fbcfba4aef4093d5f856e5c774ec2057946052d18d168219b7bd9f9/markupsafe-3.0.3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:949b8d66bc381ee8b007cd945914c721d9aba8e27f71959d750a46f7c282b20b", size = 20585, upload-time = "2025-09-27T18:37:33.166Z" }, - { url = "https://files.pythonhosted.org/packages/f6/f6/e0e5a3d3ae9c4020f696cd055f940ef86b64fe88de26f3a0308b9d3d048c/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:3537e01efc9d4dccdf77221fb1cb3b8e1a38d5428920e0657ce299b20324d758", size = 21387, upload-time = "2025-09-27T18:37:34.185Z" }, - { url = "https://files.pythonhosted.org/packages/c8/25/651753ef4dea08ea790f4fbb65146a9a44a014986996ca40102e237aa49a/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:591ae9f2a647529ca990bc681daebdd52c8791ff06c2bfa05b65163e28102ef2", size = 20133, upload-time = "2025-09-27T18:37:35.138Z" }, - { url = "https://files.pythonhosted.org/packages/dc/0a/c3cf2b4fef5f0426e8a6d7fce3cb966a17817c568ce59d76b92a233fdbec/markupsafe-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a320721ab5a1aba0a233739394eb907f8c8da5c98c9181d1161e77a0c8e36f2d", size = 20588, upload-time = "2025-09-27T18:37:36.096Z" }, - { url = "https://files.pythonhosted.org/packages/cd/1b/a7782984844bd519ad4ffdbebbba2671ec5d0ebbeac34736c15fb86399e8/markupsafe-3.0.3-cp39-cp39-win32.whl", hash = "sha256:df2449253ef108a379b8b5d6b43f4b1a8e81a061d6537becd5582fba5f9196d7", size = 14566, upload-time = "2025-09-27T18:37:37.09Z" }, - { url = "https://files.pythonhosted.org/packages/18/1f/8d9c20e1c9440e215a44be5ab64359e207fcb4f675543f1cf9a2a7f648d0/markupsafe-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:7c3fb7d25180895632e5d3148dbdc29ea38ccb7fd210aa27acbd1201a1902c6e", size = 15053, upload-time = "2025-09-27T18:37:38.054Z" }, - { url = "https://files.pythonhosted.org/packages/4e/d3/fe08482b5cd995033556d45041a4f4e76e7f0521112a9c9991d40d39825f/markupsafe-3.0.3-cp39-cp39-win_arm64.whl", hash = "sha256:38664109c14ffc9e7437e86b4dceb442b0096dfe3541d7864d9cbe1da4cf36c8", size = 13928, upload-time = "2025-09-27T18:37:39.037Z" }, -] - -[[package]] -name = "matplotlib" -version = "3.9.4" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "contourpy", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "cycler", marker = "python_full_version < '3.10'" }, - { name = "fonttools", version = "4.60.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "importlib-resources", marker = "python_full_version < '3.10'" }, - { name = "kiwisolver", version = "1.4.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pillow", version = "11.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pyparsing", marker = "python_full_version < '3.10'" }, - { name = "python-dateutil", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/df/17/1747b4154034befd0ed33b52538f5eb7752d05bb51c5e2a31470c3bc7d52/matplotlib-3.9.4.tar.gz", hash = "sha256:1e00e8be7393cbdc6fedfa8a6fba02cf3e83814b285db1c60b906a023ba41bc3", size = 36106529, upload-time = "2024-12-13T05:56:34.184Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/94/27d2e2c30d54b56c7b764acc1874a909e34d1965a427fc7092bb6a588b63/matplotlib-3.9.4-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c5fdd7abfb706dfa8d307af64a87f1a862879ec3cd8d0ec8637458f0885b9c50", size = 7885089, upload-time = "2024-12-13T05:54:24.224Z" }, - { url = "https://files.pythonhosted.org/packages/c6/25/828273307e40a68eb8e9df832b6b2aaad075864fdc1de4b1b81e40b09e48/matplotlib-3.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d89bc4e85e40a71d1477780366c27fb7c6494d293e1617788986f74e2a03d7ff", size = 7770600, upload-time = "2024-12-13T05:54:27.214Z" }, - { url = "https://files.pythonhosted.org/packages/f2/65/f841a422ec994da5123368d76b126acf4fc02ea7459b6e37c4891b555b83/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ddf9f3c26aae695c5daafbf6b94e4c1a30d6cd617ba594bbbded3b33a1fcfa26", size = 8200138, upload-time = "2024-12-13T05:54:29.497Z" }, - { url = "https://files.pythonhosted.org/packages/07/06/272aca07a38804d93b6050813de41ca7ab0e29ba7a9dd098e12037c919a9/matplotlib-3.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18ebcf248030173b59a868fda1fe42397253f6698995b55e81e1f57431d85e50", size = 8312711, upload-time = "2024-12-13T05:54:34.396Z" }, - { url = "https://files.pythonhosted.org/packages/98/37/f13e23b233c526b7e27ad61be0a771894a079e0f7494a10d8d81557e0e9a/matplotlib-3.9.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974896ec43c672ec23f3f8c648981e8bc880ee163146e0312a9b8def2fac66f5", size = 9090622, upload-time = "2024-12-13T05:54:36.808Z" }, - { url = "https://files.pythonhosted.org/packages/4f/8c/b1f5bd2bd70e60f93b1b54c4d5ba7a992312021d0ddddf572f9a1a6d9348/matplotlib-3.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:4598c394ae9711cec135639374e70871fa36b56afae17bdf032a345be552a88d", size = 7828211, upload-time = "2024-12-13T05:54:40.596Z" }, - { url = "https://files.pythonhosted.org/packages/74/4b/65be7959a8fa118a3929b49a842de5b78bb55475236fcf64f3e308ff74a0/matplotlib-3.9.4-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d4dd29641d9fb8bc4492420c5480398dd40a09afd73aebe4eb9d0071a05fbe0c", size = 7894430, upload-time = "2024-12-13T05:54:44.049Z" }, - { url = "https://files.pythonhosted.org/packages/e9/18/80f70d91896e0a517b4a051c3fd540daa131630fd75e02e250365353b253/matplotlib-3.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30e5b22e8bcfb95442bf7d48b0d7f3bdf4a450cbf68986ea45fca3d11ae9d099", size = 7780045, upload-time = "2024-12-13T05:54:46.414Z" }, - { url = "https://files.pythonhosted.org/packages/a2/73/ccb381026e3238c5c25c3609ba4157b2d1a617ec98d65a8b4ee4e1e74d02/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bb0030d1d447fd56dcc23b4c64a26e44e898f0416276cac1ebc25522e0ac249", size = 8209906, upload-time = "2024-12-13T05:54:49.459Z" }, - { url = "https://files.pythonhosted.org/packages/ab/33/1648da77b74741c89f5ea95cbf42a291b4b364f2660b316318811404ed97/matplotlib-3.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aca90ed222ac3565d2752b83dbb27627480d27662671e4d39da72e97f657a423", size = 8322873, upload-time = "2024-12-13T05:54:53.066Z" }, - { url = "https://files.pythonhosted.org/packages/57/d3/8447ba78bc6593c9044c372d1609f8ea10fb1e071e7a9e0747bea74fc16c/matplotlib-3.9.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a181b2aa2906c608fcae72f977a4a2d76e385578939891b91c2550c39ecf361e", size = 9099566, upload-time = "2024-12-13T05:54:55.522Z" }, - { url = "https://files.pythonhosted.org/packages/23/e1/4f0e237bf349c02ff9d1b6e7109f1a17f745263809b9714a8576dc17752b/matplotlib-3.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:1f6882828231eca17f501c4dcd98a05abb3f03d157fbc0769c6911fe08b6cfd3", size = 7838065, upload-time = "2024-12-13T05:54:58.337Z" }, - { url = "https://files.pythonhosted.org/packages/1a/2b/c918bf6c19d6445d1cefe3d2e42cb740fb997e14ab19d4daeb6a7ab8a157/matplotlib-3.9.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:dfc48d67e6661378a21c2983200a654b72b5c5cdbd5d2cf6e5e1ece860f0cc70", size = 7891131, upload-time = "2024-12-13T05:55:02.837Z" }, - { url = "https://files.pythonhosted.org/packages/c1/e5/b4e8fc601ca302afeeabf45f30e706a445c7979a180e3a978b78b2b681a4/matplotlib-3.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:47aef0fab8332d02d68e786eba8113ffd6f862182ea2999379dec9e237b7e483", size = 7776365, upload-time = "2024-12-13T05:55:05.158Z" }, - { url = "https://files.pythonhosted.org/packages/99/06/b991886c506506476e5d83625c5970c656a491b9f80161458fed94597808/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fba1f52c6b7dc764097f52fd9ab627b90db452c9feb653a59945de16752e965f", size = 8200707, upload-time = "2024-12-13T05:55:09.48Z" }, - { url = "https://files.pythonhosted.org/packages/c3/e2/556b627498cb27e61026f2d1ba86a78ad1b836fef0996bef5440e8bc9559/matplotlib-3.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:173ac3748acaac21afcc3fa1633924609ba1b87749006bc25051c52c422a5d00", size = 8313761, upload-time = "2024-12-13T05:55:12.95Z" }, - { url = "https://files.pythonhosted.org/packages/58/ff/165af33ec766ff818306ea88e91f9f60d2a6ed543be1eb122a98acbf3b0d/matplotlib-3.9.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:320edea0cadc07007765e33f878b13b3738ffa9745c5f707705692df70ffe0e0", size = 9095284, upload-time = "2024-12-13T05:55:16.199Z" }, - { url = "https://files.pythonhosted.org/packages/9f/8b/3d0c7a002db3b1ed702731c2a9a06d78d035f1f2fb0fb936a8e43cc1e9f4/matplotlib-3.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a4a4cfc82330b27042a7169533da7991e8789d180dd5b3daeaee57d75cd5a03b", size = 7841160, upload-time = "2024-12-13T05:55:19.991Z" }, - { url = "https://files.pythonhosted.org/packages/49/b1/999f89a7556d101b23a2f0b54f1b6e140d73f56804da1398f2f0bc0924bc/matplotlib-3.9.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:37eeffeeca3c940985b80f5b9a7b95ea35671e0e7405001f249848d2b62351b6", size = 7891499, upload-time = "2024-12-13T05:55:22.142Z" }, - { url = "https://files.pythonhosted.org/packages/87/7b/06a32b13a684977653396a1bfcd34d4e7539c5d55c8cbfaa8ae04d47e4a9/matplotlib-3.9.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3e7465ac859ee4abcb0d836137cd8414e7bb7ad330d905abced457217d4f0f45", size = 7776802, upload-time = "2024-12-13T05:55:25.947Z" }, - { url = "https://files.pythonhosted.org/packages/65/87/ac498451aff739e515891bbb92e566f3c7ef31891aaa878402a71f9b0910/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4c12302c34afa0cf061bea23b331e747e5e554b0fa595c96e01c7b75bc3b858", size = 8200802, upload-time = "2024-12-13T05:55:28.461Z" }, - { url = "https://files.pythonhosted.org/packages/f8/6b/9eb761c00e1cb838f6c92e5f25dcda3f56a87a52f6cb8fdfa561e6cf6a13/matplotlib-3.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2b8c97917f21b75e72108b97707ba3d48f171541a74aa2a56df7a40626bafc64", size = 8313880, upload-time = "2024-12-13T05:55:30.965Z" }, - { url = "https://files.pythonhosted.org/packages/d7/a2/c8eaa600e2085eec7e38cbbcc58a30fc78f8224939d31d3152bdafc01fd1/matplotlib-3.9.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0229803bd7e19271b03cb09f27db76c918c467aa4ce2ae168171bc67c3f508df", size = 9094637, upload-time = "2024-12-13T05:55:33.701Z" }, - { url = "https://files.pythonhosted.org/packages/71/1f/c6e1daea55b7bfeb3d84c6cb1abc449f6a02b181e7e2a5e4db34c3afb793/matplotlib-3.9.4-cp313-cp313-win_amd64.whl", hash = "sha256:7c0d8ef442ebf56ff5e206f8083d08252ee738e04f3dc88ea882853a05488799", size = 7841311, upload-time = "2024-12-13T05:55:36.737Z" }, - { url = "https://files.pythonhosted.org/packages/c0/3a/2757d3f7d388b14dd48f5a83bea65b6d69f000e86b8f28f74d86e0d375bd/matplotlib-3.9.4-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a04c3b00066a688834356d196136349cb32f5e1003c55ac419e91585168b88fb", size = 7919989, upload-time = "2024-12-13T05:55:39.024Z" }, - { url = "https://files.pythonhosted.org/packages/24/28/f5077c79a4f521589a37fe1062d6a6ea3534e068213f7357e7cfffc2e17a/matplotlib-3.9.4-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:04c519587f6c210626741a1e9a68eefc05966ede24205db8982841826af5871a", size = 7809417, upload-time = "2024-12-13T05:55:42.412Z" }, - { url = "https://files.pythonhosted.org/packages/36/c8/c523fd2963156692916a8eb7d4069084cf729359f7955cf09075deddfeaf/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:308afbf1a228b8b525fcd5cec17f246bbbb63b175a3ef6eb7b4d33287ca0cf0c", size = 8226258, upload-time = "2024-12-13T05:55:47.259Z" }, - { url = "https://files.pythonhosted.org/packages/f6/88/499bf4b8fa9349b6f5c0cf4cead0ebe5da9d67769129f1b5651e5ac51fbc/matplotlib-3.9.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddb3b02246ddcffd3ce98e88fed5b238bc5faff10dbbaa42090ea13241d15764", size = 8335849, upload-time = "2024-12-13T05:55:49.763Z" }, - { url = "https://files.pythonhosted.org/packages/b8/9f/20a4156b9726188646a030774ee337d5ff695a965be45ce4dbcb9312c170/matplotlib-3.9.4-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8a75287e9cb9eee48cb79ec1d806f75b29c0fde978cb7223a1f4c5848d696041", size = 9102152, upload-time = "2024-12-13T05:55:51.997Z" }, - { url = "https://files.pythonhosted.org/packages/10/11/237f9c3a4e8d810b1759b67ff2da7c32c04f9c80aa475e7beb36ed43a8fb/matplotlib-3.9.4-cp313-cp313t-win_amd64.whl", hash = "sha256:488deb7af140f0ba86da003e66e10d55ff915e152c78b4b66d231638400b1965", size = 7896987, upload-time = "2024-12-13T05:55:55.941Z" }, - { url = "https://files.pythonhosted.org/packages/56/eb/501b465c9fef28f158e414ea3a417913dc2ac748564c7ed41535f23445b4/matplotlib-3.9.4-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3c3724d89a387ddf78ff88d2a30ca78ac2b4c89cf37f2db4bd453c34799e933c", size = 7885919, upload-time = "2024-12-13T05:55:59.66Z" }, - { url = "https://files.pythonhosted.org/packages/da/36/236fbd868b6c91309a5206bd90c3f881f4f44b2d997cd1d6239ef652f878/matplotlib-3.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d5f0a8430ffe23d7e32cfd86445864ccad141797f7d25b7c41759a5b5d17cfd7", size = 7771486, upload-time = "2024-12-13T05:56:04.264Z" }, - { url = "https://files.pythonhosted.org/packages/e0/4b/105caf2d54d5ed11d9f4335398f5103001a03515f2126c936a752ccf1461/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bb0141a21aef3b64b633dc4d16cbd5fc538b727e4958be82a0e1c92a234160e", size = 8201838, upload-time = "2024-12-13T05:56:06.792Z" }, - { url = "https://files.pythonhosted.org/packages/5d/a7/bb01188fb4013d34d274caf44a2f8091255b0497438e8b6c0a7c1710c692/matplotlib-3.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57aa235109e9eed52e2c2949db17da185383fa71083c00c6c143a60e07e0888c", size = 8314492, upload-time = "2024-12-13T05:56:09.964Z" }, - { url = "https://files.pythonhosted.org/packages/33/19/02e1a37f7141fc605b193e927d0a9cdf9dc124a20b9e68793f4ffea19695/matplotlib-3.9.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:b18c600061477ccfdd1e6fd050c33d8be82431700f3452b297a56d9ed7037abb", size = 9092500, upload-time = "2024-12-13T05:56:13.55Z" }, - { url = "https://files.pythonhosted.org/packages/57/68/c2feb4667adbf882ffa4b3e0ac9967f848980d9f8b5bebd86644aa67ce6a/matplotlib-3.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:ef5f2d1b67d2d2145ff75e10f8c008bfbf71d45137c4b648c87193e7dd053eac", size = 7822962, upload-time = "2024-12-13T05:56:16.358Z" }, - { url = "https://files.pythonhosted.org/packages/0c/22/2ef6a364cd3f565442b0b055e0599744f1e4314ec7326cdaaa48a4d864d7/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:44e0ed786d769d85bc787b0606a53f2d8d2d1d3c8a2608237365e9121c1a338c", size = 7877995, upload-time = "2024-12-13T05:56:18.805Z" }, - { url = "https://files.pythonhosted.org/packages/87/b8/2737456e566e9f4d94ae76b8aa0d953d9acb847714f9a7ad80184474f5be/matplotlib-3.9.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:09debb9ce941eb23ecdbe7eab972b1c3e0276dcf01688073faff7b0f61d6c6ca", size = 7769300, upload-time = "2024-12-13T05:56:21.315Z" }, - { url = "https://files.pythonhosted.org/packages/b2/1f/e709c6ec7b5321e6568769baa288c7178e60a93a9da9e682b39450da0e29/matplotlib-3.9.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcc53cf157a657bfd03afab14774d54ba73aa84d42cfe2480c91bd94873952db", size = 8313423, upload-time = "2024-12-13T05:56:26.719Z" }, - { url = "https://files.pythonhosted.org/packages/5e/b6/5a1f868782cd13f053a679984e222007ecff654a9bfbac6b27a65f4eeb05/matplotlib-3.9.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ad45da51be7ad02387801fd154ef74d942f49fe3fcd26a64c94842ba7ec0d865", size = 7854624, upload-time = "2024-12-13T05:56:29.359Z" }, ] [[package]] name = "matplotlib" version = "3.10.8" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "contourpy", version = "1.3.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "contourpy", version = "1.3.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "contourpy", version = "1.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "cycler", marker = "python_full_version >= '3.10'" }, - { name = "fonttools", version = "4.62.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "kiwisolver", version = "1.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "packaging", marker = "python_full_version >= '3.10'" }, - { name = "pillow", version = "12.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "pyparsing", marker = "python_full_version >= '3.10'" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } wheels = [ @@ -3072,39 +2195,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350, upload-time = "2022-01-24T01:14:49.62Z" }, ] -[[package]] -name = "mdit-py-plugins" -version = "0.4.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "markdown-it-py", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542, upload-time = "2024-09-09T20:27:49.564Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316, upload-time = "2024-09-09T20:27:48.397Z" }, -] - [[package]] name = "mdit-py-plugins" version = "0.5.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "markdown-it-py", marker = "python_full_version >= '3.10'" }, + { name = "markdown-it-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b2/fd/a756d36c0bfba5f6e39a1cdbdbfdd448dc02692467d83816dff4592a1ebc/mdit_py_plugins-0.5.0.tar.gz", hash = "sha256:f4918cb50119f50446560513a8e311d574ff6aaed72606ddae6d35716fe809c6", size = 44655, upload-time = "2025-08-11T07:25:49.083Z" } wheels = [ @@ -3125,14 +2221,13 @@ name = "morecantile" version = "6.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", - "python_full_version < '3.10'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ { name = "attrs", marker = "python_full_version < '3.11'" }, { name = "pydantic", marker = "python_full_version < '3.11'" }, - { name = "pyproj", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/72/2d0e1f1e936538004581f792f8a2377831761fd12e4ed0a665abf768fc60/morecantile-6.2.0.tar.gz", hash = "sha256:65c7150ea68bbe16ee6f75f3f171ac1ae51ab26e7a77c92a768048f40f916412", size = 46317, upload-time = "2024-12-19T15:35:47.233Z" } wheels = [ @@ -3144,19 +2239,14 @@ name = "morecantile" version = "7.0.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "attrs", marker = "python_full_version >= '3.11'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "click", marker = "python_full_version >= '3.11'" }, { name = "pydantic", marker = "python_full_version >= '3.11'" }, { name = "pyproj", version = "3.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] @@ -3173,8 +2263,7 @@ dependencies = [ { name = "docutils" }, { name = "jinja2" }, { name = "markdown-it-py" }, - { name = "mdit-py-plugins", version = "0.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "mdit-py-plugins", version = "0.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "mdit-py-plugins" }, { name = "pyyaml" }, { name = "sphinx" }, ] @@ -3202,116 +2291,95 @@ wheels = [ ] [[package]] -name = "networkx" -version = "3.2.1" +name = "netcdf4" +version = "1.7.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", ] -sdist = { url = "https://files.pythonhosted.org/packages/c4/80/a84676339aaae2f1cfdf9f418701dd634aef9cc76f708ef55c36ff39c3ca/networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6", size = 2073928, upload-time = "2023-10-28T08:41:39.364Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/f0/8fbc882ca80cf077f1b246c0e3c3465f7f415439bdea6b899f6b19f61f70/networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2", size = 1647772, upload-time = "2023-10-28T08:41:36.945Z" }, +dependencies = [ + { name = "certifi", marker = "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'" }, + { name = "cftime", marker = "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'" }, ] +sdist = { url = "https://files.pythonhosted.org/packages/0e/76/7bc801796dee752c1ce9cd6935564a6ee79d5c9d9ef9192f57b156495a35/netcdf4-1.7.3.tar.gz", hash = "sha256:83f122fc3415e92b1d4904fd6a0898468b5404c09432c34beb6b16c533884673", size = 836095, upload-time = "2025-10-13T18:38:00.76Z" } [[package]] -name = "networkx" -version = "3.4.2" +name = "netcdf4" +version = "1.7.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] -sdist = { url = "https://files.pythonhosted.org/packages/fd/1d/06475e1cd5264c0b870ea2cc6fdb3e37177c1e565c43f56ff17a10e3937f/networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1", size = 2151368, upload-time = "2024-10-21T12:39:38.695Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f", size = 1723263, upload-time = "2024-10-21T12:39:36.247Z" }, +dependencies = [ + { name = "certifi", marker = "python_full_version >= '3.11' or platform_machine != 'ARM64' or sys_platform != 'win32'" }, + { name = "cftime", marker = "python_full_version >= '3.11' or platform_machine != 'ARM64' or sys_platform != 'win32'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')" }, + { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/34/b6/0370bb3af66a12098da06dc5843f3b349b7c83ccbdf7306e7afa6248b533/netcdf4-1.7.4.tar.gz", hash = "sha256:cdbfdc92d6f4d7192ca8506c9b3d4c1d9892969ff28d8e8e1fc97ca08bf12164", size = 838352, upload-time = "2026-01-05T02:27:38.593Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/07/dfdd017641e82fadaf4e043d91fa179d34940c7d69175a3034dea877df9c/netcdf4-1.7.4-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:b1c1a7ea3678db76bf33d14f7e202385d634db38c5e70d8cf4895971023eebb9", size = 23499427, upload-time = "2026-01-05T02:26:54.13Z" }, + { url = "https://files.pythonhosted.org/packages/a7/6c/8cd98d166f30d378488c5235457d6af7df09f9925ab5ad03d6840543f42e/netcdf4-1.7.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:d3f9497873454207f9480847d02b1b19a4bc81ad6e9166e1c17d4e2f8f3555d1", size = 22886591, upload-time = "2026-01-05T02:26:57.113Z" }, + { url = "https://files.pythonhosted.org/packages/08/1c/ab31713a95160ebc6b4ec495cd4f03f38b235188a7e955bf33703c5039ca/netcdf4-1.7.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c8e18294af803e80f8c0339f791901942e268c334c099bbd5f7ea8325a49801a", size = 10336881, upload-time = "2026-01-05T02:26:59.382Z" }, + { url = "https://files.pythonhosted.org/packages/26/d7/bb16993af267acda23fe3de4ead2528cbe49043e391f732a1a4a15beec20/netcdf4-1.7.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0b06c0b93fd0ecc1ec67a582f3ba98b7db9da1fa843c8f83fd75990e3701771e", size = 10182772, upload-time = "2026-01-05T02:27:01.545Z" }, + { url = "https://files.pythonhosted.org/packages/9b/a6/e6fca338488a896c5e1f661ba3007e83f46700e1a59552b05013d501bc45/netcdf4-1.7.4-cp310-cp310-win_amd64.whl", hash = "sha256:889ba77f084504aebaba9c6f9a88ac213431fef0e897f887cd35aef351ff7740", size = 21363337, upload-time = "2026-01-05T02:27:04.21Z" }, + { url = "https://files.pythonhosted.org/packages/38/de/38ed7e1956943d28e8ea74161e97c3a00fb98d6d08943b4fd21bae32c240/netcdf4-1.7.4-cp311-abi3-macosx_13_0_x86_64.whl", hash = "sha256:dec70e809cc65b04ebe95113ee9c85ba46a51c3a37c058d2b2b0cadc4d3052d8", size = 23427499, upload-time = "2026-01-05T02:27:06.568Z" }, + { url = "https://files.pythonhosted.org/packages/e5/70/2f73c133b71709c412bc81d8b721e28dc6237ba9d7dad861b7bfbb70408a/netcdf4-1.7.4-cp311-abi3-macosx_14_0_arm64.whl", hash = "sha256:75cf59100f0775bc4d6b9d4aca7cbabd12e2b8cf3b9a4fb16d810b92743a315a", size = 22847667, upload-time = "2026-01-05T02:27:09.421Z" }, + { url = "https://files.pythonhosted.org/packages/77/ce/43a3c0c41a6e2e940d87feea79d29aa88302211ac122604838f8a5a48de6/netcdf4-1.7.4-cp311-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ddfc7e9d261125c74708119440c85ea288b5fee41db676d2ba1ce9be11f96932", size = 10274769, upload-time = "2026-01-05T21:31:19.243Z" }, + { url = "https://files.pythonhosted.org/packages/7b/7a/a8d32501bb95ecff342004a674720164f95ad616f269450b3bc13dc88ae3/netcdf4-1.7.4-cp311-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a72c9f58767779ec14cb7451c3b56bdd8fdc027a792fac2062b14e090c5617f3", size = 10123122, upload-time = "2026-01-05T21:31:22.773Z" }, + { url = "https://files.pythonhosted.org/packages/18/68/e89b4fa9242e59326c849c39ce0f49eb68499603c639405a8449900a4f15/netcdf4-1.7.4-cp311-abi3-win_amd64.whl", hash = "sha256:9476e1f23161ae5159cd1548c50c8a37922e77d76583e247133f256ef7b825fc", size = 21299637, upload-time = "2026-01-05T02:27:11.856Z" }, + { url = "https://files.pythonhosted.org/packages/6c/fc/edd41a3607241027aa4533e7f18e0cd647e74dde10a63274c65350f59967/netcdf4-1.7.4-cp311-abi3-win_arm64.whl", hash = "sha256:876ad9d58f09c98741c066c726164c45a098a58fb90e5fac9e74de4bb8a793fd", size = 2386377, upload-time = "2026-01-05T02:27:13.808Z" }, + { url = "https://files.pythonhosted.org/packages/f1/3e/1e83534ba68459bc5ae39df46fa71003984df58aabf31f7dcd6e22ecddb0/netcdf4-1.7.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56688c03444fffe0d0c7512cb45245e650389cd841c955b30e4552fa681c4cd9", size = 10519821, upload-time = "2026-01-05T02:27:15.413Z" }, + { url = "https://files.pythonhosted.org/packages/c0/8c/a15d6fe97f81d6d5202b17838a9a298b5955b3e9971e20609195112829b5/netcdf4-1.7.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ecf471ba8a6ddb2200121949bedfa0095db228822f38227d5da680694a38358", size = 10371133, upload-time = "2026-01-05T02:27:17.224Z" }, + { url = "https://files.pythonhosted.org/packages/d8/2b/684b15dd4791f8be295b2f6fa97377bbc07a768478a63b7d3c4951712e36/netcdf4-1.7.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5841de0735e8e4875b367c668e81d334287858d64dd9f3e3e2261e808c84922", size = 10395635, upload-time = "2026-01-05T02:27:19.655Z" }, + { url = "https://files.pythonhosted.org/packages/37/dc/44d21524cf1b1c64254f92e22395a7a10f70c18f3a13a18ac9db258760f7/netcdf4-1.7.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86fac03a8c5b250d57866e7d98918a64742e4b0de1681c5c86bac5726bab8aee", size = 10237725, upload-time = "2026-01-05T02:27:22.298Z" }, + { url = "https://files.pythonhosted.org/packages/d4/9d/c3ddf54296ad8f18f02f77f23452bdb0971aece1b87e84bab9d734bf72cc/netcdf4-1.7.4-cp314-cp314t-macosx_13_0_x86_64.whl", hash = "sha256:ad083d260301b5add74b1669c75ab0df03bdf986decfcc092cb45eec2615b5f1", size = 23515258, upload-time = "2026-01-05T02:27:24.837Z" }, + { url = "https://files.pythonhosted.org/packages/dd/44/bc0346e995d436d03fab682b7fbd2a9adcf0db6a05790b8f24853bf08170/netcdf4-1.7.4-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:7f22014092cc9da3f056b0368e2e38c42afd5725c87ad4843eb2f467e16dd4f6", size = 22910171, upload-time = "2026-01-05T02:27:27.166Z" }, + { url = "https://files.pythonhosted.org/packages/30/6b/f9bc3f43c55e2dac72ee9f98d77860789bdd5d50c29adf164a6bdb303078/netcdf4-1.7.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:224a15434c165a5e0225e5831f591edf62533044b1ce62fdfee815195bbd077d", size = 10567579, upload-time = "2026-01-05T02:27:29.382Z" }, + { url = "https://files.pythonhosted.org/packages/6d/d5/e7685c66b7f011c73cd746127f986358a26c642a4e4a1aa5ab51481b6586/netcdf4-1.7.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31a2318305de6831a18df25ad0df9f03b6d68666af0356d4f6057d66c02ffeb6", size = 10255032, upload-time = "2026-01-05T02:27:31.744Z" }, + { url = "https://files.pythonhosted.org/packages/a6/14/7506738bb6c8bc373b01e5af8f3b727f83f4f496c6b108490ea2609dc2cf/netcdf4-1.7.4-cp314-cp314t-win_amd64.whl", hash = "sha256:6c4a0aa9446c3a616ef3be015b629dc6173643f8b09546de26a4e40e272cd1ed", size = 22289653, upload-time = "2026-01-05T02:27:34.294Z" }, + { url = "https://files.pythonhosted.org/packages/af/2e/39d5e9179c543f2e6e149a65908f83afd9b6d64379a90789b323111761db/netcdf4-1.7.4-cp314-cp314t-win_arm64.whl", hash = "sha256:034220887d48da032cb2db5958f69759dbb04eb33e279ec6390571d4aea734fe", size = 2531682, upload-time = "2026-01-05T02:27:37.062Z" }, ] [[package]] name = "networkx" -version = "3.6.1" +version = "3.4.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] -sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/1d/06475e1cd5264c0b870ea2cc6fdb3e37177c1e565c43f56ff17a10e3937f/networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1", size = 2151368, upload-time = "2024-10-21T12:39:38.695Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, + { url = "https://files.pythonhosted.org/packages/b9/54/dd730b32ea14ea797530a4479b2ed46a6fb250f682a9cfb997e968bf0261/networkx-3.4.2-py3-none-any.whl", hash = "sha256:df5d4365b724cf81b8c6a7312509d0c22386097011ad1abe274afd5e9d3bbc5f", size = 1723263, upload-time = "2024-10-21T12:39:36.247Z" }, ] [[package]] -name = "numexpr" -version = "2.10.2" +name = "networkx" +version = "3.6.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/21/67/c7415cf04ebe418193cfd6595ae03e3a64d76dac7b9c010098b39cc7992e/numexpr-2.10.2.tar.gz", hash = "sha256:b0aff6b48ebc99d2f54f27b5f73a58cb92fde650aeff1b397c71c8788b4fff1a", size = 106787, upload-time = "2024-11-23T13:34:23.127Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fd/dc/bd84219318826d138b7e729ac3ffce3c706ab9d810ce74326a55c7252dd1/numexpr-2.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b5b0e82d2109c1d9e63fcd5ea177d80a11b881157ab61178ddbdebd4c561ea46", size = 145011, upload-time = "2024-11-23T13:33:24.846Z" }, - { url = "https://files.pythonhosted.org/packages/31/6a/b1f08141283327478a57490c0ab3f26a634d4741ff33b9e22f760a7cedb0/numexpr-2.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3fc2b8035a0c2cdc352e58c3875cb668836018065cbf5752cb531015d9a568d8", size = 134777, upload-time = "2024-11-23T13:33:26.693Z" }, - { url = "https://files.pythonhosted.org/packages/7c/d6/6641864b0446ce472330de7644c78f90bd7e55d902046b44161f92721279/numexpr-2.10.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0db5ff5183935d1612653559c319922143e8fa3019007696571b13135f216458", size = 408893, upload-time = "2024-11-23T13:33:28.44Z" }, - { url = "https://files.pythonhosted.org/packages/25/ab/cb5809cb1f66431632d63dc028c58cb91492725c74dddc4b97ba62e88a92/numexpr-2.10.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15f59655458056fdb3a621b1bb8e071581ccf7e823916c7568bb7c9a3e393025", size = 397305, upload-time = "2024-11-23T13:33:30.181Z" }, - { url = "https://files.pythonhosted.org/packages/9c/a0/29bcb31a9debb743e3dc46bacd55f4f6ee6a77d95eda5c8dca19a29c0627/numexpr-2.10.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ce8cccf944339051e44a49a124a06287fe3066d0acbff33d1aa5aee10a96abb7", size = 1378789, upload-time = "2024-11-23T13:33:32.263Z" }, - { url = "https://files.pythonhosted.org/packages/cc/72/415262a7bdda706c41bf8254311a5ca13d3b8532341ab478be4583d7061a/numexpr-2.10.2-cp310-cp310-win32.whl", hash = "sha256:ba85371c9a8d03e115f4dfb6d25dfbce05387002b9bc85016af939a1da9624f0", size = 151935, upload-time = "2024-11-23T13:33:33.653Z" }, - { url = "https://files.pythonhosted.org/packages/71/fa/0124f0c2a502a0bac4553c8a171c551f154cf80a83a15e40d30c43e48a7e/numexpr-2.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:deb64235af9eeba59fcefa67e82fa80cfc0662e1b0aa373b7118a28da124d51d", size = 144961, upload-time = "2024-11-23T13:33:34.883Z" }, - { url = "https://files.pythonhosted.org/packages/de/b7/f25d6166f92ef23737c1c90416144492a664f0a56510d90f7c6577c2cd14/numexpr-2.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b360eb8d392483410fe6a3d5a7144afa298c9a0aa3e9fe193e89590b47dd477", size = 145055, upload-time = "2024-11-23T13:33:36.154Z" }, - { url = "https://files.pythonhosted.org/packages/66/64/428361ea6415826332f38ef2dd5c3abf4e7e601f033bfc9be68b680cb765/numexpr-2.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d9a42f5c24880350d88933c4efee91b857c378aaea7e8b86221fff569069841e", size = 134743, upload-time = "2024-11-23T13:33:37.273Z" }, - { url = "https://files.pythonhosted.org/packages/3f/fb/639ec91d2ea7b4a5d66e26e8ef8e06b020c8e9b9ebaf3bab7b0a9bee472e/numexpr-2.10.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:83fcb11988b57cc25b028a36d285287d706d1f536ebf2662ea30bd990e0de8b9", size = 410397, upload-time = "2024-11-23T13:33:38.474Z" }, - { url = "https://files.pythonhosted.org/packages/89/5a/0f5c5b8a3a6d34eeecb30d0e2f722d50b9b38c0e175937e7c6268ffab997/numexpr-2.10.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4213a92efa9770bc28e3792134e27c7e5c7e97068bdfb8ba395baebbd12f991b", size = 398902, upload-time = "2024-11-23T13:33:39.802Z" }, - { url = "https://files.pythonhosted.org/packages/a2/d5/ec734e735eba5a753efed5be3707ee7447ebd371772f8081b65a4153fb97/numexpr-2.10.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ebdbef5763ca057eea0c2b5698e4439d084a0505d9d6e94f4804f26e8890c45e", size = 1380354, upload-time = "2024-11-23T13:33:41.68Z" }, - { url = "https://files.pythonhosted.org/packages/30/51/406e572531d817480bd612ee08239a36ee82865fea02fce569f15631f4ee/numexpr-2.10.2-cp311-cp311-win32.whl", hash = "sha256:3bf01ec502d89944e49e9c1b5cc7c7085be8ca2eb9dd46a0eafd218afbdbd5f5", size = 151938, upload-time = "2024-11-23T13:33:43.998Z" }, - { url = "https://files.pythonhosted.org/packages/04/32/5882ed1dbd96234f327a73316a481add151ff827cfaf2ea24fb4d5ad04db/numexpr-2.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:e2d0ae24b0728e4bc3f1d3f33310340d67321d36d6043f7ce26897f4f1042db0", size = 144961, upload-time = "2024-11-23T13:33:45.329Z" }, - { url = "https://files.pythonhosted.org/packages/2b/96/d5053dea06d8298ae8052b4b049cbf8ef74998e28d57166cc27b8ae909e2/numexpr-2.10.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b5323a46e75832334f1af86da1ef6ff0add00fbacdd266250be872b438bdf2be", size = 145029, upload-time = "2024-11-23T13:33:46.892Z" }, - { url = "https://files.pythonhosted.org/packages/3e/3c/fcd5a812ed5dda757b2d9ef2764a3e1cca6f6d1f02dbf113dc23a2c7702a/numexpr-2.10.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a42963bd4c62d8afa4f51e7974debfa39a048383f653544ab54f50a2f7ec6c42", size = 134851, upload-time = "2024-11-23T13:33:47.986Z" }, - { url = "https://files.pythonhosted.org/packages/0a/52/0ed3b306d8c9944129bce97fec73a2caff13adbd7e1df148d546d7eb2d4d/numexpr-2.10.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5191ba8f2975cb9703afc04ae845a929e193498c0e8bcd408ecb147b35978470", size = 411837, upload-time = "2024-11-23T13:33:49.223Z" }, - { url = "https://files.pythonhosted.org/packages/7d/9c/6b671dd3fb67d7e7da93cb76b7c5277743f310a216b7856bb18776bb3371/numexpr-2.10.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:97298b14f0105a794bea06fd9fbc5c423bd3ff4d88cbc618860b83eb7a436ad6", size = 400577, upload-time = "2024-11-23T13:33:50.559Z" }, - { url = "https://files.pythonhosted.org/packages/ea/4d/a167d1a215fe10ce58c45109f2869fd13aa0eef66f7e8c69af68be45d436/numexpr-2.10.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f9d7805ccb6be2d3b0f7f6fad3707a09ac537811e8e9964f4074d28cb35543db", size = 1381735, upload-time = "2024-11-23T13:33:51.918Z" }, - { url = "https://files.pythonhosted.org/packages/c1/d4/17e4434f989e4917d31cbd88a043e1c9c16958149cf43fa622987111392b/numexpr-2.10.2-cp312-cp312-win32.whl", hash = "sha256:cb845b2d4f9f8ef0eb1c9884f2b64780a85d3b5ae4eeb26ae2b0019f489cd35e", size = 152102, upload-time = "2024-11-23T13:33:53.93Z" }, - { url = "https://files.pythonhosted.org/packages/b8/25/9ae599994076ef2a42d35ff6b0430da002647f212567851336a6c7b132d6/numexpr-2.10.2-cp312-cp312-win_amd64.whl", hash = "sha256:57b59cbb5dcce4edf09cd6ce0b57ff60312479930099ca8d944c2fac896a1ead", size = 145061, upload-time = "2024-11-23T13:33:55.161Z" }, - { url = "https://files.pythonhosted.org/packages/8c/cb/2ea1848c46e4d75073c038dd75628d1aa442975303264ed230bf90f74f44/numexpr-2.10.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a37d6a51ec328c561b2ca8a2bef07025642eca995b8553a5267d0018c732976d", size = 145035, upload-time = "2024-11-23T13:33:56.778Z" }, - { url = "https://files.pythonhosted.org/packages/ec/cf/bb2bcd81d6f3243590e19ac3e7795a1a370f3ebcd8ecec1f46dcd5333f37/numexpr-2.10.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:81d1dde7dd6166d8ff5727bb46ab42a6b0048db0e97ceb84a121334a404a800f", size = 134858, upload-time = "2024-11-23T13:33:57.953Z" }, - { url = "https://files.pythonhosted.org/packages/48/9b/c9128ffb453205c2a4c84a3abed35447c7591c2c2812e77e34fd238cb2bb/numexpr-2.10.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5b3f814437d5a10797f8d89d2037cca2c9d9fa578520fc911f894edafed6ea3e", size = 415517, upload-time = "2024-11-23T13:33:59.163Z" }, - { url = "https://files.pythonhosted.org/packages/7e/b0/64c04c9f8b4a563218d00daa1ec4563364961b79025162c5276ab2c7c407/numexpr-2.10.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9309f2e43fe6e4560699ef5c27d7a848b3ff38549b6b57194207cf0e88900527", size = 403846, upload-time = "2024-11-23T13:34:01.006Z" }, - { url = "https://files.pythonhosted.org/packages/80/35/60e9041fd709fe98dd3109d73a03cdffaeb6ee2089179155f5c3754e9934/numexpr-2.10.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ebb73b93f5c4d6994f357fa5a47a9f7a5485577e633b3c46a603cb01445bbb19", size = 1381659, upload-time = "2024-11-23T13:34:02.979Z" }, - { url = "https://files.pythonhosted.org/packages/bd/5a/955bf5b5cf8f3de7b044a999e36327e14191fa073ed0e329456ed0f8161d/numexpr-2.10.2-cp313-cp313-win32.whl", hash = "sha256:ec04c9a3c050c175348801e27c18c68d28673b7bfb865ef88ce333be523bbc01", size = 152105, upload-time = "2024-11-23T13:34:04.374Z" }, - { url = "https://files.pythonhosted.org/packages/be/7a/8ce360a1848bb5bcc30a414493371678f43790ece397f8652d5f65757e57/numexpr-2.10.2-cp313-cp313-win_amd64.whl", hash = "sha256:d7a3fc83c959288544db3adc70612475d8ad53a66c69198105c74036182d10dd", size = 145060, upload-time = "2024-11-23T13:34:06.112Z" }, - { url = "https://files.pythonhosted.org/packages/41/6a/06a225ac970c5921f41bc069a30438ff64fd79ef5e828f5ec2d4f6658307/numexpr-2.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:0495f8111c3633e265248709b8b3b521bbfa646ba384909edd10e2b9a588a83a", size = 145100, upload-time = "2024-11-23T13:33:12.013Z" }, - { url = "https://files.pythonhosted.org/packages/bb/c5/9ecfa0da1d93d57e3f447d10da8cf6d695c93131cec085625e5092b37631/numexpr-2.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2aa05ac71bee3b1253e73173c4d7fa96a09a18970c0226f1c2c07a71ffe988dc", size = 134839, upload-time = "2024-11-23T13:33:13.608Z" }, - { url = "https://files.pythonhosted.org/packages/f5/30/f1a48c485183da517bd28e0df6fee337d12bbb0cd2d6bf13f8f5695afd37/numexpr-2.10.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c3a23c3002ab330056fbdd2785871937a6f2f2fa85d06c8d0ff74ea8418119d1", size = 408149, upload-time = "2024-11-23T13:33:15.549Z" }, - { url = "https://files.pythonhosted.org/packages/ed/f2/009d9dd8cd22f253fd6ead4165f81fafbe22489c1cfea612e18aa3dcb0fa/numexpr-2.10.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a018a7d81326f4c73d8b5aee61794d7d8514512f43957c0db61eb2a8a86848c7", size = 396740, upload-time = "2024-11-23T13:33:17.396Z" }, - { url = "https://files.pythonhosted.org/packages/47/90/e3f12670b3cca9bed85096671265e0f65cde6cf4646baadd4ee9c33944a8/numexpr-2.10.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:037859b17a0abe2b489d4c2cfdadd2bf458ec80dd83f338ea5544c7987e06b85", size = 1377883, upload-time = "2024-11-23T13:33:20.385Z" }, - { url = "https://files.pythonhosted.org/packages/06/1d/068c09a3c013c1178495f73a21ebd6ee25b9f0fc4202cea38b7a826c43a2/numexpr-2.10.2-cp39-cp39-win32.whl", hash = "sha256:eb278ccda6f893a312aa0452701bb17d098b7b14eb7c9381517d509cce0a39a3", size = 151878, upload-time = "2024-11-23T13:33:21.67Z" }, - { url = "https://files.pythonhosted.org/packages/70/81/affb9ff26e8accb210fe5585b095bd6872f5614d18b76cd53888e955ed9a/numexpr-2.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:734b64c6d6a597601ce9d0ef7b666e678ec015b446f1d1412c23903c021436c3", size = 144960, upload-time = "2024-11-23T13:33:23.617Z" }, +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, ] [[package]] name = "numexpr" version = "2.14.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/cb/2f/fdba158c9dbe5caca9c3eca3eaffffb251f2fb8674bf8e2d0aed5f38d319/numexpr-2.14.1.tar.gz", hash = "sha256:4be00b1086c7b7a5c32e31558122b7b80243fe098579b170967da83f3152b48b", size = 119400, upload-time = "2025-10-13T16:17:27.351Z" } @@ -3374,67 +2442,13 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/41/a2/5a1a2c72528b429337f49911b18c302ecd36eeab00f409147e1aa4ae4519/numexpr-2.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:a40b350cd45b4446076fa11843fa32bbe07024747aeddf6d467290bf9011b392", size = 163589, upload-time = "2025-10-13T16:17:25.696Z" }, ] -[[package]] -name = "numpy" -version = "2.0.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/a9/75/10dd1f8116a8b796cb2c737b674e02d02e80454bda953fa7e65d8c12b016/numpy-2.0.2.tar.gz", hash = "sha256:883c987dee1880e2a864ab0dc9892292582510604156762362d9326444636e78", size = 18902015, upload-time = "2024-08-26T20:19:40.945Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/21/91/3495b3237510f79f5d81f2508f9f13fea78ebfdf07538fc7444badda173d/numpy-2.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:51129a29dbe56f9ca83438b706e2e69a39892b5eda6cedcb6b0c9fdc9b0d3ece", size = 21165245, upload-time = "2024-08-26T20:04:14.625Z" }, - { url = "https://files.pythonhosted.org/packages/05/33/26178c7d437a87082d11019292dce6d3fe6f0e9026b7b2309cbf3e489b1d/numpy-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f15975dfec0cf2239224d80e32c3170b1d168335eaedee69da84fbe9f1f9cd04", size = 13738540, upload-time = "2024-08-26T20:04:36.784Z" }, - { url = "https://files.pythonhosted.org/packages/ec/31/cc46e13bf07644efc7a4bf68df2df5fb2a1a88d0cd0da9ddc84dc0033e51/numpy-2.0.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8c5713284ce4e282544c68d1c3b2c7161d38c256d2eefc93c1d683cf47683e66", size = 5300623, upload-time = "2024-08-26T20:04:46.491Z" }, - { url = "https://files.pythonhosted.org/packages/6e/16/7bfcebf27bb4f9d7ec67332ffebee4d1bf085c84246552d52dbb548600e7/numpy-2.0.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:becfae3ddd30736fe1889a37f1f580e245ba79a5855bff5f2a29cb3ccc22dd7b", size = 6901774, upload-time = "2024-08-26T20:04:58.173Z" }, - { url = "https://files.pythonhosted.org/packages/f9/a3/561c531c0e8bf082c5bef509d00d56f82e0ea7e1e3e3a7fc8fa78742a6e5/numpy-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2da5960c3cf0df7eafefd806d4e612c5e19358de82cb3c343631188991566ccd", size = 13907081, upload-time = "2024-08-26T20:05:19.098Z" }, - { url = "https://files.pythonhosted.org/packages/fa/66/f7177ab331876200ac7563a580140643d1179c8b4b6a6b0fc9838de2a9b8/numpy-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:496f71341824ed9f3d2fd36cf3ac57ae2e0165c143b55c3a035ee219413f3318", size = 19523451, upload-time = "2024-08-26T20:05:47.479Z" }, - { url = "https://files.pythonhosted.org/packages/25/7f/0b209498009ad6453e4efc2c65bcdf0ae08a182b2b7877d7ab38a92dc542/numpy-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a61ec659f68ae254e4d237816e33171497e978140353c0c2038d46e63282d0c8", size = 19927572, upload-time = "2024-08-26T20:06:17.137Z" }, - { url = "https://files.pythonhosted.org/packages/3e/df/2619393b1e1b565cd2d4c4403bdd979621e2c4dea1f8532754b2598ed63b/numpy-2.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d731a1c6116ba289c1e9ee714b08a8ff882944d4ad631fd411106a30f083c326", size = 14400722, upload-time = "2024-08-26T20:06:39.16Z" }, - { url = "https://files.pythonhosted.org/packages/22/ad/77e921b9f256d5da36424ffb711ae79ca3f451ff8489eeca544d0701d74a/numpy-2.0.2-cp310-cp310-win32.whl", hash = "sha256:984d96121c9f9616cd33fbd0618b7f08e0cfc9600a7ee1d6fd9b239186d19d97", size = 6472170, upload-time = "2024-08-26T20:06:50.361Z" }, - { url = "https://files.pythonhosted.org/packages/10/05/3442317535028bc29cf0c0dd4c191a4481e8376e9f0db6bcf29703cadae6/numpy-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:c7b0be4ef08607dd04da4092faee0b86607f111d5ae68036f16cc787e250a131", size = 15905558, upload-time = "2024-08-26T20:07:13.881Z" }, - { url = "https://files.pythonhosted.org/packages/8b/cf/034500fb83041aa0286e0fb16e7c76e5c8b67c0711bb6e9e9737a717d5fe/numpy-2.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:49ca4decb342d66018b01932139c0961a8f9ddc7589611158cb3c27cbcf76448", size = 21169137, upload-time = "2024-08-26T20:07:45.345Z" }, - { url = "https://files.pythonhosted.org/packages/4a/d9/32de45561811a4b87fbdee23b5797394e3d1504b4a7cf40c10199848893e/numpy-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:11a76c372d1d37437857280aa142086476136a8c0f373b2e648ab2c8f18fb195", size = 13703552, upload-time = "2024-08-26T20:08:06.666Z" }, - { url = "https://files.pythonhosted.org/packages/c1/ca/2f384720020c7b244d22508cb7ab23d95f179fcfff33c31a6eeba8d6c512/numpy-2.0.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:807ec44583fd708a21d4a11d94aedf2f4f3c3719035c76a2bbe1fe8e217bdc57", size = 5298957, upload-time = "2024-08-26T20:08:15.83Z" }, - { url = "https://files.pythonhosted.org/packages/0e/78/a3e4f9fb6aa4e6fdca0c5428e8ba039408514388cf62d89651aade838269/numpy-2.0.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8cafab480740e22f8d833acefed5cc87ce276f4ece12fdaa2e8903db2f82897a", size = 6905573, upload-time = "2024-08-26T20:08:27.185Z" }, - { url = "https://files.pythonhosted.org/packages/a0/72/cfc3a1beb2caf4efc9d0b38a15fe34025230da27e1c08cc2eb9bfb1c7231/numpy-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a15f476a45e6e5a3a79d8a14e62161d27ad897381fecfa4a09ed5322f2085669", size = 13914330, upload-time = "2024-08-26T20:08:48.058Z" }, - { url = "https://files.pythonhosted.org/packages/ba/a8/c17acf65a931ce551fee11b72e8de63bf7e8a6f0e21add4c937c83563538/numpy-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13e689d772146140a252c3a28501da66dfecd77490b498b168b501835041f951", size = 19534895, upload-time = "2024-08-26T20:09:16.536Z" }, - { url = "https://files.pythonhosted.org/packages/ba/86/8767f3d54f6ae0165749f84648da9dcc8cd78ab65d415494962c86fac80f/numpy-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9ea91dfb7c3d1c56a0e55657c0afb38cf1eeae4544c208dc465c3c9f3a7c09f9", size = 19937253, upload-time = "2024-08-26T20:09:46.263Z" }, - { url = "https://files.pythonhosted.org/packages/df/87/f76450e6e1c14e5bb1eae6836478b1028e096fd02e85c1c37674606ab752/numpy-2.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c1c9307701fec8f3f7a1e6711f9089c06e6284b3afbbcd259f7791282d660a15", size = 14414074, upload-time = "2024-08-26T20:10:08.483Z" }, - { url = "https://files.pythonhosted.org/packages/5c/ca/0f0f328e1e59f73754f06e1adfb909de43726d4f24c6a3f8805f34f2b0fa/numpy-2.0.2-cp311-cp311-win32.whl", hash = "sha256:a392a68bd329eafac5817e5aefeb39038c48b671afd242710b451e76090e81f4", size = 6470640, upload-time = "2024-08-26T20:10:19.732Z" }, - { url = "https://files.pythonhosted.org/packages/eb/57/3a3f14d3a759dcf9bf6e9eda905794726b758819df4663f217d658a58695/numpy-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:286cd40ce2b7d652a6f22efdfc6d1edf879440e53e76a75955bc0c826c7e64dc", size = 15910230, upload-time = "2024-08-26T20:10:43.413Z" }, - { url = "https://files.pythonhosted.org/packages/45/40/2e117be60ec50d98fa08c2f8c48e09b3edea93cfcabd5a9ff6925d54b1c2/numpy-2.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:df55d490dea7934f330006d0f81e8551ba6010a5bf035a249ef61a94f21c500b", size = 20895803, upload-time = "2024-08-26T20:11:13.916Z" }, - { url = "https://files.pythonhosted.org/packages/46/92/1b8b8dee833f53cef3e0a3f69b2374467789e0bb7399689582314df02651/numpy-2.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8df823f570d9adf0978347d1f926b2a867d5608f434a7cff7f7908c6570dcf5e", size = 13471835, upload-time = "2024-08-26T20:11:34.779Z" }, - { url = "https://files.pythonhosted.org/packages/7f/19/e2793bde475f1edaea6945be141aef6c8b4c669b90c90a300a8954d08f0a/numpy-2.0.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:9a92ae5c14811e390f3767053ff54eaee3bf84576d99a2456391401323f4ec2c", size = 5038499, upload-time = "2024-08-26T20:11:43.902Z" }, - { url = "https://files.pythonhosted.org/packages/e3/ff/ddf6dac2ff0dd50a7327bcdba45cb0264d0e96bb44d33324853f781a8f3c/numpy-2.0.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:a842d573724391493a97a62ebbb8e731f8a5dcc5d285dfc99141ca15a3302d0c", size = 6633497, upload-time = "2024-08-26T20:11:55.09Z" }, - { url = "https://files.pythonhosted.org/packages/72/21/67f36eac8e2d2cd652a2e69595a54128297cdcb1ff3931cfc87838874bd4/numpy-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05e238064fc0610c840d1cf6a13bf63d7e391717d247f1bf0318172e759e692", size = 13621158, upload-time = "2024-08-26T20:12:14.95Z" }, - { url = "https://files.pythonhosted.org/packages/39/68/e9f1126d757653496dbc096cb429014347a36b228f5a991dae2c6b6cfd40/numpy-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0123ffdaa88fa4ab64835dcbde75dcdf89c453c922f18dced6e27c90d1d0ec5a", size = 19236173, upload-time = "2024-08-26T20:12:44.049Z" }, - { url = "https://files.pythonhosted.org/packages/d1/e9/1f5333281e4ebf483ba1c888b1d61ba7e78d7e910fdd8e6499667041cc35/numpy-2.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:96a55f64139912d61de9137f11bf39a55ec8faec288c75a54f93dfd39f7eb40c", size = 19634174, upload-time = "2024-08-26T20:13:13.634Z" }, - { url = "https://files.pythonhosted.org/packages/71/af/a469674070c8d8408384e3012e064299f7a2de540738a8e414dcfd639996/numpy-2.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec9852fb39354b5a45a80bdab5ac02dd02b15f44b3804e9f00c556bf24b4bded", size = 14099701, upload-time = "2024-08-26T20:13:34.851Z" }, - { url = "https://files.pythonhosted.org/packages/d0/3d/08ea9f239d0e0e939b6ca52ad403c84a2bce1bde301a8eb4888c1c1543f1/numpy-2.0.2-cp312-cp312-win32.whl", hash = "sha256:671bec6496f83202ed2d3c8fdc486a8fc86942f2e69ff0e986140339a63bcbe5", size = 6174313, upload-time = "2024-08-26T20:13:45.653Z" }, - { url = "https://files.pythonhosted.org/packages/b2/b5/4ac39baebf1fdb2e72585c8352c56d063b6126be9fc95bd2bb5ef5770c20/numpy-2.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:cfd41e13fdc257aa5778496b8caa5e856dc4896d4ccf01841daee1d96465467a", size = 15606179, upload-time = "2024-08-26T20:14:08.786Z" }, - { url = "https://files.pythonhosted.org/packages/43/c1/41c8f6df3162b0c6ffd4437d729115704bd43363de0090c7f913cfbc2d89/numpy-2.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9059e10581ce4093f735ed23f3b9d283b9d517ff46009ddd485f1747eb22653c", size = 21169942, upload-time = "2024-08-26T20:14:40.108Z" }, - { url = "https://files.pythonhosted.org/packages/39/bc/fd298f308dcd232b56a4031fd6ddf11c43f9917fbc937e53762f7b5a3bb1/numpy-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:423e89b23490805d2a5a96fe40ec507407b8ee786d66f7328be214f9679df6dd", size = 13711512, upload-time = "2024-08-26T20:15:00.985Z" }, - { url = "https://files.pythonhosted.org/packages/96/ff/06d1aa3eeb1c614eda245c1ba4fb88c483bee6520d361641331872ac4b82/numpy-2.0.2-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:2b2955fa6f11907cf7a70dab0d0755159bca87755e831e47932367fc8f2f2d0b", size = 5306976, upload-time = "2024-08-26T20:15:10.876Z" }, - { url = "https://files.pythonhosted.org/packages/2d/98/121996dcfb10a6087a05e54453e28e58694a7db62c5a5a29cee14c6e047b/numpy-2.0.2-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:97032a27bd9d8988b9a97a8c4d2c9f2c15a81f61e2f21404d7e8ef00cb5be729", size = 6906494, upload-time = "2024-08-26T20:15:22.055Z" }, - { url = "https://files.pythonhosted.org/packages/15/31/9dffc70da6b9bbf7968f6551967fc21156207366272c2a40b4ed6008dc9b/numpy-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e795a8be3ddbac43274f18588329c72939870a16cae810c2b73461c40718ab1", size = 13912596, upload-time = "2024-08-26T20:15:42.452Z" }, - { url = "https://files.pythonhosted.org/packages/b9/14/78635daab4b07c0930c919d451b8bf8c164774e6a3413aed04a6d95758ce/numpy-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b258c385842546006213344c50655ff1555a9338e2e5e02a0756dc3e803dd", size = 19526099, upload-time = "2024-08-26T20:16:11.048Z" }, - { url = "https://files.pythonhosted.org/packages/26/4c/0eeca4614003077f68bfe7aac8b7496f04221865b3a5e7cb230c9d055afd/numpy-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fec9451a7789926bcf7c2b8d187292c9f93ea30284802a0ab3f5be8ab36865d", size = 19932823, upload-time = "2024-08-26T20:16:40.171Z" }, - { url = "https://files.pythonhosted.org/packages/f1/46/ea25b98b13dccaebddf1a803f8c748680d972e00507cd9bc6dcdb5aa2ac1/numpy-2.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9189427407d88ff25ecf8f12469d4d39d35bee1db5d39fc5c168c6f088a6956d", size = 14404424, upload-time = "2024-08-26T20:17:02.604Z" }, - { url = "https://files.pythonhosted.org/packages/c8/a6/177dd88d95ecf07e722d21008b1b40e681a929eb9e329684d449c36586b2/numpy-2.0.2-cp39-cp39-win32.whl", hash = "sha256:905d16e0c60200656500c95b6b8dca5d109e23cb24abc701d41c02d74c6b3afa", size = 6476809, upload-time = "2024-08-26T20:17:13.553Z" }, - { url = "https://files.pythonhosted.org/packages/ea/2b/7fc9f4e7ae5b507c1a3a21f0f15ed03e794c1242ea8a242ac158beb56034/numpy-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:a3f4ab0caa7f053f6797fcd4e1e25caee367db3112ef2b6ef82d749530768c73", size = 15911314, upload-time = "2024-08-26T20:17:36.72Z" }, - { url = "https://files.pythonhosted.org/packages/8f/3b/df5a870ac6a3be3a86856ce195ef42eec7ae50d2a202be1f5a4b3b340e14/numpy-2.0.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7f0a0c6f12e07fa94133c8a67404322845220c06a9e80e85999afe727f7438b8", size = 21025288, upload-time = "2024-08-26T20:18:07.732Z" }, - { url = "https://files.pythonhosted.org/packages/2c/97/51af92f18d6f6f2d9ad8b482a99fb74e142d71372da5d834b3a2747a446e/numpy-2.0.2-pp39-pypy39_pp73-macosx_14_0_x86_64.whl", hash = "sha256:312950fdd060354350ed123c0e25a71327d3711584beaef30cdaa93320c392d4", size = 6762793, upload-time = "2024-08-26T20:18:19.125Z" }, - { url = "https://files.pythonhosted.org/packages/12/46/de1fbd0c1b5ccaa7f9a005b66761533e2f6a3e560096682683a223631fe9/numpy-2.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26df23238872200f63518dd2aa984cfca675d82469535dc7162dc2ee52d9dd5c", size = 19334885, upload-time = "2024-08-26T20:18:47.237Z" }, - { url = "https://files.pythonhosted.org/packages/cc/dc/d330a6faefd92b446ec0f0dfea4c3207bb1fef3c4771d19cf4543efd2c78/numpy-2.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a46288ec55ebbd58947d31d72be2c63cbf839f0a63b49cb755022310792a3385", size = 15828784, upload-time = "2024-08-26T20:19:11.19Z" }, -] - [[package]] name = "numpy" version = "2.2.6" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } wheels = [ @@ -3499,15 +2513,10 @@ name = "numpy" version = "2.4.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] sdist = { url = "https://files.pythonhosted.org/packages/10/8b/c265f4823726ab832de836cdd184d0986dcf94480f81e8739692a7ac7af2/numpy-2.4.3.tar.gz", hash = "sha256:483a201202b73495f00dbc83796c6ae63137a9bdade074f7648b3e32613412dd", size = 20727743, upload-time = "2026-03-09T07:58:53.426Z" } wheels = [ @@ -3598,8 +2607,7 @@ name = "pandas" version = "2.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "python-dateutil" }, { name = "pytz" }, @@ -3654,13 +2662,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a4/1e/1bac1a839d12e6a82ec6cb40cda2edde64a2013a66963293696bbf31fbbb/pandas-2.3.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2e3ebdb170b5ef78f19bfb71b0dc5dc58775032361fa188e814959b74d726dd5", size = 12121582, upload-time = "2025-09-29T23:30:43.391Z" }, { url = "https://files.pythonhosted.org/packages/44/91/483de934193e12a3b1d6ae7c8645d083ff88dec75f46e827562f1e4b4da6/pandas-2.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d051c0e065b94b7a3cea50eb1ec32e912cd96dba41647eb24104b6c6c14c5788", size = 12699963, upload-time = "2025-09-29T23:31:10.009Z" }, { url = "https://files.pythonhosted.org/packages/70/44/5191d2e4026f86a2a109053e194d3ba7a31a2d10a9c2348368c63ed4e85a/pandas-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:3869faf4bd07b3b66a9f462417d0ca3a9df29a9f6abd5d0d0dbab15dac7abe87", size = 13202175, upload-time = "2025-09-29T23:31:59.173Z" }, - { url = "https://files.pythonhosted.org/packages/56/b4/52eeb530a99e2a4c55ffcd352772b599ed4473a0f892d127f4147cf0f88e/pandas-2.3.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c503ba5216814e295f40711470446bc3fd00f0faea8a086cbc688808e26f92a2", size = 11567720, upload-time = "2025-09-29T23:33:06.209Z" }, - { url = "https://files.pythonhosted.org/packages/48/4a/2d8b67632a021bced649ba940455ed441ca854e57d6e7658a6024587b083/pandas-2.3.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a637c5cdfa04b6d6e2ecedcb81fc52ffb0fd78ce2ebccc9ea964df9f658de8c8", size = 10810302, upload-time = "2025-09-29T23:33:35.846Z" }, - { url = "https://files.pythonhosted.org/packages/13/e6/d2465010ee0569a245c975dc6967b801887068bc893e908239b1f4b6c1ac/pandas-2.3.3-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:854d00d556406bffe66a4c0802f334c9ad5a96b4f1f868adf036a21b11ef13ff", size = 12154874, upload-time = "2025-09-29T23:33:49.939Z" }, - { url = "https://files.pythonhosted.org/packages/1f/18/aae8c0aa69a386a3255940e9317f793808ea79d0a525a97a903366bb2569/pandas-2.3.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf1f8a81d04ca90e32a0aceb819d34dbd378a98bf923b6398b9a3ec0bf44de29", size = 12790141, upload-time = "2025-09-29T23:34:05.655Z" }, - { url = "https://files.pythonhosted.org/packages/f7/26/617f98de789de00c2a444fbe6301bb19e66556ac78cff933d2c98f62f2b4/pandas-2.3.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:23ebd657a4d38268c7dfbdf089fbc31ea709d82e4923c5ffd4fbd5747133ce73", size = 13208697, upload-time = "2025-09-29T23:34:21.835Z" }, - { url = "https://files.pythonhosted.org/packages/b9/fb/25709afa4552042bd0e15717c75e9b4a2294c3dc4f7e6ea50f03c5136600/pandas-2.3.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5554c929ccc317d41a5e3d1234f3be588248e61f08a74dd17c9eabb535777dc9", size = 13879233, upload-time = "2025-09-29T23:34:35.079Z" }, - { url = "https://files.pythonhosted.org/packages/98/af/7be05277859a7bc399da8ba68b88c96b27b48740b6cf49688899c6eb4176/pandas-2.3.3-cp39-cp39-win_amd64.whl", hash = "sha256:d3e28b3e83862ccf4d85ff19cf8c20b2ae7e503881711ff2d534dc8f761131aa", size = 11359119, upload-time = "2025-09-29T23:34:46.339Z" }, ] [[package]] @@ -3677,7 +2678,7 @@ name = "pexpect" version = "4.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "ptyprocess", marker = "(python_full_version < '3.11' and sys_platform == 'emscripten') or (python_full_version < '3.11' and sys_platform == 'win32') or (sys_platform != 'emscripten' and sys_platform != 'win32')" }, + { name = "ptyprocess", marker = "platform_machine != 'ARM64' or sys_platform != 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } wheels = [ @@ -3701,10 +2702,8 @@ dependencies = [ [package.optional-dependencies] ais = [ { name = "huggingface-hub" }, - { name = "pyarrow", version = "21.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pyarrow", version = "23.0.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "shapely", version = "2.0.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "shapely", version = "2.1.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "pyarrow" }, + { name = "shapely" }, ] dev = [ { name = "flake8" }, @@ -3714,18 +2713,20 @@ dev = [ docs = [ { name = "myst-parser" }, { name = "sphinx" }, - { name = "sphinx-autoapi", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "sphinx-autoapi", version = "3.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "sphinx-autoapi" }, { name = "sphinx-autodoc-typehints" }, { name = "sphinx-copybutton" }, { name = "sphinx-rtd-theme" }, ] jupyter-env = [ - { name = "ipykernel", version = "6.31.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "ipykernel", version = "7.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "ipykernel" }, { name = "ipywidgets" }, { name = "jupyter-leaflet" }, { name = "jupyterlab-widgets" }, + { name = "netcdf4", version = "1.7.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'" }, + { name = "netcdf4", version = "1.7.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or platform_machine != 'ARM64' or sys_platform != 'win32'" }, + { name = "pyresample", version = "1.31.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "pyresample", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] test = [ { name = "folium" }, @@ -3734,23 +2735,18 @@ test = [ { name = "ipywidgets" }, { name = "pytest" }, { name = "pytest-mock" }, - { name = "shapely", version = "2.0.7", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "shapely", version = "2.1.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "shapely" }, ] viz = [ { name = "folium" }, { name = "ipyleaflet" }, { name = "leafmap", extra = ["maplibre"] }, - { name = "localtileserver", version = "0.10.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "localtileserver", version = "0.11.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "matplotlib", version = "3.9.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "matplotlib", version = "3.10.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "rasterio", version = "1.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, + { name = "localtileserver" }, + { name = "matplotlib" }, + { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, { name = "rasterio", version = "1.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, { name = "setuptools" }, - { name = "xarray", version = "2024.7.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "xarray", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] @@ -3775,8 +2771,10 @@ requires-dist = [ { name = "localtileserver", marker = "extra == 'viz'", specifier = ">=0.10.6" }, { name = "matplotlib", marker = "extra == 'viz'", specifier = ">=3.9.4" }, { name = "myst-parser", marker = "extra == 'docs'", specifier = ">=3.0.0,<4.0.0" }, + { name = "netcdf4", marker = "extra == 'jupyter-env'", specifier = ">=1.7.2" }, { name = "pandas", specifier = ">=1.5.2" }, { name = "pyarrow", marker = "extra == 'ais'", specifier = ">=21.0.0" }, + { name = "pyresample", marker = "extra == 'jupyter-env'", specifier = ">=1.31.0" }, { name = "pytest", marker = "extra == 'dev'", specifier = ">=7.0.0,<9.0.0" }, { name = "pytest", marker = "extra == 'test'", specifier = ">=7.0.0,<9.0.0" }, { name = "pytest-mock", marker = "extra == 'dev'", specifier = ">=3.10.0" }, @@ -3800,258 +2798,106 @@ provides-extras = ["jupyter-env", "ais", "viz", "dev", "test", "docs"] [[package]] name = "pillow" -version = "11.3.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/f3/0d/d0d6dea55cd152ce3d6767bb38a8fc10e33796ba4ba210cbab9354b6d238/pillow-11.3.0.tar.gz", hash = "sha256:3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523", size = 47113069, upload-time = "2025-07-01T09:16:30.666Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4c/5d/45a3553a253ac8763f3561371432a90bdbe6000fbdcf1397ffe502aa206c/pillow-11.3.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1b9c17fd4ace828b3003dfd1e30bff24863e0eb59b535e8f80194d9cc7ecf860", size = 5316554, upload-time = "2025-07-01T09:13:39.342Z" }, - { url = "https://files.pythonhosted.org/packages/7c/c8/67c12ab069ef586a25a4a79ced553586748fad100c77c0ce59bb4983ac98/pillow-11.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:65dc69160114cdd0ca0f35cb434633c75e8e7fad4cf855177a05bf38678f73ad", size = 4686548, upload-time = "2025-07-01T09:13:41.835Z" }, - { url = "https://files.pythonhosted.org/packages/2f/bd/6741ebd56263390b382ae4c5de02979af7f8bd9807346d068700dd6d5cf9/pillow-11.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7107195ddc914f656c7fc8e4a5e1c25f32e9236ea3ea860f257b0436011fddd0", size = 5859742, upload-time = "2025-07-03T13:09:47.439Z" }, - { url = "https://files.pythonhosted.org/packages/ca/0b/c412a9e27e1e6a829e6ab6c2dca52dd563efbedf4c9c6aa453d9a9b77359/pillow-11.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:cc3e831b563b3114baac7ec2ee86819eb03caa1a2cef0b481a5675b59c4fe23b", size = 7633087, upload-time = "2025-07-03T13:09:51.796Z" }, - { url = "https://files.pythonhosted.org/packages/59/9d/9b7076aaf30f5dd17e5e5589b2d2f5a5d7e30ff67a171eb686e4eecc2adf/pillow-11.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f1f182ebd2303acf8c380a54f615ec883322593320a9b00438eb842c1f37ae50", size = 5963350, upload-time = "2025-07-01T09:13:43.865Z" }, - { url = "https://files.pythonhosted.org/packages/f0/16/1a6bf01fb622fb9cf5c91683823f073f053005c849b1f52ed613afcf8dae/pillow-11.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4445fa62e15936a028672fd48c4c11a66d641d2c05726c7ec1f8ba6a572036ae", size = 6631840, upload-time = "2025-07-01T09:13:46.161Z" }, - { url = "https://files.pythonhosted.org/packages/7b/e6/6ff7077077eb47fde78739e7d570bdcd7c10495666b6afcd23ab56b19a43/pillow-11.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:71f511f6b3b91dd543282477be45a033e4845a40278fa8dcdbfdb07109bf18f9", size = 6074005, upload-time = "2025-07-01T09:13:47.829Z" }, - { url = "https://files.pythonhosted.org/packages/c3/3a/b13f36832ea6d279a697231658199e0a03cd87ef12048016bdcc84131601/pillow-11.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:040a5b691b0713e1f6cbe222e0f4f74cd233421e105850ae3b3c0ceda520f42e", size = 6708372, upload-time = "2025-07-01T09:13:52.145Z" }, - { url = "https://files.pythonhosted.org/packages/6c/e4/61b2e1a7528740efbc70b3d581f33937e38e98ef3d50b05007267a55bcb2/pillow-11.3.0-cp310-cp310-win32.whl", hash = "sha256:89bd777bc6624fe4115e9fac3352c79ed60f3bb18651420635f26e643e3dd1f6", size = 6277090, upload-time = "2025-07-01T09:13:53.915Z" }, - { url = "https://files.pythonhosted.org/packages/a9/d3/60c781c83a785d6afbd6a326ed4d759d141de43aa7365725cbcd65ce5e54/pillow-11.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:19d2ff547c75b8e3ff46f4d9ef969a06c30ab2d4263a9e287733aa8b2429ce8f", size = 6985988, upload-time = "2025-07-01T09:13:55.699Z" }, - { url = "https://files.pythonhosted.org/packages/9f/28/4f4a0203165eefb3763939c6789ba31013a2e90adffb456610f30f613850/pillow-11.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:819931d25e57b513242859ce1876c58c59dc31587847bf74cfe06b2e0cb22d2f", size = 2422899, upload-time = "2025-07-01T09:13:57.497Z" }, - { url = "https://files.pythonhosted.org/packages/db/26/77f8ed17ca4ffd60e1dcd220a6ec6d71210ba398cfa33a13a1cd614c5613/pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1cd110edf822773368b396281a2293aeb91c90a2db00d78ea43e7e861631b722", size = 5316531, upload-time = "2025-07-01T09:13:59.203Z" }, - { url = "https://files.pythonhosted.org/packages/cb/39/ee475903197ce709322a17a866892efb560f57900d9af2e55f86db51b0a5/pillow-11.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c412fddd1b77a75aa904615ebaa6001f169b26fd467b4be93aded278266b288", size = 4686560, upload-time = "2025-07-01T09:14:01.101Z" }, - { url = "https://files.pythonhosted.org/packages/d5/90/442068a160fd179938ba55ec8c97050a612426fae5ec0a764e345839f76d/pillow-11.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7d1aa4de119a0ecac0a34a9c8bde33f34022e2e8f99104e47a3ca392fd60e37d", size = 5870978, upload-time = "2025-07-03T13:09:55.638Z" }, - { url = "https://files.pythonhosted.org/packages/13/92/dcdd147ab02daf405387f0218dcf792dc6dd5b14d2573d40b4caeef01059/pillow-11.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:91da1d88226663594e3f6b4b8c3c8d85bd504117d043740a8e0ec449087cc494", size = 7641168, upload-time = "2025-07-03T13:10:00.37Z" }, - { url = "https://files.pythonhosted.org/packages/6e/db/839d6ba7fd38b51af641aa904e2960e7a5644d60ec754c046b7d2aee00e5/pillow-11.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:643f189248837533073c405ec2f0bb250ba54598cf80e8c1e043381a60632f58", size = 5973053, upload-time = "2025-07-01T09:14:04.491Z" }, - { url = "https://files.pythonhosted.org/packages/f2/2f/d7675ecae6c43e9f12aa8d58b6012683b20b6edfbdac7abcb4e6af7a3784/pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:106064daa23a745510dabce1d84f29137a37224831d88eb4ce94bb187b1d7e5f", size = 6640273, upload-time = "2025-07-01T09:14:06.235Z" }, - { url = "https://files.pythonhosted.org/packages/45/ad/931694675ede172e15b2ff03c8144a0ddaea1d87adb72bb07655eaffb654/pillow-11.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd8ff254faf15591e724dc7c4ddb6bf4793efcbe13802a4ae3e863cd300b493e", size = 6082043, upload-time = "2025-07-01T09:14:07.978Z" }, - { url = "https://files.pythonhosted.org/packages/3a/04/ba8f2b11fc80d2dd462d7abec16351b45ec99cbbaea4387648a44190351a/pillow-11.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:932c754c2d51ad2b2271fd01c3d121daaa35e27efae2a616f77bf164bc0b3e94", size = 6715516, upload-time = "2025-07-01T09:14:10.233Z" }, - { url = "https://files.pythonhosted.org/packages/48/59/8cd06d7f3944cc7d892e8533c56b0acb68399f640786313275faec1e3b6f/pillow-11.3.0-cp311-cp311-win32.whl", hash = "sha256:b4b8f3efc8d530a1544e5962bd6b403d5f7fe8b9e08227c6b255f98ad82b4ba0", size = 6274768, upload-time = "2025-07-01T09:14:11.921Z" }, - { url = "https://files.pythonhosted.org/packages/f1/cc/29c0f5d64ab8eae20f3232da8f8571660aa0ab4b8f1331da5c2f5f9a938e/pillow-11.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:1a992e86b0dd7aeb1f053cd506508c0999d710a8f07b4c791c63843fc6a807ac", size = 6986055, upload-time = "2025-07-01T09:14:13.623Z" }, - { url = "https://files.pythonhosted.org/packages/c6/df/90bd886fabd544c25addd63e5ca6932c86f2b701d5da6c7839387a076b4a/pillow-11.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:30807c931ff7c095620fe04448e2c2fc673fcbb1ffe2a7da3fb39613489b1ddd", size = 2423079, upload-time = "2025-07-01T09:14:15.268Z" }, - { url = "https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4", size = 5278800, upload-time = "2025-07-01T09:14:17.648Z" }, - { url = "https://files.pythonhosted.org/packages/2c/32/7e2ac19b5713657384cec55f89065fb306b06af008cfd87e572035b27119/pillow-11.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:921bd305b10e82b4d1f5e802b6850677f965d8394203d182f078873851dada69", size = 4686296, upload-time = "2025-07-01T09:14:19.828Z" }, - { url = "https://files.pythonhosted.org/packages/8e/1e/b9e12bbe6e4c2220effebc09ea0923a07a6da1e1f1bfbc8d7d29a01ce32b/pillow-11.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:eb76541cba2f958032d79d143b98a3a6b3ea87f0959bbe256c0b5e416599fd5d", size = 5871726, upload-time = "2025-07-03T13:10:04.448Z" }, - { url = "https://files.pythonhosted.org/packages/8d/33/e9200d2bd7ba00dc3ddb78df1198a6e80d7669cce6c2bdbeb2530a74ec58/pillow-11.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:67172f2944ebba3d4a7b54f2e95c786a3a50c21b88456329314caaa28cda70f6", size = 7644652, upload-time = "2025-07-03T13:10:10.391Z" }, - { url = "https://files.pythonhosted.org/packages/41/f1/6f2427a26fc683e00d985bc391bdd76d8dd4e92fac33d841127eb8fb2313/pillow-11.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:97f07ed9f56a3b9b5f49d3661dc9607484e85c67e27f3e8be2c7d28ca032fec7", size = 5977787, upload-time = "2025-07-01T09:14:21.63Z" }, - { url = "https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024", size = 6645236, upload-time = "2025-07-01T09:14:23.321Z" }, - { url = "https://files.pythonhosted.org/packages/40/e7/848f69fb79843b3d91241bad658e9c14f39a32f71a301bcd1d139416d1be/pillow-11.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3e184b2f26ff146363dd07bde8b711833d7b0202e27d13540bfe2e35a323a809", size = 6086950, upload-time = "2025-07-01T09:14:25.237Z" }, - { url = "https://files.pythonhosted.org/packages/0b/1a/7cff92e695a2a29ac1958c2a0fe4c0b2393b60aac13b04a4fe2735cad52d/pillow-11.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6be31e3fc9a621e071bc17bb7de63b85cbe0bfae91bb0363c893cbe67247780d", size = 6723358, upload-time = "2025-07-01T09:14:27.053Z" }, - { url = "https://files.pythonhosted.org/packages/26/7d/73699ad77895f69edff76b0f332acc3d497f22f5d75e5360f78cbcaff248/pillow-11.3.0-cp312-cp312-win32.whl", hash = "sha256:7b161756381f0918e05e7cb8a371fff367e807770f8fe92ecb20d905d0e1c149", size = 6275079, upload-time = "2025-07-01T09:14:30.104Z" }, - { url = "https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d", size = 6986324, upload-time = "2025-07-01T09:14:31.899Z" }, - { url = "https://files.pythonhosted.org/packages/16/8f/b13447d1bf0b1f7467ce7d86f6e6edf66c0ad7cf44cf5c87a37f9bed9936/pillow-11.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:2aceea54f957dd4448264f9bf40875da0415c83eb85f55069d89c0ed436e3542", size = 2423067, upload-time = "2025-07-01T09:14:33.709Z" }, - { url = "https://files.pythonhosted.org/packages/1e/93/0952f2ed8db3a5a4c7a11f91965d6184ebc8cd7cbb7941a260d5f018cd2d/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:1c627742b539bba4309df89171356fcb3cc5a9178355b2727d1b74a6cf155fbd", size = 2128328, upload-time = "2025-07-01T09:14:35.276Z" }, - { url = "https://files.pythonhosted.org/packages/4b/e8/100c3d114b1a0bf4042f27e0f87d2f25e857e838034e98ca98fe7b8c0a9c/pillow-11.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30b7c02f3899d10f13d7a48163c8969e4e653f8b43416d23d13d1bbfdc93b9f8", size = 2170652, upload-time = "2025-07-01T09:14:37.203Z" }, - { url = "https://files.pythonhosted.org/packages/aa/86/3f758a28a6e381758545f7cdb4942e1cb79abd271bea932998fc0db93cb6/pillow-11.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7859a4cc7c9295f5838015d8cc0a9c215b77e43d07a25e460f35cf516df8626f", size = 2227443, upload-time = "2025-07-01T09:14:39.344Z" }, - { url = "https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c", size = 5278474, upload-time = "2025-07-01T09:14:41.843Z" }, - { url = "https://files.pythonhosted.org/packages/f9/0e/37d7d3eca6c879fbd9dba21268427dffda1ab00d4eb05b32923d4fbe3b12/pillow-11.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7db51d222548ccfd274e4572fdbf3e810a5e66b00608862f947b163e613b67dd", size = 4686038, upload-time = "2025-07-01T09:14:44.008Z" }, - { url = "https://files.pythonhosted.org/packages/ff/b0/3426e5c7f6565e752d81221af9d3676fdbb4f352317ceafd42899aaf5d8a/pillow-11.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2d6fcc902a24ac74495df63faad1884282239265c6839a0a6416d33faedfae7e", size = 5864407, upload-time = "2025-07-03T13:10:15.628Z" }, - { url = "https://files.pythonhosted.org/packages/fc/c1/c6c423134229f2a221ee53f838d4be9d82bab86f7e2f8e75e47b6bf6cd77/pillow-11.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f0f5d8f4a08090c6d6d578351a2b91acf519a54986c055af27e7a93feae6d3f1", size = 7639094, upload-time = "2025-07-03T13:10:21.857Z" }, - { url = "https://files.pythonhosted.org/packages/ba/c9/09e6746630fe6372c67c648ff9deae52a2bc20897d51fa293571977ceb5d/pillow-11.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c37d8ba9411d6003bba9e518db0db0c58a680ab9fe5179f040b0463644bc9805", size = 5973503, upload-time = "2025-07-01T09:14:45.698Z" }, - { url = "https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8", size = 6642574, upload-time = "2025-07-01T09:14:47.415Z" }, - { url = "https://files.pythonhosted.org/packages/36/de/d5cc31cc4b055b6c6fd990e3e7f0f8aaf36229a2698501bcb0cdf67c7146/pillow-11.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:023f6d2d11784a465f09fd09a34b150ea4672e85fb3d05931d89f373ab14abb2", size = 6084060, upload-time = "2025-07-01T09:14:49.636Z" }, - { url = "https://files.pythonhosted.org/packages/d5/ea/502d938cbaeec836ac28a9b730193716f0114c41325db428e6b280513f09/pillow-11.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:45dfc51ac5975b938e9809451c51734124e73b04d0f0ac621649821a63852e7b", size = 6721407, upload-time = "2025-07-01T09:14:51.962Z" }, - { url = "https://files.pythonhosted.org/packages/45/9c/9c5e2a73f125f6cbc59cc7087c8f2d649a7ae453f83bd0362ff7c9e2aee2/pillow-11.3.0-cp313-cp313-win32.whl", hash = "sha256:a4d336baed65d50d37b88ca5b60c0fa9d81e3a87d4a7930d3880d1624d5b31f3", size = 6273841, upload-time = "2025-07-01T09:14:54.142Z" }, - { url = "https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51", size = 6978450, upload-time = "2025-07-01T09:14:56.436Z" }, - { url = "https://files.pythonhosted.org/packages/17/d2/622f4547f69cd173955194b78e4d19ca4935a1b0f03a302d655c9f6aae65/pillow-11.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:1904e1264881f682f02b7f8167935cce37bc97db457f8e7849dc3a6a52b99580", size = 2423055, upload-time = "2025-07-01T09:14:58.072Z" }, - { url = "https://files.pythonhosted.org/packages/dd/80/a8a2ac21dda2e82480852978416cfacd439a4b490a501a288ecf4fe2532d/pillow-11.3.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4c834a3921375c48ee6b9624061076bc0a32a60b5532b322cc0ea64e639dd50e", size = 5281110, upload-time = "2025-07-01T09:14:59.79Z" }, - { url = "https://files.pythonhosted.org/packages/44/d6/b79754ca790f315918732e18f82a8146d33bcd7f4494380457ea89eb883d/pillow-11.3.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5e05688ccef30ea69b9317a9ead994b93975104a677a36a8ed8106be9260aa6d", size = 4689547, upload-time = "2025-07-01T09:15:01.648Z" }, - { url = "https://files.pythonhosted.org/packages/49/20/716b8717d331150cb00f7fdd78169c01e8e0c219732a78b0e59b6bdb2fd6/pillow-11.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1019b04af07fc0163e2810167918cb5add8d74674b6267616021ab558dc98ced", size = 5901554, upload-time = "2025-07-03T13:10:27.018Z" }, - { url = "https://files.pythonhosted.org/packages/74/cf/a9f3a2514a65bb071075063a96f0a5cf949c2f2fce683c15ccc83b1c1cab/pillow-11.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:f944255db153ebb2b19c51fe85dd99ef0ce494123f21b9db4877ffdfc5590c7c", size = 7669132, upload-time = "2025-07-03T13:10:33.01Z" }, - { url = "https://files.pythonhosted.org/packages/98/3c/da78805cbdbee9cb43efe8261dd7cc0b4b93f2ac79b676c03159e9db2187/pillow-11.3.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f85acb69adf2aaee8b7da124efebbdb959a104db34d3a2cb0f3793dbae422a8", size = 6005001, upload-time = "2025-07-01T09:15:03.365Z" }, - { url = "https://files.pythonhosted.org/packages/6c/fa/ce044b91faecf30e635321351bba32bab5a7e034c60187fe9698191aef4f/pillow-11.3.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05f6ecbeff5005399bb48d198f098a9b4b6bdf27b8487c7f38ca16eeb070cd59", size = 6668814, upload-time = "2025-07-01T09:15:05.655Z" }, - { url = "https://files.pythonhosted.org/packages/7b/51/90f9291406d09bf93686434f9183aba27b831c10c87746ff49f127ee80cb/pillow-11.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:a7bc6e6fd0395bc052f16b1a8670859964dbd7003bd0af2ff08342eb6e442cfe", size = 6113124, upload-time = "2025-07-01T09:15:07.358Z" }, - { url = "https://files.pythonhosted.org/packages/cd/5a/6fec59b1dfb619234f7636d4157d11fb4e196caeee220232a8d2ec48488d/pillow-11.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:83e1b0161c9d148125083a35c1c5a89db5b7054834fd4387499e06552035236c", size = 6747186, upload-time = "2025-07-01T09:15:09.317Z" }, - { url = "https://files.pythonhosted.org/packages/49/6b/00187a044f98255225f172de653941e61da37104a9ea60e4f6887717e2b5/pillow-11.3.0-cp313-cp313t-win32.whl", hash = "sha256:2a3117c06b8fb646639dce83694f2f9eac405472713fcb1ae887469c0d4f6788", size = 6277546, upload-time = "2025-07-01T09:15:11.311Z" }, - { url = "https://files.pythonhosted.org/packages/e8/5c/6caaba7e261c0d75bab23be79f1d06b5ad2a2ae49f028ccec801b0e853d6/pillow-11.3.0-cp313-cp313t-win_amd64.whl", hash = "sha256:857844335c95bea93fb39e0fa2726b4d9d758850b34075a7e3ff4f4fa3aa3b31", size = 6985102, upload-time = "2025-07-01T09:15:13.164Z" }, - { url = "https://files.pythonhosted.org/packages/f3/7e/b623008460c09a0cb38263c93b828c666493caee2eb34ff67f778b87e58c/pillow-11.3.0-cp313-cp313t-win_arm64.whl", hash = "sha256:8797edc41f3e8536ae4b10897ee2f637235c94f27404cac7297f7b607dd0716e", size = 2424803, upload-time = "2025-07-01T09:15:15.695Z" }, - { url = "https://files.pythonhosted.org/packages/73/f4/04905af42837292ed86cb1b1dabe03dce1edc008ef14c473c5c7e1443c5d/pillow-11.3.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:d9da3df5f9ea2a89b81bb6087177fb1f4d1c7146d583a3fe5c672c0d94e55e12", size = 5278520, upload-time = "2025-07-01T09:15:17.429Z" }, - { url = "https://files.pythonhosted.org/packages/41/b0/33d79e377a336247df6348a54e6d2a2b85d644ca202555e3faa0cf811ecc/pillow-11.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0b275ff9b04df7b640c59ec5a3cb113eefd3795a8df80bac69646ef699c6981a", size = 4686116, upload-time = "2025-07-01T09:15:19.423Z" }, - { url = "https://files.pythonhosted.org/packages/49/2d/ed8bc0ab219ae8768f529597d9509d184fe8a6c4741a6864fea334d25f3f/pillow-11.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0743841cabd3dba6a83f38a92672cccbd69af56e3e91777b0ee7f4dba4385632", size = 5864597, upload-time = "2025-07-03T13:10:38.404Z" }, - { url = "https://files.pythonhosted.org/packages/b5/3d/b932bb4225c80b58dfadaca9d42d08d0b7064d2d1791b6a237f87f661834/pillow-11.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2465a69cf967b8b49ee1b96d76718cd98c4e925414ead59fdf75cf0fd07df673", size = 7638246, upload-time = "2025-07-03T13:10:44.987Z" }, - { url = "https://files.pythonhosted.org/packages/09/b5/0487044b7c096f1b48f0d7ad416472c02e0e4bf6919541b111efd3cae690/pillow-11.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:41742638139424703b4d01665b807c6468e23e699e8e90cffefe291c5832b027", size = 5973336, upload-time = "2025-07-01T09:15:21.237Z" }, - { url = "https://files.pythonhosted.org/packages/a8/2d/524f9318f6cbfcc79fbc004801ea6b607ec3f843977652fdee4857a7568b/pillow-11.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:93efb0b4de7e340d99057415c749175e24c8864302369e05914682ba642e5d77", size = 6642699, upload-time = "2025-07-01T09:15:23.186Z" }, - { url = "https://files.pythonhosted.org/packages/6f/d2/a9a4f280c6aefedce1e8f615baaa5474e0701d86dd6f1dede66726462bbd/pillow-11.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7966e38dcd0fa11ca390aed7c6f20454443581d758242023cf36fcb319b1a874", size = 6083789, upload-time = "2025-07-01T09:15:25.1Z" }, - { url = "https://files.pythonhosted.org/packages/fe/54/86b0cd9dbb683a9d5e960b66c7379e821a19be4ac5810e2e5a715c09a0c0/pillow-11.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:98a9afa7b9007c67ed84c57c9e0ad86a6000da96eaa638e4f8abe5b65ff83f0a", size = 6720386, upload-time = "2025-07-01T09:15:27.378Z" }, - { url = "https://files.pythonhosted.org/packages/e7/95/88efcaf384c3588e24259c4203b909cbe3e3c2d887af9e938c2022c9dd48/pillow-11.3.0-cp314-cp314-win32.whl", hash = "sha256:02a723e6bf909e7cea0dac1b0e0310be9d7650cd66222a5f1c571455c0a45214", size = 6370911, upload-time = "2025-07-01T09:15:29.294Z" }, - { url = "https://files.pythonhosted.org/packages/2e/cc/934e5820850ec5eb107e7b1a72dd278140731c669f396110ebc326f2a503/pillow-11.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:a418486160228f64dd9e9efcd132679b7a02a5f22c982c78b6fc7dab3fefb635", size = 7117383, upload-time = "2025-07-01T09:15:31.128Z" }, - { url = "https://files.pythonhosted.org/packages/d6/e9/9c0a616a71da2a5d163aa37405e8aced9a906d574b4a214bede134e731bc/pillow-11.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:155658efb5e044669c08896c0c44231c5e9abcaadbc5cd3648df2f7c0b96b9a6", size = 2511385, upload-time = "2025-07-01T09:15:33.328Z" }, - { url = "https://files.pythonhosted.org/packages/1a/33/c88376898aff369658b225262cd4f2659b13e8178e7534df9e6e1fa289f6/pillow-11.3.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:59a03cdf019efbfeeed910bf79c7c93255c3d54bc45898ac2a4140071b02b4ae", size = 5281129, upload-time = "2025-07-01T09:15:35.194Z" }, - { url = "https://files.pythonhosted.org/packages/1f/70/d376247fb36f1844b42910911c83a02d5544ebd2a8bad9efcc0f707ea774/pillow-11.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f8a5827f84d973d8636e9dc5764af4f0cf2318d26744b3d902931701b0d46653", size = 4689580, upload-time = "2025-07-01T09:15:37.114Z" }, - { url = "https://files.pythonhosted.org/packages/eb/1c/537e930496149fbac69efd2fc4329035bbe2e5475b4165439e3be9cb183b/pillow-11.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ee92f2fd10f4adc4b43d07ec5e779932b4eb3dbfbc34790ada5a6669bc095aa6", size = 5902860, upload-time = "2025-07-03T13:10:50.248Z" }, - { url = "https://files.pythonhosted.org/packages/bd/57/80f53264954dcefeebcf9dae6e3eb1daea1b488f0be8b8fef12f79a3eb10/pillow-11.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c96d333dcf42d01f47b37e0979b6bd73ec91eae18614864622d9b87bbd5bbf36", size = 7670694, upload-time = "2025-07-03T13:10:56.432Z" }, - { url = "https://files.pythonhosted.org/packages/70/ff/4727d3b71a8578b4587d9c276e90efad2d6fe0335fd76742a6da08132e8c/pillow-11.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c96f993ab8c98460cd0c001447bff6194403e8b1d7e149ade5f00594918128b", size = 6005888, upload-time = "2025-07-01T09:15:39.436Z" }, - { url = "https://files.pythonhosted.org/packages/05/ae/716592277934f85d3be51d7256f3636672d7b1abfafdc42cf3f8cbd4b4c8/pillow-11.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:41342b64afeba938edb034d122b2dda5db2139b9a4af999729ba8818e0056477", size = 6670330, upload-time = "2025-07-01T09:15:41.269Z" }, - { url = "https://files.pythonhosted.org/packages/e7/bb/7fe6cddcc8827b01b1a9766f5fdeb7418680744f9082035bdbabecf1d57f/pillow-11.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:068d9c39a2d1b358eb9f245ce7ab1b5c3246c7c8c7d9ba58cfa5b43146c06e50", size = 6114089, upload-time = "2025-07-01T09:15:43.13Z" }, - { url = "https://files.pythonhosted.org/packages/8b/f5/06bfaa444c8e80f1a8e4bff98da9c83b37b5be3b1deaa43d27a0db37ef84/pillow-11.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a1bc6ba083b145187f648b667e05a2534ecc4b9f2784c2cbe3089e44868f2b9b", size = 6748206, upload-time = "2025-07-01T09:15:44.937Z" }, - { url = "https://files.pythonhosted.org/packages/f0/77/bc6f92a3e8e6e46c0ca78abfffec0037845800ea38c73483760362804c41/pillow-11.3.0-cp314-cp314t-win32.whl", hash = "sha256:118ca10c0d60b06d006be10a501fd6bbdfef559251ed31b794668ed569c87e12", size = 6377370, upload-time = "2025-07-01T09:15:46.673Z" }, - { url = "https://files.pythonhosted.org/packages/4a/82/3a721f7d69dca802befb8af08b7c79ebcab461007ce1c18bd91a5d5896f9/pillow-11.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:8924748b688aa210d79883357d102cd64690e56b923a186f35a82cbc10f997db", size = 7121500, upload-time = "2025-07-01T09:15:48.512Z" }, - { url = "https://files.pythonhosted.org/packages/89/c7/5572fa4a3f45740eaab6ae86fcdf7195b55beac1371ac8c619d880cfe948/pillow-11.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:79ea0d14d3ebad43ec77ad5272e6ff9bba5b679ef73375ea760261207fa8e0aa", size = 2512835, upload-time = "2025-07-01T09:15:50.399Z" }, - { url = "https://files.pythonhosted.org/packages/9e/8e/9c089f01677d1264ab8648352dcb7773f37da6ad002542760c80107da816/pillow-11.3.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:48d254f8a4c776de343051023eb61ffe818299eeac478da55227d96e241de53f", size = 5316478, upload-time = "2025-07-01T09:15:52.209Z" }, - { url = "https://files.pythonhosted.org/packages/b5/a9/5749930caf674695867eb56a581e78eb5f524b7583ff10b01b6e5048acb3/pillow-11.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7aee118e30a4cf54fdd873bd3a29de51e29105ab11f9aad8c32123f58c8f8081", size = 4686522, upload-time = "2025-07-01T09:15:54.162Z" }, - { url = "https://files.pythonhosted.org/packages/43/46/0b85b763eb292b691030795f9f6bb6fcaf8948c39413c81696a01c3577f7/pillow-11.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:23cff760a9049c502721bdb743a7cb3e03365fafcdfc2ef9784610714166e5a4", size = 5853376, upload-time = "2025-07-03T13:11:01.066Z" }, - { url = "https://files.pythonhosted.org/packages/5e/c6/1a230ec0067243cbd60bc2dad5dc3ab46a8a41e21c15f5c9b52b26873069/pillow-11.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6359a3bc43f57d5b375d1ad54a0074318a0844d11b76abccf478c37c986d3cfc", size = 7626020, upload-time = "2025-07-03T13:11:06.479Z" }, - { url = "https://files.pythonhosted.org/packages/63/dd/f296c27ffba447bfad76c6a0c44c1ea97a90cb9472b9304c94a732e8dbfb/pillow-11.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:092c80c76635f5ecb10f3f83d76716165c96f5229addbd1ec2bdbbda7d496e06", size = 5956732, upload-time = "2025-07-01T09:15:56.111Z" }, - { url = "https://files.pythonhosted.org/packages/a5/a0/98a3630f0b57f77bae67716562513d3032ae70414fcaf02750279c389a9e/pillow-11.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cadc9e0ea0a2431124cde7e1697106471fc4c1da01530e679b2391c37d3fbb3a", size = 6624404, upload-time = "2025-07-01T09:15:58.245Z" }, - { url = "https://files.pythonhosted.org/packages/de/e6/83dfba5646a290edd9a21964da07674409e410579c341fc5b8f7abd81620/pillow-11.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6a418691000f2a418c9135a7cf0d797c1bb7d9a485e61fe8e7722845b95ef978", size = 6067760, upload-time = "2025-07-01T09:16:00.003Z" }, - { url = "https://files.pythonhosted.org/packages/bc/41/15ab268fe6ee9a2bc7391e2bbb20a98d3974304ab1a406a992dcb297a370/pillow-11.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:97afb3a00b65cc0804d1c7abddbf090a81eaac02768af58cbdcaaa0a931e0b6d", size = 6700534, upload-time = "2025-07-01T09:16:02.29Z" }, - { url = "https://files.pythonhosted.org/packages/64/79/6d4f638b288300bed727ff29f2a3cb63db054b33518a95f27724915e3fbc/pillow-11.3.0-cp39-cp39-win32.whl", hash = "sha256:ea944117a7974ae78059fcc1800e5d3295172bb97035c0c1d9345fca1419da71", size = 6277091, upload-time = "2025-07-01T09:16:04.4Z" }, - { url = "https://files.pythonhosted.org/packages/46/05/4106422f45a05716fd34ed21763f8ec182e8ea00af6e9cb05b93a247361a/pillow-11.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:e5c5858ad8ec655450a7c7df532e9842cf8df7cc349df7225c60d5d348c8aada", size = 6986091, upload-time = "2025-07-01T09:16:06.342Z" }, - { url = "https://files.pythonhosted.org/packages/63/c6/287fd55c2c12761d0591549d48885187579b7c257bef0c6660755b0b59ae/pillow-11.3.0-cp39-cp39-win_arm64.whl", hash = "sha256:6abdbfd3aea42be05702a8dd98832329c167ee84400a1d1f61ab11437f1717eb", size = 2422632, upload-time = "2025-07-01T09:16:08.142Z" }, - { url = "https://files.pythonhosted.org/packages/6f/8b/209bd6b62ce8367f47e68a218bffac88888fdf2c9fcf1ecadc6c3ec1ebc7/pillow-11.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:3cee80663f29e3843b68199b9d6f4f54bd1d4a6b59bdd91bceefc51238bcb967", size = 5270556, upload-time = "2025-07-01T09:16:09.961Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e6/231a0b76070c2cfd9e260a7a5b504fb72da0a95279410fa7afd99d9751d6/pillow-11.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b5f56c3f344f2ccaf0dd875d3e180f631dc60a51b314295a3e681fe8cf851fbe", size = 4654625, upload-time = "2025-07-01T09:16:11.913Z" }, - { url = "https://files.pythonhosted.org/packages/13/f4/10cf94fda33cb12765f2397fc285fa6d8eb9c29de7f3185165b702fc7386/pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e67d793d180c9df62f1f40aee3accca4829d3794c95098887edc18af4b8b780c", size = 4874207, upload-time = "2025-07-03T13:11:10.201Z" }, - { url = "https://files.pythonhosted.org/packages/72/c9/583821097dc691880c92892e8e2d41fe0a5a3d6021f4963371d2f6d57250/pillow-11.3.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d000f46e2917c705e9fb93a3606ee4a819d1e3aa7a9b442f6444f07e77cf5e25", size = 6583939, upload-time = "2025-07-03T13:11:15.68Z" }, - { url = "https://files.pythonhosted.org/packages/3b/8e/5c9d410f9217b12320efc7c413e72693f48468979a013ad17fd690397b9a/pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:527b37216b6ac3a12d7838dc3bd75208ec57c1c6d11ef01902266a5a0c14fc27", size = 4957166, upload-time = "2025-07-01T09:16:13.74Z" }, - { url = "https://files.pythonhosted.org/packages/62/bb/78347dbe13219991877ffb3a91bf09da8317fbfcd4b5f9140aeae020ad71/pillow-11.3.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:be5463ac478b623b9dd3937afd7fb7ab3d79dd290a28e2b6df292dc75063eb8a", size = 5581482, upload-time = "2025-07-01T09:16:16.107Z" }, - { url = "https://files.pythonhosted.org/packages/d9/28/1000353d5e61498aaeaaf7f1e4b49ddb05f2c6575f9d4f9f914a3538b6e1/pillow-11.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:8dc70ca24c110503e16918a658b869019126ecfe03109b754c402daff12b3d9f", size = 6984596, upload-time = "2025-07-01T09:16:18.07Z" }, - { url = "https://files.pythonhosted.org/packages/9e/e3/6fa84033758276fb31da12e5fb66ad747ae83b93c67af17f8c6ff4cc8f34/pillow-11.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7c8ec7a017ad1bd562f93dbd8505763e688d388cde6e4a010ae1486916e713e6", size = 5270566, upload-time = "2025-07-01T09:16:19.801Z" }, - { url = "https://files.pythonhosted.org/packages/5b/ee/e8d2e1ab4892970b561e1ba96cbd59c0d28cf66737fc44abb2aec3795a4e/pillow-11.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9ab6ae226de48019caa8074894544af5b53a117ccb9d3b3dcb2871464c829438", size = 4654618, upload-time = "2025-07-01T09:16:21.818Z" }, - { url = "https://files.pythonhosted.org/packages/f2/6d/17f80f4e1f0761f02160fc433abd4109fa1548dcfdca46cfdadaf9efa565/pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fe27fb049cdcca11f11a7bfda64043c37b30e6b91f10cb5bab275806c32f6ab3", size = 4874248, upload-time = "2025-07-03T13:11:20.738Z" }, - { url = "https://files.pythonhosted.org/packages/de/5f/c22340acd61cef960130585bbe2120e2fd8434c214802f07e8c03596b17e/pillow-11.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:465b9e8844e3c3519a983d58b80be3f668e2a7a5db97f2784e7079fbc9f9822c", size = 6583963, upload-time = "2025-07-03T13:11:26.283Z" }, - { url = "https://files.pythonhosted.org/packages/31/5e/03966aedfbfcbb4d5f8aa042452d3361f325b963ebbadddac05b122e47dd/pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5418b53c0d59b3824d05e029669efa023bbef0f3e92e75ec8428f3799487f361", size = 4957170, upload-time = "2025-07-01T09:16:23.762Z" }, - { url = "https://files.pythonhosted.org/packages/cc/2d/e082982aacc927fc2cab48e1e731bdb1643a1406acace8bed0900a61464e/pillow-11.3.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:504b6f59505f08ae014f724b6207ff6222662aab5cc9542577fb084ed0676ac7", size = 5581505, upload-time = "2025-07-01T09:16:25.593Z" }, - { url = "https://files.pythonhosted.org/packages/34/e7/ae39f538fd6844e982063c3a5e4598b8ced43b9633baa3a85ef33af8c05c/pillow-11.3.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c84d689db21a1c397d001aa08241044aa2069e7587b398c8cc63020390b1c1b8", size = 6984598, upload-time = "2025-07-01T09:16:27.732Z" }, -] - -[[package]] -name = "pillow" -version = "12.1.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1d/30/5bd3d794762481f8c8ae9c80e7b76ecea73b916959eb587521358ef0b2f9/pillow-12.1.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f1625b72740fdda5d77b4def688eb8fd6490975d06b909fd19f13f391e077e0", size = 5304099, upload-time = "2026-02-11T04:20:06.13Z" }, - { url = "https://files.pythonhosted.org/packages/bd/c1/aab9e8f3eeb4490180e357955e15c2ef74b31f64790ff356c06fb6cf6d84/pillow-12.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:178aa072084bd88ec759052feca8e56cbb14a60b39322b99a049e58090479713", size = 4657880, upload-time = "2026-02-11T04:20:09.291Z" }, - { url = "https://files.pythonhosted.org/packages/f1/0a/9879e30d56815ad529d3985aeff5af4964202425c27261a6ada10f7cbf53/pillow-12.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b66e95d05ba806247aaa1561f080abc7975daf715c30780ff92a20e4ec546e1b", size = 6222587, upload-time = "2026-02-11T04:20:10.82Z" }, - { url = "https://files.pythonhosted.org/packages/5a/5f/a1b72ff7139e4f89014e8d451442c74a774d5c43cd938fb0a9f878576b37/pillow-12.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:89c7e895002bbe49cdc5426150377cbbc04767d7547ed145473f496dfa40408b", size = 8027678, upload-time = "2026-02-11T04:20:12.455Z" }, - { url = "https://files.pythonhosted.org/packages/e2/c2/c7cb187dac79a3d22c3ebeae727abee01e077c8c7d930791dc592f335153/pillow-12.1.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a5cbdcddad0af3da87cb16b60d23648bc3b51967eb07223e9fed77a82b457c4", size = 6335777, upload-time = "2026-02-11T04:20:14.441Z" }, - { url = "https://files.pythonhosted.org/packages/0c/7b/f9b09a7804ec7336effb96c26d37c29d27225783dc1501b7d62dcef6ae25/pillow-12.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9f51079765661884a486727f0729d29054242f74b46186026582b4e4769918e4", size = 7027140, upload-time = "2026-02-11T04:20:16.387Z" }, - { url = "https://files.pythonhosted.org/packages/98/b2/2fa3c391550bd421b10849d1a2144c44abcd966daadd2f7c12e19ea988c4/pillow-12.1.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:99c1506ea77c11531d75e3a412832a13a71c7ebc8192ab9e4b2e355555920e3e", size = 6449855, upload-time = "2026-02-11T04:20:18.554Z" }, - { url = "https://files.pythonhosted.org/packages/96/ff/9caf4b5b950c669263c39e96c78c0d74a342c71c4f43fd031bb5cb7ceac9/pillow-12.1.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:36341d06738a9f66c8287cf8b876d24b18db9bd8740fa0672c74e259ad408cff", size = 7151329, upload-time = "2026-02-11T04:20:20.646Z" }, - { url = "https://files.pythonhosted.org/packages/7b/f8/4b24841f582704da675ca535935bccb32b00a6da1226820845fac4a71136/pillow-12.1.1-cp310-cp310-win32.whl", hash = "sha256:6c52f062424c523d6c4db85518774cc3d50f5539dd6eed32b8f6229b26f24d40", size = 6325574, upload-time = "2026-02-11T04:20:22.43Z" }, - { url = "https://files.pythonhosted.org/packages/f8/f9/9f6b01c0881d7036063aa6612ef04c0e2cad96be21325a1e92d0203f8e91/pillow-12.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6008de247150668a705a6338156efb92334113421ceecf7438a12c9a12dab23", size = 7032347, upload-time = "2026-02-11T04:20:23.932Z" }, - { url = "https://files.pythonhosted.org/packages/79/13/c7922edded3dcdaf10c59297540b72785620abc0538872c819915746757d/pillow-12.1.1-cp310-cp310-win_arm64.whl", hash = "sha256:1a9b0ee305220b392e1124a764ee4265bd063e54a751a6b62eff69992f457fa9", size = 2453457, upload-time = "2026-02-11T04:20:25.392Z" }, - { url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" }, - { url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" }, - { url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" }, - { url = "https://files.pythonhosted.org/packages/d5/e2/53c43334bbbb2d3b938978532fbda8e62bb6e0b23a26ce8592f36bcc4987/pillow-12.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc354a04072b765eccf2204f588a7a532c9511e8b9c7f900e1b64e3e33487090", size = 8038007, upload-time = "2026-02-11T04:20:34.225Z" }, - { url = "https://files.pythonhosted.org/packages/b8/a6/3d0e79c8a9d58150dd98e199d7c1c56861027f3829a3a60b3c2784190180/pillow-12.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e7976bf1910a8116b523b9f9f58bf410f3e8aa330cd9a2bb2953f9266ab49af", size = 6345418, upload-time = "2026-02-11T04:20:35.858Z" }, - { url = "https://files.pythonhosted.org/packages/a2/c8/46dfeac5825e600579157eea177be43e2f7ff4a99da9d0d0a49533509ac5/pillow-12.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:597bd9c8419bc7c6af5604e55847789b69123bbe25d65cc6ad3012b4f3c98d8b", size = 7034590, upload-time = "2026-02-11T04:20:37.91Z" }, - { url = "https://files.pythonhosted.org/packages/af/bf/e6f65d3db8a8bbfeaf9e13cc0417813f6319863a73de934f14b2229ada18/pillow-12.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2c1fc0f2ca5f96a3c8407e41cca26a16e46b21060fe6d5b099d2cb01412222f5", size = 6458655, upload-time = "2026-02-11T04:20:39.496Z" }, - { url = "https://files.pythonhosted.org/packages/f9/c2/66091f3f34a25894ca129362e510b956ef26f8fb67a0e6417bc5744e56f1/pillow-12.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:578510d88c6229d735855e1f278aa305270438d36a05031dfaae5067cc8eb04d", size = 7159286, upload-time = "2026-02-11T04:20:41.139Z" }, - { url = "https://files.pythonhosted.org/packages/7b/5a/24bc8eb526a22f957d0cec6243146744966d40857e3d8deb68f7902ca6c1/pillow-12.1.1-cp311-cp311-win32.whl", hash = "sha256:7311c0a0dcadb89b36b7025dfd8326ecfa36964e29913074d47382706e516a7c", size = 6328663, upload-time = "2026-02-11T04:20:43.184Z" }, - { url = "https://files.pythonhosted.org/packages/31/03/bef822e4f2d8f9d7448c133d0a18185d3cce3e70472774fffefe8b0ed562/pillow-12.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:fbfa2a7c10cc2623f412753cddf391c7f971c52ca40a3f65dc5039b2939e8563", size = 7031448, upload-time = "2026-02-11T04:20:44.696Z" }, - { url = "https://files.pythonhosted.org/packages/49/70/f76296f53610bd17b2e7d31728b8b7825e3ac3b5b3688b51f52eab7c0818/pillow-12.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:b81b5e3511211631b3f672a595e3221252c90af017e399056d0faabb9538aa80", size = 2453651, upload-time = "2026-02-11T04:20:46.243Z" }, - { url = "https://files.pythonhosted.org/packages/07/d3/8df65da0d4df36b094351dce696f2989bec731d4f10e743b1c5f4da4d3bf/pillow-12.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab323b787d6e18b3d91a72fc99b1a2c28651e4358749842b8f8dfacd28ef2052", size = 5262803, upload-time = "2026-02-11T04:20:47.653Z" }, - { url = "https://files.pythonhosted.org/packages/d6/71/5026395b290ff404b836e636f51d7297e6c83beceaa87c592718747e670f/pillow-12.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:adebb5bee0f0af4909c30db0d890c773d1a92ffe83da908e2e9e720f8edf3984", size = 4657601, upload-time = "2026-02-11T04:20:49.328Z" }, - { url = "https://files.pythonhosted.org/packages/b1/2e/1001613d941c67442f745aff0f7cc66dd8df9a9c084eb497e6a543ee6f7e/pillow-12.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb66b7cc26f50977108790e2456b7921e773f23db5630261102233eb355a3b79", size = 6234995, upload-time = "2026-02-11T04:20:51.032Z" }, - { url = "https://files.pythonhosted.org/packages/07/26/246ab11455b2549b9233dbd44d358d033a2f780fa9007b61a913c5b2d24e/pillow-12.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aee2810642b2898bb187ced9b349e95d2a7272930796e022efaf12e99dccd293", size = 8045012, upload-time = "2026-02-11T04:20:52.882Z" }, - { url = "https://files.pythonhosted.org/packages/b2/8b/07587069c27be7535ac1fe33874e32de118fbd34e2a73b7f83436a88368c/pillow-12.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0b1cd6232e2b618adcc54d9882e4e662a089d5768cd188f7c245b4c8c44a397", size = 6349638, upload-time = "2026-02-11T04:20:54.444Z" }, - { url = "https://files.pythonhosted.org/packages/ff/79/6df7b2ee763d619cda2fb4fea498e5f79d984dae304d45a8999b80d6cf5c/pillow-12.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7aac39bcf8d4770d089588a2e1dd111cbaa42df5a94be3114222057d68336bd0", size = 7041540, upload-time = "2026-02-11T04:20:55.97Z" }, - { url = "https://files.pythonhosted.org/packages/2c/5e/2ba19e7e7236d7529f4d873bdaf317a318896bac289abebd4bb00ef247f0/pillow-12.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ab174cd7d29a62dd139c44bf74b698039328f45cb03b4596c43473a46656b2f3", size = 6462613, upload-time = "2026-02-11T04:20:57.542Z" }, - { url = "https://files.pythonhosted.org/packages/03/03/31216ec124bb5c3dacd74ce8efff4cc7f52643653bad4825f8f08c697743/pillow-12.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:339ffdcb7cbeaa08221cd401d517d4b1fe7a9ed5d400e4a8039719238620ca35", size = 7166745, upload-time = "2026-02-11T04:20:59.196Z" }, - { url = "https://files.pythonhosted.org/packages/1f/e7/7c4552d80052337eb28653b617eafdef39adfb137c49dd7e831b8dc13bc5/pillow-12.1.1-cp312-cp312-win32.whl", hash = "sha256:5d1f9575a12bed9e9eedd9a4972834b08c97a352bd17955ccdebfeca5913fa0a", size = 6328823, upload-time = "2026-02-11T04:21:01.385Z" }, - { url = "https://files.pythonhosted.org/packages/3d/17/688626d192d7261bbbf98846fc98995726bddc2c945344b65bec3a29d731/pillow-12.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:21329ec8c96c6e979cd0dfd29406c40c1d52521a90544463057d2aaa937d66a6", size = 7033367, upload-time = "2026-02-11T04:21:03.536Z" }, - { url = "https://files.pythonhosted.org/packages/ed/fe/a0ef1f73f939b0eca03ee2c108d0043a87468664770612602c63266a43c4/pillow-12.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:af9a332e572978f0218686636610555ae3defd1633597be015ed50289a03c523", size = 2453811, upload-time = "2026-02-11T04:21:05.116Z" }, - { url = "https://files.pythonhosted.org/packages/d5/11/6db24d4bd7685583caeae54b7009584e38da3c3d4488ed4cd25b439de486/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:d242e8ac078781f1de88bf823d70c1a9b3c7950a44cdf4b7c012e22ccbcd8e4e", size = 4062689, upload-time = "2026-02-11T04:21:06.804Z" }, - { url = "https://files.pythonhosted.org/packages/33/c0/ce6d3b1fe190f0021203e0d9b5b99e57843e345f15f9ef22fcd43842fd21/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:02f84dfad02693676692746df05b89cf25597560db2857363a208e393429f5e9", size = 4138535, upload-time = "2026-02-11T04:21:08.452Z" }, - { url = "https://files.pythonhosted.org/packages/a0/c6/d5eb6a4fb32a3f9c21a8c7613ec706534ea1cf9f4b3663e99f0d83f6fca8/pillow-12.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:e65498daf4b583091ccbb2556c7000abf0f3349fcd57ef7adc9a84a394ed29f6", size = 3601364, upload-time = "2026-02-11T04:21:10.194Z" }, - { url = "https://files.pythonhosted.org/packages/14/a1/16c4b823838ba4c9c52c0e6bbda903a3fe5a1bdbf1b8eb4fff7156f3e318/pillow-12.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c6db3b84c87d48d0088943bf33440e0c42370b99b1c2a7989216f7b42eede60", size = 5262561, upload-time = "2026-02-11T04:21:11.742Z" }, - { url = "https://files.pythonhosted.org/packages/bb/ad/ad9dc98ff24f485008aa5cdedaf1a219876f6f6c42a4626c08bc4e80b120/pillow-12.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8b7e5304e34942bf62e15184219a7b5ad4ff7f3bb5cca4d984f37df1a0e1aee2", size = 4657460, upload-time = "2026-02-11T04:21:13.786Z" }, - { url = "https://files.pythonhosted.org/packages/9e/1b/f1a4ea9a895b5732152789326202a82464d5254759fbacae4deea3069334/pillow-12.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:18e5bddd742a44b7e6b1e773ab5db102bd7a94c32555ba656e76d319d19c3850", size = 6232698, upload-time = "2026-02-11T04:21:15.949Z" }, - { url = "https://files.pythonhosted.org/packages/95/f4/86f51b8745070daf21fd2e5b1fe0eb35d4db9ca26e6d58366562fb56a743/pillow-12.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc44ef1f3de4f45b50ccf9136999d71abb99dca7706bc75d222ed350b9fd2289", size = 8041706, upload-time = "2026-02-11T04:21:17.723Z" }, - { url = "https://files.pythonhosted.org/packages/29/9b/d6ecd956bb1266dd1045e995cce9b8d77759e740953a1c9aad9502a0461e/pillow-12.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a8eb7ed8d4198bccbd07058416eeec51686b498e784eda166395a23eb99138e", size = 6346621, upload-time = "2026-02-11T04:21:19.547Z" }, - { url = "https://files.pythonhosted.org/packages/71/24/538bff45bde96535d7d998c6fed1a751c75ac7c53c37c90dc2601b243893/pillow-12.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47b94983da0c642de92ced1702c5b6c292a84bd3a8e1d1702ff923f183594717", size = 7038069, upload-time = "2026-02-11T04:21:21.378Z" }, - { url = "https://files.pythonhosted.org/packages/94/0e/58cb1a6bc48f746bc4cb3adb8cabff73e2742c92b3bf7a220b7cf69b9177/pillow-12.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:518a48c2aab7ce596d3bf79d0e275661b846e86e4d0e7dec34712c30fe07f02a", size = 6460040, upload-time = "2026-02-11T04:21:23.148Z" }, - { url = "https://files.pythonhosted.org/packages/6c/57/9045cb3ff11eeb6c1adce3b2d60d7d299d7b273a2e6c8381a524abfdc474/pillow-12.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a550ae29b95c6dc13cf69e2c9dc5747f814c54eeb2e32d683e5e93af56caa029", size = 7164523, upload-time = "2026-02-11T04:21:25.01Z" }, - { url = "https://files.pythonhosted.org/packages/73/f2/9be9cb99f2175f0d4dbadd6616ce1bf068ee54a28277ea1bf1fbf729c250/pillow-12.1.1-cp313-cp313-win32.whl", hash = "sha256:a003d7422449f6d1e3a34e3dd4110c22148336918ddbfc6a32581cd54b2e0b2b", size = 6332552, upload-time = "2026-02-11T04:21:27.238Z" }, - { url = "https://files.pythonhosted.org/packages/3f/eb/b0834ad8b583d7d9d42b80becff092082a1c3c156bb582590fcc973f1c7c/pillow-12.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:344cf1e3dab3be4b1fa08e449323d98a2a3f819ad20f4b22e77a0ede31f0faa1", size = 7040108, upload-time = "2026-02-11T04:21:29.462Z" }, - { url = "https://files.pythonhosted.org/packages/d5/7d/fc09634e2aabdd0feabaff4a32f4a7d97789223e7c2042fd805ea4b4d2c2/pillow-12.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c0dd1636633e7e6a0afe7bf6a51a14992b7f8e60de5789018ebbdfae55b040a", size = 2453712, upload-time = "2026-02-11T04:21:31.072Z" }, - { url = "https://files.pythonhosted.org/packages/19/2a/b9d62794fc8a0dd14c1943df68347badbd5511103e0d04c035ffe5cf2255/pillow-12.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0330d233c1a0ead844fc097a7d16c0abff4c12e856c0b325f231820fee1f39da", size = 5264880, upload-time = "2026-02-11T04:21:32.865Z" }, - { url = "https://files.pythonhosted.org/packages/26/9d/e03d857d1347fa5ed9247e123fcd2a97b6220e15e9cb73ca0a8d91702c6e/pillow-12.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5dae5f21afb91322f2ff791895ddd8889e5e947ff59f71b46041c8ce6db790bc", size = 4660616, upload-time = "2026-02-11T04:21:34.97Z" }, - { url = "https://files.pythonhosted.org/packages/f7/ec/8a6d22afd02570d30954e043f09c32772bfe143ba9285e2fdb11284952cd/pillow-12.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e0c664be47252947d870ac0d327fea7e63985a08794758aa8af5b6cb6ec0c9c", size = 6269008, upload-time = "2026-02-11T04:21:36.623Z" }, - { url = "https://files.pythonhosted.org/packages/3d/1d/6d875422c9f28a4a361f495a5f68d9de4a66941dc2c619103ca335fa6446/pillow-12.1.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:691ab2ac363b8217f7d31b3497108fb1f50faab2f75dfb03284ec2f217e87bf8", size = 8073226, upload-time = "2026-02-11T04:21:38.585Z" }, - { url = "https://files.pythonhosted.org/packages/a1/cd/134b0b6ee5eda6dc09e25e24b40fdafe11a520bc725c1d0bbaa5e00bf95b/pillow-12.1.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9e8064fb1cc019296958595f6db671fba95209e3ceb0c4734c9baf97de04b20", size = 6380136, upload-time = "2026-02-11T04:21:40.562Z" }, - { url = "https://files.pythonhosted.org/packages/7a/a9/7628f013f18f001c1b98d8fffe3452f306a70dc6aba7d931019e0492f45e/pillow-12.1.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:472a8d7ded663e6162dafdf20015c486a7009483ca671cece7a9279b512fcb13", size = 7067129, upload-time = "2026-02-11T04:21:42.521Z" }, - { url = "https://files.pythonhosted.org/packages/1e/f8/66ab30a2193b277785601e82ee2d49f68ea575d9637e5e234faaa98efa4c/pillow-12.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:89b54027a766529136a06cfebeecb3a04900397a3590fd252160b888479517bf", size = 6491807, upload-time = "2026-02-11T04:21:44.22Z" }, - { url = "https://files.pythonhosted.org/packages/da/0b/a877a6627dc8318fdb84e357c5e1a758c0941ab1ddffdafd231983788579/pillow-12.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:86172b0831b82ce4f7877f280055892b31179e1576aa00d0df3bb1bbf8c3e524", size = 7190954, upload-time = "2026-02-11T04:21:46.114Z" }, - { url = "https://files.pythonhosted.org/packages/83/43/6f732ff85743cf746b1361b91665d9f5155e1483817f693f8d57ea93147f/pillow-12.1.1-cp313-cp313t-win32.whl", hash = "sha256:44ce27545b6efcf0fdbdceb31c9a5bdea9333e664cda58a7e674bb74608b3986", size = 6336441, upload-time = "2026-02-11T04:21:48.22Z" }, - { url = "https://files.pythonhosted.org/packages/3b/44/e865ef3986611bb75bfabdf94a590016ea327833f434558801122979cd0e/pillow-12.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a285e3eb7a5a45a2ff504e31f4a8d1b12ef62e84e5411c6804a42197c1cf586c", size = 7045383, upload-time = "2026-02-11T04:21:50.015Z" }, - { url = "https://files.pythonhosted.org/packages/a8/c6/f4fb24268d0c6908b9f04143697ea18b0379490cb74ba9e8d41b898bd005/pillow-12.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cc7d296b5ea4d29e6570dabeaed58d31c3fea35a633a69679fb03d7664f43fb3", size = 2456104, upload-time = "2026-02-11T04:21:51.633Z" }, - { url = "https://files.pythonhosted.org/packages/03/d0/bebb3ffbf31c5a8e97241476c4cf8b9828954693ce6744b4a2326af3e16b/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:417423db963cb4be8bac3fc1204fe61610f6abeed1580a7a2cbb2fbda20f12af", size = 4062652, upload-time = "2026-02-11T04:21:53.19Z" }, - { url = "https://files.pythonhosted.org/packages/2d/c0/0e16fb0addda4851445c28f8350d8c512f09de27bbb0d6d0bbf8b6709605/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:b957b71c6b2387610f556a7eb0828afbe40b4a98036fc0d2acfa5a44a0c2036f", size = 4138823, upload-time = "2026-02-11T04:22:03.088Z" }, - { url = "https://files.pythonhosted.org/packages/6b/fb/6170ec655d6f6bb6630a013dd7cf7bc218423d7b5fa9071bf63dc32175ae/pillow-12.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:097690ba1f2efdeb165a20469d59d8bb03c55fb6621eb2041a060ae8ea3e9642", size = 3601143, upload-time = "2026-02-11T04:22:04.909Z" }, - { url = "https://files.pythonhosted.org/packages/59/04/dc5c3f297510ba9a6837cbb318b87dd2b8f73eb41a43cc63767f65cb599c/pillow-12.1.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2815a87ab27848db0321fb78c7f0b2c8649dee134b7f2b80c6a45c6831d75ccd", size = 5266254, upload-time = "2026-02-11T04:22:07.656Z" }, - { url = "https://files.pythonhosted.org/packages/05/30/5db1236b0d6313f03ebf97f5e17cda9ca060f524b2fcc875149a8360b21c/pillow-12.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7ed2c6543bad5a7d5530eb9e78c53132f93dfa44a28492db88b41cdab885202", size = 4657499, upload-time = "2026-02-11T04:22:09.613Z" }, - { url = "https://files.pythonhosted.org/packages/6f/18/008d2ca0eb612e81968e8be0bbae5051efba24d52debf930126d7eaacbba/pillow-12.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:652a2c9ccfb556235b2b501a3a7cf3742148cd22e04b5625c5fe057ea3e3191f", size = 6232137, upload-time = "2026-02-11T04:22:11.434Z" }, - { url = "https://files.pythonhosted.org/packages/70/f1/f14d5b8eeb4b2cd62b9f9f847eb6605f103df89ef619ac68f92f748614ea/pillow-12.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d6e4571eedf43af33d0fc233a382a76e849badbccdf1ac438841308652a08e1f", size = 8042721, upload-time = "2026-02-11T04:22:13.321Z" }, - { url = "https://files.pythonhosted.org/packages/5a/d6/17824509146e4babbdabf04d8171491fa9d776f7061ff6e727522df9bd03/pillow-12.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b574c51cf7d5d62e9be37ba446224b59a2da26dc4c1bb2ecbe936a4fb1a7cb7f", size = 6347798, upload-time = "2026-02-11T04:22:15.449Z" }, - { url = "https://files.pythonhosted.org/packages/d1/ee/c85a38a9ab92037a75615aba572c85ea51e605265036e00c5b67dfafbfe2/pillow-12.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a37691702ed687799de29a518d63d4682d9016932db66d4e90c345831b02fb4e", size = 7039315, upload-time = "2026-02-11T04:22:17.24Z" }, - { url = "https://files.pythonhosted.org/packages/ec/f3/bc8ccc6e08a148290d7523bde4d9a0d6c981db34631390dc6e6ec34cacf6/pillow-12.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f95c00d5d6700b2b890479664a06e754974848afaae5e21beb4d83c106923fd0", size = 6462360, upload-time = "2026-02-11T04:22:19.111Z" }, - { url = "https://files.pythonhosted.org/packages/f6/ab/69a42656adb1d0665ab051eec58a41f169ad295cf81ad45406963105408f/pillow-12.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:559b38da23606e68681337ad74622c4dbba02254fc9cb4488a305dd5975c7eeb", size = 7165438, upload-time = "2026-02-11T04:22:21.041Z" }, - { url = "https://files.pythonhosted.org/packages/02/46/81f7aa8941873f0f01d4b55cc543b0a3d03ec2ee30d617a0448bf6bd6dec/pillow-12.1.1-cp314-cp314-win32.whl", hash = "sha256:03edcc34d688572014ff223c125a3f77fb08091e4607e7745002fc214070b35f", size = 6431503, upload-time = "2026-02-11T04:22:22.833Z" }, - { url = "https://files.pythonhosted.org/packages/40/72/4c245f7d1044b67affc7f134a09ea619d4895333d35322b775b928180044/pillow-12.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:50480dcd74fa63b8e78235957d302d98d98d82ccbfac4c7e12108ba9ecbdba15", size = 7176748, upload-time = "2026-02-11T04:22:24.64Z" }, - { url = "https://files.pythonhosted.org/packages/e4/ad/8a87bdbe038c5c698736e3348af5c2194ffb872ea52f11894c95f9305435/pillow-12.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:5cb1785d97b0c3d1d1a16bc1d710c4a0049daefc4935f3a8f31f827f4d3d2e7f", size = 2544314, upload-time = "2026-02-11T04:22:26.685Z" }, - { url = "https://files.pythonhosted.org/packages/6c/9d/efd18493f9de13b87ede7c47e69184b9e859e4427225ea962e32e56a49bc/pillow-12.1.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1f90cff8aa76835cba5769f0b3121a22bd4eb9e6884cfe338216e557a9a548b8", size = 5268612, upload-time = "2026-02-11T04:22:29.884Z" }, - { url = "https://files.pythonhosted.org/packages/f8/f1/4f42eb2b388eb2ffc660dcb7f7b556c1015c53ebd5f7f754965ef997585b/pillow-12.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1f1be78ce9466a7ee64bfda57bdba0f7cc499d9794d518b854816c41bf0aa4e9", size = 4660567, upload-time = "2026-02-11T04:22:31.799Z" }, - { url = "https://files.pythonhosted.org/packages/01/54/df6ef130fa43e4b82e32624a7b821a2be1c5653a5fdad8469687a7db4e00/pillow-12.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:42fc1f4677106188ad9a55562bbade416f8b55456f522430fadab3cef7cd4e60", size = 6269951, upload-time = "2026-02-11T04:22:33.921Z" }, - { url = "https://files.pythonhosted.org/packages/a9/48/618752d06cc44bb4aae8ce0cd4e6426871929ed7b46215638088270d9b34/pillow-12.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98edb152429ab62a1818039744d8fbb3ccab98a7c29fc3d5fcef158f3f1f68b7", size = 8074769, upload-time = "2026-02-11T04:22:35.877Z" }, - { url = "https://files.pythonhosted.org/packages/c3/bd/f1d71eb39a72fa088d938655afba3e00b38018d052752f435838961127d8/pillow-12.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d470ab1178551dd17fdba0fef463359c41aaa613cdcd7ff8373f54be629f9f8f", size = 6381358, upload-time = "2026-02-11T04:22:37.698Z" }, - { url = "https://files.pythonhosted.org/packages/64/ef/c784e20b96674ed36a5af839305f55616f8b4f8aa8eeccf8531a6e312243/pillow-12.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6408a7b064595afcab0a49393a413732a35788f2a5092fdc6266952ed67de586", size = 7068558, upload-time = "2026-02-11T04:22:39.597Z" }, - { url = "https://files.pythonhosted.org/packages/73/cb/8059688b74422ae61278202c4e1ad992e8a2e7375227be0a21c6b87ca8d5/pillow-12.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5d8c41325b382c07799a3682c1c258469ea2ff97103c53717b7893862d0c98ce", size = 6493028, upload-time = "2026-02-11T04:22:42.73Z" }, - { url = "https://files.pythonhosted.org/packages/c6/da/e3c008ed7d2dd1f905b15949325934510b9d1931e5df999bb15972756818/pillow-12.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c7697918b5be27424e9ce568193efd13d925c4481dd364e43f5dff72d33e10f8", size = 7191940, upload-time = "2026-02-11T04:22:44.543Z" }, - { url = "https://files.pythonhosted.org/packages/01/4a/9202e8d11714c1fc5951f2e1ef362f2d7fbc595e1f6717971d5dd750e969/pillow-12.1.1-cp314-cp314t-win32.whl", hash = "sha256:d2912fd8114fc5545aa3a4b5576512f64c55a03f3ebcca4c10194d593d43ea36", size = 6438736, upload-time = "2026-02-11T04:22:46.347Z" }, - { url = "https://files.pythonhosted.org/packages/f3/ca/cbce2327eb9885476b3957b2e82eb12c866a8b16ad77392864ad601022ce/pillow-12.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:4ceb838d4bd9dab43e06c363cab2eebf63846d6a4aeaea283bbdfd8f1a8ed58b", size = 7182894, upload-time = "2026-02-11T04:22:48.114Z" }, - { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, - { url = "https://files.pythonhosted.org/packages/56/11/5d43209aa4cb58e0cc80127956ff1796a68b928e6324bbf06ef4db34367b/pillow-12.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:600fd103672b925fe62ed08e0d874ea34d692474df6f4bf7ebe148b30f89f39f", size = 5228606, upload-time = "2026-02-11T04:22:52.106Z" }, - { url = "https://files.pythonhosted.org/packages/5f/d5/3b005b4e4fda6698b371fa6c21b097d4707585d7db99e98d9b0b87ac612a/pillow-12.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:665e1b916b043cef294bc54d47bf02d87e13f769bc4bc5fa225a24b3a6c5aca9", size = 4622321, upload-time = "2026-02-11T04:22:53.827Z" }, - { url = "https://files.pythonhosted.org/packages/df/36/ed3ea2d594356fd8037e5a01f6156c74bc8d92dbb0fa60746cc96cabb6e8/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:495c302af3aad1ca67420ddd5c7bd480c8867ad173528767d906428057a11f0e", size = 5247579, upload-time = "2026-02-11T04:22:56.094Z" }, - { url = "https://files.pythonhosted.org/packages/54/9a/9cc3e029683cf6d20ae5085da0dafc63148e3252c2f13328e553aaa13cfb/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fd420ef0c52c88b5a035a0886f367748c72147b2b8f384c9d12656678dfdfa9", size = 6989094, upload-time = "2026-02-11T04:22:58.288Z" }, - { url = "https://files.pythonhosted.org/packages/00/98/fc53ab36da80b88df0967896b6c4b4cd948a0dc5aa40a754266aa3ae48b3/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f975aa7ef9684ce7e2c18a3aa8f8e2106ce1e46b94ab713d156b2898811651d3", size = 5313850, upload-time = "2026-02-11T04:23:00.554Z" }, - { url = "https://files.pythonhosted.org/packages/30/02/00fa585abfd9fe9d73e5f6e554dc36cc2b842898cbfc46d70353dae227f8/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8089c852a56c2966cf18835db62d9b34fef7ba74c726ad943928d494fa7f4735", size = 5963343, upload-time = "2026-02-11T04:23:02.934Z" }, - { url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" }, -] - -[[package]] -name = "platformdirs" -version = "4.4.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/23/e8/21db9c9987b0e728855bd57bff6984f67952bea55d6f75e055c46b5383e8/platformdirs-4.4.0.tar.gz", hash = "sha256:ca753cf4d81dc309bc67b0ea38fd15dc97bc30ce419a7f58d13eb3bf14c4febf", size = 21634, upload-time = "2025-08-26T14:32:04.268Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl", hash = "sha256:abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85", size = 18654, upload-time = "2025-08-26T14:32:02.735Z" }, +version = "12.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/21/c2bcdd5906101a30244eaffc1b6e6ce71a31bd0742a01eb89e660ebfac2d/pillow-12.2.0.tar.gz", hash = "sha256:a830b1a40919539d07806aa58e1b114df53ddd43213d9c8b75847eee6c0182b5", size = 46987819, upload-time = "2026-04-01T14:46:17.687Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/aa/d0b28e1c811cd4d5f5c2bfe2e022292bd255ae5744a3b9ac7d6c8f72dd75/pillow-12.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:a4e8f36e677d3336f35089648c8955c51c6d386a13cf6ee9c189c5f5bd713a9f", size = 5354355, upload-time = "2026-04-01T14:42:15.402Z" }, + { url = "https://files.pythonhosted.org/packages/27/8e/1d5b39b8ae2bd7650d0c7b6abb9602d16043ead9ebbfef4bc4047454da2a/pillow-12.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e589959f10d9824d39b350472b92f0ce3b443c0a3442ebf41c40cb8361c5b97", size = 4695871, upload-time = "2026-04-01T14:42:18.234Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c5/dcb7a6ca6b7d3be41a76958e90018d56c8462166b3ef223150360850c8da/pillow-12.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a52edc8bfff4429aaabdf4d9ee0daadbbf8562364f940937b941f87a4290f5ff", size = 6269734, upload-time = "2026-04-01T14:42:20.608Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f1/aa1bb13b2f4eba914e9637893c73f2af8e48d7d4023b9d3750d4c5eb2d0c/pillow-12.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:975385f4776fafde056abb318f612ef6285b10a1f12b8570f3647ad0d74b48ec", size = 8076080, upload-time = "2026-04-01T14:42:23.095Z" }, + { url = "https://files.pythonhosted.org/packages/a1/2a/8c79d6a53169937784604a8ae8d77e45888c41537f7f6f65ed1f407fe66d/pillow-12.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd9c0c7a0c681a347b3194c500cb1e6ca9cab053ea4d82a5cf45b6b754560136", size = 6382236, upload-time = "2026-04-01T14:42:25.82Z" }, + { url = "https://files.pythonhosted.org/packages/b5/42/bbcb6051030e1e421d103ce7a8ecadf837aa2f39b8f82ef1a8d37c3d4ebc/pillow-12.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88d387ff40b3ff7c274947ed3125dedf5262ec6919d83946753b5f3d7c67ea4c", size = 7070220, upload-time = "2026-04-01T14:42:28.68Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e1/c2a7d6dd8cfa6b231227da096fd2d58754bab3603b9d73bf609d3c18b64f/pillow-12.2.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:51c4167c34b0d8ba05b547a3bb23578d0ba17b80a5593f93bd8ecb123dd336a3", size = 6493124, upload-time = "2026-04-01T14:42:31.579Z" }, + { url = "https://files.pythonhosted.org/packages/5f/41/7c8617da5d32e1d2f026e509484fdb6f3ad7efaef1749a0c1928adbb099e/pillow-12.2.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:34c0d99ecccea270c04882cb3b86e7b57296079c9a4aff88cb3b33563d95afaa", size = 7194324, upload-time = "2026-04-01T14:42:34.615Z" }, + { url = "https://files.pythonhosted.org/packages/2d/de/a777627e19fd6d62f84070ee1521adde5eeda4855b5cf60fe0b149118bca/pillow-12.2.0-cp310-cp310-win32.whl", hash = "sha256:b85f66ae9eb53e860a873b858b789217ba505e5e405a24b85c0464822fe88032", size = 6376363, upload-time = "2026-04-01T14:42:37.19Z" }, + { url = "https://files.pythonhosted.org/packages/e7/34/fc4cb5204896465842767b96d250c08410f01f2f28afc43b257de842eed5/pillow-12.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:673aa32138f3e7531ccdbca7b3901dba9b70940a19ccecc6a37c77d5fdeb05b5", size = 7083523, upload-time = "2026-04-01T14:42:39.62Z" }, + { url = "https://files.pythonhosted.org/packages/2d/a0/32852d36bc7709f14dc3f64f929a275e958ad8c19a6deba9610d458e28b3/pillow-12.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:3e080565d8d7c671db5802eedfb438e5565ffa40115216eabb8cd52d0ecce024", size = 2463318, upload-time = "2026-04-01T14:42:42.063Z" }, + { url = "https://files.pythonhosted.org/packages/68/e1/748f5663efe6edcfc4e74b2b93edfb9b8b99b67f21a854c3ae416500a2d9/pillow-12.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:8be29e59487a79f173507c30ddf57e733a357f67881430449bb32614075a40ab", size = 5354347, upload-time = "2026-04-01T14:42:44.255Z" }, + { url = "https://files.pythonhosted.org/packages/47/a1/d5ff69e747374c33a3b53b9f98cca7889fce1fd03d79cdc4e1bccc6c5a87/pillow-12.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:71cde9a1e1551df7d34a25462fc60325e8a11a82cc2e2f54578e5e9a1e153d65", size = 4695873, upload-time = "2026-04-01T14:42:46.452Z" }, + { url = "https://files.pythonhosted.org/packages/df/21/e3fbdf54408a973c7f7f89a23b2cb97a7ef30c61ab4142af31eee6aebc88/pillow-12.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f490f9368b6fc026f021db16d7ec2fbf7d89e2edb42e8ec09d2c60505f5729c7", size = 6280168, upload-time = "2026-04-01T14:42:49.228Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f1/00b7278c7dd52b17ad4329153748f87b6756ec195ff786c2bdf12518337d/pillow-12.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8bd7903a5f2a4545f6fd5935c90058b89d30045568985a71c79f5fd6edf9b91e", size = 8088188, upload-time = "2026-04-01T14:42:51.735Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cf/220a5994ef1b10e70e85748b75649d77d506499352be135a4989c957b701/pillow-12.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3997232e10d2920a68d25191392e3a4487d8183039e1c74c2297f00ed1c50705", size = 6394401, upload-time = "2026-04-01T14:42:54.343Z" }, + { url = "https://files.pythonhosted.org/packages/e9/bd/e51a61b1054f09437acfbc2ff9106c30d1eb76bc1453d428399946781253/pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e74473c875d78b8e9d5da2a70f7099549f9eb37ded4e2f6a463e60125bccd176", size = 7079655, upload-time = "2026-04-01T14:42:56.954Z" }, + { url = "https://files.pythonhosted.org/packages/6b/3d/45132c57d5fb4b5744567c3817026480ac7fc3ce5d4c47902bc0e7f6f853/pillow-12.2.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:56a3f9c60a13133a98ecff6197af34d7824de9b7b38c3654861a725c970c197b", size = 6503105, upload-time = "2026-04-01T14:42:59.847Z" }, + { url = "https://files.pythonhosted.org/packages/7d/2e/9df2fc1e82097b1df3dce58dc43286aa01068e918c07574711fcc53e6fb4/pillow-12.2.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90e6f81de50ad6b534cab6e5aef77ff6e37722b2f5d908686f4a5c9eba17a909", size = 7203402, upload-time = "2026-04-01T14:43:02.664Z" }, + { url = "https://files.pythonhosted.org/packages/bd/2e/2941e42858ebb67e50ae741473de81c2984e6eff7b397017623c676e2e8d/pillow-12.2.0-cp311-cp311-win32.whl", hash = "sha256:8c984051042858021a54926eb597d6ee3012393ce9c181814115df4c60b9a808", size = 6378149, upload-time = "2026-04-01T14:43:05.274Z" }, + { url = "https://files.pythonhosted.org/packages/69/42/836b6f3cd7f3e5fa10a1f1a5420447c17966044c8fbf589cc0452d5502db/pillow-12.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:6e6b2a0c538fc200b38ff9eb6628228b77908c319a005815f2dde585a0664b60", size = 7082626, upload-time = "2026-04-01T14:43:08.557Z" }, + { url = "https://files.pythonhosted.org/packages/c2/88/549194b5d6f1f494b485e493edc6693c0a16f4ada488e5bd974ed1f42fad/pillow-12.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:9a8a34cc89c67a65ea7437ce257cea81a9dad65b29805f3ecee8c8fe8ff25ffe", size = 2463531, upload-time = "2026-04-01T14:43:10.743Z" }, + { url = "https://files.pythonhosted.org/packages/58/be/7482c8a5ebebbc6470b3eb791812fff7d5e0216c2be3827b30b8bb6603ed/pillow-12.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2d192a155bbcec180f8564f693e6fd9bccff5a7af9b32e2e4bf8c9c69dbad6b5", size = 5308279, upload-time = "2026-04-01T14:43:13.246Z" }, + { url = "https://files.pythonhosted.org/packages/d8/95/0a351b9289c2b5cbde0bacd4a83ebc44023e835490a727b2a3bd60ddc0f4/pillow-12.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f3f40b3c5a968281fd507d519e444c35f0ff171237f4fdde090dd60699458421", size = 4695490, upload-time = "2026-04-01T14:43:15.584Z" }, + { url = "https://files.pythonhosted.org/packages/de/af/4e8e6869cbed569d43c416fad3dc4ecb944cb5d9492defaed89ddd6fe871/pillow-12.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:03e7e372d5240cc23e9f07deca4d775c0817bffc641b01e9c3af208dbd300987", size = 6284462, upload-time = "2026-04-01T14:43:18.268Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9e/c05e19657fd57841e476be1ab46c4d501bffbadbafdc31a6d665f8b737b6/pillow-12.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:b86024e52a1b269467a802258c25521e6d742349d760728092e1bc2d135b4d76", size = 8094744, upload-time = "2026-04-01T14:43:20.716Z" }, + { url = "https://files.pythonhosted.org/packages/2b/54/1789c455ed10176066b6e7e6da1b01e50e36f94ba584dc68d9eebfe9156d/pillow-12.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7371b48c4fa448d20d2714c9a1f775a81155050d383333e0a6c15b1123dda005", size = 6398371, upload-time = "2026-04-01T14:43:23.443Z" }, + { url = "https://files.pythonhosted.org/packages/43/e3/fdc657359e919462369869f1c9f0e973f353f9a9ee295a39b1fea8ee1a77/pillow-12.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62f5409336adb0663b7caa0da5c7d9e7bdbaae9ce761d34669420c2a801b2780", size = 7087215, upload-time = "2026-04-01T14:43:26.758Z" }, + { url = "https://files.pythonhosted.org/packages/8b/f8/2f6825e441d5b1959d2ca5adec984210f1ec086435b0ed5f52c19b3b8a6e/pillow-12.2.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:01afa7cf67f74f09523699b4e88c73fb55c13346d212a59a2db1f86b0a63e8c5", size = 6509783, upload-time = "2026-04-01T14:43:29.56Z" }, + { url = "https://files.pythonhosted.org/packages/67/f9/029a27095ad20f854f9dba026b3ea6428548316e057e6fc3545409e86651/pillow-12.2.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc3d34d4a8fbec3e88a79b92e5465e0f9b842b628675850d860b8bd300b159f5", size = 7212112, upload-time = "2026-04-01T14:43:32.091Z" }, + { url = "https://files.pythonhosted.org/packages/be/42/025cfe05d1be22dbfdb4f264fe9de1ccda83f66e4fc3aac94748e784af04/pillow-12.2.0-cp312-cp312-win32.whl", hash = "sha256:58f62cc0f00fd29e64b29f4fd923ffdb3859c9f9e6105bfc37ba1d08994e8940", size = 6378489, upload-time = "2026-04-01T14:43:34.601Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7b/25a221d2c761c6a8ae21bfa3874988ff2583e19cf8a27bf2fee358df7942/pillow-12.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:7f84204dee22a783350679a0333981df803dac21a0190d706a50475e361c93f5", size = 7084129, upload-time = "2026-04-01T14:43:37.213Z" }, + { url = "https://files.pythonhosted.org/packages/10/e1/542a474affab20fd4a0f1836cb234e8493519da6b76899e30bcc5d990b8b/pillow-12.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:af73337013e0b3b46f175e79492d96845b16126ddf79c438d7ea7ff27783a414", size = 2463612, upload-time = "2026-04-01T14:43:39.421Z" }, + { url = "https://files.pythonhosted.org/packages/4a/01/53d10cf0dbad820a8db274d259a37ba50b88b24768ddccec07355382d5ad/pillow-12.2.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:8297651f5b5679c19968abefd6bb84d95fe30ef712eb1b2d9b2d31ca61267f4c", size = 4100837, upload-time = "2026-04-01T14:43:41.506Z" }, + { url = "https://files.pythonhosted.org/packages/0f/98/f3a6657ecb698c937f6c76ee564882945f29b79bad496abcba0e84659ec5/pillow-12.2.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:50d8520da2a6ce0af445fa6d648c4273c3eeefbc32d7ce049f22e8b5c3daecc2", size = 4176528, upload-time = "2026-04-01T14:43:43.773Z" }, + { url = "https://files.pythonhosted.org/packages/69/bc/8986948f05e3ea490b8442ea1c1d4d990b24a7e43d8a51b2c7d8b1dced36/pillow-12.2.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:766cef22385fa1091258ad7e6216792b156dc16d8d3fa607e7545b2b72061f1c", size = 3640401, upload-time = "2026-04-01T14:43:45.87Z" }, + { url = "https://files.pythonhosted.org/packages/34/46/6c717baadcd62bc8ed51d238d521ab651eaa74838291bda1f86fe1f864c9/pillow-12.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5d2fd0fa6b5d9d1de415060363433f28da8b1526c1c129020435e186794b3795", size = 5308094, upload-time = "2026-04-01T14:43:48.438Z" }, + { url = "https://files.pythonhosted.org/packages/71/43/905a14a8b17fdb1ccb58d282454490662d2cb89a6bfec26af6d3520da5ec/pillow-12.2.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56b25336f502b6ed02e889f4ece894a72612fe885889a6e8c4c80239ff6e5f5f", size = 4695402, upload-time = "2026-04-01T14:43:51.292Z" }, + { url = "https://files.pythonhosted.org/packages/73/dd/42107efcb777b16fa0393317eac58f5b5cf30e8392e266e76e51cff28c3d/pillow-12.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f1c943e96e85df3d3478f7b691f229887e143f81fedab9b20205349ab04d73ed", size = 6280005, upload-time = "2026-04-01T14:43:54.242Z" }, + { url = "https://files.pythonhosted.org/packages/a8/68/b93e09e5e8549019e61acf49f65b1a8530765a7f812c77a7461bca7e4494/pillow-12.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:03f6fab9219220f041c74aeaa2939ff0062bd5c364ba9ce037197f4c6d498cd9", size = 8090669, upload-time = "2026-04-01T14:43:57.335Z" }, + { url = "https://files.pythonhosted.org/packages/4b/6e/3ccb54ce8ec4ddd1accd2d89004308b7b0b21c4ac3d20fa70af4760a4330/pillow-12.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5cdfebd752ec52bf5bb4e35d9c64b40826bc5b40a13df7c3cda20a2c03a0f5ed", size = 6395194, upload-time = "2026-04-01T14:43:59.864Z" }, + { url = "https://files.pythonhosted.org/packages/67/ee/21d4e8536afd1a328f01b359b4d3997b291ffd35a237c877b331c1c3b71c/pillow-12.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eedf4b74eda2b5a4b2b2fb4c006d6295df3bf29e459e198c90ea48e130dc75c3", size = 7082423, upload-time = "2026-04-01T14:44:02.74Z" }, + { url = "https://files.pythonhosted.org/packages/78/5f/e9f86ab0146464e8c133fe85df987ed9e77e08b29d8d35f9f9f4d6f917ba/pillow-12.2.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:00a2865911330191c0b818c59103b58a5e697cae67042366970a6b6f1b20b7f9", size = 6505667, upload-time = "2026-04-01T14:44:05.381Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1e/409007f56a2fdce61584fd3acbc2bbc259857d555196cedcadc68c015c82/pillow-12.2.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1e1757442ed87f4912397c6d35a0db6a7b52592156014706f17658ff58bbf795", size = 7208580, upload-time = "2026-04-01T14:44:08.39Z" }, + { url = "https://files.pythonhosted.org/packages/23/c4/7349421080b12fb35414607b8871e9534546c128a11965fd4a7002ccfbee/pillow-12.2.0-cp313-cp313-win32.whl", hash = "sha256:144748b3af2d1b358d41286056d0003f47cb339b8c43a9ea42f5fea4d8c66b6e", size = 6375896, upload-time = "2026-04-01T14:44:11.197Z" }, + { url = "https://files.pythonhosted.org/packages/3f/82/8a3739a5e470b3c6cbb1d21d315800d8e16bff503d1f16b03a4ec3212786/pillow-12.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:390ede346628ccc626e5730107cde16c42d3836b89662a115a921f28440e6a3b", size = 7081266, upload-time = "2026-04-01T14:44:13.947Z" }, + { url = "https://files.pythonhosted.org/packages/c3/25/f968f618a062574294592f668218f8af564830ccebdd1fa6200f598e65c5/pillow-12.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:8023abc91fba39036dbce14a7d6535632f99c0b857807cbbbf21ecc9f4717f06", size = 2463508, upload-time = "2026-04-01T14:44:16.312Z" }, + { url = "https://files.pythonhosted.org/packages/4d/a4/b342930964e3cb4dce5038ae34b0eab4653334995336cd486c5a8c25a00c/pillow-12.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:042db20a421b9bafecc4b84a8b6e444686bd9d836c7fd24542db3e7df7baad9b", size = 5309927, upload-time = "2026-04-01T14:44:18.89Z" }, + { url = "https://files.pythonhosted.org/packages/9f/de/23198e0a65a9cf06123f5435a5d95cea62a635697f8f03d134d3f3a96151/pillow-12.2.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:dd025009355c926a84a612fecf58bb315a3f6814b17ead51a8e48d3823d9087f", size = 4698624, upload-time = "2026-04-01T14:44:21.115Z" }, + { url = "https://files.pythonhosted.org/packages/01/a6/1265e977f17d93ea37aa28aa81bad4fa597933879fac2520d24e021c8da3/pillow-12.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:88ddbc66737e277852913bd1e07c150cc7bb124539f94c4e2df5344494e0a612", size = 6321252, upload-time = "2026-04-01T14:44:23.663Z" }, + { url = "https://files.pythonhosted.org/packages/3c/83/5982eb4a285967baa70340320be9f88e57665a387e3a53a7f0db8231a0cd/pillow-12.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d362d1878f00c142b7e1a16e6e5e780f02be8195123f164edf7eddd911eefe7c", size = 8126550, upload-time = "2026-04-01T14:44:26.772Z" }, + { url = "https://files.pythonhosted.org/packages/4e/48/6ffc514adce69f6050d0753b1a18fd920fce8cac87620d5a31231b04bfc5/pillow-12.2.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2c727a6d53cb0018aadd8018c2b938376af27914a68a492f59dfcaca650d5eea", size = 6433114, upload-time = "2026-04-01T14:44:29.615Z" }, + { url = "https://files.pythonhosted.org/packages/36/a3/f9a77144231fb8d40ee27107b4463e205fa4677e2ca2548e14da5cf18dce/pillow-12.2.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:efd8c21c98c5cc60653bcb311bef2ce0401642b7ce9d09e03a7da87c878289d4", size = 7115667, upload-time = "2026-04-01T14:44:32.773Z" }, + { url = "https://files.pythonhosted.org/packages/c1/fc/ac4ee3041e7d5a565e1c4fd72a113f03b6394cc72ab7089d27608f8aaccb/pillow-12.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9f08483a632889536b8139663db60f6724bfcb443c96f1b18855860d7d5c0fd4", size = 6538966, upload-time = "2026-04-01T14:44:35.252Z" }, + { url = "https://files.pythonhosted.org/packages/c0/a8/27fb307055087f3668f6d0a8ccb636e7431d56ed0750e07a60547b1e083e/pillow-12.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dac8d77255a37e81a2efcbd1fc05f1c15ee82200e6c240d7e127e25e365c39ea", size = 7238241, upload-time = "2026-04-01T14:44:37.875Z" }, + { url = "https://files.pythonhosted.org/packages/ad/4b/926ab182c07fccae9fcb120043464e1ff1564775ec8864f21a0ebce6ac25/pillow-12.2.0-cp313-cp313t-win32.whl", hash = "sha256:ee3120ae9dff32f121610bb08e4313be87e03efeadfc6c0d18f89127e24d0c24", size = 6379592, upload-time = "2026-04-01T14:44:40.336Z" }, + { url = "https://files.pythonhosted.org/packages/c2/c4/f9e476451a098181b30050cc4c9a3556b64c02cf6497ea421ac047e89e4b/pillow-12.2.0-cp313-cp313t-win_amd64.whl", hash = "sha256:325ca0528c6788d2a6c3d40e3568639398137346c3d6e66bb61db96b96511c98", size = 7085542, upload-time = "2026-04-01T14:44:43.251Z" }, + { url = "https://files.pythonhosted.org/packages/00/a4/285f12aeacbe2d6dc36c407dfbbe9e96d4a80b0fb710a337f6d2ad978c75/pillow-12.2.0-cp313-cp313t-win_arm64.whl", hash = "sha256:2e5a76d03a6c6dcef67edabda7a52494afa4035021a79c8558e14af25313d453", size = 2465765, upload-time = "2026-04-01T14:44:45.996Z" }, + { url = "https://files.pythonhosted.org/packages/bf/98/4595daa2365416a86cb0d495248a393dfc84e96d62ad080c8546256cb9c0/pillow-12.2.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:3adc9215e8be0448ed6e814966ecf3d9952f0ea40eb14e89a102b87f450660d8", size = 4100848, upload-time = "2026-04-01T14:44:48.48Z" }, + { url = "https://files.pythonhosted.org/packages/0b/79/40184d464cf89f6663e18dfcf7ca21aae2491fff1a16127681bf1fa9b8cf/pillow-12.2.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:6a9adfc6d24b10f89588096364cc726174118c62130c817c2837c60cf08a392b", size = 4176515, upload-time = "2026-04-01T14:44:51.353Z" }, + { url = "https://files.pythonhosted.org/packages/b0/63/703f86fd4c422a9cf722833670f4f71418fb116b2853ff7da722ea43f184/pillow-12.2.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:6a6e67ea2e6feda684ed370f9a1c52e7a243631c025ba42149a2cc5934dec295", size = 3640159, upload-time = "2026-04-01T14:44:53.588Z" }, + { url = "https://files.pythonhosted.org/packages/71/e0/fb22f797187d0be2270f83500aab851536101b254bfa1eae10795709d283/pillow-12.2.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2bb4a8d594eacdfc59d9e5ad972aa8afdd48d584ffd5f13a937a664c3e7db0ed", size = 5312185, upload-time = "2026-04-01T14:44:56.039Z" }, + { url = "https://files.pythonhosted.org/packages/ba/8c/1a9e46228571de18f8e28f16fabdfc20212a5d019f3e3303452b3f0a580d/pillow-12.2.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:80b2da48193b2f33ed0c32c38140f9d3186583ce7d516526d462645fd98660ae", size = 4695386, upload-time = "2026-04-01T14:44:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/70/62/98f6b7f0c88b9addd0e87c217ded307b36be024d4ff8869a812b241d1345/pillow-12.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22db17c68434de69d8ecfc2fe821569195c0c373b25cccb9cbdacf2c6e53c601", size = 6280384, upload-time = "2026-04-01T14:45:01.5Z" }, + { url = "https://files.pythonhosted.org/packages/5e/03/688747d2e91cfbe0e64f316cd2e8005698f76ada3130d0194664174fa5de/pillow-12.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7b14cc0106cd9aecda615dd6903840a058b4700fcb817687d0ee4fc8b6e389be", size = 8091599, upload-time = "2026-04-01T14:45:04.5Z" }, + { url = "https://files.pythonhosted.org/packages/f6/35/577e22b936fcdd66537329b33af0b4ccfefaeabd8aec04b266528cddb33c/pillow-12.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8cbeb542b2ebc6fcdacabf8aca8c1a97c9b3ad3927d46b8723f9d4f033288a0f", size = 6396021, upload-time = "2026-04-01T14:45:07.117Z" }, + { url = "https://files.pythonhosted.org/packages/11/8d/d2532ad2a603ca2b93ad9f5135732124e57811d0168155852f37fbce2458/pillow-12.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4bfd07bc812fbd20395212969e41931001fd59eb55a60658b0e5710872e95286", size = 7083360, upload-time = "2026-04-01T14:45:09.763Z" }, + { url = "https://files.pythonhosted.org/packages/5e/26/d325f9f56c7e039034897e7380e9cc202b1e368bfd04d4cbe6a441f02885/pillow-12.2.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:9aba9a17b623ef750a4d11b742cbafffeb48a869821252b30ee21b5e91392c50", size = 6507628, upload-time = "2026-04-01T14:45:12.378Z" }, + { url = "https://files.pythonhosted.org/packages/5f/f7/769d5632ffb0988f1c5e7660b3e731e30f7f8ec4318e94d0a5d674eb65a4/pillow-12.2.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:deede7c263feb25dba4e82ea23058a235dcc2fe1f6021025dc71f2b618e26104", size = 7209321, upload-time = "2026-04-01T14:45:15.122Z" }, + { url = "https://files.pythonhosted.org/packages/6a/7a/c253e3c645cd47f1aceea6a8bacdba9991bf45bb7dfe927f7c893e89c93c/pillow-12.2.0-cp314-cp314-win32.whl", hash = "sha256:632ff19b2778e43162304d50da0181ce24ac5bb8180122cbe1bf4673428328c7", size = 6479723, upload-time = "2026-04-01T14:45:17.797Z" }, + { url = "https://files.pythonhosted.org/packages/cd/8b/601e6566b957ca50e28725cb6c355c59c2c8609751efbecd980db44e0349/pillow-12.2.0-cp314-cp314-win_amd64.whl", hash = "sha256:4e6c62e9d237e9b65fac06857d511e90d8461a32adcc1b9065ea0c0fa3a28150", size = 7217400, upload-time = "2026-04-01T14:45:20.529Z" }, + { url = "https://files.pythonhosted.org/packages/d6/94/220e46c73065c3e2951bb91c11a1fb636c8c9ad427ac3ce7d7f3359b9b2f/pillow-12.2.0-cp314-cp314-win_arm64.whl", hash = "sha256:b1c1fbd8a5a1af3412a0810d060a78b5136ec0836c8a4ef9aa11807f2a22f4e1", size = 2554835, upload-time = "2026-04-01T14:45:23.162Z" }, + { url = "https://files.pythonhosted.org/packages/b6/ab/1b426a3974cb0e7da5c29ccff4807871d48110933a57207b5a676cccc155/pillow-12.2.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:57850958fe9c751670e49b2cecf6294acc99e562531f4bd317fa5ddee2068463", size = 5314225, upload-time = "2026-04-01T14:45:25.637Z" }, + { url = "https://files.pythonhosted.org/packages/19/1e/dce46f371be2438eecfee2a1960ee2a243bbe5e961890146d2dee1ff0f12/pillow-12.2.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d5d38f1411c0ed9f97bcb49b7bd59b6b7c314e0e27420e34d99d844b9ce3b6f3", size = 4698541, upload-time = "2026-04-01T14:45:28.355Z" }, + { url = "https://files.pythonhosted.org/packages/55/c3/7fbecf70adb3a0c33b77a300dc52e424dc22ad8cdc06557a2e49523b703d/pillow-12.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5c0a9f29ca8e79f09de89293f82fc9b0270bb4af1d58bc98f540cc4aedf03166", size = 6322251, upload-time = "2026-04-01T14:45:30.924Z" }, + { url = "https://files.pythonhosted.org/packages/1c/3c/7fbc17cfb7e4fe0ef1642e0abc17fc6c94c9f7a16be41498e12e2ba60408/pillow-12.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1610dd6c61621ae1cf811bef44d77e149ce3f7b95afe66a4512f8c59f25d9ebe", size = 8127807, upload-time = "2026-04-01T14:45:33.908Z" }, + { url = "https://files.pythonhosted.org/packages/ff/c3/a8ae14d6defd2e448493ff512fae903b1e9bd40b72efb6ec55ce0048c8ce/pillow-12.2.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0a34329707af4f73cf1782a36cd2289c0368880654a2c11f027bcee9052d35dd", size = 6433935, upload-time = "2026-04-01T14:45:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/6e/32/2880fb3a074847ac159d8f902cb43278a61e85f681661e7419e6596803ed/pillow-12.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e9c4f5b3c546fa3458a29ab22646c1c6c787ea8f5ef51300e5a60300736905e", size = 7116720, upload-time = "2026-04-01T14:45:39.258Z" }, + { url = "https://files.pythonhosted.org/packages/46/87/495cc9c30e0129501643f24d320076f4cc54f718341df18cc70ec94c44e1/pillow-12.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:fb043ee2f06b41473269765c2feae53fc2e2fbf96e5e22ca94fb5ad677856f06", size = 6540498, upload-time = "2026-04-01T14:45:41.879Z" }, + { url = "https://files.pythonhosted.org/packages/18/53/773f5edca692009d883a72211b60fdaf8871cbef075eaa9d577f0a2f989e/pillow-12.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f278f034eb75b4e8a13a54a876cc4a5ab39173d2cdd93a638e1b467fc545ac43", size = 7239413, upload-time = "2026-04-01T14:45:44.705Z" }, + { url = "https://files.pythonhosted.org/packages/c9/e4/4b64a97d71b2a83158134abbb2f5bd3f8a2ea691361282f010998f339ec7/pillow-12.2.0-cp314-cp314t-win32.whl", hash = "sha256:6bb77b2dcb06b20f9f4b4a8454caa581cd4dd0643a08bacf821216a16d9c8354", size = 6482084, upload-time = "2026-04-01T14:45:47.568Z" }, + { url = "https://files.pythonhosted.org/packages/ba/13/306d275efd3a3453f72114b7431c877d10b1154014c1ebbedd067770d629/pillow-12.2.0-cp314-cp314t-win_amd64.whl", hash = "sha256:6562ace0d3fb5f20ed7290f1f929cae41b25ae29528f2af1722966a0a02e2aa1", size = 7225152, upload-time = "2026-04-01T14:45:50.032Z" }, + { url = "https://files.pythonhosted.org/packages/ff/6e/cf826fae916b8658848d7b9f38d88da6396895c676e8086fc0988073aaf8/pillow-12.2.0-cp314-cp314t-win_arm64.whl", hash = "sha256:aa88ccfe4e32d362816319ed727a004423aab09c5cea43c01a4b435643fa34eb", size = 2556579, upload-time = "2026-04-01T14:45:52.529Z" }, + { url = "https://files.pythonhosted.org/packages/4e/b7/2437044fb910f499610356d1352e3423753c98e34f915252aafecc64889f/pillow-12.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0538bd5e05efec03ae613fd89c4ce0368ecd2ba239cc25b9f9be7ed426b0af1f", size = 5273969, upload-time = "2026-04-01T14:45:55.538Z" }, + { url = "https://files.pythonhosted.org/packages/f6/f4/8316e31de11b780f4ac08ef3654a75555e624a98db1056ecb2122d008d5a/pillow-12.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:394167b21da716608eac917c60aa9b969421b5dcbbe02ae7f013e7b85811c69d", size = 4659674, upload-time = "2026-04-01T14:45:58.093Z" }, + { url = "https://files.pythonhosted.org/packages/d4/37/664fca7201f8bb2aa1d20e2c3d5564a62e6ae5111741966c8319ca802361/pillow-12.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5d04bfa02cc2d23b497d1e90a0f927070043f6cbf303e738300532379a4b4e0f", size = 5288479, upload-time = "2026-04-01T14:46:01.141Z" }, + { url = "https://files.pythonhosted.org/packages/49/62/5b0ed78fce87346be7a5cfcfaaad91f6a1f98c26f86bdbafa2066c647ef6/pillow-12.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0c838a5125cee37e68edec915651521191cef1e6aa336b855f495766e77a366e", size = 7032230, upload-time = "2026-04-01T14:46:03.874Z" }, + { url = "https://files.pythonhosted.org/packages/c3/28/ec0fc38107fc32536908034e990c47914c57cd7c5a3ece4d8d8f7ffd7e27/pillow-12.2.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a6c9fa44005fa37a91ebfc95d081e8079757d2e904b27103f4f5fa6f0bf78c0", size = 5355404, upload-time = "2026-04-01T14:46:06.33Z" }, + { url = "https://files.pythonhosted.org/packages/5e/8b/51b0eddcfa2180d60e41f06bd6d0a62202b20b59c68f5a132e615b75aecf/pillow-12.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:25373b66e0dd5905ed63fa3cae13c82fbddf3079f2c8bf15c6fb6a35586324c1", size = 6002215, upload-time = "2026-04-01T14:46:08.83Z" }, + { url = "https://files.pythonhosted.org/packages/bc/60/5382c03e1970de634027cee8e1b7d39776b778b81812aaf45b694dfe9e28/pillow-12.2.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:bfa9c230d2fe991bed5318a5f119bd6780cda2915cca595393649fc118ab895e", size = 7080946, upload-time = "2026-04-01T14:46:11.734Z" }, ] [[package]] name = "platformdirs" version = "4.9.4" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/19/56/8d4c30c8a1d07013911a8fdbd8f89440ef9f08d07a1b50ab8ca8be5a20f9/platformdirs-4.9.4.tar.gz", hash = "sha256:1ec356301b7dc906d83f371c8f487070e99d3ccf9e501686456394622a01a934", size = 28737, upload-time = "2026-03-05T18:34:13.271Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/63/d7/97f7e3a6abb67d8080dd406fd4df842c2be0efaf712d1c899c32a075027c/platformdirs-4.9.4-py3-none-any.whl", hash = "sha256:68a9a4619a666ea6439f2ff250c12a853cd1cbd5158d258bd824a7df6be2f868", size = 21216, upload-time = "2026-03-05T18:34:12.172Z" }, @@ -4128,59 +2974,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8c/c7/7bb2e321574b10df20cbde462a94e2b71d05f9bbda251ef27d104668306a/psutil-7.2.2-cp37-abi3-win_arm64.whl", hash = "sha256:8c233660f575a5a89e6d4cb65d9f938126312bca76d8fe087b947b3a1aaac9ee", size = 134617, upload-time = "2026-01-28T18:15:36.514Z" }, ] -[[package]] -name = "psygnal" -version = "0.14.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/99/59/d30828eb2ef130c1c9d1e0d4b5fa5d2e895fdca8964ed2f783a31ff5136c/psygnal-0.14.2.tar.gz", hash = "sha256:588d1a7a0212db8ffc720ef2fb03e849e0280f4f156e5f5922e6b99b13c69689", size = 124428, upload-time = "2025-09-24T15:46:47.915Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/89/0d/bda4e71b174fa767a92c32b9d4d2755beae46bc551d0b2a516869d13fc78/psygnal-0.14.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:84dc83a3d213bf3cef25501b65f13d59ddb793ad59f74006f7e8ffb64a8838dc", size = 518655, upload-time = "2025-09-24T15:46:02.311Z" }, - { url = "https://files.pythonhosted.org/packages/d5/56/6e99d533209d13d3e33770b95a1ab90329126f43bfee6a87351a981a1c88/psygnal-0.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:689933fb364a8885f3b39312f8e0cae698fe5f0bb6911c5c393bdf44a42186aa", size = 576939, upload-time = "2025-09-24T15:46:04.411Z" }, - { url = "https://files.pythonhosted.org/packages/e0/16/a2a874e5e448aa8151868a0b95bf4f5dbc47a46b39ffb620c54191239cde/psygnal-0.14.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c85599693955f9bbe2ef635bef823be19fa02e9ac047f32e4ce80e9a270b32dd", size = 863994, upload-time = "2025-09-24T15:46:06.36Z" }, - { url = "https://files.pythonhosted.org/packages/5d/51/7e74d7a1008fff2738f0b4d60656ab12acfb25bd50172ab2aec305710e52/psygnal-0.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6f2938f6feea3c212bcd47723319299128bedcf02290ec892d281ff6d6760aae", size = 872873, upload-time = "2025-09-24T15:46:08.809Z" }, - { url = "https://files.pythonhosted.org/packages/70/bf/7f81aea230e2ca78e0f8a914fb33664ae58653bc09fda95b7b21f07efa58/psygnal-0.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:bfc00d7dd3e7c84005d7af972794ed2f7e683e2c9666a1d2796ba144a315d968", size = 409924, upload-time = "2025-09-24T15:46:11.211Z" }, - { url = "https://files.pythonhosted.org/packages/01/3a/981bae6ed0df612b113033512952424dc198805cce8f35c430c93b33857b/psygnal-0.14.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9fc04ad56b40009d8d0a8c89023fe93a1d39496e88f6eff45fb433aef0283c9c", size = 512455, upload-time = "2025-09-24T15:46:12.959Z" }, - { url = "https://files.pythonhosted.org/packages/ba/8d/8f99c6684f1072d27d219d1d0d470ffb57233744214c8746225b46777915/psygnal-0.14.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d2e1febc998fe49cfe81a0d900c1f92cb7fd9c6df0a43cb89e48493e838630e0", size = 568698, upload-time = "2025-09-24T15:46:14.444Z" }, - { url = "https://files.pythonhosted.org/packages/8a/5f/53767da264c5faa6e0e3b1c8a548a176b2f4592ef499bbf0dc3ab5bde3a9/psygnal-0.14.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8968646fa75cf44f8e10d07434928eb7ae63df66398a4cab55ec37ee70165589", size = 855569, upload-time = "2025-09-24T15:46:15.944Z" }, - { url = "https://files.pythonhosted.org/packages/fb/7f/e5d80ae577dea7699f1da9cfdfc69a2c43a3518d98dc09c490f3683dfbe3/psygnal-0.14.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6ab578834bd0f872a9d6b01c5efc6b4c77068b9ae9d8f3f360677885af31e67a", size = 863314, upload-time = "2025-09-24T15:46:17.448Z" }, - { url = "https://files.pythonhosted.org/packages/dc/9b/22e468287cab2671dc7c0e5ccd04d4b9e2b85b2bbeb1750e2b545cd56bce/psygnal-0.14.2-cp311-cp311-win_amd64.whl", hash = "sha256:74a05ddc75bf8a6d25f4bfcdc04de4fc5bf4efd2983c3962db723dc83f46d52a", size = 414357, upload-time = "2025-09-24T15:46:19.374Z" }, - { url = "https://files.pythonhosted.org/packages/a7/3d/d8d1b96f42ef078fd82d7b0326870a1fba2a3fc0cb089641505d2e58832a/psygnal-0.14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d05c0b75dac72aeb7b548ffad2d23847e77c97fb50dac8bab7ba407f65fe0111", size = 524201, upload-time = "2025-09-24T15:46:20.915Z" }, - { url = "https://files.pythonhosted.org/packages/d8/a8/39a23f77cb44b74195eba4354d3091ecb4a83d6b8f968b29455e6c435a23/psygnal-0.14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:407c8466f0e4a7a55bec3c62f09f547143b99a3386376e838b8438bbaca76c60", size = 576395, upload-time = "2025-09-24T15:46:22.473Z" }, - { url = "https://files.pythonhosted.org/packages/f4/cf/174fe7ea8be3d4671c1c7125d511ef2f936298f3c253fb9626313490a6d2/psygnal-0.14.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7a0edaaa7b0a2e6717b9e66e6ff0c53043f61d8603dae5aba8e4df3f39a42b5a", size = 889199, upload-time = "2025-09-24T15:46:23.982Z" }, - { url = "https://files.pythonhosted.org/packages/e6/6d/d225e563d91e900f8e3800587697b125bbccfa4e4ff48052dc85ee40715c/psygnal-0.14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6fa8f7aa1ba19027881c34e1603d808d81c2aeab21c2b74ea6141cb6ed7cef95", size = 880894, upload-time = "2025-09-24T15:46:26.157Z" }, - { url = "https://files.pythonhosted.org/packages/80/e7/7e98f92c338a63cef579116d80dd25d54c021242929ae6a81615fec81150/psygnal-0.14.2-cp312-cp312-win_amd64.whl", hash = "sha256:1045c7662e4d4d9a496b47956ecf2ee542aaefc283244aece241a23c6b716e7e", size = 417975, upload-time = "2025-09-24T15:46:27.677Z" }, - { url = "https://files.pythonhosted.org/packages/21/ec/b0b6ac43ea06d08e4537ea29a096b47f8c8f0e2b8959f0c0015f5233095c/psygnal-0.14.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bd67b1e9ed8cd1210b851baa41c0e1582b89940c04b50c93cd1db18f6f1d8215", size = 522626, upload-time = "2025-09-24T15:46:29.205Z" }, - { url = "https://files.pythonhosted.org/packages/ef/d3/40311d46c61bc750674bc9d2d6f45633077a2a20fc2204005b50ea56beb2/psygnal-0.14.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:35aeb647004031951f25a6ec457628b3a7300de6927bec6875f445c373d5974c", size = 576252, upload-time = "2025-09-24T15:46:31.223Z" }, - { url = "https://files.pythonhosted.org/packages/8f/67/adc42730eb849dcbc2cfd5c30e15d3415f9c9ddb1d391c6673e3f6e60090/psygnal-0.14.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a27369767302b1202e34dce03c09809d0204a7b2986d8ba9cc7711be739e7e64", size = 885340, upload-time = "2025-09-24T15:46:32.733Z" }, - { url = "https://files.pythonhosted.org/packages/96/93/a5096e23f7dd141cda47c79f20c4ae384ba0ee5c74bcbaad98d64134716e/psygnal-0.14.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4524e67785f8d7fa276a2ed4a24aa4072f7aace3c6c53546bca8a2ab0241156a", size = 877342, upload-time = "2025-09-24T15:46:34.324Z" }, - { url = "https://files.pythonhosted.org/packages/b5/82/de4f9b5680e75bc7e90daebfde83e4230166b215614c67a6207c8ee9eb64/psygnal-0.14.2-cp313-cp313-win_amd64.whl", hash = "sha256:c03ebf844a5b448875340473e41b5a58e52810e4da9e4bf6d12f18bb8d24b13f", size = 418239, upload-time = "2025-09-24T15:46:36.721Z" }, - { url = "https://files.pythonhosted.org/packages/7e/ed/c8b8750a52acfbf7a421c0e148ee6ae4f61abfcc39fff730fb6edf46ebb3/psygnal-0.14.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ce63479937c437ba4235ac2813346312e9649847cc89baa691efa4c21a2ae743", size = 518708, upload-time = "2025-09-24T15:46:38.237Z" }, - { url = "https://files.pythonhosted.org/packages/df/91/694ae911b12459940354c81e410a2be8ca9538e9eee5577aaf744b3f8f71/psygnal-0.14.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d5deb444641acf67e0ee53f2881e0fb333c63702f7dad4ce757e38f0f26fa907", size = 577151, upload-time = "2025-09-24T15:46:39.814Z" }, - { url = "https://files.pythonhosted.org/packages/8d/11/d2d4bd8ef7bc3945a2cf14826de273cd1d9824d3a1ed0fe680e159a1087b/psygnal-0.14.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8d572e273d6277e00f6eff6cdd3c477103451517738c02fc3546e01f73f5726f", size = 859750, upload-time = "2025-09-24T15:46:41.707Z" }, - { url = "https://files.pythonhosted.org/packages/8d/21/b59fb0900a45376d428c84549831dac2cd12cc936f8dc545cdb56c9979fe/psygnal-0.14.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:82194598725fca42e5b4f55efa9929f03993d9f13c3b4b61bcb9e543e137f9dd", size = 867842, upload-time = "2025-09-24T15:46:43.725Z" }, - { url = "https://files.pythonhosted.org/packages/62/4b/e026f36cd4031a23958e5c5cefc4e77d43328a35ea35a7e0c6892d011f54/psygnal-0.14.2-cp39-cp39-win_amd64.whl", hash = "sha256:a2123965f03b46f5f79fbe047fb6fa3585b74203fafa1969b881951d14997b89", size = 409945, upload-time = "2025-09-24T15:46:45.299Z" }, - { url = "https://files.pythonhosted.org/packages/94/14/13d3413fa9695be14b7ab1eed1bd71619d68841a96e19bbdde92585eecae/psygnal-0.14.2-py3-none-any.whl", hash = "sha256:6caa7b1ebab0fcfd9e196cf5269b3be2bb4ee7776a11d60fb6fdf7263143e327", size = 91086, upload-time = "2025-09-24T15:46:46.652Z" }, -] - [[package]] name = "psygnal" version = "0.15.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/4e/79/20c3e23e75272e9ddf018097cf872ab088bccba978888472656629efa4a3/psygnal-0.15.1.tar.gz", hash = "sha256:f64f62dee2306fc1c22050a59b6c6cdad126e04b0cf50e393ff858a1da719096", size = 123147, upload-time = "2026-01-04T16:38:41.959Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/e6/44/ab13cb6147d010258826a43e574ad94599af0de29df13795fff9efee656c/psygnal-0.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8ee55e3997f796fd84d4fdbd829bb1b19d323e087c43d072744604a3016c8851", size = 587322, upload-time = "2026-01-04T16:38:04.827Z" }, @@ -4229,75 +3026,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, ] -[[package]] -name = "pyarrow" -version = "21.0.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/ef/c2/ea068b8f00905c06329a3dfcd40d0fcc2b7d0f2e355bdb25b65e0a0e4cd4/pyarrow-21.0.0.tar.gz", hash = "sha256:5051f2dccf0e283ff56335760cbc8622cf52264d67e359d5569541ac11b6d5bc", size = 1133487, upload-time = "2025-07-18T00:57:31.761Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/17/d9/110de31880016e2afc52d8580b397dbe47615defbf09ca8cf55f56c62165/pyarrow-21.0.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:e563271e2c5ff4d4a4cbeb2c83d5cf0d4938b891518e676025f7268c6fe5fe26", size = 31196837, upload-time = "2025-07-18T00:54:34.755Z" }, - { url = "https://files.pythonhosted.org/packages/df/5f/c1c1997613abf24fceb087e79432d24c19bc6f7259cab57c2c8e5e545fab/pyarrow-21.0.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:fee33b0ca46f4c85443d6c450357101e47d53e6c3f008d658c27a2d020d44c79", size = 32659470, upload-time = "2025-07-18T00:54:38.329Z" }, - { url = "https://files.pythonhosted.org/packages/3e/ed/b1589a777816ee33ba123ba1e4f8f02243a844fed0deec97bde9fb21a5cf/pyarrow-21.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7be45519b830f7c24b21d630a31d48bcebfd5d4d7f9d3bdb49da9cdf6d764edb", size = 41055619, upload-time = "2025-07-18T00:54:42.172Z" }, - { url = "https://files.pythonhosted.org/packages/44/28/b6672962639e85dc0ac36f71ab3a8f5f38e01b51343d7aa372a6b56fa3f3/pyarrow-21.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:26bfd95f6bff443ceae63c65dc7e048670b7e98bc892210acba7e4995d3d4b51", size = 42733488, upload-time = "2025-07-18T00:54:47.132Z" }, - { url = "https://files.pythonhosted.org/packages/f8/cc/de02c3614874b9089c94eac093f90ca5dfa6d5afe45de3ba847fd950fdf1/pyarrow-21.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:bd04ec08f7f8bd113c55868bd3fc442a9db67c27af098c5f814a3091e71cc61a", size = 43329159, upload-time = "2025-07-18T00:54:51.686Z" }, - { url = "https://files.pythonhosted.org/packages/a6/3e/99473332ac40278f196e105ce30b79ab8affab12f6194802f2593d6b0be2/pyarrow-21.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9b0b14b49ac10654332a805aedfc0147fb3469cbf8ea951b3d040dab12372594", size = 45050567, upload-time = "2025-07-18T00:54:56.679Z" }, - { url = "https://files.pythonhosted.org/packages/7b/f5/c372ef60593d713e8bfbb7e0c743501605f0ad00719146dc075faf11172b/pyarrow-21.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:9d9f8bcb4c3be7738add259738abdeddc363de1b80e3310e04067aa1ca596634", size = 26217959, upload-time = "2025-07-18T00:55:00.482Z" }, - { url = "https://files.pythonhosted.org/packages/94/dc/80564a3071a57c20b7c32575e4a0120e8a330ef487c319b122942d665960/pyarrow-21.0.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c077f48aab61738c237802836fc3844f85409a46015635198761b0d6a688f87b", size = 31243234, upload-time = "2025-07-18T00:55:03.812Z" }, - { url = "https://files.pythonhosted.org/packages/ea/cc/3b51cb2db26fe535d14f74cab4c79b191ed9a8cd4cbba45e2379b5ca2746/pyarrow-21.0.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:689f448066781856237eca8d1975b98cace19b8dd2ab6145bf49475478bcaa10", size = 32714370, upload-time = "2025-07-18T00:55:07.495Z" }, - { url = "https://files.pythonhosted.org/packages/24/11/a4431f36d5ad7d83b87146f515c063e4d07ef0b7240876ddb885e6b44f2e/pyarrow-21.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:479ee41399fcddc46159a551705b89c05f11e8b8cb8e968f7fec64f62d91985e", size = 41135424, upload-time = "2025-07-18T00:55:11.461Z" }, - { url = "https://files.pythonhosted.org/packages/74/dc/035d54638fc5d2971cbf1e987ccd45f1091c83bcf747281cf6cc25e72c88/pyarrow-21.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:40ebfcb54a4f11bcde86bc586cbd0272bac0d516cfa539c799c2453768477569", size = 42823810, upload-time = "2025-07-18T00:55:16.301Z" }, - { url = "https://files.pythonhosted.org/packages/2e/3b/89fced102448a9e3e0d4dded1f37fa3ce4700f02cdb8665457fcc8015f5b/pyarrow-21.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8d58d8497814274d3d20214fbb24abcad2f7e351474357d552a8d53bce70c70e", size = 43391538, upload-time = "2025-07-18T00:55:23.82Z" }, - { url = "https://files.pythonhosted.org/packages/fb/bb/ea7f1bd08978d39debd3b23611c293f64a642557e8141c80635d501e6d53/pyarrow-21.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:585e7224f21124dd57836b1530ac8f2df2afc43c861d7bf3d58a4870c42ae36c", size = 45120056, upload-time = "2025-07-18T00:55:28.231Z" }, - { url = "https://files.pythonhosted.org/packages/6e/0b/77ea0600009842b30ceebc3337639a7380cd946061b620ac1a2f3cb541e2/pyarrow-21.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:555ca6935b2cbca2c0e932bedd853e9bc523098c39636de9ad4693b5b1df86d6", size = 26220568, upload-time = "2025-07-18T00:55:32.122Z" }, - { url = "https://files.pythonhosted.org/packages/ca/d4/d4f817b21aacc30195cf6a46ba041dd1be827efa4a623cc8bf39a1c2a0c0/pyarrow-21.0.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:3a302f0e0963db37e0a24a70c56cf91a4faa0bca51c23812279ca2e23481fccd", size = 31160305, upload-time = "2025-07-18T00:55:35.373Z" }, - { url = "https://files.pythonhosted.org/packages/a2/9c/dcd38ce6e4b4d9a19e1d36914cb8e2b1da4e6003dd075474c4cfcdfe0601/pyarrow-21.0.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:b6b27cf01e243871390474a211a7922bfbe3bda21e39bc9160daf0da3fe48876", size = 32684264, upload-time = "2025-07-18T00:55:39.303Z" }, - { url = "https://files.pythonhosted.org/packages/4f/74/2a2d9f8d7a59b639523454bec12dba35ae3d0a07d8ab529dc0809f74b23c/pyarrow-21.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e72a8ec6b868e258a2cd2672d91f2860ad532d590ce94cdf7d5e7ec674ccf03d", size = 41108099, upload-time = "2025-07-18T00:55:42.889Z" }, - { url = "https://files.pythonhosted.org/packages/ad/90/2660332eeb31303c13b653ea566a9918484b6e4d6b9d2d46879a33ab0622/pyarrow-21.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b7ae0bbdc8c6674259b25bef5d2a1d6af5d39d7200c819cf99e07f7dfef1c51e", size = 42829529, upload-time = "2025-07-18T00:55:47.069Z" }, - { url = "https://files.pythonhosted.org/packages/33/27/1a93a25c92717f6aa0fca06eb4700860577d016cd3ae51aad0e0488ac899/pyarrow-21.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:58c30a1729f82d201627c173d91bd431db88ea74dcaa3885855bc6203e433b82", size = 43367883, upload-time = "2025-07-18T00:55:53.069Z" }, - { url = "https://files.pythonhosted.org/packages/05/d9/4d09d919f35d599bc05c6950095e358c3e15148ead26292dfca1fb659b0c/pyarrow-21.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:072116f65604b822a7f22945a7a6e581cfa28e3454fdcc6939d4ff6090126623", size = 45133802, upload-time = "2025-07-18T00:55:57.714Z" }, - { url = "https://files.pythonhosted.org/packages/71/30/f3795b6e192c3ab881325ffe172e526499eb3780e306a15103a2764916a2/pyarrow-21.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:cf56ec8b0a5c8c9d7021d6fd754e688104f9ebebf1bf4449613c9531f5346a18", size = 26203175, upload-time = "2025-07-18T00:56:01.364Z" }, - { url = "https://files.pythonhosted.org/packages/16/ca/c7eaa8e62db8fb37ce942b1ea0c6d7abfe3786ca193957afa25e71b81b66/pyarrow-21.0.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:e99310a4ebd4479bcd1964dff9e14af33746300cb014aa4a3781738ac63baf4a", size = 31154306, upload-time = "2025-07-18T00:56:04.42Z" }, - { url = "https://files.pythonhosted.org/packages/ce/e8/e87d9e3b2489302b3a1aea709aaca4b781c5252fcb812a17ab6275a9a484/pyarrow-21.0.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:d2fe8e7f3ce329a71b7ddd7498b3cfac0eeb200c2789bd840234f0dc271a8efe", size = 32680622, upload-time = "2025-07-18T00:56:07.505Z" }, - { url = "https://files.pythonhosted.org/packages/84/52/79095d73a742aa0aba370c7942b1b655f598069489ab387fe47261a849e1/pyarrow-21.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:f522e5709379d72fb3da7785aa489ff0bb87448a9dc5a75f45763a795a089ebd", size = 41104094, upload-time = "2025-07-18T00:56:10.994Z" }, - { url = "https://files.pythonhosted.org/packages/89/4b/7782438b551dbb0468892a276b8c789b8bbdb25ea5c5eb27faadd753e037/pyarrow-21.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:69cbbdf0631396e9925e048cfa5bce4e8c3d3b41562bbd70c685a8eb53a91e61", size = 42825576, upload-time = "2025-07-18T00:56:15.569Z" }, - { url = "https://files.pythonhosted.org/packages/b3/62/0f29de6e0a1e33518dec92c65be0351d32d7ca351e51ec5f4f837a9aab91/pyarrow-21.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:731c7022587006b755d0bdb27626a1a3bb004bb56b11fb30d98b6c1b4718579d", size = 43368342, upload-time = "2025-07-18T00:56:19.531Z" }, - { url = "https://files.pythonhosted.org/packages/90/c7/0fa1f3f29cf75f339768cc698c8ad4ddd2481c1742e9741459911c9ac477/pyarrow-21.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:dc56bc708f2d8ac71bd1dcb927e458c93cec10b98eb4120206a4091db7b67b99", size = 45131218, upload-time = "2025-07-18T00:56:23.347Z" }, - { url = "https://files.pythonhosted.org/packages/01/63/581f2076465e67b23bc5a37d4a2abff8362d389d29d8105832e82c9c811c/pyarrow-21.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:186aa00bca62139f75b7de8420f745f2af12941595bbbfa7ed3870ff63e25636", size = 26087551, upload-time = "2025-07-18T00:56:26.758Z" }, - { url = "https://files.pythonhosted.org/packages/c9/ab/357d0d9648bb8241ee7348e564f2479d206ebe6e1c47ac5027c2e31ecd39/pyarrow-21.0.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:a7a102574faa3f421141a64c10216e078df467ab9576684d5cd696952546e2da", size = 31290064, upload-time = "2025-07-18T00:56:30.214Z" }, - { url = "https://files.pythonhosted.org/packages/3f/8a/5685d62a990e4cac2043fc76b4661bf38d06efed55cf45a334b455bd2759/pyarrow-21.0.0-cp313-cp313t-macosx_12_0_x86_64.whl", hash = "sha256:1e005378c4a2c6db3ada3ad4c217b381f6c886f0a80d6a316fe586b90f77efd7", size = 32727837, upload-time = "2025-07-18T00:56:33.935Z" }, - { url = "https://files.pythonhosted.org/packages/fc/de/c0828ee09525c2bafefd3e736a248ebe764d07d0fd762d4f0929dbc516c9/pyarrow-21.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:65f8e85f79031449ec8706b74504a316805217b35b6099155dd7e227eef0d4b6", size = 41014158, upload-time = "2025-07-18T00:56:37.528Z" }, - { url = "https://files.pythonhosted.org/packages/6e/26/a2865c420c50b7a3748320b614f3484bfcde8347b2639b2b903b21ce6a72/pyarrow-21.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:3a81486adc665c7eb1a2bde0224cfca6ceaba344a82a971ef059678417880eb8", size = 42667885, upload-time = "2025-07-18T00:56:41.483Z" }, - { url = "https://files.pythonhosted.org/packages/0a/f9/4ee798dc902533159250fb4321267730bc0a107d8c6889e07c3add4fe3a5/pyarrow-21.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:fc0d2f88b81dcf3ccf9a6ae17f89183762c8a94a5bdcfa09e05cfe413acf0503", size = 43276625, upload-time = "2025-07-18T00:56:48.002Z" }, - { url = "https://files.pythonhosted.org/packages/5a/da/e02544d6997037a4b0d22d8e5f66bc9315c3671371a8b18c79ade1cefe14/pyarrow-21.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6299449adf89df38537837487a4f8d3bd91ec94354fdd2a7d30bc11c48ef6e79", size = 44951890, upload-time = "2025-07-18T00:56:52.568Z" }, - { url = "https://files.pythonhosted.org/packages/e5/4e/519c1bc1876625fe6b71e9a28287c43ec2f20f73c658b9ae1d485c0c206e/pyarrow-21.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:222c39e2c70113543982c6b34f3077962b44fca38c0bd9e68bb6781534425c10", size = 26371006, upload-time = "2025-07-18T00:56:56.379Z" }, - { url = "https://files.pythonhosted.org/packages/3e/cc/ce4939f4b316457a083dc5718b3982801e8c33f921b3c98e7a93b7c7491f/pyarrow-21.0.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:a7f6524e3747e35f80744537c78e7302cd41deee8baa668d56d55f77d9c464b3", size = 31211248, upload-time = "2025-07-18T00:56:59.7Z" }, - { url = "https://files.pythonhosted.org/packages/1f/c2/7a860931420d73985e2f340f06516b21740c15b28d24a0e99a900bb27d2b/pyarrow-21.0.0-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:203003786c9fd253ebcafa44b03c06983c9c8d06c3145e37f1b76a1f317aeae1", size = 32676896, upload-time = "2025-07-18T00:57:03.884Z" }, - { url = "https://files.pythonhosted.org/packages/68/a8/197f989b9a75e59b4ca0db6a13c56f19a0ad8a298c68da9cc28145e0bb97/pyarrow-21.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:3b4d97e297741796fead24867a8dabf86c87e4584ccc03167e4a811f50fdf74d", size = 41067862, upload-time = "2025-07-18T00:57:07.587Z" }, - { url = "https://files.pythonhosted.org/packages/fa/82/6ecfa89487b35aa21accb014b64e0a6b814cc860d5e3170287bf5135c7d8/pyarrow-21.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:898afce396b80fdda05e3086b4256f8677c671f7b1d27a6976fa011d3fd0a86e", size = 42747508, upload-time = "2025-07-18T00:57:13.917Z" }, - { url = "https://files.pythonhosted.org/packages/3b/b7/ba252f399bbf3addc731e8643c05532cf32e74cebb5e32f8f7409bc243cf/pyarrow-21.0.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:067c66ca29aaedae08218569a114e413b26e742171f526e828e1064fcdec13f4", size = 43345293, upload-time = "2025-07-18T00:57:19.828Z" }, - { url = "https://files.pythonhosted.org/packages/ff/0a/a20819795bd702b9486f536a8eeb70a6aa64046fce32071c19ec8230dbaa/pyarrow-21.0.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0c4e75d13eb76295a49e0ea056eb18dbd87d81450bfeb8afa19a7e5a75ae2ad7", size = 45060670, upload-time = "2025-07-18T00:57:24.477Z" }, - { url = "https://files.pythonhosted.org/packages/10/15/6b30e77872012bbfe8265d42a01d5b3c17ef0ac0f2fae531ad91b6a6c02e/pyarrow-21.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:cdc4c17afda4dab2a9c0b79148a43a7f4e1094916b3e18d8975bfd6d6d52241f", size = 26227521, upload-time = "2025-07-18T00:57:29.119Z" }, -] - [[package]] name = "pyarrow" version = "23.0.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/88/22/134986a4cc224d593c1afde5494d18ff629393d74cc2eddb176669f234a4/pyarrow-23.0.1.tar.gz", hash = "sha256:b8c5873e33440b2bc2f4a79d2b47017a89c5a24116c055625e6f2ee50523f019", size = 1167336, upload-time = "2026-02-16T10:14:12.39Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/bc/a8/24e5dc6855f50a62936ceb004e6e9645e4219a8065f304145d7fb8a79d5d/pyarrow-23.0.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3fab8f82571844eb3c460f90a75583801d14ca0cc32b1acc8c361650e006fd56", size = 34307390, upload-time = "2026-02-16T10:08:08.654Z" }, @@ -4369,34 +3101,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d7/27/a58ddaf8c588a3ef080db9d0b7e0b97215cee3a45df74f3a94dbbf5c893a/pycodestyle-2.14.0-py2.py3-none-any.whl", hash = "sha256:dd6bf7cb4ee77f8e016f9c8e74a35ddd9f67e1d5fd4184d86c3b98e07099f42d", size = 31594, upload-time = "2025-06-20T18:49:47.491Z" }, ] -[[package]] -name = "pycparser" -version = "2.23" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/fe/cf/d2d3b9f5699fb1e4615c8e32ff220203e43b248e1dfcc6736ad9057731ca/pycparser-2.23.tar.gz", hash = "sha256:78816d4f24add8f10a06d6f05b4d424ad9e96cfebf68a4ddc99c65c0720d00c2", size = 173734, upload-time = "2025-09-09T13:23:47.91Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a0/e3/59cd50310fc9b59512193629e1984c1f95e5c8ae6e5d8c69532ccc65a7fe/pycparser-2.23-py3-none-any.whl", hash = "sha256:e5c6e8d3fbad53479cab09ac03729e0a9faf2bee3db8208a550daf5af81a5934", size = 118140, upload-time = "2025-09-09T13:23:46.651Z" }, -] - [[package]] name = "pycparser" version = "3.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/1b/7d/92392ff7815c21062bea51aa7b87d45576f649f16458d78b7cf94b9ab2e6/pycparser-3.0.tar.gz", hash = "sha256:600f49d217304a5902ac3c37e1281c9fe94e4d0489de643a9504c5cdfdfc6b29", size = 103492, upload-time = "2026-01-21T14:26:51.89Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/0c/c3/44f3fbbfa403ea2a7c779186dc20772604442dde72947e7d01069cbe98e3/pycparser-3.0-py3-none-any.whl", hash = "sha256:b727414169a36b7d524c1c3e31839a521725078d7b2ff038656844266160a992", size = 48172, upload-time = "2026-01-21T14:26:50.693Z" }, @@ -4509,19 +3217,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5c/96/5fb7d8c3c17bc8c62fdb031c47d77a1af698f1d7a406b0f79aaa1338f9ad/pydantic_core-2.41.5-cp314-cp314t-win32.whl", hash = "sha256:b4ececa40ac28afa90871c2cc2b9ffd2ff0bf749380fbdf57d165fd23da353aa", size = 1988906, upload-time = "2025-11-04T13:41:56.606Z" }, { url = "https://files.pythonhosted.org/packages/22/ed/182129d83032702912c2e2d8bbe33c036f342cc735737064668585dac28f/pydantic_core-2.41.5-cp314-cp314t-win_amd64.whl", hash = "sha256:80aa89cad80b32a912a65332f64a4450ed00966111b6615ca6816153d3585a8c", size = 1981607, upload-time = "2025-11-04T13:41:58.889Z" }, { url = "https://files.pythonhosted.org/packages/9f/ed/068e41660b832bb0b1aa5b58011dea2a3fe0ba7861ff38c4d4904c1c1a99/pydantic_core-2.41.5-cp314-cp314t-win_arm64.whl", hash = "sha256:35b44f37a3199f771c3eaa53051bc8a70cd7b54f333531c59e29fd4db5d15008", size = 1974769, upload-time = "2025-11-04T13:42:01.186Z" }, - { url = "https://files.pythonhosted.org/packages/54/db/160dffb57ed9a3705c4cbcbff0ac03bdae45f1ca7d58ab74645550df3fbd/pydantic_core-2.41.5-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:8bfeaf8735be79f225f3fefab7f941c712aaca36f1128c9d7e2352ee1aa87bdf", size = 2107999, upload-time = "2025-11-04T13:42:03.885Z" }, - { url = "https://files.pythonhosted.org/packages/a3/7d/88e7de946f60d9263cc84819f32513520b85c0f8322f9b8f6e4afc938383/pydantic_core-2.41.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:346285d28e4c8017da95144c7f3acd42740d637ff41946af5ce6e5e420502dd5", size = 1929745, upload-time = "2025-11-04T13:42:06.075Z" }, - { url = "https://files.pythonhosted.org/packages/d5/c2/aef51e5b283780e85e99ff19db0f05842d2d4a8a8cd15e63b0280029b08f/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a75dafbf87d6276ddc5b2bf6fae5254e3d0876b626eb24969a574fff9149ee5d", size = 1920220, upload-time = "2025-11-04T13:42:08.457Z" }, - { url = "https://files.pythonhosted.org/packages/c7/97/492ab10f9ac8695cd76b2fdb24e9e61f394051df71594e9bcc891c9f586e/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7b93a4d08587e2b7e7882de461e82b6ed76d9026ce91ca7915e740ecc7855f60", size = 2067296, upload-time = "2025-11-04T13:42:10.817Z" }, - { url = "https://files.pythonhosted.org/packages/ec/23/984149650e5269c59a2a4c41d234a9570adc68ab29981825cfaf4cfad8f4/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e8465ab91a4bd96d36dde3263f06caa6a8a6019e4113f24dc753d79a8b3a3f82", size = 2231548, upload-time = "2025-11-04T13:42:13.843Z" }, - { url = "https://files.pythonhosted.org/packages/71/0c/85bcbb885b9732c28bec67a222dbed5ed2d77baee1f8bba2002e8cd00c5c/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:299e0a22e7ae2b85c1a57f104538b2656e8ab1873511fd718a1c1c6f149b77b5", size = 2362571, upload-time = "2025-11-04T13:42:16.208Z" }, - { url = "https://files.pythonhosted.org/packages/c0/4a/412d2048be12c334003e9b823a3fa3d038e46cc2d64dd8aab50b31b65499/pydantic_core-2.41.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:707625ef0983fcfb461acfaf14de2067c5942c6bb0f3b4c99158bed6fedd3cf3", size = 2068175, upload-time = "2025-11-04T13:42:18.911Z" }, - { url = "https://files.pythonhosted.org/packages/73/f4/c58b6a776b502d0a5540ad02e232514285513572060f0d78f7832ca3c98b/pydantic_core-2.41.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f41eb9797986d6ebac5e8edff36d5cef9de40def462311b3eb3eeded1431e425", size = 2177203, upload-time = "2025-11-04T13:42:22.578Z" }, - { url = "https://files.pythonhosted.org/packages/ed/ae/f06ea4c7e7a9eead3d165e7623cd2ea0cb788e277e4f935af63fc98fa4e6/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0384e2e1021894b1ff5a786dbf94771e2986ebe2869533874d7e43bc79c6f504", size = 2148191, upload-time = "2025-11-04T13:42:24.89Z" }, - { url = "https://files.pythonhosted.org/packages/c1/57/25a11dcdc656bf5f8b05902c3c2934ac3ea296257cc4a3f79a6319e61856/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:f0cd744688278965817fd0839c4a4116add48d23890d468bc436f78beb28abf5", size = 2343907, upload-time = "2025-11-04T13:42:27.683Z" }, - { url = "https://files.pythonhosted.org/packages/96/82/e33d5f4933d7a03327c0c43c65d575e5919d4974ffc026bc917a5f7b9f61/pydantic_core-2.41.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:753e230374206729bf0a807954bcc6c150d3743928a73faffee51ac6557a03c3", size = 2322174, upload-time = "2025-11-04T13:42:30.776Z" }, - { url = "https://files.pythonhosted.org/packages/81/45/4091be67ce9f469e81656f880f3506f6a5624121ec5eb3eab37d7581897d/pydantic_core-2.41.5-cp39-cp39-win32.whl", hash = "sha256:873e0d5b4fb9b89ef7c2d2a963ea7d02879d9da0da8d9d4933dee8ee86a8b460", size = 1990353, upload-time = "2025-11-04T13:42:33.111Z" }, - { url = "https://files.pythonhosted.org/packages/44/8a/a98aede18db6e9cd5d66bcacd8a409fcf8134204cdede2e7de35c5a2c5ef/pydantic_core-2.41.5-cp39-cp39-win_amd64.whl", hash = "sha256:e4f4a984405e91527a0d62649ee21138f8e3d0ef103be488c1dc11a80d7f184b", size = 2015698, upload-time = "2025-11-04T13:42:35.484Z" }, { url = "https://files.pythonhosted.org/packages/11/72/90fda5ee3b97e51c494938a4a44c3a35a9c96c19bba12372fb9c634d6f57/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl", hash = "sha256:b96d5f26b05d03cc60f11a7761a5ded1741da411e7fe0909e27a5e6a0cb7b034", size = 2115441, upload-time = "2025-11-04T13:42:39.557Z" }, { url = "https://files.pythonhosted.org/packages/1f/53/8942f884fa33f50794f119012dc6a1a02ac43a56407adaac20463df8e98f/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:634e8609e89ceecea15e2d61bc9ac3718caaaa71963717bf3c8f38bfde64242c", size = 1930291, upload-time = "2025-11-04T13:42:42.169Z" }, { url = "https://files.pythonhosted.org/packages/79/c8/ecb9ed9cd942bce09fc888ee960b52654fbdbede4ba6c2d6e0d3b1d8b49c/pydantic_core-2.41.5-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:93e8740d7503eb008aa2df04d3b9735f845d43ae845e6dcd2be0b55a2da43cd2", size = 1948632, upload-time = "2025-11-04T13:42:44.564Z" }, @@ -4567,72 +3262,68 @@ wheels = [ ] [[package]] -name = "pyogrio" -version = "0.11.1" +name = "pykdtree" +version = "1.4.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] dependencies = [ - { name = "certifi", marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/bf/1d/ae0340237207664e2da1b77f2cdbcb5f81fd0fc9f3200a48ca993a5e12ef/pyogrio-0.11.1.tar.gz", hash = "sha256:e1441dc9c866f10d8e6ae7ea9249a10c1f57ea921b1f19a5b0977ab91ef8082c", size = 287267, upload-time = "2025-08-02T20:19:20.167Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/37/c4d114514dd5508356f67601320cdcb8743800a8bdd1f3fe6bfa4021a2f0/pyogrio-0.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:838ead7df8388d938ce848354e384ae5aa46fe7c5f74f9da2d58f064bda053f7", size = 19455667, upload-time = "2025-08-02T20:18:02.931Z" }, - { url = "https://files.pythonhosted.org/packages/a4/d8/929745fb3dc0f00ff8d0202f69cfe8c2f42b9b99b1ded601a17a71904463/pyogrio-0.11.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:6f51aa9fc3632e6dcb3dd5562b4a56a3a31850c3f630aef3587d5889a1f65275", size = 20642769, upload-time = "2025-08-02T20:18:05.413Z" }, - { url = "https://files.pythonhosted.org/packages/c5/9b/c2b51051be2152c7dd278ead47b5221912090c5802eadc7966c6005704b0/pyogrio-0.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4982107653ce30de395678b50a1ee00299a4cfcb41043778f1b66c5911b8adbe", size = 26845241, upload-time = "2025-08-02T20:18:07.841Z" }, - { url = "https://files.pythonhosted.org/packages/7d/7c/cea8b75f409670ed2526dbf0cf74fd5efd2f7536ada6459646371989187b/pyogrio-0.11.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:7b20ffbf72013d464012d8f0f69322459a6528bef08c85f85b8a42b056f730b0", size = 26376340, upload-time = "2025-08-02T20:18:10.402Z" }, - { url = "https://files.pythonhosted.org/packages/15/87/7a180f3fadb9a388312e789feee023cd20d1d589724ef093ebee4d784b9a/pyogrio-0.11.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:5b8d60ead740b366cdc2f3b076d21349e5a5d4b9a0e6726922c5a031206b93b2", size = 27519685, upload-time = "2025-08-02T20:18:13.159Z" }, - { url = "https://files.pythonhosted.org/packages/f5/15/fb6ed944f76aff08a98618f1ff184ad4dc3eb026b4a74d7e5cc01125be43/pyogrio-0.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:1948027b2809f2248f69b069ab9833d56b53658f182a3b418d12d3d3eb9959d7", size = 19224975, upload-time = "2025-08-02T20:18:15.844Z" }, - { url = "https://files.pythonhosted.org/packages/d0/81/50441f029609bcb883ee2738bdee3f81a998a11e4052b6ad0ef0ae4c0ae5/pyogrio-0.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d36162ddc1a309bb941a3cfb550b8f88c862c67ef2f52df6460100e5e958bbc6", size = 19459279, upload-time = "2025-08-02T20:18:18.955Z" }, - { url = "https://files.pythonhosted.org/packages/0d/4a/a3a2fae13e42ee98574b18591ddb66bca88bc1fa812c017437b42c85569f/pyogrio-0.11.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:845c78d5e7c9ec1c7d00250c07e144e5fe504fdb4ccdc141d9413f85b8c55c91", size = 20646364, upload-time = "2025-08-02T20:18:21.171Z" }, - { url = "https://files.pythonhosted.org/packages/7d/f2/1dd5795f8cccf8f97d5ac7f28fee31fc1afc5f6bce9fab2ac4486ed3af44/pyogrio-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50aa869509f189fa1bff4d90d2d4c7860b963e693af85f2957646306e882b631", size = 26999659, upload-time = "2025-08-02T20:18:25.482Z" }, - { url = "https://files.pythonhosted.org/packages/ea/ef/4f8d61afb6798edde8bd6d2721032e868ff78a25395d9512f7e5e50b23c4/pyogrio-0.11.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dd0f44dd2d849d32aea3f73647c74083996917e446479645bf93de6656160f2d", size = 26523036, upload-time = "2025-08-02T20:18:28.761Z" }, - { url = "https://files.pythonhosted.org/packages/e7/99/81d9a441ac7709407750f359813889b9a3f6076999cb9ae8893d5ba7c707/pyogrio-0.11.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:36b910d4037694b2935b5b1c1eb757dcc2906dca05cb2992cbdaf1291b54ff97", size = 27678041, upload-time = "2025-08-02T20:18:31.103Z" }, - { url = "https://files.pythonhosted.org/packages/74/4e/a5d00c30e5ca3f4133a425fe41531b219139ad4451ea8edc3520f221f9dd/pyogrio-0.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:cb744097f302f19dcc5c93ee5e9cfd707b864c9a418e399f0908406a60003728", size = 19226619, upload-time = "2025-08-02T20:18:34.261Z" }, - { url = "https://files.pythonhosted.org/packages/72/d3/2ba967ca4255cdfa130a6d8b437826488567b4bc1bb417c442bb43d62611/pyogrio-0.11.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f186456ebe5d5f61e7bd883bad25a59d43d6304178d4f0d3e03273f42b40a4cc", size = 19450110, upload-time = "2025-08-02T20:18:36.643Z" }, - { url = "https://files.pythonhosted.org/packages/5a/e1/3bc29ae71d24a91cf91f7413541e50acb7de2ce609587168ce2f4b405d3b/pyogrio-0.11.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:b8a199bc0e421eac444af96942b7553268e43d0cadf30d0d6d41017de05b7e9e", size = 20635348, upload-time = "2025-08-02T20:18:38.714Z" }, - { url = "https://files.pythonhosted.org/packages/8c/b2/ec453e544370a90b4e8b2c6afa72501963ddc33afe883f0e5ba34af6a80f/pyogrio-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afce80b4b32f043fcf76a50e8572e3ad8d9d3e6abbbfa6137f0975ba55c4eeb8", size = 26980190, upload-time = "2025-08-02T20:18:41.197Z" }, - { url = "https://files.pythonhosted.org/packages/b1/f6/337f122b58f697f807bf9093b606b33b3ef52fe06a21e88d8a9230844cc3/pyogrio-0.11.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:0cfd79caf0b8cb7bbf30b419dff7f21509169efcf4d431172c61b44fe1029dba", size = 26474852, upload-time = "2025-08-02T20:18:43.74Z" }, - { url = "https://files.pythonhosted.org/packages/e6/0f/8193a4a879f1284d693793e59a2e185c8fd3c47cb562b0e5daf7289997ea/pyogrio-0.11.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ab3aa6dbf2441d2407ce052233f2966324a3cff752bd43d99e4c779ea54e0a16", size = 27659721, upload-time = "2025-08-02T20:18:46.398Z" }, - { url = "https://files.pythonhosted.org/packages/5f/7d/3e818625a435fcc196ea441a6ca8495f87dd1f1eebeb95760eb401ea425d/pyogrio-0.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:cd10035eb3b5e5a43bdafbd777339d2274e9b75972658364f0ce31c4d3400d1e", size = 19219350, upload-time = "2025-08-02T20:18:48.866Z" }, - { url = "https://files.pythonhosted.org/packages/f2/68/86328e36d010ee565ce0c65cdf9b830afcb1fb5972f537fe1cc561a49247/pyogrio-0.11.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:3b368c597357ff262f3b46591ded86409462ee594ef42556708b090d121f873c", size = 19445347, upload-time = "2025-08-02T20:18:51.088Z" }, - { url = "https://files.pythonhosted.org/packages/20/bc/34bd87641fc2ecc6d842d6d758bbaa8d58aea4d36aa6a1111cbc9d450e74/pyogrio-0.11.1-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:1cb82cfd3493f32396e9c3f9255e17885610f62a323870947f4e04dd59bc3595", size = 20630594, upload-time = "2025-08-02T20:18:53.176Z" }, - { url = "https://files.pythonhosted.org/packages/68/9a/41b72ffa3e21354eb9afbbae855c86b94dbf06b22e89c16a807cc8b22bd2/pyogrio-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d61aae22e67030fd354f03e21c6462537bf56160134dd8663709335a5a46b28", size = 26929440, upload-time = "2025-08-02T20:18:55.614Z" }, - { url = "https://files.pythonhosted.org/packages/42/dd/c968c49a2e9b7c219eac0cc504241c21ef789f1f1b34d33780508cea9764/pyogrio-0.11.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:76150a3cd787c31628191c7abc6f8c796660125852fb65ae15dd7be1e9196816", size = 26433178, upload-time = "2025-08-02T20:18:58.274Z" }, - { url = "https://files.pythonhosted.org/packages/89/a9/79eca15094f7806a3adcf0bb976ab4346b0fb1bd87956c1933df44546c14/pyogrio-0.11.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e929452f6988c0365dd32ff2485d9488160a709fee28743abbbc18d663169ed0", size = 27616835, upload-time = "2025-08-02T20:19:01.112Z" }, - { url = "https://files.pythonhosted.org/packages/2b/f3/7722bc81e9eee39b528c1cbc6289a26d2d3b1b187491ed8493457d6a3a0e/pyogrio-0.11.1-cp313-cp313-win_amd64.whl", hash = "sha256:d6d56862b89a05fccd7211171c88806b6ec9b5effb79bf807cce0a57c1f2a606", size = 19219088, upload-time = "2025-08-02T20:19:03.732Z" }, - { url = "https://files.pythonhosted.org/packages/53/0f/c45f606ead4acd8797aeed9dd6434c68ddb47afccddd9f3910b412d654da/pyogrio-0.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:9ae8efbe4f9f215b2321655f988be8bb133829037dbefebc2643f52da4e7782a", size = 19456631, upload-time = "2025-08-02T20:19:05.86Z" }, - { url = "https://files.pythonhosted.org/packages/40/59/c94a831ba24f448529e9a4a8334b8fffbaa77e47339eba00d713f2d87df0/pyogrio-0.11.1-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:7cbbc24a785cca733b80c96e8e10f7c316df295786ac9900c145e2b12f828050", size = 20644080, upload-time = "2025-08-02T20:19:08.232Z" }, - { url = "https://files.pythonhosted.org/packages/62/c7/657f568826166b8ac5d51d3b29df60e48cbb5fde833fae9f24776188bd2b/pyogrio-0.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e924de96f1a436567fb57cd94b02b2572c066663c5b6431d2827993d8f3a646", size = 26825034, upload-time = "2025-08-02T20:19:10.489Z" }, - { url = "https://files.pythonhosted.org/packages/2e/eb/e1fdeaa243683dbf9fe8db177416f9a87868aae9b0509304f1f6ef159906/pyogrio-0.11.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:580001084562b55059f161b8c8f2c15135a4523256a3b910ea3a58cd8ffb6c4f", size = 26352261, upload-time = "2025-08-02T20:19:13.083Z" }, - { url = "https://files.pythonhosted.org/packages/88/f6/0df5c6f370752acb9a649a5c8ebb626952fd7fc5cfc0da215181dbbc3601/pyogrio-0.11.1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:56d2315f28cdbde98c23f719c85a0f0ee1953a1eae617505c7349c660847dbf5", size = 27504419, upload-time = "2025-08-02T20:19:15.999Z" }, - { url = "https://files.pythonhosted.org/packages/8a/a8/594eb0fedd53901ee26ca6bfdbe3f723f0035c727fb4ce04c9b356fd58f7/pyogrio-0.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:db372785b2a32ad6006477366c4c07285d98f7a7e6d356b2eba15a4fbaaa167f", size = 19226953, upload-time = "2025-08-02T20:19:18.241Z" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/8d/ab32411372d016404e8cf0a30ff955c4420717a88c9df4ab0bd3dc4740be/pykdtree-1.4.3.tar.gz", hash = "sha256:d9187930ffb8c822c52595b64948b47346694ee2a49e2702420b58f743d786f5", size = 30472, upload-time = "2025-08-06T11:11:38.915Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/28/10ab1f644425177387dbc0e99cc974a5d5f7d0229512d1405fc852bfd84d/pykdtree-1.4.3-cp310-cp310-macosx_13_0_x86_64.whl", hash = "sha256:1dcfbaebd3216dc909e482bfe93e0d8aafdd9df45fa2f554d701f6c2058996cf", size = 352880, upload-time = "2025-08-06T11:10:46.406Z" }, + { url = "https://files.pythonhosted.org/packages/a0/33/743a23dd7717133b1463d476e562a0024f1ec7ec5151f0c5deae45244d01/pykdtree-1.4.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:ce70dd4c91424b7952be978be176a712332163b08c9fd209e391527c21115f31", size = 315353, upload-time = "2025-08-06T11:10:47.566Z" }, + { url = "https://files.pythonhosted.org/packages/3a/d0/6bfe8f4e9d96178434b0e2a8462e8a810449fb1ec39db4392ce258ac7bf1/pykdtree-1.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:343cbd7927d94288c832d9da7a17893e54de848149e694e00176c43c637de699", size = 434308, upload-time = "2025-08-06T11:10:48.833Z" }, + { url = "https://files.pythonhosted.org/packages/72/ac/8871652efba628ab515be26317305537a8ed23c6e5e34ab40ed409cf0b1f/pykdtree-1.4.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e0678c9a86cc965e36568d9b3a912ac79542291f9d33b06ef9ff3ab472bf10", size = 446789, upload-time = "2025-08-06T11:10:50.088Z" }, + { url = "https://files.pythonhosted.org/packages/de/0c/5f232028fa0a5cbfac52903b74104a7b195f937a3b8976f7faaa43962784/pykdtree-1.4.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:74012a3a14a4673dbf3740c9cdbcea2b89208aa3fc7e9f533fc9190c67de5cdf", size = 484404, upload-time = "2025-08-06T11:10:50.988Z" }, + { url = "https://files.pythonhosted.org/packages/6d/c7/11c996db03bddc73806f9d32dfd243417a50771103c90bdbdbee3ed27f7b/pykdtree-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:6b4732c24713dcf7d4cc4cdaea8edcb556a2f7cad6823ad581f6202db2cf66cc", size = 67922, upload-time = "2025-08-06T11:10:51.887Z" }, + { url = "https://files.pythonhosted.org/packages/21/4a/38c484089139d1713a260daf963dcc190dc3e2e2039070a91f2ab057fd77/pykdtree-1.4.3-cp310-cp310-win_arm64.whl", hash = "sha256:b37ebe847968703b87dc091fc84527f08db940bf03380e5da954cd7db2b17790", size = 55824, upload-time = "2025-08-06T11:10:52.995Z" }, + { url = "https://files.pythonhosted.org/packages/1b/db/f8e30f61891c3455eda8f89691f200ac422258c2ae1c26f98dea1819d31b/pykdtree-1.4.3-cp311-cp311-macosx_13_0_x86_64.whl", hash = "sha256:bf1c863b97dec6ef9eda5f8c22e2513c1679b513a95f7bb49da90b49d8584223", size = 352572, upload-time = "2025-08-06T11:10:53.813Z" }, + { url = "https://files.pythonhosted.org/packages/06/fb/4e6b8478d4121780f4c19f16676cc1745ae9665c6ebce5c4b860b21bf57d/pykdtree-1.4.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:ffe8ec795142793f927879dd8b058066b4f3613e91a2639cc57b8d9eae5e49a0", size = 315617, upload-time = "2025-08-06T11:10:54.974Z" }, + { url = "https://files.pythonhosted.org/packages/26/69/cf40c90c488676701c5d088fbc3380d3d884eeef9ba87ef079442bcab847/pykdtree-1.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd3a4454b8f86ce22f7b92b4bc53e309817b0d3602afff8c9a17fde1bd6dd3f0", size = 441507, upload-time = "2025-08-06T11:10:56.865Z" }, + { url = "https://files.pythonhosted.org/packages/46/aa/ad48cc40d15c6c12d64d06768db96bde01e8f72dbfbbcebf391bcc1682fb/pykdtree-1.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:44d2e1b6a3d02b5cf9646bf754931fdacb869cefd328242766e1dc0be909cca1", size = 456475, upload-time = "2025-08-06T11:10:57.858Z" }, + { url = "https://files.pythonhosted.org/packages/62/d2/439860d63d40501e33370694a66de439696039a613ab31156040454e633a/pykdtree-1.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3b3899ae553d63e351a2fd98f1656affb7923bda02e066ea4703aa5ca1879582", size = 493800, upload-time = "2025-08-06T11:10:59.228Z" }, + { url = "https://files.pythonhosted.org/packages/ec/0c/f2bbc770d16b76a1a0d0967121796be4bbdece358c736b5fbc07327df82d/pykdtree-1.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:bb3367a325278a218fd22b321f1ef485445a0f19c23e1aa7bd6e34e0f4ff4d03", size = 67916, upload-time = "2025-08-06T11:11:00.681Z" }, + { url = "https://files.pythonhosted.org/packages/1a/95/8ea06124b9f2880b645532703cacee062bce45ec67c0c05314686415fc31/pykdtree-1.4.3-cp311-cp311-win_arm64.whl", hash = "sha256:b6630c10c5b05535b0045d7a00a95e5e53a7a44319069ff3054d69b52be3e81c", size = 55430, upload-time = "2025-08-06T11:11:01.625Z" }, + { url = "https://files.pythonhosted.org/packages/0b/f8/6cf164851d7d72b9bb7bc0ef4206ab191bfdfa9b6f017473ae69a1043e38/pykdtree-1.4.3-cp312-cp312-macosx_13_0_x86_64.whl", hash = "sha256:e0421694c5522911eb892eb916f1bcd08d70b72a69d5226d76bfa7706a2d9c74", size = 350280, upload-time = "2025-08-06T11:11:02.749Z" }, + { url = "https://files.pythonhosted.org/packages/8c/93/4842213b45a588efbbfc4ad2a0773efd7c03038a3c727c47a3ab40589ffa/pykdtree-1.4.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:c656c5c0caa0be582bcf3b662578db4d898d652fcb1de0586eae854a0f1ece5b", size = 314622, upload-time = "2025-08-06T11:11:03.669Z" }, + { url = "https://files.pythonhosted.org/packages/84/ed/a3978e5457d838945f1023240b12e72be71a53c8d3d0c0857f2063cc085d/pykdtree-1.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8ace71f89edb21dc24c5d6c9e952638c7f2d229d75701a39e633f30b08668b63", size = 471736, upload-time = "2025-08-06T11:11:04.618Z" }, + { url = "https://files.pythonhosted.org/packages/1d/3f/6e51e96d2aa9101646742ff7429b628580ab59a9dbbf9540b9c3fe5fd1ab/pykdtree-1.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:08d63ee594b5cd7524bfa37ab857304a775ed04b7431ed4b48169ad664d694d8", size = 484828, upload-time = "2025-08-06T11:11:05.622Z" }, + { url = "https://files.pythonhosted.org/packages/ef/88/2a278de28b3958599ad75de198a039ba0b5b371d5cad809563cb522e03e6/pykdtree-1.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6c1fa063c2c7387dccd7553b1b677c05f7e762e9a7cfda35f5bb053ee6acea59", size = 521655, upload-time = "2025-08-06T11:11:06.532Z" }, + { url = "https://files.pythonhosted.org/packages/27/52/555bdec183897687015b736bc852201386125d196b3a7b5c57da8118b106/pykdtree-1.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:6d102ed37a54067e75485afb676c9c4bd723033a6e5661b47c059aa83ae6253e", size = 66371, upload-time = "2025-08-06T11:11:07.499Z" }, + { url = "https://files.pythonhosted.org/packages/ae/54/e51d88b7c2e9d7e8ab75461d96b21f54ffa639ff2515da5344e9a96b66b1/pykdtree-1.4.3-cp312-cp312-win_arm64.whl", hash = "sha256:49ea28ecd75e0d450c1e9f54c8bc35eb1b677bb7fa0df2c341b83e782a976576", size = 54381, upload-time = "2025-08-06T11:11:08.583Z" }, + { url = "https://files.pythonhosted.org/packages/ba/4b/76a3ee5a14053a7e7f7584ac6f8fd0e01959919773b6c6aad95aaf041288/pykdtree-1.4.3-cp313-cp313-macosx_13_0_x86_64.whl", hash = "sha256:8e1c1fff9f3893a82bf5b5f09be8d6ee83b05ed9d577e30eb50e6d729e15e455", size = 349780, upload-time = "2025-08-06T11:11:09.454Z" }, + { url = "https://files.pythonhosted.org/packages/4e/87/205f0a5c0fe687c10d1e8d1869146a7e20e4549a7cea12ae0ee4968a5a73/pykdtree-1.4.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:165bfa54a1a98609bfa1f52ea739f6347a01f5da418512bf8f7fa360cfca979f", size = 314048, upload-time = "2025-08-06T11:11:10.321Z" }, + { url = "https://files.pythonhosted.org/packages/19/1f/caf7fd20d7dc9ca065e6fdd4f0fc6c9631e87dea2866121df2cca591c387/pykdtree-1.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2a73001e203ea2aa4415ffb251fe9f71de1e0cb935a6cd014d4a4610f7ca7bbb", size = 450018, upload-time = "2025-08-06T11:11:11.19Z" }, + { url = "https://files.pythonhosted.org/packages/a4/3e/dc89d0757452d1d0207b558f6a40bf2af1770a664b56d2c14f9ccd8ec75d/pykdtree-1.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0726995df7f62bee5beabc867ba86ffab96cc38c4cf59dd92cb92eab64c51b91", size = 464481, upload-time = "2025-08-06T11:11:12.184Z" }, + { url = "https://files.pythonhosted.org/packages/32/84/6ea33dc76a667aba7fc77591028b853d600e335953deac3e9b2f13cff951/pykdtree-1.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f9a51e58446f60bb572701179c21191c1a8fdd233c79a79133eff85bf7349362", size = 499285, upload-time = "2025-08-06T11:11:13.673Z" }, + { url = "https://files.pythonhosted.org/packages/a8/59/7e738300a6d733235ef641398dd7eb297c9a575140ca7e89fcf1c608f42e/pykdtree-1.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:32af4eaf44326b68f0f1a1ec0813b7b134477dd91fee2ce699a7891aec833c6f", size = 66772, upload-time = "2025-08-06T11:11:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/1e/6d/adc34737c527e606e12da525e530c2c05d80f405b0ddc24f9322a7a39b31/pykdtree-1.4.3-cp313-cp313-win_arm64.whl", hash = "sha256:77eaf63d25ab10f980bc516e1864fb4181e717d4005ef0249dd7119d7601ef6d", size = 54426, upload-time = "2025-08-06T11:11:15.368Z" }, + { url = "https://files.pythonhosted.org/packages/cd/57/74552a627d3a84b2974ab3a6b8f0eb16dca4de7e707e803da500a89c90cb/pykdtree-1.4.3-cp314-cp314-macosx_13_0_x86_64.whl", hash = "sha256:62d1422df5c79d270e15f298eb34b84556dc8142c1cb9f9d90d7cc138eed68df", size = 349950, upload-time = "2025-08-06T11:11:16.122Z" }, + { url = "https://files.pythonhosted.org/packages/5d/e1/33314e89bc9a7ec14607e17dbae463e04cf4eb4ada5f2e4663fb4e6510b5/pykdtree-1.4.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:b53a9d473d0e5ddeb7608b2b364fb40e8312c6eb3cd81acd095989b7bce6880d", size = 314326, upload-time = "2025-08-06T11:11:16.953Z" }, + { url = "https://files.pythonhosted.org/packages/48/43/a7ae1c28cdb2f3ee7b9890cb06b7f8df2a4ece0ce2812a5aefc69863fe95/pykdtree-1.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:089e30a1c249cacb5a36db8ddbe9c450e65df65c9fa7e6294a004ea9acefa59a", size = 448863, upload-time = "2025-08-06T11:11:17.819Z" }, + { url = "https://files.pythonhosted.org/packages/94/d4/48cd5cec4a1c56a7f5dc5eec734a82d07012f2d1d1b01ff8afa52ded3c62/pykdtree-1.4.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7c8b4ecaf2d9737508eaf342ba8baae969bfff8011521e3ac1b656a70a5a5f32", size = 461634, upload-time = "2025-08-06T11:11:18.804Z" }, + { url = "https://files.pythonhosted.org/packages/0b/18/c3ee105e02aeea6ae6535f486f659c21011ac306a3a62a3139ad9558b688/pykdtree-1.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7a582474f5c504a6e3ac1576d876fc7fdc620882e74eaa554bba660f6d927da8", size = 496965, upload-time = "2025-08-06T11:11:19.733Z" }, + { url = "https://files.pythonhosted.org/packages/27/b8/75727565956edd9b458f835b6fee3ceeaafc4d7c78bd7fb1a2d274c54944/pykdtree-1.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:9beb58ff9d77c80a6860d536f0100964fb3b191939d2b68a1165027a5993d413", size = 68062, upload-time = "2025-08-06T11:11:21.423Z" }, + { url = "https://files.pythonhosted.org/packages/f0/33/b6eff9bdc395f5bec8cba7d1a4947e4780ca4f6cca7b5e80ad02152af62b/pykdtree-1.4.3-cp314-cp314-win_arm64.whl", hash = "sha256:658d02283bd53d92653cc033023eb22fad016b294763bbe751fd985bedc595f3", size = 55916, upload-time = "2025-08-06T11:11:22.175Z" }, + { url = "https://files.pythonhosted.org/packages/0a/88/480bdfb3052859de1e9d6a208e0d5d743f5e5f094777afb32d918fa2e0eb/pykdtree-1.4.3-cp314-cp314t-macosx_13_0_x86_64.whl", hash = "sha256:7c843167ea246ad1a5ece27a38a6f6d3f40484a2a21dcbea902d0d550c355f57", size = 353657, upload-time = "2025-08-06T11:11:23.013Z" }, + { url = "https://files.pythonhosted.org/packages/dd/28/dcff6150f951600b9194a648d28c4106aca5738e1765077fda7d913c687c/pykdtree-1.4.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:76cdc90fa164846ac8e3c2b6a3370dfec7161b3357b24aa68bdcd25bbcaf669f", size = 317584, upload-time = "2025-08-06T11:11:24.398Z" }, + { url = "https://files.pythonhosted.org/packages/f8/98/f5ce0042ec442ba57c8b7cad08ac1596c34c21f9b02f9ebca46104a19121/pykdtree-1.4.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:537efd8b17e2b9dd36254d70d425debe9dbb20a29fc2eb83c7005e212505c517", size = 466553, upload-time = "2025-08-06T11:11:26.038Z" }, + { url = "https://files.pythonhosted.org/packages/e2/9f/d7faecdd48f4eccc98180ba74dce08384a12117ca73e556cc4fcff83ffd0/pykdtree-1.4.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00cc35d95b9c822580af01619f11800cae24b1888b881195b7eb546c998ffff2", size = 464043, upload-time = "2025-08-06T11:11:27.486Z" }, + { url = "https://files.pythonhosted.org/packages/0e/5b/a16dcf152140400752c9232edaaac5d3079a58ac3ac1c2672edbfddf0e35/pykdtree-1.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a332bd906347e0769363051ff4f67d9aa985b30a8ad4f25ff9538247cd0dda03", size = 498328, upload-time = "2025-08-06T11:11:28.47Z" }, + { url = "https://files.pythonhosted.org/packages/5d/2a/7729c6cdd3af4fa336b89eb4f4428409be8e8b97b1682dfd68efe674b977/pykdtree-1.4.3-cp314-cp314t-win_amd64.whl", hash = "sha256:bee5fa72ba2b37a731465d6b7e933701af438ce0c72de471bd6a4f9b76c68e33", size = 74061, upload-time = "2025-08-06T11:11:29.371Z" }, + { url = "https://files.pythonhosted.org/packages/a0/50/cfc0d7d0385168ba7888c28696028670e86d4d2346be52c99bf1ea643c61/pykdtree-1.4.3-cp314-cp314t-win_arm64.whl", hash = "sha256:74f042f39ac8ba599d4b767c8e9162e5e34b108f217a68e9f89f059620f62253", size = 58909, upload-time = "2025-08-06T11:11:30.238Z" }, ] [[package]] name = "pyogrio" version = "0.12.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "certifi", marker = "python_full_version >= '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "certifi" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "packaging", marker = "python_full_version >= '3.10'" }, + { name = "packaging" }, ] sdist = { url = "https://files.pythonhosted.org/packages/49/d4/12f86b1ed09721363da4c09622464b604c851a9223fc0c6b393fb2012208/pyogrio-0.12.1.tar.gz", hash = "sha256:e548ab705bb3e5383693717de1e6c76da97f3762ab92522cb310f93128a75ff1", size = 303289, upload-time = "2025-11-28T19:04:53.341Z" } wheels = [ @@ -4689,55 +3380,16 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, ] -[[package]] -name = "pyproj" -version = "3.6.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "certifi", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/7d/84/2b39bbf888c753ea48b40d47511548c77aa03445465c35cc4c4e9649b643/pyproj-3.6.1.tar.gz", hash = "sha256:44aa7c704c2b7d8fb3d483bbf75af6cb2350d30a63b144279a09b75fead501bf", size = 225131, upload-time = "2023-09-21T02:07:51.593Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/32/63cf474f4a8d4804b3bdf7c16b8589f38142e8e2f8319dcea27e0bc21a87/pyproj-3.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab7aa4d9ff3c3acf60d4b285ccec134167a948df02347585fdd934ebad8811b4", size = 6142763, upload-time = "2023-09-21T02:07:12.844Z" }, - { url = "https://files.pythonhosted.org/packages/18/86/2e7cb9de40492f1bafbf11f4c9072edc394509a40b5e4c52f8139546f039/pyproj-3.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4bc0472302919e59114aa140fd7213c2370d848a7249d09704f10f5b062031fe", size = 4877123, upload-time = "2023-09-21T02:10:37.905Z" }, - { url = "https://files.pythonhosted.org/packages/5e/c5/928d5a26995dbefbebd7507d982141cd9153bc7e4392b334fff722c4af12/pyproj-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5279586013b8d6582e22b6f9e30c49796966770389a9d5b85e25a4223286cd3f", size = 6190576, upload-time = "2023-09-21T02:17:08.637Z" }, - { url = "https://files.pythonhosted.org/packages/f6/2b/b60cf73b0720abca313bfffef34e34f7f7dae23852b2853cf0368d49426b/pyproj-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80fafd1f3eb421694857f254a9bdbacd1eb22fc6c24ca74b136679f376f97d35", size = 8328075, upload-time = "2023-09-21T02:07:15.353Z" }, - { url = "https://files.pythonhosted.org/packages/d9/a8/7193f46032636be917bc775506ae987aad72c931b1f691b775ca812a2917/pyproj-3.6.1-cp310-cp310-win32.whl", hash = "sha256:c41e80ddee130450dcb8829af7118f1ab69eaf8169c4bf0ee8d52b72f098dc2f", size = 5635713, upload-time = "2023-09-21T02:07:17.548Z" }, - { url = "https://files.pythonhosted.org/packages/89/8f/27350c8fba71a37cd0d316f100fbd96bf139cc2b5ff1ab0dcbc7ac64010a/pyproj-3.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:db3aedd458e7f7f21d8176f0a1d924f1ae06d725228302b872885a1c34f3119e", size = 6087932, upload-time = "2023-09-21T02:07:19.793Z" }, - { url = "https://files.pythonhosted.org/packages/84/a6/a300c1b14b2112e966e9f90b18f9c13b586bdcf417207cee913ae9005da3/pyproj-3.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ebfbdbd0936e178091309f6cd4fcb4decd9eab12aa513cdd9add89efa3ec2882", size = 6147442, upload-time = "2023-09-21T02:07:21.879Z" }, - { url = "https://files.pythonhosted.org/packages/30/bd/b9bd3761f08754e8dbb34c5a647db2099b348ab5da338e90980caf280e37/pyproj-3.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:447db19c7efad70ff161e5e46a54ab9cc2399acebb656b6ccf63e4bc4a04b97a", size = 4880331, upload-time = "2023-09-21T02:10:40.828Z" }, - { url = "https://files.pythonhosted.org/packages/f4/0a/d82aeeb605b5d6870bc72307c3b5e044e632eb7720df8885e144f51a8eac/pyproj-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7e13c40183884ec7f94eb8e0f622f08f1d5716150b8d7a134de48c6110fee85", size = 6192425, upload-time = "2023-09-21T02:17:09.049Z" }, - { url = "https://files.pythonhosted.org/packages/64/90/dfe5c00de1ca4dbb82606e79790659d4ed7f0ed8d372bccb3baca2a5abe0/pyproj-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65ad699e0c830e2b8565afe42bd58cc972b47d829b2e0e48ad9638386d994915", size = 8571478, upload-time = "2023-09-21T02:07:23.771Z" }, - { url = "https://files.pythonhosted.org/packages/14/6d/ae373629a1723f0db80d7b8c93598b00d9ecb930ed9ebf4f35826a33e97c/pyproj-3.6.1-cp311-cp311-win32.whl", hash = "sha256:8b8acc31fb8702c54625f4d5a2a6543557bec3c28a0ef638778b7ab1d1772132", size = 5634575, upload-time = "2023-09-21T02:07:26.535Z" }, - { url = "https://files.pythonhosted.org/packages/79/95/eb68113c5b5737c342bde1bab92705dabe69c16299c5a122616e50f1fbd6/pyproj-3.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:38a3361941eb72b82bd9a18f60c78b0df8408416f9340521df442cebfc4306e2", size = 6088494, upload-time = "2023-09-21T02:07:28.75Z" }, - { url = "https://files.pythonhosted.org/packages/0b/64/93232511a7906a492b1b7dfdfc17f4e95982d76a24ef4f86d18cfe7ae2c9/pyproj-3.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1e9fbaf920f0f9b4ee62aab832be3ae3968f33f24e2e3f7fbb8c6728ef1d9746", size = 6135280, upload-time = "2023-09-21T02:07:30.911Z" }, - { url = "https://files.pythonhosted.org/packages/10/f2/b550b1f65cc7e51c9116b220b50aade60c439103432a3fd5b12efbc77e15/pyproj-3.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d227a865356f225591b6732430b1d1781e946893789a609bb34f59d09b8b0f8", size = 4880030, upload-time = "2023-09-21T02:10:43.067Z" }, - { url = "https://files.pythonhosted.org/packages/fe/4b/2f8f6f94643b9fe2083338eff294feda84d916409b5840b7a402d2be93f8/pyproj-3.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83039e5ae04e5afc974f7d25ee0870a80a6bd6b7957c3aca5613ccbe0d3e72bf", size = 6184439, upload-time = "2023-09-21T02:17:43.499Z" }, - { url = "https://files.pythonhosted.org/packages/19/9b/c57569132174786aa3f72275ac306956859a639dad0ce8d95c8411ce8209/pyproj-3.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb059ba3bced6f6725961ba758649261d85ed6ce670d3e3b0a26e81cf1aa8d", size = 8660747, upload-time = "2023-09-21T02:07:32.586Z" }, - { url = "https://files.pythonhosted.org/packages/0e/ab/1c2159ec757677c5a6b8803f6be45c2b550dc42c84ec4a228dc219849bbb/pyproj-3.6.1-cp312-cp312-win32.whl", hash = "sha256:2d6ff73cc6dbbce3766b6c0bce70ce070193105d8de17aa2470009463682a8eb", size = 5626805, upload-time = "2023-09-21T02:07:35.28Z" }, - { url = "https://files.pythonhosted.org/packages/c7/f3/2f32fe143cd7ba1d4d68f1b6dce9ca402d909cbd5a5830e3a8fa3d1acbbf/pyproj-3.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:7a27151ddad8e1439ba70c9b4b2b617b290c39395fa9ddb7411ebb0eb86d6fb0", size = 6079779, upload-time = "2023-09-21T02:07:37.486Z" }, - { url = "https://files.pythonhosted.org/packages/d7/50/d369bbe62d7a0d1e2cb40bc211da86a3f6e0f3c99f872957a72c3d5492d6/pyproj-3.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4ba1f9b03d04d8cab24d6375609070580a26ce76eaed54631f03bab00a9c737b", size = 6144755, upload-time = "2023-09-21T02:07:39.611Z" }, - { url = "https://files.pythonhosted.org/packages/2c/c2/8d4f61065dfed965e53badd41201ad86a05af0c1bbc75dffb12ef0f5a7dd/pyproj-3.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18faa54a3ca475bfe6255156f2f2874e9a1c8917b0004eee9f664b86ccc513d3", size = 4879187, upload-time = "2023-09-21T02:10:45.519Z" }, - { url = "https://files.pythonhosted.org/packages/31/38/2cf8777cb2d5622a78195e690281b7029098795fde4751aec8128238b8bb/pyproj-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd43bd9a9b9239805f406fd82ba6b106bf4838d9ef37c167d3ed70383943ade1", size = 6192339, upload-time = "2023-09-21T02:17:09.942Z" }, - { url = "https://files.pythonhosted.org/packages/97/0a/b1525be9680369cc06dd288e12c59d24d5798b4afcdcf1b0915836e1caa6/pyproj-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50100b2726a3ca946906cbaa789dd0749f213abf0cbb877e6de72ca7aa50e1ae", size = 8332638, upload-time = "2023-09-21T02:07:41.777Z" }, - { url = "https://files.pythonhosted.org/packages/8d/e8/e826e0a962f36bd925a933829cf6ef218efe2055db5ea292be40974a929d/pyproj-3.6.1-cp39-cp39-win32.whl", hash = "sha256:9274880263256f6292ff644ca92c46d96aa7e57a75c6df3f11d636ce845a1877", size = 5638159, upload-time = "2023-09-21T02:07:43.49Z" }, - { url = "https://files.pythonhosted.org/packages/43/d0/cbe29a4dcf38ee7e72bf695d0d3f2bee21b4f22ee6cf579ad974de9edfc8/pyproj-3.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:36b64c2cb6ea1cc091f329c5bd34f9c01bb5da8c8e4492c709bda6a09f96808f", size = 6090565, upload-time = "2023-09-21T02:07:45.735Z" }, - { url = "https://files.pythonhosted.org/packages/43/28/e8d2ca71dd56c27cbe668e4226963d61956cded222a2e839e6fec1ab6d82/pyproj-3.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd93c1a0c6c4aedc77c0fe275a9f2aba4d59b8acf88cebfc19fe3c430cfabf4f", size = 6034252, upload-time = "2023-09-21T02:07:47.906Z" }, - { url = "https://files.pythonhosted.org/packages/cb/39/1ce27cb86f51a1f5aed3a1617802a6131b59ea78492141d1fbe36722595e/pyproj-3.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6420ea8e7d2a88cb148b124429fba8cd2e0fae700a2d96eab7083c0928a85110", size = 6386263, upload-time = "2023-09-21T02:07:49.586Z" }, -] - [[package]] name = "pyproj" version = "3.7.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "certifi", marker = "python_full_version == '3.10.*'" }, + { name = "certifi", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/67/10/a8480ea27ea4bbe896c168808854d00f2a9b49f95c0319ddcbba693c8a90/pyproj-3.7.1.tar.gz", hash = "sha256:60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47", size = 226339, upload-time = "2025-02-16T04:28:46.621Z" } wheels = [ @@ -4780,15 +3432,10 @@ name = "pyproj" version = "3.7.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "certifi", marker = "python_full_version >= '3.11'" }, @@ -4852,52 +3499,120 @@ wheels = [ ] [[package]] -name = "pysocks" -version = "1.7.1" +name = "pyresample" +version = "1.31.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bd/11/293dd436aea955d45fc4e8a35b6ae7270f5b8e00b53cf6c024c83b657a11/PySocks-1.7.1.tar.gz", hash = "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0", size = 284429, upload-time = "2019-09-20T02:07:35.714Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5", size = 16725, upload-time = "2019-09-20T02:06:22.938Z" }, -] - -[[package]] -name = "pystac" -version = "1.10.1" +resolution-markers = [ + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", +] +dependencies = [ + { name = "configobj", marker = "python_full_version < '3.11'" }, + { name = "donfig", marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "platformdirs", marker = "python_full_version < '3.11'" }, + { name = "pykdtree", marker = "python_full_version < '3.11'" }, + { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "pyyaml", marker = "python_full_version < '3.11'" }, + { name = "shapely", marker = "python_full_version < '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/76/f1/9642e7d91b89cf37465fe393ccb12060bffe328db3dfdd809feabc379c7d/pyresample-1.31.0.tar.gz", hash = "sha256:b9cd365a3d5138c4b515b33ff37e7a851160d465e26468f2ba2b6342efef6a41", size = 5918697, upload-time = "2024-10-25T09:26:22.885Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/fd/0ad11e94cc412d1b6fbc42d5575548e808969bc4627a8a9437c6696882f2/pyresample-1.31.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:59c973d75405f4485ff51305c0865e2f4da822080d23ef091c544ee1d330d4ff", size = 2392795, upload-time = "2024-10-25T09:25:44.285Z" }, + { url = "https://files.pythonhosted.org/packages/95/01/ac994478812f7b5cafc09d15c5f4d05697dd97ba7589afb09db76a8b0f89/pyresample-1.31.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c27fab6a88f5dfcb5c89ada1193057582dab05a4a4e7ea2d412b390bd03cbb4a", size = 2357981, upload-time = "2024-10-25T09:25:46.689Z" }, + { url = "https://files.pythonhosted.org/packages/57/45/de48997216e1a7960a82edd37968714b70e38df4bdabd3c4d66f3b8c7e99/pyresample-1.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7652b0208ef8be3763d1e32ad4eb2590ecdd36b41397dc68237fa5c3a8ee13d5", size = 4390679, upload-time = "2024-10-25T09:25:48.067Z" }, + { url = "https://files.pythonhosted.org/packages/38/a5/51fa092e24a70e0d3335f8c6bbb9c2331043abf4b9874929f8c6b9b9ff92/pyresample-1.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b31d5df3167b2e3e6abe50b518e6df6ffb0ba08ff0ba62a2606515131ae8190", size = 4411290, upload-time = "2024-10-25T09:25:49.535Z" }, + { url = "https://files.pythonhosted.org/packages/50/7b/55d4d03ae9d945ac03ab425cfd9e9a8f38cc06381e5cf39bc7d719e1d24c/pyresample-1.31.0-cp310-cp310-win_amd64.whl", hash = "sha256:3b06aadc72fbcaac13f163f848559ab5aa3a16b9aa2ef301f41abb730cba876b", size = 2332884, upload-time = "2024-10-25T09:25:50.92Z" }, + { url = "https://files.pythonhosted.org/packages/4b/ec/1000eb453ff16e44ddb9a607eab2cf92956f837953280bbc885366a43f14/pyresample-1.31.0-cp310-cp310-win_arm64.whl", hash = "sha256:23a4ea5fbbfe3a080554ce659c5fec0198d20f1f47aa07c9d727423356c5b0f8", size = 2269808, upload-time = "2024-10-25T09:25:52.209Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ec/47247009f20b5a523d313ea3b1f06b302dd2e674e3a40251892533811cdf/pyresample-1.31.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ac16e690c4d449205db1d027dc52ced0708768a011ed7ca23447243507027df4", size = 2394211, upload-time = "2024-10-25T09:25:53.445Z" }, + { url = "https://files.pythonhosted.org/packages/0c/1c/5bb9f30fb69456acbd6a3e208dc4f560ba136fd6b0ffee9e5e34d74240c5/pyresample-1.31.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8077f150baa9d8ea190f5a5254e0a11e91bca1685a206a39988a1bd3ecae629f", size = 2356868, upload-time = "2024-10-25T09:25:54.755Z" }, + { url = "https://files.pythonhosted.org/packages/eb/50/cd344382d5b54ac3af443c12b4e8d67a07d7971a69b13806851e24ece8f1/pyresample-1.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7ae28b9e2ec42003fe3a433eb40c6358d739b2db0c073bb664ebb60e250c12c", size = 4545119, upload-time = "2024-10-25T09:25:56.023Z" }, + { url = "https://files.pythonhosted.org/packages/cf/c2/8c64c4c678465703cc45b2b6bf0e88297f7b484e77b5126ffc568c53a3ec/pyresample-1.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16f1b4f9b691befa5145db43140dd600829a16c21ecb310f00b161f13b8f6e03", size = 4578483, upload-time = "2024-10-25T09:25:57.785Z" }, + { url = "https://files.pythonhosted.org/packages/85/84/43033f94d44b92062220d93a1c786bfaef6cbbd126ab6c5bc67cfec88b90/pyresample-1.31.0-cp311-cp311-win_amd64.whl", hash = "sha256:255c8bbf667e47fc6c50d51db24fba230713b2b54e71a156ee5d58620059eaa8", size = 2333482, upload-time = "2024-10-25T09:25:59.432Z" }, + { url = "https://files.pythonhosted.org/packages/16/73/f11eac9d450db07fcafa7c31c1eaf9425d578da778f2d7c47451cce11f51/pyresample-1.31.0-cp311-cp311-win_arm64.whl", hash = "sha256:007927e58fffb4a3d8eb42b3ed2bd73ccb5f02e9fd0afb9d92d216a7e41a2aca", size = 2270462, upload-time = "2024-10-25T09:26:00.774Z" }, + { url = "https://files.pythonhosted.org/packages/40/2e/251efe0d52415a9151683e14ec503050c400b301ae88652c6c36713e7ea5/pyresample-1.31.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:713ba70d9cf2326945235abe21a1afec3eddfaced38b7a94acabc24c489ed5c6", size = 2395858, upload-time = "2024-10-25T09:26:02.067Z" }, + { url = "https://files.pythonhosted.org/packages/56/10/3e0100cee8c0a02b4881147ce6d0f0bd2095660ec98c84e895c0fd1cc884/pyresample-1.31.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:626688bba921a4164c2a481a5ace4b664ce75be3de90044639a1e6a325e9f967", size = 2362970, upload-time = "2024-10-25T09:26:03.416Z" }, + { url = "https://files.pythonhosted.org/packages/45/65/594d41391cbba7297deb675476ccda28b8c0560af7e155e6c77459e7edfb/pyresample-1.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b488e5d48b180d603bff339a4206ac4b85bbd77ffb0d3b83efa325bafc3f32c2", size = 4471917, upload-time = "2024-10-25T09:26:05.583Z" }, + { url = "https://files.pythonhosted.org/packages/81/6c/d3fbe5a5e40bc012a8f777e9745f6f08134eb7d2446ff83a9e753ad7a8be/pyresample-1.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6b6152d24b77e48b60d7f61ee7fc310b1c68648036202a84182f37e1f3018e0", size = 4519611, upload-time = "2024-10-25T09:26:07.183Z" }, + { url = "https://files.pythonhosted.org/packages/8b/86/494826e6f3ce5e205f2424ecac84cf23a3fcadc71203e7cab6717293ff7e/pyresample-1.31.0-cp312-cp312-win_amd64.whl", hash = "sha256:781aedc03578ff445682cb0f56842bfdbd29b290b83a983e5f851d64cd81cac8", size = 2337670, upload-time = "2024-10-25T09:26:08.573Z" }, + { url = "https://files.pythonhosted.org/packages/15/05/a3e164da624bcc32e37e1a3cbed25df5ee57f89393e4ff7f379adbba2196/pyresample-1.31.0-cp312-cp312-win_arm64.whl", hash = "sha256:fadddb361f488a7a338bf206ed0d1bfa083856f6c47c80777f9533d71e6b9729", size = 2270142, upload-time = "2024-10-25T09:26:09.86Z" }, +] + +[[package]] +name = "pyresample" +version = "1.35.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.10'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ - { name = "python-dateutil", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/06/92/c3e318971090e314ee889ae794e71d880ed446d4f16d422850350e24415c/pystac-1.10.1.tar.gz", hash = "sha256:4617fe5315a79785f79b616b8ac248ba3d4d561457c8300b34573309715808cd", size = 141507, upload-time = "2024-05-03T13:39:06.28Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ee/19/f8df3ac83ae5a977b108d86c8a0d7e4ef98c91dceca136017bc183ef942e/pystac-1.10.1-py3-none-any.whl", hash = "sha256:a7c31b3dacc44dfc955d9da8c7351c7b5b99100254b36301a1e312709b51bf2f", size = 182890, upload-time = "2024-05-03T13:39:04.201Z" }, + { name = "configobj", marker = "python_full_version >= '3.11'" }, + { name = "donfig", marker = "python_full_version >= '3.11'" }, + { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "platformdirs", marker = "python_full_version >= '3.11'" }, + { name = "pykdtree", marker = "python_full_version >= '3.11'" }, + { name = "pyproj", version = "3.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "pyyaml", marker = "python_full_version >= '3.11'" }, + { name = "shapely", marker = "python_full_version >= '3.11'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dc/5e/8d67b78533a1afb0915e7ad55fabf9a341ebad7b22660ab75bc42c22a138/pyresample-1.35.0.tar.gz", hash = "sha256:95f64734d63632ca642bc7bf4bce057c2ecac60f05fafd73c881bf68403ab5bb", size = 5919425, upload-time = "2025-12-02T03:18:19.079Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/9e/1f929b214241f6f016cac6c3c730cc34f64c3e79de0e4f18979a6909342c/pyresample-1.35.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:11218a23a03cbafb5d336931b266a7737f55e19d53fdc36cee80308326742ad9", size = 2340846, upload-time = "2025-12-02T03:17:27.063Z" }, + { url = "https://files.pythonhosted.org/packages/a3/2c/e691e021b0af03b355979fd8bc8e5352bbfb5443a840be63c7ed4e31e83c/pyresample-1.35.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1d7b24f5113917aaaf9c60fce498bf59293436c442f903b5225750a88f27eb4c", size = 2312045, upload-time = "2025-12-02T03:17:28.734Z" }, + { url = "https://files.pythonhosted.org/packages/a8/04/72302acc6b8cb078436a58c9a47a4a17ea08f4392d89aec56a926eab4022/pyresample-1.35.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51764eb0f121a4bf184abeae691c43d280381f3cf091a7930c4693d516843224", size = 4465775, upload-time = "2025-12-02T03:17:30.414Z" }, + { url = "https://files.pythonhosted.org/packages/d6/49/86b86c7f690ecab45c4f01a3a7d85a290485f1e2890a56ebc566e07ceace/pyresample-1.35.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5057067389d918dd92c7468fe2bff569f8e889c0c054940e12930c1d5e193991", size = 4511495, upload-time = "2025-12-02T03:17:32.194Z" }, + { url = "https://files.pythonhosted.org/packages/ac/05/0d042e74181be52fdf5678a7054285f588981212befd9c4102a7b68e5e4e/pyresample-1.35.0-cp311-cp311-win_amd64.whl", hash = "sha256:ec74017e58a5d6b6a31baa79f5f4acce51ddbfb3f90b69cdb078f86ad23f88bf", size = 2302659, upload-time = "2025-12-02T03:17:33.436Z" }, + { url = "https://files.pythonhosted.org/packages/11/8c/2e93bb327d04d59ba810b897f1d98790fc241c3ced77658470923ac1e3b9/pyresample-1.35.0-cp311-cp311-win_arm64.whl", hash = "sha256:4aa9ffba326d30b9d288b57df7c3a2f812065904aa85d106d1bf38fd9a43b2c0", size = 2244331, upload-time = "2025-12-02T03:17:35.16Z" }, + { url = "https://files.pythonhosted.org/packages/b6/f4/22e2c4e40ec455d59d704f533a43158bdebf7dae48ee3f8dfb27a2b4bb0b/pyresample-1.35.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:166fe1c5799df8d65d9d40cd27698a2faab61d763448eff3d40a536535a4b146", size = 2343947, upload-time = "2025-12-02T03:17:36.644Z" }, + { url = "https://files.pythonhosted.org/packages/05/0c/aa003fdf5209664773b89416732ae1dbe0a4d1e8946e5fc6fb9f50b58b79/pyresample-1.35.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68612cc4114cdc8a465604cfc48914fc75d98260b742fc32e9c8bc9e63b0f8cd", size = 2312297, upload-time = "2025-12-02T03:17:37.926Z" }, + { url = "https://files.pythonhosted.org/packages/4b/36/6218602ef9c68d5cc3951fcc4317bf21014927c7e6e733ded1d4368edd95/pyresample-1.35.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ebc87f3824c914c9a929fdcfc13437ee669772b913ee552c681af28e9651872f", size = 4415739, upload-time = "2025-12-02T03:17:39.465Z" }, + { url = "https://files.pythonhosted.org/packages/3b/6f/63d7d386bc29d9a05b00c8f7068e6c4ac3747148c7b99ca84aa8a79fe7e0/pyresample-1.35.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c34a3e2e5650e51da5339b79a72dc6c3b8eb9554b72c45ac2e81469d65078f71", size = 4492179, upload-time = "2025-12-02T03:17:41.249Z" }, + { url = "https://files.pythonhosted.org/packages/a9/9a/d9db1ed3d69440bb24ec5c56e283fe4068aef61e88dd707a022b1e2696bb/pyresample-1.35.0-cp312-cp312-win_amd64.whl", hash = "sha256:eb5a3a52bb314acaa642b61110153dc0f95163a66a6a1e9718390bb468b567c1", size = 2305308, upload-time = "2025-12-02T03:17:42.565Z" }, + { url = "https://files.pythonhosted.org/packages/8d/7a/f320aa2b8f575a94e620c2216799a4b1f3488c0ef602ab87103a0a5ac86e/pyresample-1.35.0-cp312-cp312-win_arm64.whl", hash = "sha256:eda8bf48acfaeab282ac85495fc210b2f2081dd27738d0aadac0a4b99ffa275c", size = 2242846, upload-time = "2025-12-02T03:17:43.696Z" }, + { url = "https://files.pythonhosted.org/packages/ba/5e/3ea35ab39ecd27e2ca2078515b0dd58fd77414649a4465255841bc5060d4/pyresample-1.35.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9f14a75278d468a08a467681c30bd884d4d404193a9694d21d4154b6a6380cde", size = 2341879, upload-time = "2025-12-02T03:17:44.888Z" }, + { url = "https://files.pythonhosted.org/packages/3d/79/15e59dcfb3d16f72ce05d6afe272ac56af81e2aad0ae2ed02a5fae39094b/pyresample-1.35.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:06af1ac189869f9576bdbace29a4ffe1cb45206b4be36fe20dee93a03da681f4", size = 2310281, upload-time = "2025-12-02T03:17:46.26Z" }, + { url = "https://files.pythonhosted.org/packages/44/e5/b7f1d68ae26acd23f84fefe79da4b2675ee4a5de75c25e6ba4bfa87dbe10/pyresample-1.35.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4f122de16c1d027385c8afc5be99d2feebabe3cfc6df3bb2188b707d6739b59f", size = 4402641, upload-time = "2025-12-02T03:17:47.627Z" }, + { url = "https://files.pythonhosted.org/packages/15/e5/fe2c45d4544357dd81d7220dfc417f47ce581d3b843da10a384b08e98fe8/pyresample-1.35.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:82348ab20e80cc1fc798c396e1a13c37715ae24dd296e67c5485284afdda7ffd", size = 4479531, upload-time = "2025-12-02T03:17:49.472Z" }, + { url = "https://files.pythonhosted.org/packages/77/bc/41fa9b18e0ffabe392651a204136dbf5a9be464f40bddbc70ad344ed6678/pyresample-1.35.0-cp313-cp313-win_amd64.whl", hash = "sha256:2b509754eb2623a7ab059c97fdb6eb505283eb8d90987e457ddaaf6938954b88", size = 2305191, upload-time = "2025-12-02T03:17:50.945Z" }, + { url = "https://files.pythonhosted.org/packages/1c/c6/57aca11d6f606b891cf03e9ef8868ee166504687983c4675439a423722d2/pyresample-1.35.0-cp313-cp313-win_arm64.whl", hash = "sha256:70b1a75427cce931be066e1240c5ac700d3f52363f6497e7ef766d7a10b8cd00", size = 2242456, upload-time = "2025-12-02T03:17:52.276Z" }, + { url = "https://files.pythonhosted.org/packages/06/71/35941ddc5727ed67826447855962cffd8075661f978b979a53955c143357/pyresample-1.35.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d5f5fced12256d18877f896d108fe298043084696d1760675258a9b8a65e1ab0", size = 2365986, upload-time = "2025-12-02T03:17:53.674Z" }, + { url = "https://files.pythonhosted.org/packages/77/f0/e9ab8c6b66794acf0202de20ea1e58ff17dedd9a2d765fe31fecdfcfafb6/pyresample-1.35.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:c1747b51a5830829fac93c383dc427146cf1463323e203660df666ec1fe8d84a", size = 2342433, upload-time = "2025-12-02T03:17:55.018Z" }, + { url = "https://files.pythonhosted.org/packages/9d/2f/fcfd51f45eda401ac5c6301c2d3cf419fda7f25f7f2173bc8810b243be0d/pyresample-1.35.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:84c562d8eb2e7baf1083aac8d28cdcc90b43ba919efef2d69d2bd385fc840ac2", size = 4457171, upload-time = "2025-12-02T03:17:56.33Z" }, + { url = "https://files.pythonhosted.org/packages/ea/07/7a352efbbf13f25f983dabaed07d40a877384ad6e7b8862379f8ce749a10/pyresample-1.35.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:736c41c49fa5040a9794896eca63ec7131c509f42cafc03c84554fd8c9470f95", size = 4448140, upload-time = "2025-12-02T03:17:57.719Z" }, + { url = "https://files.pythonhosted.org/packages/3d/f7/b68fcef31cf3865cd0a869a76a4c33f7c4041ab8e265b16d4c367678d605/pyresample-1.35.0-cp313-cp313t-win_amd64.whl", hash = "sha256:6bc42f1c9ea2a9504636f515a448f303a79d5a40a22877f2196e1734ecd0ac5e", size = 2350864, upload-time = "2025-12-02T03:17:58.968Z" }, + { url = "https://files.pythonhosted.org/packages/4f/2c/7631ccb4b2b4730abb98e153c7bc02d34db3bab9bb05197edb067ef44bc2/pyresample-1.35.0-cp313-cp313t-win_arm64.whl", hash = "sha256:0510b730a4c67e427356f70f45f4503b978be98496517f3d24b76ad0593d5ac3", size = 2262359, upload-time = "2025-12-02T03:18:00.209Z" }, + { url = "https://files.pythonhosted.org/packages/89/69/a55c48ab5dedfffb7b8eb6457f660ea69119b70ec20bc973880109358ecb/pyresample-1.35.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:7a16a8678b9838ddb847a8687134063ff12027b6136cb3642ebb1f61af0dd98f", size = 2342568, upload-time = "2025-12-02T03:18:01.852Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c6/fbc26e54e7c9c108e2e5fb979400d2bdd00e20a69e7a89ddc2ae5e419a7d/pyresample-1.35.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:043838745220f05d22836262b005f9b0bba40e0b13676df6c40d245fd31b9d1a", size = 2312972, upload-time = "2025-12-02T03:18:03.195Z" }, + { url = "https://files.pythonhosted.org/packages/e6/d5/4d3b4b5f8226f068d9c8a5b4ddbf4c1f16b095afc12b9cff30730e88cbe4/pyresample-1.35.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8f795cc22feb2ac48eada86d4897b1d00d69a6775e3bd9a7f4da38b448b14b67", size = 4385253, upload-time = "2025-12-02T03:18:04.605Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/c6fab2c4289d0fe1fdef25b7f55e03b21d40abcdac5a83da07895dbdfe56/pyresample-1.35.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03abd880aa153e15bfb37c9f5bce824a159f70c0adcbda538e0e4b0b48458504", size = 4451887, upload-time = "2025-12-02T03:18:06.907Z" }, + { url = "https://files.pythonhosted.org/packages/70/e3/8fe4f0259cdcc8935a17e655ccf248c20dc97122f1f34820cf633618bc17/pyresample-1.35.0-cp314-cp314-win_amd64.whl", hash = "sha256:3ff1a8853b7586aeefe4e85215d684fad4dba2a08613766a9ec87ddf8dcbb659", size = 2351002, upload-time = "2025-12-02T03:18:08.242Z" }, + { url = "https://files.pythonhosted.org/packages/2a/02/492454dc5f80c7bcc5d5b1966ae2aa33a0d53fac8ff1015890ef815b6e38/pyresample-1.35.0-cp314-cp314-win_arm64.whl", hash = "sha256:737e608bc7cb022637a5cb523c82453172d01ebcb06cdcc175cf15f8cb899078", size = 2289479, upload-time = "2025-12-02T03:18:09.852Z" }, + { url = "https://files.pythonhosted.org/packages/4d/80/f733fff04df18a369fbe9a3855061558e6f496273fae1e56b62d7589afb3/pyresample-1.35.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:191223b65b0571ed8b77399a425a9c0897942a4d89504a6ed5615e8e410b612b", size = 2367374, upload-time = "2025-12-02T03:18:11.088Z" }, + { url = "https://files.pythonhosted.org/packages/ac/47/75a1a8f49a3ad9680a8a32f3c18d2d0a2549f6c3ab50f0ec0a99547d62b6/pyresample-1.35.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1b85983ddba36a5e6cffe5b488f1ab33946c2ae02765a78611c96323cb2e760", size = 2343494, upload-time = "2025-12-02T03:18:12.337Z" }, + { url = "https://files.pythonhosted.org/packages/a9/a5/5dd558ec75af695e63369958aa4514958631d00f08a6404841a5bcc012d1/pyresample-1.35.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ccbc02083eac02b02d3d371a8a1fc89c37b19e118bc4da79405cd62b6b72ab9", size = 4457217, upload-time = "2025-12-02T03:18:13.718Z" }, + { url = "https://files.pythonhosted.org/packages/4b/61/4e42400bee5d7f0aa801a89d0503ed8c962b43a53dd12c4c5b549829b044/pyresample-1.35.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:be1675638ff4cb8273b4005f3b5c75a027905f0b1e48144a1d970acc0f57b513", size = 4451113, upload-time = "2025-12-02T03:18:15.068Z" }, + { url = "https://files.pythonhosted.org/packages/2a/0f/b578026b5191134790f23fbcee0658b359332f4ca91f6e005c1dc6d2b2f2/pyresample-1.35.0-cp314-cp314t-win_amd64.whl", hash = "sha256:a0daa9f97ce933458d6f905ee74c4e1930c779066a99186470065f6296b9228a", size = 2409259, upload-time = "2025-12-02T03:18:16.332Z" }, + { url = "https://files.pythonhosted.org/packages/c2/f6/bd8af62acc436f5648c8a1bb1b04b45f78b68c3c9b919a4b033d4968303a/pyresample-1.35.0-cp314-cp314t-win_arm64.whl", hash = "sha256:209f09f9ef03a2bb5736374c5fc1eebdfd6e7751ca2d80e74052f94c1823d47d", size = 2308160, upload-time = "2025-12-02T03:18:17.673Z" }, ] -[package.optional-dependencies] -validation = [ - { name = "jsonschema", version = "4.25.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, +[[package]] +name = "pysocks" +version = "1.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bd/11/293dd436aea955d45fc4e8a35b6ae7270f5b8e00b53cf6c024c83b657a11/PySocks-1.7.1.tar.gz", hash = "sha256:3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0", size = 284429, upload-time = "2019-09-20T02:07:35.714Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl", hash = "sha256:2725bd0a9925919b9b51739eea5f9e2bae91e83288108a9ad338b2e3a4435ee5", size = 16725, upload-time = "2019-09-20T02:06:22.938Z" }, ] [[package]] name = "pystac" version = "1.14.3" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, + { name = "python-dateutil" }, ] sdist = { url = "https://files.pythonhosted.org/packages/31/e6/efbc20dbc94ad7ed18fe11a4208103a509384ffcccd9bdc27953b725e686/pystac-1.14.3.tar.gz", hash = "sha256:24f92d6f301371859aa0abc1bbe7b1523a603e1184a6d139ecb323967c2c9bb3", size = 164205, upload-time = "2026-01-09T12:38:42.456Z" } wheels = [ @@ -4906,46 +3621,17 @@ wheels = [ [package.optional-dependencies] validation = [ - { name = "jsonschema", version = "4.26.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, -] - -[[package]] -name = "pystac-client" -version = "0.8.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "pystac", version = "1.10.1", source = { registry = "https://pypi.org/simple" }, extra = ["validation"], marker = "python_full_version < '3.10'" }, - { name = "python-dateutil", marker = "python_full_version < '3.10'" }, - { name = "requests", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f8/99/ba7145ecf6a6b4ee28a053b47d7019617755b0201ae068e236dbba7c589a/pystac_client-0.8.3.tar.gz", hash = "sha256:0c47c1a1795f3c931a256fa1a512aa1a1eefa242fdf826dd456c78c8e97f4c5e", size = 42255, upload-time = "2024-07-22T14:11:27.873Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fe/98/699965afb145d76a494a441cfb8f18ccd473ebf6d4f2df67fde0bc2a31b1/pystac_client-0.8.3-py3-none-any.whl", hash = "sha256:4b151f3ad993bd68d067b3fe525e4f49b05da3290f86fbc9b185e3f65ae1ebe5", size = 33760, upload-time = "2024-07-22T14:11:26.32Z" }, + { name = "jsonschema" }, ] [[package]] name = "pystac-client" version = "0.9.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "pystac", version = "1.14.3", source = { registry = "https://pypi.org/simple" }, extra = ["validation"], marker = "python_full_version >= '3.10'" }, - { name = "python-dateutil", marker = "python_full_version >= '3.10'" }, - { name = "requests", marker = "python_full_version >= '3.10'" }, + { name = "pystac", extra = ["validation"] }, + { name = "python-dateutil" }, + { name = "requests" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c5/8d/b98aeffd325fc208e1624cf586d0c4dfb927bc7a2bce20d3b58ee80d2483/pystac_client-0.9.0.tar.gz", hash = "sha256:3908951583bcc6a3aaaf2828024a8e03764e6ca9d9f9f1d8149df587e14dd744", size = 52339, upload-time = "2025-07-18T15:44:41.1Z" } wheels = [ @@ -4959,8 +3645,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, - { name = "iniconfig", version = "2.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "iniconfig", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, { name = "pygments" }, @@ -5041,31 +3726,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/10/99/781fe0c827be2742bcc775efefccb3b048a3a9c6ce9aec0cbf4a101677e5/pytz-2026.1.post1-py2.py3-none-any.whl", hash = "sha256:f2fd16142fda348286a75e1a524be810bb05d444e5a081f37f7affc635035f7a", size = 510489, upload-time = "2026-03-03T07:47:49.167Z" }, ] -[[package]] -name = "pywin32" -version = "311" -source = { registry = "https://pypi.org/simple" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7b/40/44efbb0dfbd33aca6a6483191dae0716070ed99e2ecb0c53683f400a0b4f/pywin32-311-cp310-cp310-win32.whl", hash = "sha256:d03ff496d2a0cd4a5893504789d4a15399133fe82517455e78bad62efbb7f0a3", size = 8760432, upload-time = "2025-07-14T20:13:05.9Z" }, - { url = "https://files.pythonhosted.org/packages/5e/bf/360243b1e953bd254a82f12653974be395ba880e7ec23e3731d9f73921cc/pywin32-311-cp310-cp310-win_amd64.whl", hash = "sha256:797c2772017851984b97180b0bebe4b620bb86328e8a884bb626156295a63b3b", size = 9590103, upload-time = "2025-07-14T20:13:07.698Z" }, - { url = "https://files.pythonhosted.org/packages/57/38/d290720e6f138086fb3d5ffe0b6caa019a791dd57866940c82e4eeaf2012/pywin32-311-cp310-cp310-win_arm64.whl", hash = "sha256:0502d1facf1fed4839a9a51ccbcc63d952cf318f78ffc00a7e78528ac27d7a2b", size = 8778557, upload-time = "2025-07-14T20:13:11.11Z" }, - { url = "https://files.pythonhosted.org/packages/7c/af/449a6a91e5d6db51420875c54f6aff7c97a86a3b13a0b4f1a5c13b988de3/pywin32-311-cp311-cp311-win32.whl", hash = "sha256:184eb5e436dea364dcd3d2316d577d625c0351bf237c4e9a5fabbcfa5a58b151", size = 8697031, upload-time = "2025-07-14T20:13:13.266Z" }, - { url = "https://files.pythonhosted.org/packages/51/8f/9bb81dd5bb77d22243d33c8397f09377056d5c687aa6d4042bea7fbf8364/pywin32-311-cp311-cp311-win_amd64.whl", hash = "sha256:3ce80b34b22b17ccbd937a6e78e7225d80c52f5ab9940fe0506a1a16f3dab503", size = 9508308, upload-time = "2025-07-14T20:13:15.147Z" }, - { url = "https://files.pythonhosted.org/packages/44/7b/9c2ab54f74a138c491aba1b1cd0795ba61f144c711daea84a88b63dc0f6c/pywin32-311-cp311-cp311-win_arm64.whl", hash = "sha256:a733f1388e1a842abb67ffa8e7aad0e70ac519e09b0f6a784e65a136ec7cefd2", size = 8703930, upload-time = "2025-07-14T20:13:16.945Z" }, - { url = "https://files.pythonhosted.org/packages/e7/ab/01ea1943d4eba0f850c3c61e78e8dd59757ff815ff3ccd0a84de5f541f42/pywin32-311-cp312-cp312-win32.whl", hash = "sha256:750ec6e621af2b948540032557b10a2d43b0cee2ae9758c54154d711cc852d31", size = 8706543, upload-time = "2025-07-14T20:13:20.765Z" }, - { url = "https://files.pythonhosted.org/packages/d1/a8/a0e8d07d4d051ec7502cd58b291ec98dcc0c3fff027caad0470b72cfcc2f/pywin32-311-cp312-cp312-win_amd64.whl", hash = "sha256:b8c095edad5c211ff31c05223658e71bf7116daa0ecf3ad85f3201ea3190d067", size = 9495040, upload-time = "2025-07-14T20:13:22.543Z" }, - { url = "https://files.pythonhosted.org/packages/ba/3a/2ae996277b4b50f17d61f0603efd8253cb2d79cc7ae159468007b586396d/pywin32-311-cp312-cp312-win_arm64.whl", hash = "sha256:e286f46a9a39c4a18b319c28f59b61de793654af2f395c102b4f819e584b5852", size = 8710102, upload-time = "2025-07-14T20:13:24.682Z" }, - { url = "https://files.pythonhosted.org/packages/a5/be/3fd5de0979fcb3994bfee0d65ed8ca9506a8a1260651b86174f6a86f52b3/pywin32-311-cp313-cp313-win32.whl", hash = "sha256:f95ba5a847cba10dd8c4d8fefa9f2a6cf283b8b88ed6178fa8a6c1ab16054d0d", size = 8705700, upload-time = "2025-07-14T20:13:26.471Z" }, - { url = "https://files.pythonhosted.org/packages/e3/28/e0a1909523c6890208295a29e05c2adb2126364e289826c0a8bc7297bd5c/pywin32-311-cp313-cp313-win_amd64.whl", hash = "sha256:718a38f7e5b058e76aee1c56ddd06908116d35147e133427e59a3983f703a20d", size = 9494700, upload-time = "2025-07-14T20:13:28.243Z" }, - { url = "https://files.pythonhosted.org/packages/04/bf/90339ac0f55726dce7d794e6d79a18a91265bdf3aa70b6b9ca52f35e022a/pywin32-311-cp313-cp313-win_arm64.whl", hash = "sha256:7b4075d959648406202d92a2310cb990fea19b535c7f4a78d3f5e10b926eeb8a", size = 8709318, upload-time = "2025-07-14T20:13:30.348Z" }, - { url = "https://files.pythonhosted.org/packages/c9/31/097f2e132c4f16d99a22bfb777e0fd88bd8e1c634304e102f313af69ace5/pywin32-311-cp314-cp314-win32.whl", hash = "sha256:b7a2c10b93f8986666d0c803ee19b5990885872a7de910fc460f9b0c2fbf92ee", size = 8840714, upload-time = "2025-07-14T20:13:32.449Z" }, - { url = "https://files.pythonhosted.org/packages/90/4b/07c77d8ba0e01349358082713400435347df8426208171ce297da32c313d/pywin32-311-cp314-cp314-win_amd64.whl", hash = "sha256:3aca44c046bd2ed8c90de9cb8427f581c479e594e99b5c0bb19b29c10fd6cb87", size = 9656800, upload-time = "2025-07-14T20:13:34.312Z" }, - { url = "https://files.pythonhosted.org/packages/c0/d2/21af5c535501a7233e734b8af901574572da66fcc254cb35d0609c9080dd/pywin32-311-cp314-cp314-win_arm64.whl", hash = "sha256:a508e2d9025764a8270f93111a970e1d0fbfc33f4153b388bb649b7eec4f9b42", size = 8932540, upload-time = "2025-07-14T20:13:36.379Z" }, - { url = "https://files.pythonhosted.org/packages/59/42/b86689aac0cdaee7ae1c58d464b0ff04ca909c19bb6502d4973cdd9f9544/pywin32-311-cp39-cp39-win32.whl", hash = "sha256:aba8f82d551a942cb20d4a83413ccbac30790b50efb89a75e4f586ac0bb8056b", size = 8760837, upload-time = "2025-07-14T20:12:59.59Z" }, - { url = "https://files.pythonhosted.org/packages/9f/8a/1403d0353f8c5a2f0829d2b1c4becbf9da2f0a4d040886404fc4a5431e4d/pywin32-311-cp39-cp39-win_amd64.whl", hash = "sha256:e0c4cfb0621281fe40387df582097fd796e80430597cb9944f0ae70447bacd91", size = 9590187, upload-time = "2025-07-14T20:13:01.419Z" }, - { url = "https://files.pythonhosted.org/packages/60/22/e0e8d802f124772cec9c75430b01a212f86f9de7546bda715e54140d5aeb/pywin32-311-cp39-cp39-win_arm64.whl", hash = "sha256:62ea666235135fee79bb154e695f3ff67370afefd71bd7fea7512fc70ef31e3d", size = 8778162, upload-time = "2025-07-14T20:13:03.544Z" }, -] - [[package]] name = "pyyaml" version = "6.0.3" @@ -5128,15 +3788,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" }, { url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" }, { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, - { url = "https://files.pythonhosted.org/packages/9f/62/67fc8e68a75f738c9200422bf65693fb79a4cd0dc5b23310e5202e978090/pyyaml-6.0.3-cp39-cp39-macosx_10_13_x86_64.whl", hash = "sha256:b865addae83924361678b652338317d1bd7e79b1f4596f96b96c77a5a34b34da", size = 184450, upload-time = "2025-09-25T21:33:00.618Z" }, - { url = "https://files.pythonhosted.org/packages/ae/92/861f152ce87c452b11b9d0977952259aa7df792d71c1053365cc7b09cc08/pyyaml-6.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c3355370a2c156cffb25e876646f149d5d68f5e0a3ce86a5084dd0b64a994917", size = 174319, upload-time = "2025-09-25T21:33:02.086Z" }, - { url = "https://files.pythonhosted.org/packages/d0/cd/f0cfc8c74f8a030017a2b9c771b7f47e5dd702c3e28e5b2071374bda2948/pyyaml-6.0.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c5677e12444c15717b902a5798264fa7909e41153cdf9ef7ad571b704a63dd9", size = 737631, upload-time = "2025-09-25T21:33:03.25Z" }, - { url = "https://files.pythonhosted.org/packages/ef/b2/18f2bd28cd2055a79a46c9b0895c0b3d987ce40ee471cecf58a1a0199805/pyyaml-6.0.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ed875a24292240029e4483f9d4a4b8a1ae08843b9c54f43fcc11e404532a8a5", size = 836795, upload-time = "2025-09-25T21:33:05.014Z" }, - { url = "https://files.pythonhosted.org/packages/73/b9/793686b2d54b531203c160ef12bec60228a0109c79bae6c1277961026770/pyyaml-6.0.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0150219816b6a1fa26fb4699fb7daa9caf09eb1999f3b70fb6e786805e80375a", size = 750767, upload-time = "2025-09-25T21:33:06.398Z" }, - { url = "https://files.pythonhosted.org/packages/a9/86/a137b39a611def2ed78b0e66ce2fe13ee701a07c07aebe55c340ed2a050e/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fa160448684b4e94d80416c0fa4aac48967a969efe22931448d853ada8baf926", size = 727982, upload-time = "2025-09-25T21:33:08.708Z" }, - { url = "https://files.pythonhosted.org/packages/dd/62/71c27c94f457cf4418ef8ccc71735324c549f7e3ea9d34aba50874563561/pyyaml-6.0.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:27c0abcb4a5dac13684a37f76e701e054692a9b2d3064b70f5e4eb54810553d7", size = 755677, upload-time = "2025-09-25T21:33:09.876Z" }, - { url = "https://files.pythonhosted.org/packages/29/3d/6f5e0d58bd924fb0d06c3a6bad00effbdae2de5adb5cda5648006ffbd8d3/pyyaml-6.0.3-cp39-cp39-win32.whl", hash = "sha256:1ebe39cb5fc479422b83de611d14e2c0d3bb2a18bbcb01f229ab3cfbd8fee7a0", size = 142592, upload-time = "2025-09-25T21:33:10.983Z" }, - { url = "https://files.pythonhosted.org/packages/f0/0c/25113e0b5e103d7f1490c0e947e303fe4a696c10b501dea7a9f49d4e876c/pyyaml-6.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:2e71d11abed7344e42a8849600193d15b6def118602c4c176f748e4583246007", size = 158777, upload-time = "2025-09-25T21:33:15.55Z" }, ] [[package]] @@ -5200,16 +3851,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c4/59/a5f38970f9bf07cee96128de79590bb354917914a9be11272cfc7ff26af0/pyzmq-27.1.0-cp314-cp314t-win32.whl", hash = "sha256:1f0b2a577fd770aa6f053211a55d1c47901f4d537389a034c690291485e5fe92", size = 587472, upload-time = "2025-09-08T23:08:58.18Z" }, { url = "https://files.pythonhosted.org/packages/70/d8/78b1bad170f93fcf5e3536e70e8fadac55030002275c9a29e8f5719185de/pyzmq-27.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:19c9468ae0437f8074af379e986c5d3d7d7bfe033506af442e8c879732bedbe0", size = 661401, upload-time = "2025-09-08T23:08:59.802Z" }, { url = "https://files.pythonhosted.org/packages/81/d6/4bfbb40c9a0b42fc53c7cf442f6385db70b40f74a783130c5d0a5aa62228/pyzmq-27.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dc5dbf68a7857b59473f7df42650c621d7e8923fb03fa74a526890f4d33cc4d7", size = 575170, upload-time = "2025-09-08T23:09:01.418Z" }, - { url = "https://files.pythonhosted.org/packages/ac/4e/782eb6df91b6a9d9afa96c2dcfc5cac62562a68eb62a02210101f886014d/pyzmq-27.1.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:96c71c32fff75957db6ae33cd961439f386505c6e6b377370af9b24a1ef9eafb", size = 1330426, upload-time = "2025-09-08T23:09:21.03Z" }, - { url = "https://files.pythonhosted.org/packages/8d/ca/2b8693d06b1db4e0c084871e4c9d7842b561d0a6ff9d780640f5e3e9eb55/pyzmq-27.1.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:49d3980544447f6bd2968b6ac913ab963a49dcaa2d4a2990041f16057b04c429", size = 906559, upload-time = "2025-09-08T23:09:22.983Z" }, - { url = "https://files.pythonhosted.org/packages/6a/b3/b99b39e2cfdcebd512959780e4d299447fd7f46010b1d88d63324e2481ec/pyzmq-27.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:849ca054d81aa1c175c49484afaaa5db0622092b5eccb2055f9f3bb8f703782d", size = 863816, upload-time = "2025-09-08T23:09:24.556Z" }, - { url = "https://files.pythonhosted.org/packages/61/b2/018fa8e8eefb34a625b1a45e2effcbc9885645b22cdd0a68283f758351e7/pyzmq-27.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3970778e74cb7f85934d2b926b9900e92bfe597e62267d7499acc39c9c28e345", size = 666735, upload-time = "2025-09-08T23:09:26.297Z" }, - { url = "https://files.pythonhosted.org/packages/01/05/8ae778f7cd7c94030731ae2305e6a38f3a333b6825f56c0c03f2134ccf1b/pyzmq-27.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:da96ecdcf7d3919c3be2de91a8c513c186f6762aa6cf7c01087ed74fad7f0968", size = 1655425, upload-time = "2025-09-08T23:09:28.172Z" }, - { url = "https://files.pythonhosted.org/packages/ad/ad/d69478a97a3f3142f9dbbbd9daa4fcf42541913a85567c36d4cfc19b2218/pyzmq-27.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:9541c444cfe1b1c0156c5c86ece2bb926c7079a18e7b47b0b1b3b1b875e5d098", size = 2033729, upload-time = "2025-09-08T23:09:30.097Z" }, - { url = "https://files.pythonhosted.org/packages/9a/6d/e3c6ad05bc1cddd25094e66cc15ae8924e15c67e231e93ed2955c401007e/pyzmq-27.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e30a74a39b93e2e1591b58eb1acef4902be27c957a8720b0e368f579b82dc22f", size = 1891803, upload-time = "2025-09-08T23:09:31.875Z" }, - { url = "https://files.pythonhosted.org/packages/7f/a7/97e8be0daaca157511563160b67a13d4fe76b195e3fa6873cb554ad46be3/pyzmq-27.1.0-cp39-cp39-win32.whl", hash = "sha256:b1267823d72d1e40701dcba7edc45fd17f71be1285557b7fe668887150a14b78", size = 567627, upload-time = "2025-09-08T23:09:33.98Z" }, - { url = "https://files.pythonhosted.org/packages/5c/91/70bbf3a7c5b04c904261ef5ba224d8a76315f6c23454251bf5f55573a8a1/pyzmq-27.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:0c996ded912812a2fcd7ab6574f4ad3edc27cb6510349431e4930d4196ade7db", size = 632315, upload-time = "2025-09-08T23:09:36.097Z" }, - { url = "https://files.pythonhosted.org/packages/cc/b5/a4173a83c7fd37f6bdb5a800ea338bc25603284e9ef8681377cec006ede4/pyzmq-27.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:346e9ba4198177a07e7706050f35d733e08c1c1f8ceacd5eb6389d653579ffbc", size = 559833, upload-time = "2025-09-08T23:09:38.183Z" }, { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, @@ -5220,53 +3861,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/49/0e/3f0d0d335c6b3abb9b7b723776d0b21fa7f3a6c819a0db6097059aada160/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53b40f8ae006f2734ee7608d59ed661419f087521edbfc2149c3932e9c14808c", size = 567747, upload-time = "2025-09-08T23:09:52.698Z" }, { url = "https://files.pythonhosted.org/packages/a1/cf/f2b3784d536250ffd4be70e049f3b60981235d70c6e8ce7e3ef21e1adb25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f605d884e7c8be8fe1aa94e0a783bf3f591b84c24e4bc4f3e7564c82ac25e271", size = 747371, upload-time = "2025-09-08T23:09:54.563Z" }, { url = "https://files.pythonhosted.org/packages/01/1b/5dbe84eefc86f48473947e2f41711aded97eecef1231f4558f1f02713c12/pyzmq-27.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c9f7f6e13dff2e44a6afeaf2cf54cee5929ad64afaf4d40b50f93c58fc687355", size = 544862, upload-time = "2025-09-08T23:09:56.509Z" }, - { url = "https://files.pythonhosted.org/packages/57/f4/c2e978cf6b833708bad7d6396c3a20c19750585a1775af3ff13c435e1912/pyzmq-27.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:722ea791aa233ac0a819fc2c475e1292c76930b31f1d828cb61073e2fe5e208f", size = 836257, upload-time = "2025-09-08T23:10:07.635Z" }, - { url = "https://files.pythonhosted.org/packages/5f/5f/4e10c7f57a4c92ab0fbb2396297aa8d618e6f5b9b8f8e9756d56f3e6fc52/pyzmq-27.1.0-pp39-pypy39_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:01f9437501886d3a1dd4b02ef59fb8cc384fa718ce066d52f175ee49dd5b7ed8", size = 800203, upload-time = "2025-09-08T23:10:09.436Z" }, - { url = "https://files.pythonhosted.org/packages/19/72/a74a007cd636f903448c6ab66628104b1fc5f2ba018733d5eabb94a0a6fb/pyzmq-27.1.0-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4a19387a3dddcc762bfd2f570d14e2395b2c9701329b266f83dd87a2b3cbd381", size = 758756, upload-time = "2025-09-08T23:10:11.733Z" }, - { url = "https://files.pythonhosted.org/packages/a9/d4/30c25b91f2b4786026372f5ef454134d7f576fcf4ac58539ad7dd5de4762/pyzmq-27.1.0-pp39-pypy39_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4c618fbcd069e3a29dcd221739cacde52edcc681f041907867e0f5cc7e85f172", size = 567742, upload-time = "2025-09-08T23:10:14.732Z" }, - { url = "https://files.pythonhosted.org/packages/92/aa/ee86edad943438cd0316964020c4b6d09854414f9f945f8e289ea6fcc019/pyzmq-27.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff8d114d14ac671d88c89b9224c63d6c4e5a613fe8acd5594ce53d752a3aafe9", size = 544857, upload-time = "2025-09-08T23:10:16.431Z" }, -] - -[[package]] -name = "rasterio" -version = "1.4.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "affine", marker = "python_full_version < '3.10'" }, - { name = "attrs", marker = "python_full_version < '3.10'" }, - { name = "certifi", marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click-plugins", marker = "python_full_version < '3.10'" }, - { name = "cligj", marker = "python_full_version < '3.10'" }, - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pyparsing", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/de/19/ab4326e419b543da623ce4191f68e3f36a4d9adc64f3df5c78f044d8d9ca/rasterio-1.4.3.tar.gz", hash = "sha256:201f05dbc7c4739dacb2c78a1cf4e09c0b7265b0a4d16ccbd1753ce4f2af350a", size = 442990, upload-time = "2024-12-02T14:49:25.571Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b6/1b/fbc6e3f11fe42898c787d27b6844f660bdd7081967d5f68b950c4bd9f043/rasterio-1.4.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:80f994b92e5dda78f13291710bd5c43efcfd164f69a8a2c20489115df9d178c8", size = 21539592, upload-time = "2024-12-02T14:48:24.761Z" }, - { url = "https://files.pythonhosted.org/packages/28/e6/97914b0c1824106ae9499446515915db3b4a8924d0568b6e888f4d305472/rasterio-1.4.3-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:1a6e6ca9ec361599b48c9918ce25adb1a9203b8c8ca9b34ad78dccb3aef7945a", size = 18770366, upload-time = "2024-12-02T14:48:28.58Z" }, - { url = "https://files.pythonhosted.org/packages/c1/f5/5cc3a8ee9deee2292432d69237ab4c5364f886844234d8e6dad29358aef0/rasterio-1.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5b8a4311582274de2346450e5361d092b80b8b5c7b02fda6203402ba101ffabf", size = 22216305, upload-time = "2024-12-02T14:48:32.15Z" }, - { url = "https://files.pythonhosted.org/packages/51/2f/f72f77633aecba9afda903f9201c566520cc2dfeb0e1e0d36c102aa18189/rasterio-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:e79847a5a0e01399457a1e02d8c92040cb56729d054fe7796f0c17b246b18bf0", size = 25442319, upload-time = "2024-12-02T14:48:34.663Z" }, - { url = "https://files.pythonhosted.org/packages/f3/fd/ba3850e4cbccc47d03037f2c96889f7f221a674a7be6665c7da7cd483a07/rasterio-1.4.3-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:9c30114d95ebba4ff49f078b3c193d29ff56d832588649400a3fa78f1dda1c96", size = 21540767, upload-time = "2024-12-02T14:48:38.794Z" }, - { url = "https://files.pythonhosted.org/packages/b3/59/ca86697161206233eea6353237b0c0f02f6f70434144db162f964a7e1b19/rasterio-1.4.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:812c854e7177064aeb58def2d59752887ad6b3d39ff3f858ed9df3f2ddc95613", size = 18762975, upload-time = "2024-12-02T14:48:41.895Z" }, - { url = "https://files.pythonhosted.org/packages/aa/fa/723fa6a48a419b044146cd92fa6a66ead8532d96c352fbc2f2a1546cb5b6/rasterio-1.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54eef32d20a0dfbba59a8bb9828e562c3e9e97e2355b8dfe4a5274117976059f", size = 22204391, upload-time = "2024-12-02T14:48:44.447Z" }, - { url = "https://files.pythonhosted.org/packages/7e/1f/56462740694de764fde264051224fcbf800dad43cac92a66753153128866/rasterio-1.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:4009f7ce4e0883d8e5b400970daa3f1ca309caac8916d955722ee4486654d452", size = 25452478, upload-time = "2024-12-02T14:48:46.893Z" }, - { url = "https://files.pythonhosted.org/packages/5a/f2/b7417292ceace70d815760f7e41fe5b0244ebff78ede11b1ffa9ca01c370/rasterio-1.4.3-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:e703e4b2c74c678786d5d110a3f30e26f3acfd65f09ccf35f69683a532f7a772", size = 21514543, upload-time = "2024-12-02T14:48:49.757Z" }, - { url = "https://files.pythonhosted.org/packages/b2/ea/e21010457847b26bb4aea3983e9b44afbcefef07defc5e9a3285a8fe2f0c/rasterio-1.4.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:38a126f8dbf405cd3450b5bd10c6cc493a2e1be4cf83442d26f5e4f412372d36", size = 18735924, upload-time = "2024-12-02T14:48:53.263Z" }, - { url = "https://files.pythonhosted.org/packages/67/72/331727423b28fffdfd8bf18bdc55c18d374c0fefd2dde390cd833f8f4477/rasterio-1.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e90c2c300294265c16becc9822337ded0f01fb8664500b4d77890d633d8cd0e", size = 22251721, upload-time = "2024-12-02T14:48:56.533Z" }, - { url = "https://files.pythonhosted.org/packages/be/cc/453816b489af94b9a243eda889865973d518989ba6923b2381f6d6722b43/rasterio-1.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:a962ad4c29feaf38b1d7a94389313127de3646a5b9b734fbf9a04e16051a27ff", size = 25430154, upload-time = "2024-12-02T14:48:59.261Z" }, - { url = "https://files.pythonhosted.org/packages/2e/e0/718c06b825d1f62077913e5bff1e70b71ac673718b135d55a0256d88d4ba/rasterio-1.4.3-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:5d4fcb635379b3d7b2f5e944c153849e3d27e93f35ad73ad4d3f0b8a580f0c8e", size = 21532284, upload-time = "2024-12-02T14:49:03.325Z" }, - { url = "https://files.pythonhosted.org/packages/bb/a8/3b6b11923300d6835453d1157fabb518338067a67366c5c52e9df9a2314f/rasterio-1.4.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:98a9c89eade8c779e8ac1e525269faaa18c6b9818fc3c72cfc4627df71c66d0d", size = 18729960, upload-time = "2024-12-02T14:49:06.423Z" }, - { url = "https://files.pythonhosted.org/packages/05/19/94d6c66184c7d0f9374330c714f62c147dbb53eda9efdcc8fc6e2ac454c5/rasterio-1.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9bab1a0bb22b8bed1db34b5258db93d790ed4e61ef21ac055a7c6933c8d5e84", size = 22237518, upload-time = "2024-12-02T14:49:09.155Z" }, - { url = "https://files.pythonhosted.org/packages/df/88/9db5f49ebfdd9c12365e4cac76c34ccb1a642b1c8cbab4124b3c681495de/rasterio-1.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:1839960e2f3057a6daa323ccf67b330f8f2f0dbd4a50cc7031e88e649301c5c0", size = 25424949, upload-time = "2024-12-02T14:49:11.742Z" }, - { url = "https://files.pythonhosted.org/packages/7d/60/b5fb8d42b56eae56209fbf85392579841536bce15429bf5a1536f309e6db/rasterio-1.4.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:af04f788f6f814569184bd9da6c5d9889512212385ab58c52720dfb1f972671d", size = 21542200, upload-time = "2024-12-02T14:49:14.35Z" }, - { url = "https://files.pythonhosted.org/packages/38/af/60768ad82f7e03a5180fb087b60cbe0522893b2153a313a0a530325eaff2/rasterio-1.4.3-cp39-cp39-macosx_14_0_arm64.whl", hash = "sha256:3f411a6a5bcb81ab6dc9128a8bccd13d3822cfa4a50c239e3a0528751a1ad5fc", size = 18771688, upload-time = "2024-12-02T14:49:16.82Z" }, - { url = "https://files.pythonhosted.org/packages/e1/93/52f8514173501efe3b1987d668868507f7f60e6cf246960ed132c5c2d1b3/rasterio-1.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:597f8dcf494d0ca4254434496e83b1723fec206d23d64da5751a582a2b01e1d3", size = 22217797, upload-time = "2024-12-02T14:49:20.503Z" }, - { url = "https://files.pythonhosted.org/packages/bd/e5/5a29b8b098067e8983b1592a3447d3928721d8ad3a7c4cee482e501942ee/rasterio-1.4.3-cp39-cp39-win_amd64.whl", hash = "sha256:a702e21712ba237e34515d829847f9f5f06d8e665e864a7bb0a3d4d8f6dec10d", size = 25445953, upload-time = "2024-12-02T14:49:23.116Z" }, ] [[package]] @@ -5274,21 +3868,21 @@ name = "rasterio" version = "1.4.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] -dependencies = [ - { name = "affine", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "attrs", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "certifi", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "click-plugins", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "cligj", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", +] +dependencies = [ + { name = "affine", marker = "python_full_version < '3.12'" }, + { name = "attrs", marker = "python_full_version < '3.12'" }, + { name = "certifi", marker = "python_full_version < '3.12'" }, + { name = "click", marker = "python_full_version < '3.12'" }, + { name = "click-plugins", marker = "python_full_version < '3.12'" }, + { name = "cligj", marker = "python_full_version < '3.12'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, - { name = "pyparsing", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, + { name = "pyparsing", marker = "python_full_version < '3.12'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ec/fa/fce8dc9f09e5bc6520b6fc1b4ecfa510af9ca06eb42ad7bdff9c9b8989d0/rasterio-1.4.4.tar.gz", hash = "sha256:c95424e2c7f009b8f7df1095d645c52895cd332c0c2e1b4c2e073ea28b930320", size = 445004, upload-time = "2025-12-12T18:01:08.971Z" } wheels = [ @@ -5340,18 +3934,14 @@ name = "rasterio" version = "1.5.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", ] dependencies = [ { name = "affine", marker = "python_full_version >= '3.12'" }, { name = "attrs", marker = "python_full_version >= '3.12'" }, { name = "certifi", marker = "python_full_version >= '3.12'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, + { name = "click", marker = "python_full_version >= '3.12'" }, { name = "cligj", marker = "python_full_version >= '3.12'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, { name = "pyparsing", marker = "python_full_version >= '3.12'" }, @@ -5390,43 +3980,14 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/6e/d1/8b017856e63ccaff3cbd0e82490dbb01363a42f3a462a41b1d8a391e1443/rasterio-1.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f4b9c2c3b5f10469eb9588f105086e68f0279e62cc9095c4edd245e3f9b88c8a", size = 29418321, upload-time = "2026-01-05T16:06:44.758Z" }, ] -[[package]] -name = "referencing" -version = "0.36.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "attrs", marker = "python_full_version < '3.10'" }, - { name = "rpds-py", version = "0.27.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "typing-extensions", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2f/db/98b5c277be99dd18bfd91dd04e1b759cad18d1a338188c936e92f921c7e2/referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa", size = 74744, upload-time = "2025-01-25T08:48:16.138Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, -] - [[package]] name = "referencing" version = "0.37.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "attrs", marker = "python_full_version >= '3.10'" }, - { name = "rpds-py", version = "0.30.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "typing-extensions", marker = "python_full_version >= '3.10' and python_full_version < '3.13'" }, + { name = "attrs" }, + { name = "rpds-py" }, + { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } wheels = [ @@ -5441,8 +4002,7 @@ dependencies = [ { name = "certifi" }, { name = "charset-normalizer" }, { name = "idna" }, - { name = "urllib3", version = "1.26.20", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "urllib3", version = "2.6.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } wheels = [ @@ -5467,36 +4027,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, ] -[[package]] -name = "rio-cogeo" -version = "5.4.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "morecantile", version = "6.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pydantic", marker = "python_full_version < '3.10'" }, - { name = "rasterio", version = "1.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d8/ac/94a3a6a4f4ec1d78b48fa9895f40c4e33e8ef10fa69137fdf7b4b70a937b/rio_cogeo-5.4.2.tar.gz", hash = "sha256:a6d48dfd6c4ade9f2b67e381958cc5939fa5de53b184c56e13b0b009d33ae84c", size = 21219, upload-time = "2025-06-27T08:00:33.941Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/62/03/e6e4e10465802eb839a4799dac1a73d2dffcb3c978a8999b5d94953a40a6/rio_cogeo-5.4.2-py3-none-any.whl", hash = "sha256:6f11a11f4bc59added4c10a946b91c4f4ec186db0163039417cce784e56c3ebe", size = 21106, upload-time = "2025-06-27T08:00:32.92Z" }, -] - [[package]] name = "rio-cogeo" version = "6.0.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "morecantile", version = "6.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "pydantic", marker = "python_full_version == '3.10.*'" }, - { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "click", marker = "python_full_version < '3.11'" }, + { name = "morecantile", version = "6.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "pydantic", marker = "python_full_version < '3.11'" }, + { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3b/14/1c00dc4795ac3ee6a040d79e215ad9f84e14ef04d04fd592fdd0f62504bb/rio_cogeo-6.0.0.tar.gz", hash = "sha256:d215904c3b348edda1e38340f0dfdda5ffdf865ab9871df1fc55b6142dd58bb3", size = 21189, upload-time = "2025-11-05T10:37:21.794Z" } wheels = [ @@ -5508,18 +4051,13 @@ name = "rio-cogeo" version = "7.0.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "click", marker = "python_full_version >= '3.11'" }, { name = "morecantile", version = "7.0.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "pydantic", marker = "python_full_version >= '3.11'" }, { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, @@ -5535,25 +4073,20 @@ name = "rio-tiler" version = "7.9.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", - "python_full_version < '3.10'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ { name = "attrs", marker = "python_full_version < '3.11'" }, - { name = "cachetools", version = "6.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "cachetools", version = "7.0.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "cachetools", marker = "python_full_version < '3.11'" }, { name = "color-operations", marker = "python_full_version < '3.11'" }, { name = "httpx", marker = "python_full_version < '3.11'" }, { name = "morecantile", version = "6.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, - { name = "numexpr", version = "2.10.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numexpr", version = "2.14.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numexpr", marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "pydantic", marker = "python_full_version < '3.11'" }, - { name = "pystac", version = "1.10.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "pystac", version = "1.14.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "rasterio", version = "1.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "pystac", marker = "python_full_version < '3.11'" }, + { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/32/688049e942a8ae24fe23b15e528ad7bf4a36c63fc80dfbdf58394c1bc1cb/rio_tiler-7.9.3.tar.gz", hash = "sha256:e65a18f3de11810e1e6cd3b1036482c86e8257fcad51116eaae69d662a2ac20d", size = 175974, upload-time = "2026-02-12T19:54:55.146Z" } @@ -5566,26 +4099,21 @@ name = "rio-tiler" version = "9.0.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "attrs", marker = "python_full_version >= '3.11'" }, - { name = "cachetools", version = "7.0.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "cachetools", marker = "python_full_version >= '3.11'" }, { name = "color-operations", marker = "python_full_version >= '3.11'" }, { name = "httpx", marker = "python_full_version >= '3.11'" }, { name = "morecantile", version = "7.0.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, - { name = "numexpr", version = "2.14.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "numexpr", marker = "python_full_version >= '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, { name = "pydantic", marker = "python_full_version >= '3.11'" }, - { name = "pystac", version = "1.14.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, + { name = "pystac", marker = "python_full_version >= '3.11'" }, { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, { name = "rasterio", version = "1.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, { name = "typing-extensions", marker = "python_full_version == '3.11.*'" }, @@ -5595,43 +4123,24 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b4/ee/1af53e458d8ddfd35f295bd34f688c01ac8347ad9ae63c3e87661b46dcda/rio_tiler-9.0.0-py3-none-any.whl", hash = "sha256:fab7b874baa04c147d54057f7125f67cc7cf5943b133728a496dbc35000a625e", size = 287150, upload-time = "2026-03-11T18:44:40.242Z" }, ] -[[package]] -name = "rioxarray" -version = "0.15.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pyproj", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rasterio", version = "1.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "xarray", version = "2024.7.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/91/b4/cc1f771c15e0a2263145aa5212de4fda9f6b4572ad40807217d0d93bd216/rioxarray-0.15.0.tar.gz", hash = "sha256:d2a8429a5b6405913c7b6f515ef2992b05139c96eb39a2dc1c9f475ce0848c9c", size = 52785, upload-time = "2023-08-14T18:56:58.192Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/34/8ee402df8a49228b6aae89ab2127cdd5aa0ba0976904af7d55270f4f30b8/rioxarray-0.15.0-py3-none-any.whl", hash = "sha256:d7c0b2efc21075f77fe04302b916a995320004695f3c31e4f06d9ab40acd4498", size = 53697, upload-time = "2023-08-14T18:56:56.474Z" }, -] - [[package]] name = "rioxarray" version = "0.19.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, - { name = "packaging", marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "packaging", marker = "python_full_version < '3.12'" }, + { name = "pyproj", version = "3.7.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "pyproj", version = "3.7.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, - { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' and python_full_version < '3.12'" }, - { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "rasterio", version = "1.4.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12'" }, + { name = "xarray", version = "2025.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "xarray", version = "2026.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.11.*'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/8e/fe4e87460f8c62d8d5c683e09f19fbde5d9cfcfd0342d02df1f452999b5d/rioxarray-0.19.0.tar.gz", hash = "sha256:7819a0036fd874c8c8e280447cbbe43d8dc72fc4a14ac7852a665b1bdb7d4b04", size = 54600, upload-time = "2025-04-21T17:46:54.183Z" } @@ -5644,12 +4153,8 @@ name = "rioxarray" version = "0.22.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", ] dependencies = [ { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12'" }, @@ -5663,187 +4168,10 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3f/dd/0b2c68495331ba36af783139baaa94693ef310d484d458c11dfa1357287d/rioxarray-0.22.0-py3-none-any.whl", hash = "sha256:db0aa55cd36a95060968f2e6574107829def29d43a563560b90bc642d0bd6a3b", size = 72018, upload-time = "2026-03-06T17:10:58.965Z" }, ] -[[package]] -name = "rpds-py" -version = "0.27.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/e9/dd/2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba/rpds_py-0.27.1.tar.gz", hash = "sha256:26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8", size = 27479, upload-time = "2025-08-27T12:16:36.024Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a5/ed/3aef893e2dd30e77e35d20d4ddb45ca459db59cead748cad9796ad479411/rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:68afeec26d42ab3b47e541b272166a0b4400313946871cba3ed3a4fc0cab1cef", size = 371606, upload-time = "2025-08-27T12:12:25.189Z" }, - { url = "https://files.pythonhosted.org/packages/6d/82/9818b443e5d3eb4c83c3994561387f116aae9833b35c484474769c4a8faf/rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74e5b2f7bb6fa38b1b10546d27acbacf2a022a8b5543efb06cfebc72a59c85be", size = 353452, upload-time = "2025-08-27T12:12:27.433Z" }, - { url = "https://files.pythonhosted.org/packages/99/c7/d2a110ffaaa397fc6793a83c7bd3545d9ab22658b7cdff05a24a4535cc45/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9024de74731df54546fab0bfbcdb49fae19159ecaecfc8f37c18d2c7e2c0bd61", size = 381519, upload-time = "2025-08-27T12:12:28.719Z" }, - { url = "https://files.pythonhosted.org/packages/5a/bc/e89581d1f9d1be7d0247eaef602566869fdc0d084008ba139e27e775366c/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:31d3ebadefcd73b73928ed0b2fd696f7fefda8629229f81929ac9c1854d0cffb", size = 394424, upload-time = "2025-08-27T12:12:30.207Z" }, - { url = "https://files.pythonhosted.org/packages/ac/2e/36a6861f797530e74bb6ed53495f8741f1ef95939eed01d761e73d559067/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2e7f8f169d775dd9092a1743768d771f1d1300453ddfe6325ae3ab5332b4657", size = 523467, upload-time = "2025-08-27T12:12:31.808Z" }, - { url = "https://files.pythonhosted.org/packages/c4/59/c1bc2be32564fa499f988f0a5c6505c2f4746ef96e58e4d7de5cf923d77e/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d905d16f77eb6ab2e324e09bfa277b4c8e5e6b8a78a3e7ff8f3cdf773b4c013", size = 402660, upload-time = "2025-08-27T12:12:33.444Z" }, - { url = "https://files.pythonhosted.org/packages/0a/ec/ef8bf895f0628dd0a59e54d81caed6891663cb9c54a0f4bb7da918cb88cf/rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50c946f048209e6362e22576baea09193809f87687a95a8db24e5fbdb307b93a", size = 384062, upload-time = "2025-08-27T12:12:34.857Z" }, - { url = "https://files.pythonhosted.org/packages/69/f7/f47ff154be8d9a5e691c083a920bba89cef88d5247c241c10b9898f595a1/rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:3deab27804d65cd8289eb814c2c0e807c4b9d9916c9225e363cb0cf875eb67c1", size = 401289, upload-time = "2025-08-27T12:12:36.085Z" }, - { url = "https://files.pythonhosted.org/packages/3b/d9/ca410363efd0615814ae579f6829cafb39225cd63e5ea5ed1404cb345293/rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b61097f7488de4be8244c89915da8ed212832ccf1e7c7753a25a394bf9b1f10", size = 417718, upload-time = "2025-08-27T12:12:37.401Z" }, - { url = "https://files.pythonhosted.org/packages/e3/a0/8cb5c2ff38340f221cc067cc093d1270e10658ba4e8d263df923daa18e86/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8a3f29aba6e2d7d90528d3c792555a93497fe6538aa65eb675b44505be747808", size = 558333, upload-time = "2025-08-27T12:12:38.672Z" }, - { url = "https://files.pythonhosted.org/packages/6f/8c/1b0de79177c5d5103843774ce12b84caa7164dfc6cd66378768d37db11bf/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd6cd0485b7d347304067153a6dc1d73f7d4fd995a396ef32a24d24b8ac63ac8", size = 589127, upload-time = "2025-08-27T12:12:41.48Z" }, - { url = "https://files.pythonhosted.org/packages/c8/5e/26abb098d5e01266b0f3a2488d299d19ccc26849735d9d2b95c39397e945/rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6f4461bf931108c9fa226ffb0e257c1b18dc2d44cd72b125bec50ee0ab1248a9", size = 554899, upload-time = "2025-08-27T12:12:42.925Z" }, - { url = "https://files.pythonhosted.org/packages/de/41/905cc90ced13550db017f8f20c6d8e8470066c5738ba480d7ba63e3d136b/rpds_py-0.27.1-cp310-cp310-win32.whl", hash = "sha256:ee5422d7fb21f6a00c1901bf6559c49fee13a5159d0288320737bbf6585bd3e4", size = 217450, upload-time = "2025-08-27T12:12:44.813Z" }, - { url = "https://files.pythonhosted.org/packages/75/3d/6bef47b0e253616ccdf67c283e25f2d16e18ccddd38f92af81d5a3420206/rpds_py-0.27.1-cp310-cp310-win_amd64.whl", hash = "sha256:3e039aabf6d5f83c745d5f9a0a381d031e9ed871967c0a5c38d201aca41f3ba1", size = 228447, upload-time = "2025-08-27T12:12:46.204Z" }, - { url = "https://files.pythonhosted.org/packages/b5/c1/7907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae/rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:be898f271f851f68b318872ce6ebebbc62f303b654e43bf72683dbdc25b7c881", size = 371063, upload-time = "2025-08-27T12:12:47.856Z" }, - { url = "https://files.pythonhosted.org/packages/11/94/2aab4bc86228bcf7c48760990273653a4900de89c7537ffe1b0d6097ed39/rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:62ac3d4e3e07b58ee0ddecd71d6ce3b1637de2d373501412df395a0ec5f9beb5", size = 353210, upload-time = "2025-08-27T12:12:49.187Z" }, - { url = "https://files.pythonhosted.org/packages/3a/57/f5eb3ecf434342f4f1a46009530e93fd201a0b5b83379034ebdb1d7c1a58/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4708c5c0ceb2d034f9991623631d3d23cb16e65c83736ea020cdbe28d57c0a0e", size = 381636, upload-time = "2025-08-27T12:12:50.492Z" }, - { url = "https://files.pythonhosted.org/packages/ae/f4/ef95c5945e2ceb5119571b184dd5a1cc4b8541bbdf67461998cfeac9cb1e/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:abfa1171a9952d2e0002aba2ad3780820b00cc3d9c98c6630f2e93271501f66c", size = 394341, upload-time = "2025-08-27T12:12:52.024Z" }, - { url = "https://files.pythonhosted.org/packages/5a/7e/4bd610754bf492d398b61725eb9598ddd5eb86b07d7d9483dbcd810e20bc/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b507d19f817ebaca79574b16eb2ae412e5c0835542c93fe9983f1e432aca195", size = 523428, upload-time = "2025-08-27T12:12:53.779Z" }, - { url = "https://files.pythonhosted.org/packages/9f/e5/059b9f65a8c9149361a8b75094864ab83b94718344db511fd6117936ed2a/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168b025f8fd8d8d10957405f3fdcef3dc20f5982d398f90851f4abc58c566c52", size = 402923, upload-time = "2025-08-27T12:12:55.15Z" }, - { url = "https://files.pythonhosted.org/packages/f5/48/64cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb56c6210ef77caa58e16e8c17d35c63fe3f5b60fd9ba9d424470c3400bcf9ed", size = 384094, upload-time = "2025-08-27T12:12:57.194Z" }, - { url = "https://files.pythonhosted.org/packages/ae/e1/dc9094d6ff566bff87add8a510c89b9e158ad2ecd97ee26e677da29a9e1b/rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:d252f2d8ca0195faa707f8eb9368955760880b2b42a8ee16d382bf5dd807f89a", size = 401093, upload-time = "2025-08-27T12:12:58.985Z" }, - { url = "https://files.pythonhosted.org/packages/37/8e/ac8577e3ecdd5593e283d46907d7011618994e1d7ab992711ae0f78b9937/rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6e5e54da1e74b91dbc7996b56640f79b195d5925c2b78efaa8c5d53e1d88edde", size = 417969, upload-time = "2025-08-27T12:13:00.367Z" }, - { url = "https://files.pythonhosted.org/packages/66/6d/87507430a8f74a93556fe55c6485ba9c259949a853ce407b1e23fea5ba31/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ffce0481cc6e95e5b3f0a47ee17ffbd234399e6d532f394c8dce320c3b089c21", size = 558302, upload-time = "2025-08-27T12:13:01.737Z" }, - { url = "https://files.pythonhosted.org/packages/3a/bb/1db4781ce1dda3eecc735e3152659a27b90a02ca62bfeea17aee45cc0fbc/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a205fdfe55c90c2cd8e540ca9ceba65cbe6629b443bc05db1f590a3db8189ff9", size = 589259, upload-time = "2025-08-27T12:13:03.127Z" }, - { url = "https://files.pythonhosted.org/packages/7b/0e/ae1c8943d11a814d01b482e1f8da903f88047a962dff9bbdadf3bd6e6fd1/rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:689fb5200a749db0415b092972e8eba85847c23885c8543a8b0f5c009b1a5948", size = 554983, upload-time = "2025-08-27T12:13:04.516Z" }, - { url = "https://files.pythonhosted.org/packages/b2/d5/0b2a55415931db4f112bdab072443ff76131b5ac4f4dc98d10d2d357eb03/rpds_py-0.27.1-cp311-cp311-win32.whl", hash = "sha256:3182af66048c00a075010bc7f4860f33913528a4b6fc09094a6e7598e462fe39", size = 217154, upload-time = "2025-08-27T12:13:06.278Z" }, - { url = "https://files.pythonhosted.org/packages/24/75/3b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819/rpds_py-0.27.1-cp311-cp311-win_amd64.whl", hash = "sha256:b4938466c6b257b2f5c4ff98acd8128ec36b5059e5c8f8372d79316b1c36bb15", size = 228627, upload-time = "2025-08-27T12:13:07.625Z" }, - { url = "https://files.pythonhosted.org/packages/8d/3f/4fd04c32abc02c710f09a72a30c9a55ea3cc154ef8099078fd50a0596f8e/rpds_py-0.27.1-cp311-cp311-win_arm64.whl", hash = "sha256:2f57af9b4d0793e53266ee4325535a31ba48e2f875da81a9177c9926dfa60746", size = 220998, upload-time = "2025-08-27T12:13:08.972Z" }, - { url = "https://files.pythonhosted.org/packages/bd/fe/38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014/rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:ae2775c1973e3c30316892737b91f9283f9908e3cc7625b9331271eaaed7dc90", size = 361887, upload-time = "2025-08-27T12:13:10.233Z" }, - { url = "https://files.pythonhosted.org/packages/7c/9a/4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468/rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2643400120f55c8a96f7c9d858f7be0c88d383cd4653ae2cf0d0c88f668073e5", size = 345795, upload-time = "2025-08-27T12:13:11.65Z" }, - { url = "https://files.pythonhosted.org/packages/6f/0e/e650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16323f674c089b0360674a4abd28d5042947d54ba620f72514d69be4ff64845e", size = 385121, upload-time = "2025-08-27T12:13:13.008Z" }, - { url = "https://files.pythonhosted.org/packages/1b/ea/b306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a1f4814b65eacac94a00fc9a526e3fdafd78e439469644032032d0d63de4881", size = 398976, upload-time = "2025-08-27T12:13:14.368Z" }, - { url = "https://files.pythonhosted.org/packages/2c/0a/26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ba32c16b064267b22f1850a34051121d423b6f7338a12b9459550eb2096e7ec", size = 525953, upload-time = "2025-08-27T12:13:15.774Z" }, - { url = "https://files.pythonhosted.org/packages/22/14/c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5c20f33fd10485b80f65e800bbe5f6785af510b9f4056c5a3c612ebc83ba6cb", size = 407915, upload-time = "2025-08-27T12:13:17.379Z" }, - { url = "https://files.pythonhosted.org/packages/ed/7b/8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9/rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:466bfe65bd932da36ff279ddd92de56b042f2266d752719beb97b08526268ec5", size = 386883, upload-time = "2025-08-27T12:13:18.704Z" }, - { url = "https://files.pythonhosted.org/packages/86/47/28fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b/rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:41e532bbdcb57c92ba3be62c42e9f096431b4cf478da9bc3bc6ce5c38ab7ba7a", size = 405699, upload-time = "2025-08-27T12:13:20.089Z" }, - { url = "https://files.pythonhosted.org/packages/d0/fd/c5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a/rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f149826d742b406579466283769a8ea448eed82a789af0ed17b0cd5770433444", size = 423713, upload-time = "2025-08-27T12:13:21.436Z" }, - { url = "https://files.pythonhosted.org/packages/ac/ba/3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80c60cfb5310677bd67cb1e85a1e8eb52e12529545441b43e6f14d90b878775a", size = 562324, upload-time = "2025-08-27T12:13:22.789Z" }, - { url = "https://files.pythonhosted.org/packages/b5/6c/6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:7ee6521b9baf06085f62ba9c7a3e5becffbc32480d2f1b351559c001c38ce4c1", size = 593646, upload-time = "2025-08-27T12:13:24.122Z" }, - { url = "https://files.pythonhosted.org/packages/11/73/9d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f/rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a512c8263249a9d68cac08b05dd59d2b3f2061d99b322813cbcc14c3c7421998", size = 558137, upload-time = "2025-08-27T12:13:25.557Z" }, - { url = "https://files.pythonhosted.org/packages/6e/96/6772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165/rpds_py-0.27.1-cp312-cp312-win32.whl", hash = "sha256:819064fa048ba01b6dadc5116f3ac48610435ac9a0058bbde98e569f9e785c39", size = 221343, upload-time = "2025-08-27T12:13:26.967Z" }, - { url = "https://files.pythonhosted.org/packages/67/b6/c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84/rpds_py-0.27.1-cp312-cp312-win_amd64.whl", hash = "sha256:d9199717881f13c32c4046a15f024971a3b78ad4ea029e8da6b86e5aa9cf4594", size = 232497, upload-time = "2025-08-27T12:13:28.326Z" }, - { url = "https://files.pythonhosted.org/packages/e1/96/2817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2/rpds_py-0.27.1-cp312-cp312-win_arm64.whl", hash = "sha256:33aa65b97826a0e885ef6e278fbd934e98cdcfed80b63946025f01e2f5b29502", size = 222790, upload-time = "2025-08-27T12:13:29.71Z" }, - { url = "https://files.pythonhosted.org/packages/cc/77/610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98/rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:e4b9fcfbc021633863a37e92571d6f91851fa656f0180246e84cbd8b3f6b329b", size = 361741, upload-time = "2025-08-27T12:13:31.039Z" }, - { url = "https://files.pythonhosted.org/packages/3a/fc/c43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4/rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1441811a96eadca93c517d08df75de45e5ffe68aa3089924f963c782c4b898cf", size = 345574, upload-time = "2025-08-27T12:13:32.902Z" }, - { url = "https://files.pythonhosted.org/packages/20/42/ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55266dafa22e672f5a4f65019015f90336ed31c6383bd53f5e7826d21a0e0b83", size = 385051, upload-time = "2025-08-27T12:13:34.228Z" }, - { url = "https://files.pythonhosted.org/packages/fd/e8/1e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d78827d7ac08627ea2c8e02c9e5b41180ea5ea1f747e9db0915e3adf36b62dcf", size = 398395, upload-time = "2025-08-27T12:13:36.132Z" }, - { url = "https://files.pythonhosted.org/packages/82/95/9dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae92443798a40a92dc5f0b01d8a7c93adde0c4dc965310a29ae7c64d72b9fad2", size = 524334, upload-time = "2025-08-27T12:13:37.562Z" }, - { url = "https://files.pythonhosted.org/packages/87/01/a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c46c9dd2403b66a2a3b9720ec4b74d4ab49d4fabf9f03dfdce2d42af913fe8d0", size = 407691, upload-time = "2025-08-27T12:13:38.94Z" }, - { url = "https://files.pythonhosted.org/packages/03/36/0a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd/rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2efe4eb1d01b7f5f1939f4ef30ecea6c6b3521eec451fb93191bf84b2a522418", size = 386868, upload-time = "2025-08-27T12:13:40.192Z" }, - { url = "https://files.pythonhosted.org/packages/3b/03/8c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1/rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:15d3b4d83582d10c601f481eca29c3f138d44c92187d197aff663a269197c02d", size = 405469, upload-time = "2025-08-27T12:13:41.496Z" }, - { url = "https://files.pythonhosted.org/packages/da/07/88c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94/rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4ed2e16abbc982a169d30d1a420274a709949e2cbdef119fe2ec9d870b42f274", size = 422125, upload-time = "2025-08-27T12:13:42.802Z" }, - { url = "https://files.pythonhosted.org/packages/6b/86/5f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a75f305c9b013289121ec0f1181931975df78738cdf650093e6b86d74aa7d8dd", size = 562341, upload-time = "2025-08-27T12:13:44.472Z" }, - { url = "https://files.pythonhosted.org/packages/b2/92/3c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:67ce7620704745881a3d4b0ada80ab4d99df390838839921f99e63c474f82cf2", size = 592511, upload-time = "2025-08-27T12:13:45.898Z" }, - { url = "https://files.pythonhosted.org/packages/10/bb/82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8/rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9d992ac10eb86d9b6f369647b6a3f412fc0075cfd5d799530e84d335e440a002", size = 557736, upload-time = "2025-08-27T12:13:47.408Z" }, - { url = "https://files.pythonhosted.org/packages/00/95/3c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f/rpds_py-0.27.1-cp313-cp313-win32.whl", hash = "sha256:4f75e4bd8ab8db624e02c8e2fc4063021b58becdbe6df793a8111d9343aec1e3", size = 221462, upload-time = "2025-08-27T12:13:48.742Z" }, - { url = "https://files.pythonhosted.org/packages/ce/2c/5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6/rpds_py-0.27.1-cp313-cp313-win_amd64.whl", hash = "sha256:f9025faafc62ed0b75a53e541895ca272815bec18abe2249ff6501c8f2e12b83", size = 232034, upload-time = "2025-08-27T12:13:50.11Z" }, - { url = "https://files.pythonhosted.org/packages/c7/78/3958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66/rpds_py-0.27.1-cp313-cp313-win_arm64.whl", hash = "sha256:ed10dc32829e7d222b7d3b93136d25a406ba9788f6a7ebf6809092da1f4d279d", size = 222392, upload-time = "2025-08-27T12:13:52.587Z" }, - { url = "https://files.pythonhosted.org/packages/01/76/1cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659/rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:92022bbbad0d4426e616815b16bc4127f83c9a74940e1ccf3cfe0b387aba0228", size = 358355, upload-time = "2025-08-27T12:13:54.012Z" }, - { url = "https://files.pythonhosted.org/packages/c3/6f/bf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e/rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:47162fdab9407ec3f160805ac3e154df042e577dd53341745fc7fb3f625e6d92", size = 342138, upload-time = "2025-08-27T12:13:55.791Z" }, - { url = "https://files.pythonhosted.org/packages/1a/77/355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb89bec23fddc489e5d78b550a7b773557c9ab58b7946154a10a6f7a214a48b2", size = 380247, upload-time = "2025-08-27T12:13:57.683Z" }, - { url = "https://files.pythonhosted.org/packages/d6/a4/d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e48af21883ded2b3e9eb48cb7880ad8598b31ab752ff3be6457001d78f416723", size = 390699, upload-time = "2025-08-27T12:13:59.137Z" }, - { url = "https://files.pythonhosted.org/packages/3a/06/005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f5b7bd8e219ed50299e58551a410b64daafb5017d54bbe822e003856f06a802", size = 521852, upload-time = "2025-08-27T12:14:00.583Z" }, - { url = "https://files.pythonhosted.org/packages/e5/3e/50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08f1e20bccf73b08d12d804d6e1c22ca5530e71659e6673bce31a6bb71c1e73f", size = 402582, upload-time = "2025-08-27T12:14:02.034Z" }, - { url = "https://files.pythonhosted.org/packages/cb/b0/f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc/rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dc5dceeaefcc96dc192e3a80bbe1d6c410c469e97bdd47494a7d930987f18b2", size = 384126, upload-time = "2025-08-27T12:14:03.437Z" }, - { url = "https://files.pythonhosted.org/packages/54/77/ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63/rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:d76f9cc8665acdc0c9177043746775aa7babbf479b5520b78ae4002d889f5c21", size = 399486, upload-time = "2025-08-27T12:14:05.443Z" }, - { url = "https://files.pythonhosted.org/packages/d6/29/3e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3/rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:134fae0e36022edad8290a6661edf40c023562964efea0cc0ec7f5d392d2aaef", size = 414832, upload-time = "2025-08-27T12:14:06.902Z" }, - { url = "https://files.pythonhosted.org/packages/3f/db/6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:eb11a4f1b2b63337cfd3b4d110af778a59aae51c81d195768e353d8b52f88081", size = 557249, upload-time = "2025-08-27T12:14:08.37Z" }, - { url = "https://files.pythonhosted.org/packages/60/f3/690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:13e608ac9f50a0ed4faec0e90ece76ae33b34c0e8656e3dceb9a7db994c692cd", size = 587356, upload-time = "2025-08-27T12:14:10.034Z" }, - { url = "https://files.pythonhosted.org/packages/86/e3/84507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc/rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:dd2135527aa40f061350c3f8f89da2644de26cd73e4de458e79606384f4f68e7", size = 555300, upload-time = "2025-08-27T12:14:11.783Z" }, - { url = "https://files.pythonhosted.org/packages/e5/ee/375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe/rpds_py-0.27.1-cp313-cp313t-win32.whl", hash = "sha256:3020724ade63fe320a972e2ffd93b5623227e684315adce194941167fee02688", size = 216714, upload-time = "2025-08-27T12:14:13.629Z" }, - { url = "https://files.pythonhosted.org/packages/21/87/3fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a/rpds_py-0.27.1-cp313-cp313t-win_amd64.whl", hash = "sha256:8ee50c3e41739886606388ba3ab3ee2aae9f35fb23f833091833255a31740797", size = 228943, upload-time = "2025-08-27T12:14:14.937Z" }, - { url = "https://files.pythonhosted.org/packages/70/36/b6e6066520a07cf029d385de869729a895917b411e777ab1cde878100a1d/rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:acb9aafccaae278f449d9c713b64a9e68662e7799dbd5859e2c6b3c67b56d334", size = 362472, upload-time = "2025-08-27T12:14:16.333Z" }, - { url = "https://files.pythonhosted.org/packages/af/07/b4646032e0dcec0df9c73a3bd52f63bc6c5f9cda992f06bd0e73fe3fbebd/rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b7fb801aa7f845ddf601c49630deeeccde7ce10065561d92729bfe81bd21fb33", size = 345676, upload-time = "2025-08-27T12:14:17.764Z" }, - { url = "https://files.pythonhosted.org/packages/b0/16/2f1003ee5d0af4bcb13c0cf894957984c32a6751ed7206db2aee7379a55e/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe0dd05afb46597b9a2e11c351e5e4283c741237e7f617ffb3252780cca9336a", size = 385313, upload-time = "2025-08-27T12:14:19.829Z" }, - { url = "https://files.pythonhosted.org/packages/05/cd/7eb6dd7b232e7f2654d03fa07f1414d7dfc980e82ba71e40a7c46fd95484/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b6dfb0e058adb12d8b1d1b25f686e94ffa65d9995a5157afe99743bf7369d62b", size = 399080, upload-time = "2025-08-27T12:14:21.531Z" }, - { url = "https://files.pythonhosted.org/packages/20/51/5829afd5000ec1cb60f304711f02572d619040aa3ec033d8226817d1e571/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed090ccd235f6fa8bb5861684567f0a83e04f52dfc2e5c05f2e4b1309fcf85e7", size = 523868, upload-time = "2025-08-27T12:14:23.485Z" }, - { url = "https://files.pythonhosted.org/packages/05/2c/30eebca20d5db95720ab4d2faec1b5e4c1025c473f703738c371241476a2/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf876e79763eecf3e7356f157540d6a093cef395b65514f17a356f62af6cc136", size = 408750, upload-time = "2025-08-27T12:14:24.924Z" }, - { url = "https://files.pythonhosted.org/packages/90/1a/cdb5083f043597c4d4276eae4e4c70c55ab5accec078da8611f24575a367/rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12ed005216a51b1d6e2b02a7bd31885fe317e45897de81d86dcce7d74618ffff", size = 387688, upload-time = "2025-08-27T12:14:27.537Z" }, - { url = "https://files.pythonhosted.org/packages/7c/92/cf786a15320e173f945d205ab31585cc43969743bb1a48b6888f7a2b0a2d/rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:ee4308f409a40e50593c7e3bb8cbe0b4d4c66d1674a316324f0c2f5383b486f9", size = 407225, upload-time = "2025-08-27T12:14:28.981Z" }, - { url = "https://files.pythonhosted.org/packages/33/5c/85ee16df5b65063ef26017bef33096557a4c83fbe56218ac7cd8c235f16d/rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0b08d152555acf1f455154d498ca855618c1378ec810646fcd7c76416ac6dc60", size = 423361, upload-time = "2025-08-27T12:14:30.469Z" }, - { url = "https://files.pythonhosted.org/packages/4b/8e/1c2741307fcabd1a334ecf008e92c4f47bb6f848712cf15c923becfe82bb/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:dce51c828941973a5684d458214d3a36fcd28da3e1875d659388f4f9f12cc33e", size = 562493, upload-time = "2025-08-27T12:14:31.987Z" }, - { url = "https://files.pythonhosted.org/packages/04/03/5159321baae9b2222442a70c1f988cbbd66b9be0675dd3936461269be360/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:c1476d6f29eb81aa4151c9a31219b03f1f798dc43d8af1250a870735516a1212", size = 592623, upload-time = "2025-08-27T12:14:33.543Z" }, - { url = "https://files.pythonhosted.org/packages/ff/39/c09fd1ad28b85bc1d4554a8710233c9f4cefd03d7717a1b8fbfd171d1167/rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:3ce0cac322b0d69b63c9cdb895ee1b65805ec9ffad37639f291dd79467bee675", size = 558800, upload-time = "2025-08-27T12:14:35.436Z" }, - { url = "https://files.pythonhosted.org/packages/c5/d6/99228e6bbcf4baa764b18258f519a9035131d91b538d4e0e294313462a98/rpds_py-0.27.1-cp314-cp314-win32.whl", hash = "sha256:dfbfac137d2a3d0725758cd141f878bf4329ba25e34979797c89474a89a8a3a3", size = 221943, upload-time = "2025-08-27T12:14:36.898Z" }, - { url = "https://files.pythonhosted.org/packages/be/07/c802bc6b8e95be83b79bdf23d1aa61d68324cb1006e245d6c58e959e314d/rpds_py-0.27.1-cp314-cp314-win_amd64.whl", hash = "sha256:a6e57b0abfe7cc513450fcf529eb486b6e4d3f8aee83e92eb5f1ef848218d456", size = 233739, upload-time = "2025-08-27T12:14:38.386Z" }, - { url = "https://files.pythonhosted.org/packages/c8/89/3e1b1c16d4c2d547c5717377a8df99aee8099ff050f87c45cb4d5fa70891/rpds_py-0.27.1-cp314-cp314-win_arm64.whl", hash = "sha256:faf8d146f3d476abfee026c4ae3bdd9ca14236ae4e4c310cbd1cf75ba33d24a3", size = 223120, upload-time = "2025-08-27T12:14:39.82Z" }, - { url = "https://files.pythonhosted.org/packages/62/7e/dc7931dc2fa4a6e46b2a4fa744a9fe5c548efd70e0ba74f40b39fa4a8c10/rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:ba81d2b56b6d4911ce735aad0a1d4495e808b8ee4dc58715998741a26874e7c2", size = 358944, upload-time = "2025-08-27T12:14:41.199Z" }, - { url = "https://files.pythonhosted.org/packages/e6/22/4af76ac4e9f336bfb1a5f240d18a33c6b2fcaadb7472ac7680576512b49a/rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:84f7d509870098de0e864cad0102711c1e24e9b1a50ee713b65928adb22269e4", size = 342283, upload-time = "2025-08-27T12:14:42.699Z" }, - { url = "https://files.pythonhosted.org/packages/1c/15/2a7c619b3c2272ea9feb9ade67a45c40b3eeb500d503ad4c28c395dc51b4/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a9e960fc78fecd1100539f14132425e1d5fe44ecb9239f8f27f079962021523e", size = 380320, upload-time = "2025-08-27T12:14:44.157Z" }, - { url = "https://files.pythonhosted.org/packages/a2/7d/4c6d243ba4a3057e994bb5bedd01b5c963c12fe38dde707a52acdb3849e7/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:62f85b665cedab1a503747617393573995dac4600ff51869d69ad2f39eb5e817", size = 391760, upload-time = "2025-08-27T12:14:45.845Z" }, - { url = "https://files.pythonhosted.org/packages/b4/71/b19401a909b83bcd67f90221330bc1ef11bc486fe4e04c24388d28a618ae/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fed467af29776f6556250c9ed85ea5a4dd121ab56a5f8b206e3e7a4c551e48ec", size = 522476, upload-time = "2025-08-27T12:14:47.364Z" }, - { url = "https://files.pythonhosted.org/packages/e4/44/1a3b9715c0455d2e2f0f6df5ee6d6f5afdc423d0773a8a682ed2b43c566c/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2729615f9d430af0ae6b36cf042cb55c0936408d543fb691e1a9e36648fd35a", size = 403418, upload-time = "2025-08-27T12:14:49.991Z" }, - { url = "https://files.pythonhosted.org/packages/1c/4b/fb6c4f14984eb56673bc868a66536f53417ddb13ed44b391998100a06a96/rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b207d881a9aef7ba753d69c123a35d96ca7cb808056998f6b9e8747321f03b8", size = 384771, upload-time = "2025-08-27T12:14:52.159Z" }, - { url = "https://files.pythonhosted.org/packages/c0/56/d5265d2d28b7420d7b4d4d85cad8ef891760f5135102e60d5c970b976e41/rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:639fd5efec029f99b79ae47e5d7e00ad8a773da899b6309f6786ecaf22948c48", size = 400022, upload-time = "2025-08-27T12:14:53.859Z" }, - { url = "https://files.pythonhosted.org/packages/8f/e9/9f5fc70164a569bdd6ed9046486c3568d6926e3a49bdefeeccfb18655875/rpds_py-0.27.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fecc80cb2a90e28af8a9b366edacf33d7a91cbfe4c2c4544ea1246e949cfebeb", size = 416787, upload-time = "2025-08-27T12:14:55.673Z" }, - { url = "https://files.pythonhosted.org/packages/d4/64/56dd03430ba491db943a81dcdef115a985aac5f44f565cd39a00c766d45c/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:42a89282d711711d0a62d6f57d81aa43a1368686c45bc1c46b7f079d55692734", size = 557538, upload-time = "2025-08-27T12:14:57.245Z" }, - { url = "https://files.pythonhosted.org/packages/3f/36/92cc885a3129993b1d963a2a42ecf64e6a8e129d2c7cc980dbeba84e55fb/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:cf9931f14223de59551ab9d38ed18d92f14f055a5f78c1d8ad6493f735021bbb", size = 588512, upload-time = "2025-08-27T12:14:58.728Z" }, - { url = "https://files.pythonhosted.org/packages/dd/10/6b283707780a81919f71625351182b4f98932ac89a09023cb61865136244/rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f39f58a27cc6e59f432b568ed8429c7e1641324fbe38131de852cd77b2d534b0", size = 555813, upload-time = "2025-08-27T12:15:00.334Z" }, - { url = "https://files.pythonhosted.org/packages/04/2e/30b5ea18c01379da6272a92825dd7e53dc9d15c88a19e97932d35d430ef7/rpds_py-0.27.1-cp314-cp314t-win32.whl", hash = "sha256:d5fa0ee122dc09e23607a28e6d7b150da16c662e66409bbe85230e4c85bb528a", size = 217385, upload-time = "2025-08-27T12:15:01.937Z" }, - { url = "https://files.pythonhosted.org/packages/32/7d/97119da51cb1dd3f2f3c0805f155a3aa4a95fa44fe7d78ae15e69edf4f34/rpds_py-0.27.1-cp314-cp314t-win_amd64.whl", hash = "sha256:6567d2bb951e21232c2f660c24cf3470bb96de56cdcb3f071a83feeaff8a2772", size = 230097, upload-time = "2025-08-27T12:15:03.961Z" }, - { url = "https://files.pythonhosted.org/packages/7f/6c/252e83e1ce7583c81f26d1d884b2074d40a13977e1b6c9c50bbf9a7f1f5a/rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c918c65ec2e42c2a78d19f18c553d77319119bf43aa9e2edf7fb78d624355527", size = 372140, upload-time = "2025-08-27T12:15:05.441Z" }, - { url = "https://files.pythonhosted.org/packages/9d/71/949c195d927c5aeb0d0629d329a20de43a64c423a6aa53836290609ef7ec/rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1fea2b1a922c47c51fd07d656324531adc787e415c8b116530a1d29c0516c62d", size = 354086, upload-time = "2025-08-27T12:15:07.404Z" }, - { url = "https://files.pythonhosted.org/packages/9f/02/e43e332ad8ce4f6c4342d151a471a7f2900ed1d76901da62eb3762663a71/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbf94c58e8e0cd6b6f38d8de67acae41b3a515c26169366ab58bdca4a6883bb8", size = 382117, upload-time = "2025-08-27T12:15:09.275Z" }, - { url = "https://files.pythonhosted.org/packages/d0/05/b0fdeb5b577197ad72812bbdfb72f9a08fa1e64539cc3940b1b781cd3596/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c2a8fed130ce946d5c585eddc7c8eeef0051f58ac80a8ee43bd17835c144c2cc", size = 394520, upload-time = "2025-08-27T12:15:10.727Z" }, - { url = "https://files.pythonhosted.org/packages/67/1f/4cfef98b2349a7585181e99294fa2a13f0af06902048a5d70f431a66d0b9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:037a2361db72ee98d829bc2c5b7cc55598ae0a5e0ec1823a56ea99374cfd73c1", size = 522657, upload-time = "2025-08-27T12:15:12.613Z" }, - { url = "https://files.pythonhosted.org/packages/44/55/ccf37ddc4c6dce7437b335088b5ca18da864b334890e2fe9aa6ddc3f79a9/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5281ed1cc1d49882f9997981c88df1a22e140ab41df19071222f7e5fc4e72125", size = 402967, upload-time = "2025-08-27T12:15:14.113Z" }, - { url = "https://files.pythonhosted.org/packages/74/e5/5903f92e41e293b07707d5bf00ef39a0eb2af7190aff4beaf581a6591510/rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fd50659a069c15eef8aa3d64bbef0d69fd27bb4a50c9ab4f17f83a16cbf8905", size = 384372, upload-time = "2025-08-27T12:15:15.842Z" }, - { url = "https://files.pythonhosted.org/packages/8f/e3/fbb409e18aeefc01e49f5922ac63d2d914328430e295c12183ce56ebf76b/rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl", hash = "sha256:c4b676c4ae3921649a15d28ed10025548e9b561ded473aa413af749503c6737e", size = 401264, upload-time = "2025-08-27T12:15:17.388Z" }, - { url = "https://files.pythonhosted.org/packages/55/79/529ad07794e05cb0f38e2f965fc5bb20853d523976719400acecc447ec9d/rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:079bc583a26db831a985c5257797b2b5d3affb0386e7ff886256762f82113b5e", size = 418691, upload-time = "2025-08-27T12:15:19.144Z" }, - { url = "https://files.pythonhosted.org/packages/33/39/6554a7fd6d9906fda2521c6d52f5d723dca123529fb719a5b5e074c15e01/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4e44099bd522cba71a2c6b97f68e19f40e7d85399de899d66cdb67b32d7cb786", size = 558989, upload-time = "2025-08-27T12:15:21.087Z" }, - { url = "https://files.pythonhosted.org/packages/19/b2/76fa15173b6f9f445e5ef15120871b945fb8dd9044b6b8c7abe87e938416/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:e202e6d4188e53c6661af813b46c37ca2c45e497fc558bacc1a7630ec2695aec", size = 589835, upload-time = "2025-08-27T12:15:22.696Z" }, - { url = "https://files.pythonhosted.org/packages/ee/9e/5560a4b39bab780405bed8a88ee85b30178061d189558a86003548dea045/rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f41f814b8eaa48768d1bb551591f6ba45f87ac76899453e8ccd41dba1289b04b", size = 555227, upload-time = "2025-08-27T12:15:24.278Z" }, - { url = "https://files.pythonhosted.org/packages/52/d7/cd9c36215111aa65724c132bf709c6f35175973e90b32115dedc4ced09cb/rpds_py-0.27.1-cp39-cp39-win32.whl", hash = "sha256:9e71f5a087ead99563c11fdaceee83ee982fd39cf67601f4fd66cb386336ee52", size = 217899, upload-time = "2025-08-27T12:15:25.926Z" }, - { url = "https://files.pythonhosted.org/packages/5b/e0/d75ab7b4dd8ba777f6b365adbdfc7614bbfe7c5f05703031dfa4b61c3d6c/rpds_py-0.27.1-cp39-cp39-win_amd64.whl", hash = "sha256:71108900c9c3c8590697244b9519017a400d9ba26a36c48381b3f64743a44aab", size = 228725, upload-time = "2025-08-27T12:15:27.398Z" }, - { url = "https://files.pythonhosted.org/packages/d5/63/b7cc415c345625d5e62f694ea356c58fb964861409008118f1245f8c3347/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7ba22cb9693df986033b91ae1d7a979bc399237d45fccf875b76f62bb9e52ddf", size = 371360, upload-time = "2025-08-27T12:15:29.218Z" }, - { url = "https://files.pythonhosted.org/packages/e5/8c/12e1b24b560cf378b8ffbdb9dc73abd529e1adcfcf82727dfd29c4a7b88d/rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b640501be9288c77738b5492b3fd3abc4ba95c50c2e41273c8a1459f08298d3", size = 353933, upload-time = "2025-08-27T12:15:30.837Z" }, - { url = "https://files.pythonhosted.org/packages/9b/85/1bb2210c1f7a1b99e91fea486b9f0f894aa5da3a5ec7097cbad7dec6d40f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb08b65b93e0c6dd70aac7f7890a9c0938d5ec71d5cb32d45cf844fb8ae47636", size = 382962, upload-time = "2025-08-27T12:15:32.348Z" }, - { url = "https://files.pythonhosted.org/packages/cc/c9/a839b9f219cf80ed65f27a7f5ddbb2809c1b85c966020ae2dff490e0b18e/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d7ff07d696a7a38152ebdb8212ca9e5baab56656749f3d6004b34ab726b550b8", size = 394412, upload-time = "2025-08-27T12:15:33.839Z" }, - { url = "https://files.pythonhosted.org/packages/02/2d/b1d7f928b0b1f4fc2e0133e8051d199b01d7384875adc63b6ddadf3de7e5/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fb7c72262deae25366e3b6c0c0ba46007967aea15d1eea746e44ddba8ec58dcc", size = 523972, upload-time = "2025-08-27T12:15:35.377Z" }, - { url = "https://files.pythonhosted.org/packages/a9/af/2cbf56edd2d07716df1aec8a726b3159deb47cb5c27e1e42b71d705a7c2f/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b002cab05d6339716b03a4a3a2ce26737f6231d7b523f339fa061d53368c9d8", size = 403273, upload-time = "2025-08-27T12:15:37.051Z" }, - { url = "https://files.pythonhosted.org/packages/c0/93/425e32200158d44ff01da5d9612c3b6711fe69f606f06e3895511f17473b/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23f6b69d1c26c4704fec01311963a41d7de3ee0570a84ebde4d544e5a1859ffc", size = 385278, upload-time = "2025-08-27T12:15:38.571Z" }, - { url = "https://files.pythonhosted.org/packages/eb/1a/1a04a915ecd0551bfa9e77b7672d1937b4b72a0fc204a17deef76001cfb2/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:530064db9146b247351f2a0250b8f00b289accea4596a033e94be2389977de71", size = 402084, upload-time = "2025-08-27T12:15:40.529Z" }, - { url = "https://files.pythonhosted.org/packages/51/f7/66585c0fe5714368b62951d2513b684e5215beaceab2c6629549ddb15036/rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7b90b0496570bd6b0321724a330d8b545827c4df2034b6ddfc5f5275f55da2ad", size = 419041, upload-time = "2025-08-27T12:15:42.191Z" }, - { url = "https://files.pythonhosted.org/packages/8e/7e/83a508f6b8e219bba2d4af077c35ba0e0cdd35a751a3be6a7cba5a55ad71/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879b0e14a2da6a1102a3fc8af580fc1ead37e6d6692a781bd8c83da37429b5ab", size = 560084, upload-time = "2025-08-27T12:15:43.839Z" }, - { url = "https://files.pythonhosted.org/packages/66/66/bb945683b958a1b19eb0fe715594630d0f36396ebdef4d9b89c2fa09aa56/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:0d807710df3b5faa66c731afa162ea29717ab3be17bdc15f90f2d9f183da4059", size = 590115, upload-time = "2025-08-27T12:15:46.647Z" }, - { url = "https://files.pythonhosted.org/packages/12/00/ccfaafaf7db7e7adace915e5c2f2c2410e16402561801e9c7f96683002d3/rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3adc388fc3afb6540aec081fa59e6e0d3908722771aa1e37ffe22b220a436f0b", size = 556561, upload-time = "2025-08-27T12:15:48.219Z" }, - { url = "https://files.pythonhosted.org/packages/e1/b7/92b6ed9aad103bfe1c45df98453dfae40969eef2cb6c6239c58d7e96f1b3/rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c796c0c1cc68cb08b0284db4229f5af76168172670c74908fdbd4b7d7f515819", size = 229125, upload-time = "2025-08-27T12:15:49.956Z" }, - { url = "https://files.pythonhosted.org/packages/0c/ed/e1fba02de17f4f76318b834425257c8ea297e415e12c68b4361f63e8ae92/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:cdfe4bb2f9fe7458b7453ad3c33e726d6d1c7c0a72960bcc23800d77384e42df", size = 371402, upload-time = "2025-08-27T12:15:51.561Z" }, - { url = "https://files.pythonhosted.org/packages/af/7c/e16b959b316048b55585a697e94add55a4ae0d984434d279ea83442e460d/rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:8fabb8fd848a5f75a2324e4a84501ee3a5e3c78d8603f83475441866e60b94a3", size = 354084, upload-time = "2025-08-27T12:15:53.219Z" }, - { url = "https://files.pythonhosted.org/packages/de/c1/ade645f55de76799fdd08682d51ae6724cb46f318573f18be49b1e040428/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eda8719d598f2f7f3e0f885cba8646644b55a187762bec091fa14a2b819746a9", size = 383090, upload-time = "2025-08-27T12:15:55.158Z" }, - { url = "https://files.pythonhosted.org/packages/1f/27/89070ca9b856e52960da1472efcb6c20ba27cfe902f4f23ed095b9cfc61d/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3c64d07e95606ec402a0a1c511fe003873fa6af630bda59bac77fac8b4318ebc", size = 394519, upload-time = "2025-08-27T12:15:57.238Z" }, - { url = "https://files.pythonhosted.org/packages/b3/28/be120586874ef906aa5aeeae95ae8df4184bc757e5b6bd1c729ccff45ed5/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93a2ed40de81bcff59aabebb626562d48332f3d028ca2036f1d23cbb52750be4", size = 523817, upload-time = "2025-08-27T12:15:59.237Z" }, - { url = "https://files.pythonhosted.org/packages/a8/ef/70cc197bc11cfcde02a86f36ac1eed15c56667c2ebddbdb76a47e90306da/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:387ce8c44ae94e0ec50532d9cb0edce17311024c9794eb196b90e1058aadeb66", size = 403240, upload-time = "2025-08-27T12:16:00.923Z" }, - { url = "https://files.pythonhosted.org/packages/cf/35/46936cca449f7f518f2f4996e0e8344db4b57e2081e752441154089d2a5f/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aaf94f812c95b5e60ebaf8bfb1898a7d7cb9c1af5744d4a67fa47796e0465d4e", size = 385194, upload-time = "2025-08-27T12:16:02.802Z" }, - { url = "https://files.pythonhosted.org/packages/e1/62/29c0d3e5125c3270b51415af7cbff1ec587379c84f55a5761cc9efa8cd06/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:4848ca84d6ded9b58e474dfdbad4b8bfb450344c0551ddc8d958bf4b36aa837c", size = 402086, upload-time = "2025-08-27T12:16:04.806Z" }, - { url = "https://files.pythonhosted.org/packages/8f/66/03e1087679227785474466fdd04157fb793b3b76e3fcf01cbf4c693c1949/rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2bde09cbcf2248b73c7c323be49b280180ff39fadcfe04e7b6f54a678d02a7cf", size = 419272, upload-time = "2025-08-27T12:16:06.471Z" }, - { url = "https://files.pythonhosted.org/packages/6a/24/e3e72d265121e00b063aef3e3501e5b2473cf1b23511d56e529531acf01e/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:94c44ee01fd21c9058f124d2d4f0c9dc7634bec93cd4b38eefc385dabe71acbf", size = 560003, upload-time = "2025-08-27T12:16:08.06Z" }, - { url = "https://files.pythonhosted.org/packages/26/ca/f5a344c534214cc2d41118c0699fffbdc2c1bc7046f2a2b9609765ab9c92/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:df8b74962e35c9249425d90144e721eed198e6555a0e22a563d29fe4486b51f6", size = 590482, upload-time = "2025-08-27T12:16:10.137Z" }, - { url = "https://files.pythonhosted.org/packages/ce/08/4349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f/rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:dc23e6820e3b40847e2f4a7726462ba0cf53089512abe9ee16318c366494c17a", size = 556523, upload-time = "2025-08-27T12:16:12.188Z" }, - { url = "https://files.pythonhosted.org/packages/4e/ea/5463cd5048a7a2fcdae308b6e96432802132c141bfb9420260142632a0f1/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:aa8933159edc50be265ed22b401125c9eebff3171f570258854dbce3ecd55475", size = 371778, upload-time = "2025-08-27T12:16:13.851Z" }, - { url = "https://files.pythonhosted.org/packages/0d/c8/f38c099db07f5114029c1467649d308543906933eebbc226d4527a5f4693/rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a50431bf02583e21bf273c71b89d710e7a710ad5e39c725b14e685610555926f", size = 354394, upload-time = "2025-08-27T12:16:15.609Z" }, - { url = "https://files.pythonhosted.org/packages/7d/79/b76f97704d9dd8ddbd76fed4c4048153a847c5d6003afe20a6b5c3339065/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78af06ddc7fe5cc0e967085a9115accee665fb912c22a3f54bad70cc65b05fe6", size = 382348, upload-time = "2025-08-27T12:16:17.251Z" }, - { url = "https://files.pythonhosted.org/packages/8a/3f/ef23d3c1be1b837b648a3016d5bbe7cfe711422ad110b4081c0a90ef5a53/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:70d0738ef8fee13c003b100c2fbd667ec4f133468109b3472d249231108283a3", size = 394159, upload-time = "2025-08-27T12:16:19.251Z" }, - { url = "https://files.pythonhosted.org/packages/74/8a/9e62693af1a34fd28b1a190d463d12407bd7cf561748cb4745845d9548d3/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e2f6fd8a1cea5bbe599b6e78a6e5ee08db434fc8ffea51ff201c8765679698b3", size = 522775, upload-time = "2025-08-27T12:16:20.929Z" }, - { url = "https://files.pythonhosted.org/packages/36/0d/8d5bb122bf7a60976b54c5c99a739a3819f49f02d69df3ea2ca2aff47d5c/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8177002868d1426305bb5de1e138161c2ec9eb2d939be38291d7c431c4712df8", size = 402633, upload-time = "2025-08-27T12:16:22.548Z" }, - { url = "https://files.pythonhosted.org/packages/0f/0e/237948c1f425e23e0cf5a566d702652a6e55c6f8fbd332a1792eb7043daf/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:008b839781d6c9bf3b6a8984d1d8e56f0ec46dc56df61fd669c49b58ae800400", size = 384867, upload-time = "2025-08-27T12:16:24.29Z" }, - { url = "https://files.pythonhosted.org/packages/d6/0a/da0813efcd998d260cbe876d97f55b0f469ada8ba9cbc47490a132554540/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl", hash = "sha256:a55b9132bb1ade6c734ddd2759c8dc132aa63687d259e725221f106b83a0e485", size = 401791, upload-time = "2025-08-27T12:16:25.954Z" }, - { url = "https://files.pythonhosted.org/packages/51/78/c6c9e8a8aaca416a6f0d1b6b4a6ee35b88fe2c5401d02235d0a056eceed2/rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a46fdec0083a26415f11d5f236b79fa1291c32aaa4a17684d82f7017a1f818b1", size = 419525, upload-time = "2025-08-27T12:16:27.659Z" }, - { url = "https://files.pythonhosted.org/packages/a3/69/5af37e1d71487cf6d56dd1420dc7e0c2732c1b6ff612aa7a88374061c0a8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8a63b640a7845f2bdd232eb0d0a4a2dd939bcdd6c57e6bb134526487f3160ec5", size = 559255, upload-time = "2025-08-27T12:16:29.343Z" }, - { url = "https://files.pythonhosted.org/packages/40/7f/8b7b136069ef7ac3960eda25d832639bdb163018a34c960ed042dd1707c8/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:7e32721e5d4922deaaf963469d795d5bde6093207c52fec719bd22e5d1bedbc4", size = 590384, upload-time = "2025-08-27T12:16:31.005Z" }, - { url = "https://files.pythonhosted.org/packages/d8/06/c316d3f6ff03f43ccb0eba7de61376f8ec4ea850067dddfafe98274ae13c/rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2c426b99a068601b5f4623573df7a7c3d72e87533a2dd2253353a03e7502566c", size = 555959, upload-time = "2025-08-27T12:16:32.73Z" }, - { url = "https://files.pythonhosted.org/packages/60/94/384cf54c430b9dac742bbd2ec26c23feb78ded0d43d6d78563a281aec017/rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4fc9b7fe29478824361ead6e14e4f5aed570d477e06088826537e202d25fe859", size = 228784, upload-time = "2025-08-27T12:16:34.428Z" }, -] - [[package]] name = "rpds-py" version = "0.30.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] sdist = { url = "https://files.pythonhosted.org/packages/20/af/3f2f423103f1113b36230496629986e0ef7e199d2aa8392452b484b38ced/rpds_py-0.30.0.tar.gz", hash = "sha256:dd8ff7cf90014af0c0f787eea34794ebf6415242ee1d6fa91eaba725cc441e84", size = 69469, upload-time = "2025-11-30T20:24:38.837Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/06/0c/0c411a0ec64ccb6d104dcabe0e713e05e153a9a2c3c2bd2b32ce412166fe/rpds_py-0.30.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:679ae98e00c0e8d68a7fda324e16b90fd5260945b45d3b824c892cec9eea3288", size = 370490, upload-time = "2025-11-30T20:21:33.256Z" }, @@ -6004,64 +4332,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ed/ba/590e067e6b09acad431bbcd1d79717ab5878456d9d7c6500bd4fd52a8eb1/s5cmd-0.3.3-py3-none-win_arm64.whl", hash = "sha256:2b2c1eabd1a7e96ea7b5907aa0494acb1efe31335b3d02b4d15a86d2e813abf7", size = 4595065, upload-time = "2025-09-09T02:22:16.898Z" }, ] -[[package]] -name = "scikit-learn" -version = "1.6.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "joblib", marker = "python_full_version < '3.10'" }, - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "scipy", version = "1.13.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "threadpoolctl", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9e/a5/4ae3b3a0755f7b35a280ac90b28817d1f380318973cff14075ab41ef50d9/scikit_learn-1.6.1.tar.gz", hash = "sha256:b4fc2525eca2c69a59260f583c56a7557c6ccdf8deafdba6e060f94c1c59738e", size = 7068312, upload-time = "2025-01-10T08:07:55.348Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2e/3a/f4597eb41049110b21ebcbb0bcb43e4035017545daa5eedcfeb45c08b9c5/scikit_learn-1.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d056391530ccd1e501056160e3c9673b4da4805eb67eb2bdf4e983e1f9c9204e", size = 12067702, upload-time = "2025-01-10T08:05:56.515Z" }, - { url = "https://files.pythonhosted.org/packages/37/19/0423e5e1fd1c6ec5be2352ba05a537a473c1677f8188b9306097d684b327/scikit_learn-1.6.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:0c8d036eb937dbb568c6242fa598d551d88fb4399c0344d95c001980ec1c7d36", size = 11112765, upload-time = "2025-01-10T08:06:00.272Z" }, - { url = "https://files.pythonhosted.org/packages/70/95/d5cb2297a835b0f5fc9a77042b0a2d029866379091ab8b3f52cc62277808/scikit_learn-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8634c4bd21a2a813e0a7e3900464e6d593162a29dd35d25bdf0103b3fce60ed5", size = 12643991, upload-time = "2025-01-10T08:06:04.813Z" }, - { url = "https://files.pythonhosted.org/packages/b7/91/ab3c697188f224d658969f678be86b0968ccc52774c8ab4a86a07be13c25/scikit_learn-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:775da975a471c4f6f467725dff0ced5c7ac7bda5e9316b260225b48475279a1b", size = 13497182, upload-time = "2025-01-10T08:06:08.42Z" }, - { url = "https://files.pythonhosted.org/packages/17/04/d5d556b6c88886c092cc989433b2bab62488e0f0dafe616a1d5c9cb0efb1/scikit_learn-1.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:8a600c31592bd7dab31e1c61b9bbd6dea1b3433e67d264d17ce1017dbdce8002", size = 11125517, upload-time = "2025-01-10T08:06:12.783Z" }, - { url = "https://files.pythonhosted.org/packages/6c/2a/e291c29670795406a824567d1dfc91db7b699799a002fdaa452bceea8f6e/scikit_learn-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72abc587c75234935e97d09aa4913a82f7b03ee0b74111dcc2881cba3c5a7b33", size = 12102620, upload-time = "2025-01-10T08:06:16.675Z" }, - { url = "https://files.pythonhosted.org/packages/25/92/ee1d7a00bb6b8c55755d4984fd82608603a3cc59959245068ce32e7fb808/scikit_learn-1.6.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b3b00cdc8f1317b5f33191df1386c0befd16625f49d979fe77a8d44cae82410d", size = 11116234, upload-time = "2025-01-10T08:06:21.83Z" }, - { url = "https://files.pythonhosted.org/packages/30/cd/ed4399485ef364bb25f388ab438e3724e60dc218c547a407b6e90ccccaef/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc4765af3386811c3ca21638f63b9cf5ecf66261cc4815c1db3f1e7dc7b79db2", size = 12592155, upload-time = "2025-01-10T08:06:27.309Z" }, - { url = "https://files.pythonhosted.org/packages/a8/f3/62fc9a5a659bb58a03cdd7e258956a5824bdc9b4bb3c5d932f55880be569/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25fc636bdaf1cc2f4a124a116312d837148b5e10872147bdaf4887926b8c03d8", size = 13497069, upload-time = "2025-01-10T08:06:32.515Z" }, - { url = "https://files.pythonhosted.org/packages/a1/a6/c5b78606743a1f28eae8f11973de6613a5ee87366796583fb74c67d54939/scikit_learn-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:fa909b1a36e000a03c382aade0bd2063fd5680ff8b8e501660c0f59f021a6415", size = 11139809, upload-time = "2025-01-10T08:06:35.514Z" }, - { url = "https://files.pythonhosted.org/packages/0a/18/c797c9b8c10380d05616db3bfb48e2a3358c767affd0857d56c2eb501caa/scikit_learn-1.6.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:926f207c804104677af4857b2c609940b743d04c4c35ce0ddc8ff4f053cddc1b", size = 12104516, upload-time = "2025-01-10T08:06:40.009Z" }, - { url = "https://files.pythonhosted.org/packages/c4/b7/2e35f8e289ab70108f8cbb2e7a2208f0575dc704749721286519dcf35f6f/scikit_learn-1.6.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2c2cae262064e6a9b77eee1c8e768fc46aa0b8338c6a8297b9b6759720ec0ff2", size = 11167837, upload-time = "2025-01-10T08:06:43.305Z" }, - { url = "https://files.pythonhosted.org/packages/a4/f6/ff7beaeb644bcad72bcfd5a03ff36d32ee4e53a8b29a639f11bcb65d06cd/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1061b7c028a8663fb9a1a1baf9317b64a257fcb036dae5c8752b2abef31d136f", size = 12253728, upload-time = "2025-01-10T08:06:47.618Z" }, - { url = "https://files.pythonhosted.org/packages/29/7a/8bce8968883e9465de20be15542f4c7e221952441727c4dad24d534c6d99/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e69fab4ebfc9c9b580a7a80111b43d214ab06250f8a7ef590a4edf72464dd86", size = 13147700, upload-time = "2025-01-10T08:06:50.888Z" }, - { url = "https://files.pythonhosted.org/packages/62/27/585859e72e117fe861c2079bcba35591a84f801e21bc1ab85bce6ce60305/scikit_learn-1.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:70b1d7e85b1c96383f872a519b3375f92f14731e279a7b4c6cfd650cf5dffc52", size = 11110613, upload-time = "2025-01-10T08:06:54.115Z" }, - { url = "https://files.pythonhosted.org/packages/2e/59/8eb1872ca87009bdcdb7f3cdc679ad557b992c12f4b61f9250659e592c63/scikit_learn-1.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2ffa1e9e25b3d93990e74a4be2c2fc61ee5af85811562f1288d5d055880c4322", size = 12010001, upload-time = "2025-01-10T08:06:58.613Z" }, - { url = "https://files.pythonhosted.org/packages/9d/05/f2fc4effc5b32e525408524c982c468c29d22f828834f0625c5ef3d601be/scikit_learn-1.6.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:dc5cf3d68c5a20ad6d571584c0750ec641cc46aeef1c1507be51300e6003a7e1", size = 11096360, upload-time = "2025-01-10T08:07:01.556Z" }, - { url = "https://files.pythonhosted.org/packages/c8/e4/4195d52cf4f113573fb8ebc44ed5a81bd511a92c0228889125fac2f4c3d1/scikit_learn-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c06beb2e839ecc641366000ca84f3cf6fa9faa1777e29cf0c04be6e4d096a348", size = 12209004, upload-time = "2025-01-10T08:07:06.931Z" }, - { url = "https://files.pythonhosted.org/packages/94/be/47e16cdd1e7fcf97d95b3cb08bde1abb13e627861af427a3651fcb80b517/scikit_learn-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8ca8cb270fee8f1f76fa9bfd5c3507d60c6438bbee5687f81042e2bb98e5a97", size = 13171776, upload-time = "2025-01-10T08:07:11.715Z" }, - { url = "https://files.pythonhosted.org/packages/34/b0/ca92b90859070a1487827dbc672f998da95ce83edce1270fc23f96f1f61a/scikit_learn-1.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:7a1c43c8ec9fde528d664d947dc4c0789be4077a3647f232869f41d9bf50e0fb", size = 11071865, upload-time = "2025-01-10T08:07:16.088Z" }, - { url = "https://files.pythonhosted.org/packages/12/ae/993b0fb24a356e71e9a894e42b8a9eec528d4c70217353a1cd7a48bc25d4/scikit_learn-1.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a17c1dea1d56dcda2fac315712f3651a1fea86565b64b48fa1bc090249cbf236", size = 11955804, upload-time = "2025-01-10T08:07:20.385Z" }, - { url = "https://files.pythonhosted.org/packages/d6/54/32fa2ee591af44507eac86406fa6bba968d1eb22831494470d0a2e4a1eb1/scikit_learn-1.6.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:6a7aa5f9908f0f28f4edaa6963c0a6183f1911e63a69aa03782f0d924c830a35", size = 11100530, upload-time = "2025-01-10T08:07:23.675Z" }, - { url = "https://files.pythonhosted.org/packages/3f/58/55856da1adec655bdce77b502e94a267bf40a8c0b89f8622837f89503b5a/scikit_learn-1.6.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0650e730afb87402baa88afbf31c07b84c98272622aaba002559b614600ca691", size = 12433852, upload-time = "2025-01-10T08:07:26.817Z" }, - { url = "https://files.pythonhosted.org/packages/ff/4f/c83853af13901a574f8f13b645467285a48940f185b690936bb700a50863/scikit_learn-1.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:3f59fe08dc03ea158605170eb52b22a105f238a5d512c4470ddeca71feae8e5f", size = 11337256, upload-time = "2025-01-10T08:07:31.084Z" }, - { url = "https://files.pythonhosted.org/packages/d2/37/b305b759cc65829fe1b8853ff3e308b12cdd9d8884aa27840835560f2b42/scikit_learn-1.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6849dd3234e87f55dce1db34c89a810b489ead832aaf4d4550b7ea85628be6c1", size = 12101868, upload-time = "2025-01-10T08:07:34.189Z" }, - { url = "https://files.pythonhosted.org/packages/83/74/f64379a4ed5879d9db744fe37cfe1978c07c66684d2439c3060d19a536d8/scikit_learn-1.6.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:e7be3fa5d2eb9be7d77c3734ff1d599151bb523674be9b834e8da6abe132f44e", size = 11144062, upload-time = "2025-01-10T08:07:37.67Z" }, - { url = "https://files.pythonhosted.org/packages/fd/dc/d5457e03dc9c971ce2b0d750e33148dd060fefb8b7dc71acd6054e4bb51b/scikit_learn-1.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44a17798172df1d3c1065e8fcf9019183f06c87609b49a124ebdf57ae6cb0107", size = 12693173, upload-time = "2025-01-10T08:07:42.713Z" }, - { url = "https://files.pythonhosted.org/packages/79/35/b1d2188967c3204c78fa79c9263668cf1b98060e8e58d1a730fe5b2317bb/scikit_learn-1.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8b7a3b86e411e4bce21186e1c180d792f3d99223dcfa3b4f597ecc92fa1a422", size = 13518605, upload-time = "2025-01-10T08:07:46.551Z" }, - { url = "https://files.pythonhosted.org/packages/fb/d8/8d603bdd26601f4b07e2363032b8565ab82eb857f93d86d0f7956fcf4523/scikit_learn-1.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:7a73d457070e3318e32bdb3aa79a8d990474f19035464dfd8bede2883ab5dc3b", size = 11155078, upload-time = "2025-01-10T08:07:51.376Z" }, -] - [[package]] name = "scikit-learn" version = "1.7.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "joblib", marker = "python_full_version == '3.10.*'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "threadpoolctl", marker = "python_full_version == '3.10.*'" }, + { name = "joblib", marker = "python_full_version < '3.11'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "threadpoolctl", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } wheels = [ @@ -6102,15 +4385,10 @@ name = "scikit-learn" version = "1.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "joblib", marker = "python_full_version >= '3.11'" }, @@ -6158,53 +4436,16 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/60/22/d7b2ebe4704a5e50790ba089d5c2ae308ab6bb852719e6c3bd4f04c3a363/scikit_learn-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f28dd15c6bb0b66ba09728cf09fd8736c304be29409bd8445a080c1280619e8c", size = 8002647, upload-time = "2025-12-10T07:08:51.601Z" }, ] -[[package]] -name = "scipy" -version = "1.13.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/00/48c2f661e2816ccf2ecd77982f6605b2950afe60f60a52b4cbbc2504aa8f/scipy-1.13.1.tar.gz", hash = "sha256:095a87a0312b08dfd6a6155cbbd310a8c51800fc931b8c0b84003014b874ed3c", size = 57210720, upload-time = "2024-05-23T03:29:26.079Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/33/59/41b2529908c002ade869623b87eecff3e11e3ce62e996d0bdcb536984187/scipy-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:20335853b85e9a49ff7572ab453794298bcf0354d8068c5f6775a0eabf350aca", size = 39328076, upload-time = "2024-05-23T03:19:01.687Z" }, - { url = "https://files.pythonhosted.org/packages/d5/33/f1307601f492f764062ce7dd471a14750f3360e33cd0f8c614dae208492c/scipy-1.13.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d605e9c23906d1994f55ace80e0125c587f96c020037ea6aa98d01b4bd2e222f", size = 30306232, upload-time = "2024-05-23T03:19:09.089Z" }, - { url = "https://files.pythonhosted.org/packages/c0/66/9cd4f501dd5ea03e4a4572ecd874936d0da296bd04d1c45ae1a4a75d9c3a/scipy-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cfa31f1def5c819b19ecc3a8b52d28ffdcc7ed52bb20c9a7589669dd3c250989", size = 33743202, upload-time = "2024-05-23T03:19:15.138Z" }, - { url = "https://files.pythonhosted.org/packages/a3/ba/7255e5dc82a65adbe83771c72f384d99c43063648456796436c9a5585ec3/scipy-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26264b282b9da0952a024ae34710c2aff7d27480ee91a2e82b7b7073c24722f", size = 38577335, upload-time = "2024-05-23T03:19:21.984Z" }, - { url = "https://files.pythonhosted.org/packages/49/a5/bb9ded8326e9f0cdfdc412eeda1054b914dfea952bda2097d174f8832cc0/scipy-1.13.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eccfa1906eacc02de42d70ef4aecea45415f5be17e72b61bafcfd329bdc52e94", size = 38820728, upload-time = "2024-05-23T03:19:28.225Z" }, - { url = "https://files.pythonhosted.org/packages/12/30/df7a8fcc08f9b4a83f5f27cfaaa7d43f9a2d2ad0b6562cced433e5b04e31/scipy-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:2831f0dc9c5ea9edd6e51e6e769b655f08ec6db6e2e10f86ef39bd32eb11da54", size = 46210588, upload-time = "2024-05-23T03:19:35.661Z" }, - { url = "https://files.pythonhosted.org/packages/b4/15/4a4bb1b15bbd2cd2786c4f46e76b871b28799b67891f23f455323a0cdcfb/scipy-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:27e52b09c0d3a1d5b63e1105f24177e544a222b43611aaf5bc44d4a0979e32f9", size = 39333805, upload-time = "2024-05-23T03:19:43.081Z" }, - { url = "https://files.pythonhosted.org/packages/ba/92/42476de1af309c27710004f5cdebc27bec62c204db42e05b23a302cb0c9a/scipy-1.13.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:54f430b00f0133e2224c3ba42b805bfd0086fe488835effa33fa291561932326", size = 30317687, upload-time = "2024-05-23T03:19:48.799Z" }, - { url = "https://files.pythonhosted.org/packages/80/ba/8be64fe225360a4beb6840f3cbee494c107c0887f33350d0a47d55400b01/scipy-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e89369d27f9e7b0884ae559a3a956e77c02114cc60a6058b4e5011572eea9299", size = 33694638, upload-time = "2024-05-23T03:19:55.104Z" }, - { url = "https://files.pythonhosted.org/packages/36/07/035d22ff9795129c5a847c64cb43c1fa9188826b59344fee28a3ab02e283/scipy-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a78b4b3345f1b6f68a763c6e25c0c9a23a9fd0f39f5f3d200efe8feda560a5fa", size = 38569931, upload-time = "2024-05-23T03:20:01.82Z" }, - { url = "https://files.pythonhosted.org/packages/d9/10/f9b43de37e5ed91facc0cfff31d45ed0104f359e4f9a68416cbf4e790241/scipy-1.13.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45484bee6d65633752c490404513b9ef02475b4284c4cfab0ef946def50b3f59", size = 38838145, upload-time = "2024-05-23T03:20:09.173Z" }, - { url = "https://files.pythonhosted.org/packages/4a/48/4513a1a5623a23e95f94abd675ed91cfb19989c58e9f6f7d03990f6caf3d/scipy-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:5713f62f781eebd8d597eb3f88b8bf9274e79eeabf63afb4a737abc6c84ad37b", size = 46196227, upload-time = "2024-05-23T03:20:16.433Z" }, - { url = "https://files.pythonhosted.org/packages/f2/7b/fb6b46fbee30fc7051913068758414f2721003a89dd9a707ad49174e3843/scipy-1.13.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5d72782f39716b2b3509cd7c33cdc08c96f2f4d2b06d51e52fb45a19ca0c86a1", size = 39357301, upload-time = "2024-05-23T03:20:23.538Z" }, - { url = "https://files.pythonhosted.org/packages/dc/5a/2043a3bde1443d94014aaa41e0b50c39d046dda8360abd3b2a1d3f79907d/scipy-1.13.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:017367484ce5498445aade74b1d5ab377acdc65e27095155e448c88497755a5d", size = 30363348, upload-time = "2024-05-23T03:20:29.885Z" }, - { url = "https://files.pythonhosted.org/packages/e7/cb/26e4a47364bbfdb3b7fb3363be6d8a1c543bcd70a7753ab397350f5f189a/scipy-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:949ae67db5fa78a86e8fa644b9a6b07252f449dcf74247108c50e1d20d2b4627", size = 33406062, upload-time = "2024-05-23T03:20:36.012Z" }, - { url = "https://files.pythonhosted.org/packages/88/ab/6ecdc526d509d33814835447bbbeedbebdec7cca46ef495a61b00a35b4bf/scipy-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de3ade0e53bc1f21358aa74ff4830235d716211d7d077e340c7349bc3542e884", size = 38218311, upload-time = "2024-05-23T03:20:42.086Z" }, - { url = "https://files.pythonhosted.org/packages/0b/00/9f54554f0f8318100a71515122d8f4f503b1a2c4b4cfab3b4b68c0eb08fa/scipy-1.13.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ac65fb503dad64218c228e2dc2d0a0193f7904747db43014645ae139c8fad16", size = 38442493, upload-time = "2024-05-23T03:20:48.292Z" }, - { url = "https://files.pythonhosted.org/packages/3e/df/963384e90733e08eac978cd103c34df181d1fec424de383cdc443f418dd4/scipy-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:cdd7dacfb95fea358916410ec61bbc20440f7860333aee6d882bb8046264e949", size = 45910955, upload-time = "2024-05-23T03:20:55.091Z" }, - { url = "https://files.pythonhosted.org/packages/7f/29/c2ea58c9731b9ecb30b6738113a95d147e83922986b34c685b8f6eefde21/scipy-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:436bbb42a94a8aeef855d755ce5a465479c721e9d684de76bf61a62e7c2b81d5", size = 39352927, upload-time = "2024-05-23T03:21:01.95Z" }, - { url = "https://files.pythonhosted.org/packages/5c/c0/e71b94b20ccf9effb38d7147c0064c08c622309fd487b1b677771a97d18c/scipy-1.13.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:8335549ebbca860c52bf3d02f80784e91a004b71b059e3eea9678ba994796a24", size = 30324538, upload-time = "2024-05-23T03:21:07.634Z" }, - { url = "https://files.pythonhosted.org/packages/6d/0f/aaa55b06d474817cea311e7b10aab2ea1fd5d43bc6a2861ccc9caec9f418/scipy-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d533654b7d221a6a97304ab63c41c96473ff04459e404b83275b60aa8f4b7004", size = 33732190, upload-time = "2024-05-23T03:21:14.41Z" }, - { url = "https://files.pythonhosted.org/packages/35/f5/d0ad1a96f80962ba65e2ce1de6a1e59edecd1f0a7b55990ed208848012e0/scipy-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:637e98dcf185ba7f8e663e122ebf908c4702420477ae52a04f9908707456ba4d", size = 38612244, upload-time = "2024-05-23T03:21:21.827Z" }, - { url = "https://files.pythonhosted.org/packages/8d/02/1165905f14962174e6569076bcc3315809ae1291ed14de6448cc151eedfd/scipy-1.13.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a014c2b3697bde71724244f63de2476925596c24285c7a637364761f8710891c", size = 38845637, upload-time = "2024-05-23T03:21:28.729Z" }, - { url = "https://files.pythonhosted.org/packages/3e/77/dab54fe647a08ee4253963bcd8f9cf17509c8ca64d6335141422fe2e2114/scipy-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:392e4ec766654852c25ebad4f64e4e584cf19820b980bc04960bca0b0cd6eaa2", size = 46227440, upload-time = "2024-05-23T03:21:35.888Z" }, -] - [[package]] name = "scipy" version = "1.15.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } wheels = [ @@ -6260,15 +4501,10 @@ name = "scipy" version = "1.17.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, @@ -6352,8 +4588,7 @@ version = "0.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "scooby" }, - { name = "uvicorn", version = "0.39.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "uvicorn", version = "0.41.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "uvicorn" }, { name = "werkzeug" }, ] sdist = { url = "https://files.pythonhosted.org/packages/de/67/738f229f73364615252fa208c82cb45a93b72e7d439bd75e0d85d4f5d74b/server_thread-0.3.0.tar.gz", hash = "sha256:d2b6219d452cf79fa527bf559c35e7acb59ce38660492a65a185fa5cfddae295", size = 6496, upload-time = "2025-01-20T18:52:32.972Z" } @@ -6370,68 +4605,12 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, ] -[[package]] -name = "shapely" -version = "2.0.7" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/21/c0/a911d1fd765d07a2b6769ce155219a281bfbe311584ebe97340d75c5bdb1/shapely-2.0.7.tar.gz", hash = "sha256:28fe2997aab9a9dc026dc6a355d04e85841546b2a5d232ed953e3321ab958ee5", size = 283413, upload-time = "2025-01-31T01:10:20.787Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/15/2e/02c694d6ddacd4f13b625722d313d2838f23c5b988cbc680132983f73ce3/shapely-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:33fb10e50b16113714ae40adccf7670379e9ccf5b7a41d0002046ba2b8f0f691", size = 1478310, upload-time = "2025-01-31T02:42:18.134Z" }, - { url = "https://files.pythonhosted.org/packages/87/69/b54a08bcd25e561bdd5183c008ace4424c25e80506e80674032504800efd/shapely-2.0.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f44eda8bd7a4bccb0f281264b34bf3518d8c4c9a8ffe69a1a05dabf6e8461147", size = 1336082, upload-time = "2025-01-31T02:42:19.986Z" }, - { url = "https://files.pythonhosted.org/packages/b3/f9/40473fcb5b66ff849e563ca523d2a26dafd6957d52dd876ffd0eded39f1c/shapely-2.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf6c50cd879831955ac47af9c907ce0310245f9d162e298703f82e1785e38c98", size = 2371047, upload-time = "2025-01-31T02:42:22.724Z" }, - { url = "https://files.pythonhosted.org/packages/d6/f3/c9cc07a7a03b5f5e83bd059f9adf3e21cf086b0e41d7f95e6464b151e798/shapely-2.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04a65d882456e13c8b417562c36324c0cd1e5915f3c18ad516bb32ee3f5fc895", size = 2469112, upload-time = "2025-01-31T02:42:26.739Z" }, - { url = "https://files.pythonhosted.org/packages/5d/b9/fc63d6b0b25063a3ff806857a5dc88851d54d1c278288f18cef1b322b449/shapely-2.0.7-cp310-cp310-win32.whl", hash = "sha256:7e97104d28e60b69f9b6a957c4d3a2a893b27525bc1fc96b47b3ccef46726bf2", size = 1296057, upload-time = "2025-01-31T02:42:29.156Z" }, - { url = "https://files.pythonhosted.org/packages/fe/d1/8df43f94cf4cda0edbab4545f7cdd67d3f1d02910eaff152f9f45c6d00d8/shapely-2.0.7-cp310-cp310-win_amd64.whl", hash = "sha256:35524cc8d40ee4752520819f9894b9f28ba339a42d4922e92c99b148bed3be39", size = 1441787, upload-time = "2025-01-31T02:42:31.412Z" }, - { url = "https://files.pythonhosted.org/packages/1d/ad/21798c2fec013e289f8ab91d42d4d3299c315b8c4460c08c75fef0901713/shapely-2.0.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5cf23400cb25deccf48c56a7cdda8197ae66c0e9097fcdd122ac2007e320bc34", size = 1473091, upload-time = "2025-01-31T02:42:33.595Z" }, - { url = "https://files.pythonhosted.org/packages/15/63/eef4f180f1b5859c70e7f91d2f2570643e5c61e7d7c40743d15f8c6cbc42/shapely-2.0.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8f1da01c04527f7da59ee3755d8ee112cd8967c15fab9e43bba936b81e2a013", size = 1332921, upload-time = "2025-01-31T02:42:34.993Z" }, - { url = "https://files.pythonhosted.org/packages/fe/67/77851dd17738bbe7762a0ef1acf7bc499d756f68600dd68a987d78229412/shapely-2.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f623b64bb219d62014781120f47499a7adc30cf7787e24b659e56651ceebcb0", size = 2427949, upload-time = "2025-01-31T02:42:37.578Z" }, - { url = "https://files.pythonhosted.org/packages/0b/a5/2c8dbb0f383519771df19164e3bf3a8895d195d2edeab4b6040f176ee28e/shapely-2.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6d95703efaa64aaabf278ced641b888fc23d9c6dd71f8215091afd8a26a66e3", size = 2529282, upload-time = "2025-01-31T02:42:39.504Z" }, - { url = "https://files.pythonhosted.org/packages/dc/4e/e1d608773c7fe4cde36d48903c0d6298e3233dc69412403783ac03fa5205/shapely-2.0.7-cp311-cp311-win32.whl", hash = "sha256:2f6e4759cf680a0f00a54234902415f2fa5fe02f6b05546c662654001f0793a2", size = 1295751, upload-time = "2025-01-31T02:42:41.107Z" }, - { url = "https://files.pythonhosted.org/packages/27/57/8ec7c62012bed06731f7ee979da7f207bbc4b27feed5f36680b6a70df54f/shapely-2.0.7-cp311-cp311-win_amd64.whl", hash = "sha256:b52f3ab845d32dfd20afba86675c91919a622f4627182daec64974db9b0b4608", size = 1442684, upload-time = "2025-01-31T02:42:43.181Z" }, - { url = "https://files.pythonhosted.org/packages/4f/3e/ea100eec5811bafd0175eb21828a3be5b0960f65250f4474391868be7c0f/shapely-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4c2b9859424facbafa54f4a19b625a752ff958ab49e01bc695f254f7db1835fa", size = 1482451, upload-time = "2025-01-31T02:42:44.902Z" }, - { url = "https://files.pythonhosted.org/packages/ce/53/c6a3487716fd32e1f813d2a9608ba7b72a8a52a6966e31c6443480a1d016/shapely-2.0.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5aed1c6764f51011d69a679fdf6b57e691371ae49ebe28c3edb5486537ffbd51", size = 1345765, upload-time = "2025-01-31T02:42:46.625Z" }, - { url = "https://files.pythonhosted.org/packages/fd/dd/b35d7891d25cc11066a70fb8d8169a6a7fca0735dd9b4d563a84684969a3/shapely-2.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73c9ae8cf443187d784d57202199bf9fd2d4bb7d5521fe8926ba40db1bc33e8e", size = 2421540, upload-time = "2025-01-31T02:42:49.971Z" }, - { url = "https://files.pythonhosted.org/packages/62/de/8dbd7df60eb23cb983bb698aac982944b3d602ef0ce877a940c269eae34e/shapely-2.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9469f49ff873ef566864cb3516091881f217b5d231c8164f7883990eec88b73", size = 2525741, upload-time = "2025-01-31T02:42:53.882Z" }, - { url = "https://files.pythonhosted.org/packages/96/64/faf0413ebc7a84fe7a0790bf39ec0b02b40132b68e57aba985c0b6e4e7b6/shapely-2.0.7-cp312-cp312-win32.whl", hash = "sha256:6bca5095e86be9d4ef3cb52d56bdd66df63ff111d580855cb8546f06c3c907cd", size = 1296552, upload-time = "2025-01-31T02:42:55.714Z" }, - { url = "https://files.pythonhosted.org/packages/63/05/8a1c279c226d6ad7604d9e237713dd21788eab96db97bf4ce0ea565e5596/shapely-2.0.7-cp312-cp312-win_amd64.whl", hash = "sha256:f86e2c0259fe598c4532acfcf638c1f520fa77c1275912bbc958faecbf00b108", size = 1443464, upload-time = "2025-01-31T02:42:57.696Z" }, - { url = "https://files.pythonhosted.org/packages/c6/21/abea43effbfe11f792e44409ee9ad7635aa93ef1c8ada0ef59b3c1c3abad/shapely-2.0.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a0c09e3e02f948631c7763b4fd3dd175bc45303a0ae04b000856dedebefe13cb", size = 1481618, upload-time = "2025-01-31T02:42:59.915Z" }, - { url = "https://files.pythonhosted.org/packages/d9/71/af688798da36fe355a6e6ffe1d4628449cb5fa131d57fc169bcb614aeee7/shapely-2.0.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:06ff6020949b44baa8fc2e5e57e0f3d09486cd5c33b47d669f847c54136e7027", size = 1345159, upload-time = "2025-01-31T02:43:01.611Z" }, - { url = "https://files.pythonhosted.org/packages/67/47/f934fe2b70d31bb9774ad4376e34f81666deed6b811306ff574faa3d115e/shapely-2.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d6dbf096f961ca6bec5640e22e65ccdec11e676344e8157fe7d636e7904fd36", size = 2410267, upload-time = "2025-01-31T02:43:05.83Z" }, - { url = "https://files.pythonhosted.org/packages/f5/8a/2545cc2a30afc63fc6176c1da3b76af28ef9c7358ed4f68f7c6a9d86cf5b/shapely-2.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adeddfb1e22c20548e840403e5e0b3d9dc3daf66f05fa59f1fcf5b5f664f0e98", size = 2514128, upload-time = "2025-01-31T02:43:08.427Z" }, - { url = "https://files.pythonhosted.org/packages/87/54/2344ce7da39676adec94e84fbaba92a8f1664e4ae2d33bd404dafcbe607f/shapely-2.0.7-cp313-cp313-win32.whl", hash = "sha256:a7f04691ce1c7ed974c2f8b34a1fe4c3c5dfe33128eae886aa32d730f1ec1913", size = 1295783, upload-time = "2025-01-31T02:43:10.608Z" }, - { url = "https://files.pythonhosted.org/packages/d7/1e/6461e5cfc8e73ae165b8cff6eb26a4d65274fad0e1435137c5ba34fe4e88/shapely-2.0.7-cp313-cp313-win_amd64.whl", hash = "sha256:aaaf5f7e6cc234c1793f2a2760da464b604584fb58c6b6d7d94144fd2692d67e", size = 1442300, upload-time = "2025-01-31T02:43:12.299Z" }, - { url = "https://files.pythonhosted.org/packages/ad/de/dc856cf99a981b83aa041d1a240a65b36618657d5145d1c0c7ffb4263d5b/shapely-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4abeb44b3b946236e4e1a1b3d2a0987fb4d8a63bfb3fdefb8a19d142b72001e5", size = 1478794, upload-time = "2025-01-31T02:43:38.532Z" }, - { url = "https://files.pythonhosted.org/packages/53/ea/70fec89a9f6fa84a8bf6bd2807111a9175cee22a3df24470965acdd5fb74/shapely-2.0.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cd0e75d9124b73e06a42bf1615ad3d7d805f66871aa94538c3a9b7871d620013", size = 1336402, upload-time = "2025-01-31T02:43:40.134Z" }, - { url = "https://files.pythonhosted.org/packages/e5/22/f6b074b08748d6f6afedd79f707d7eb88b79fa0121369246c25bbc721776/shapely-2.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7977d8a39c4cf0e06247cd2dca695ad4e020b81981d4c82152c996346cf1094b", size = 2376673, upload-time = "2025-01-31T02:43:41.922Z" }, - { url = "https://files.pythonhosted.org/packages/ab/f0/befc440a6c90c577300f5f84361bad80919e7c7ac381ae4960ce3195cedc/shapely-2.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0145387565fcf8f7c028b073c802956431308da933ef41d08b1693de49990d27", size = 2474380, upload-time = "2025-01-31T02:43:43.671Z" }, - { url = "https://files.pythonhosted.org/packages/13/b8/edaf33dfb97e281d9de3871810de131b01e4f33d38d8f613515abc89d91e/shapely-2.0.7-cp39-cp39-win32.whl", hash = "sha256:98697c842d5c221408ba8aa573d4f49caef4831e9bc6b6e785ce38aca42d1999", size = 1297939, upload-time = "2025-01-31T02:43:46.287Z" }, - { url = "https://files.pythonhosted.org/packages/7b/95/4d164c2fcb19c51e50537aafb99ecfda82f62356bfdb6f4ca620a3932bad/shapely-2.0.7-cp39-cp39-win_amd64.whl", hash = "sha256:a3fb7fbae257e1b042f440289ee7235d03f433ea880e73e687f108d044b24db5", size = 1443665, upload-time = "2025-01-31T02:43:47.889Z" }, -] - [[package]] name = "shapely" version = "2.1.2" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } @@ -6550,9 +4729,7 @@ dependencies = [ { name = "babel" }, { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "docutils" }, - { name = "imagesize", version = "1.5.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "imagesize", version = "2.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "importlib-metadata", marker = "python_full_version < '3.10'" }, + { name = "imagesize" }, { name = "jinja2" }, { name = "packaging" }, { name = "pygments" }, @@ -6571,46 +4748,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0d/ef/153f6803c5d5f8917dbb7f7fcf6d34a871ede3296fa89c2c703f5f8a6c8e/sphinx-7.4.7-py3-none-any.whl", hash = "sha256:c2419e2135d11f1951cd994d6eb18a1835bd8fdd8429f9ca375dc1f3281bd239", size = 3401624, upload-time = "2024-07-20T14:46:52.142Z" }, ] -[[package]] -name = "sphinx-autoapi" -version = "3.6.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "astroid", version = "3.3.11", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "jinja2", marker = "python_full_version < '3.10'" }, - { name = "pyyaml", marker = "python_full_version < '3.10'" }, - { name = "sphinx", marker = "python_full_version < '3.10'" }, - { name = "stdlib-list", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a9/ad/c627976d5f4d812b203ef1136108bbd81ef9bbbfd3f700f1295c322c22e6/sphinx_autoapi-3.6.1.tar.gz", hash = "sha256:1ff2992b7d5e39ccf92413098a376e0f91e7b4ca532c4f3e71298dbc8a4a9900", size = 55456, upload-time = "2025-10-06T16:21:22.888Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ca/89/aea2f346fcdb44eb72464842e106b6291b2687feec2dd8b2de920ab89f28/sphinx_autoapi-3.6.1-py3-none-any.whl", hash = "sha256:6b7af0d5650f6eac1f4b85c1eb9f9a4911160ec7138bdc4451c77a5e94d5832c", size = 35334, upload-time = "2025-10-06T16:21:21.33Z" }, -] - [[package]] name = "sphinx-autoapi" version = "3.8.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "astroid", version = "4.1.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "jinja2", marker = "python_full_version >= '3.10'" }, - { name = "pyyaml", marker = "python_full_version >= '3.10'" }, - { name = "sphinx", marker = "python_full_version >= '3.10'" }, + { name = "astroid" }, + { name = "jinja2" }, + { name = "pyyaml" }, + { name = "sphinx" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f8/25/386d851320bc306e9d7d41b8cecf113f638e205a99595c481c146622de94/sphinx_autoapi-3.8.0.tar.gz", hash = "sha256:9f8ac7d43baf28a0831ac0e392fab6a095b875af07e52d135a5f716cc3cf1142", size = 58418, upload-time = "2026-03-08T03:49:52.931Z" } wheels = [ @@ -6735,15 +4881,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, ] -[[package]] -name = "stdlib-list" -version = "0.12.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8c/25/f1540879c8815387980e56f973e54605bd924612399ace31487f7444171c/stdlib_list-0.12.0.tar.gz", hash = "sha256:517824f27ee89e591d8ae7c1dd9ff34f672eae50ee886ea31bb8816d77535675", size = 60923, upload-time = "2025-10-24T19:21:22.849Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/3d/2970b27a11ae17fb2d353e7a179763a2fe6f37d6d2a9f4d40104a2f132e9/stdlib_list-0.12.0-py3-none-any.whl", hash = "sha256:df2d11e97f53812a1756fb5510393a11e3b389ebd9239dc831c7f349957f62f2", size = 87615, upload-time = "2025-10-24T19:21:20.619Z" }, -] - [[package]] name = "threadpoolctl" version = "3.6.0" @@ -6857,45 +4994,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8d/c0/fdf9d3ee103ce66a55f0532835ad5e154226c5222423c6636ba049dc42fc/traittypes-0.2.3-py2.py3-none-any.whl", hash = "sha256:49016082ce740d6556d9bb4672ee2d899cd14f9365f17cbb79d5d96b47096d4e", size = 8130, upload-time = "2025-10-22T11:06:08.824Z" }, ] -[[package]] -name = "typer" -version = "0.23.2" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "annotated-doc", marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "rich", marker = "python_full_version < '3.10'" }, - { name = "shellingham", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d3/ae/93d16574e66dfe4c2284ffdaca4b0320ade32858cb2cc586c8dd79f127c5/typer-0.23.2.tar.gz", hash = "sha256:a99706a08e54f1aef8bb6a8611503808188a4092808e86addff1828a208af0de", size = 120162, upload-time = "2026-02-16T18:52:40.354Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/14/2c/dee705c427875402200fe779eb8a3c00ccb349471172c41178336e9599cc/typer-0.23.2-py3-none-any.whl", hash = "sha256:e9c8dc380f82450b3c851a9b9d5a0edf95d1d6456ae70c517d8b06a50c7a9978", size = 56834, upload-time = "2026-02-16T18:52:39.308Z" }, -] - [[package]] name = "typer" version = "0.24.1" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "annotated-doc", marker = "python_full_version >= '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "rich", marker = "python_full_version >= '3.10'" }, - { name = "shellingham", marker = "python_full_version >= '3.10'" }, + { name = "annotated-doc" }, + { name = "click" }, + { name = "rich" }, + { name = "shellingham" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } wheels = [ @@ -6934,74 +5041,21 @@ wheels = [ [[package]] name = "urllib3" -version = "1.26.20" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -sdist = { url = "https://files.pythonhosted.org/packages/e4/e8/6ff5e6bc22095cfc59b6ea711b687e2b7ed4bdb373f7eeec370a97d7392f/urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32", size = 307380, upload-time = "2024-08-29T15:43:11.37Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/33/cf/8435d5a7159e2a9c83a95896ed596f68cf798005fe107cc655b5c5c14704/urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e", size = 144225, upload-time = "2024-08-29T15:43:08.921Z" }, -] - -[[package]] -name = "urllib3" -version = "2.6.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] -sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, -] - -[[package]] -name = "uvicorn" -version = "0.39.0" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "h11", marker = "python_full_version < '3.10'" }, - { name = "typing-extensions", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/4f/f9fdac7cf6dd79790eb165639b5c452ceeabc7bbabbba4569155470a287d/uvicorn-0.39.0.tar.gz", hash = "sha256:610512b19baa93423d2892d7823741f6d27717b642c8964000d7194dded19302", size = 82001, upload-time = "2025-12-21T13:05:17.973Z" } +sdist = { url = "https://files.pythonhosted.org/packages/53/0c/06f8b233b8fd13b9e5ee11424ef85419ba0d8ba0b3138bf360be2ff56953/urllib3-2.7.0.tar.gz", hash = "sha256:231e0ec3b63ceb14667c67be60f2f2c40a518cb38b03af60abc813da26505f4c", size = 433602, upload-time = "2026-05-07T16:13:18.596Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6b/25/db2b1c6c35bf22e17fe5412d2ee5d3fd7a20d07ebc9dac8b58f7db2e23a0/uvicorn-0.39.0-py3-none-any.whl", hash = "sha256:7beec21bd2693562b386285b188a7963b06853c0d006302b3e4cfed950c9929a", size = 68491, upload-time = "2025-12-21T13:05:16.291Z" }, + { url = "https://files.pythonhosted.org/packages/7f/3e/5db95bcf282c52709639744ca2a8b149baccf648e39c8cc87553df9eae0c/urllib3-2.7.0-py3-none-any.whl", hash = "sha256:9fb4c81ebbb1ce9531cce37674bbc6f1360472bc18ca9a553ede278ef7276897", size = 131087, upload-time = "2026-05-07T16:13:17.151Z" }, ] [[package]] name = "uvicorn" version = "0.41.0" source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.10.*'", -] dependencies = [ - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, - { name = "h11", marker = "python_full_version >= '3.10'" }, - { name = "typing-extensions", marker = "python_full_version == '3.10.*'" }, + { name = "click" }, + { name = "h11" }, + { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/32/ce/eeb58ae4ac36fe09e3842eb02e0eb676bf2c53ae062b98f1b2531673efdd/uvicorn-0.41.0.tar.gz", hash = "sha256:09d11cf7008da33113824ee5a1c6422d89fbc2ff476540d69a34c87fab8b571a", size = 82633, upload-time = "2026-02-16T23:07:24.1Z" } wheels = [ @@ -7034,8 +5088,7 @@ name = "whitebox" version = "2.3.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", version = "8.1.8", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "click", version = "8.3.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10'" }, + { name = "click" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ac/87/c628340efbf9f819a1e8b241967857b5cf69c197b998eae89a98c3c00dbd/whitebox-2.3.6.tar.gz", hash = "sha256:69571640a778253e27a05c63b08aed670457803798a0b8f233761eabcd39188b", size = 78177, upload-time = "2025-02-23T01:22:48.762Z" } wheels = [ @@ -7066,34 +5119,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3f/0e/fa3b193432cfc60c93b42f3be03365f5f909d2b3ea410295cf36df739e31/widgetsnbextension-4.0.15-py3-none-any.whl", hash = "sha256:8156704e4346a571d9ce73b84bee86a29906c9abfd7223b7228a28899ccf3366", size = 2196503, upload-time = "2025-11-01T21:15:53.565Z" }, ] -[[package]] -name = "xarray" -version = "2024.7.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version < '3.10'", -] -dependencies = [ - { name = "numpy", version = "2.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" }, - { name = "packaging", marker = "python_full_version < '3.10'" }, - { name = "pandas", marker = "python_full_version < '3.10'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/84/e8/8ee12706df0d34ad04b3737621a73432458d47bc8abfbd6f049e51ca89c3/xarray-2024.7.0.tar.gz", hash = "sha256:4cae512d121a8522d41e66d942fb06c526bc1fd32c2c181d5fe62fe65b671638", size = 3728663, upload-time = "2024-07-30T08:31:45.48Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/45/95/233e1f9c939f5ba314297315df709e6a5e823bf3cade7211991b15aa65d2/xarray-2024.7.0-py3-none-any.whl", hash = "sha256:1b0fd51ec408474aa1f4a355d75c00cc1c02bd425d97b2c2e551fd21810e7f64", size = 1176466, upload-time = "2024-07-30T08:31:43.077Z" }, -] - [[package]] name = "xarray" version = "2025.6.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.10.*'", + "python_full_version < '3.11' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version < '3.11' and platform_machine != 'ARM64') or (python_full_version < '3.11' and sys_platform != 'win32')", ] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version == '3.10.*'" }, - { name = "packaging", marker = "python_full_version == '3.10.*'" }, - { name = "pandas", marker = "python_full_version == '3.10.*'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11'" }, + { name = "packaging", marker = "python_full_version < '3.11'" }, + { name = "pandas", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/19/ec/e50d833518f10b0c24feb184b209bb6856f25b919ba8c1f89678b930b1cd/xarray-2025.6.1.tar.gz", hash = "sha256:a84f3f07544634a130d7dc615ae44175419f4c77957a7255161ed99c69c7c8b0", size = 3003185, upload-time = "2025-06-12T03:04:09.099Z" } wheels = [ @@ -7105,15 +5142,10 @@ name = "xarray" version = "2026.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'win32'", - "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'win32'", - "python_full_version == '3.11.*' and sys_platform == 'win32'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform == 'emscripten'", - "python_full_version == '3.11.*' and sys_platform == 'emscripten'", - "python_full_version >= '3.12' and python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version == '3.11.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.12' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version >= '3.12' and platform_machine != 'ARM64') or (python_full_version >= '3.12' and sys_platform != 'win32')", + "python_full_version == '3.11.*' and platform_machine == 'ARM64' and sys_platform == 'win32'", + "(python_full_version == '3.11.*' and platform_machine != 'ARM64') or (python_full_version == '3.11.*' and sys_platform != 'win32')", ] dependencies = [ { name = "numpy", version = "2.4.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" }, @@ -7133,12 +5165,3 @@ sdist = { url = "https://files.pythonhosted.org/packages/ee/0f/022795fc1201e7c29 wheels = [ { url = "https://files.pythonhosted.org/packages/ef/5c/2c189d18d495dd0fa3f27ccc60762bbc787eed95b9b0147266e72bb76585/xyzservices-2025.11.0-py3-none-any.whl", hash = "sha256:de66a7599a8d6dad63980b77defd1d8f5a5a9cb5fc8774ea1c6e89ca7c2a3d2f", size = 93916, upload-time = "2025-11-22T11:31:50.525Z" }, ] - -[[package]] -name = "zipp" -version = "3.23.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e3/02/0f2892c661036d50ede074e376733dca2ae7c6eb617489437771209d4180/zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166", size = 25547, upload-time = "2025-06-08T17:06:39.4Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e", size = 10276, upload-time = "2025-06-08T17:06:38.034Z" }, -] From 7fb41861325d7dced660c7a846587a2eddc9024c Mon Sep 17 00:00:00 2001 From: roberto_esaclear Date: Wed, 10 Jun 2026 14:48:32 +0200 Subject: [PATCH 3/3] Honor HOME for skill install paths --- phidown/skill_cli.py | 10 ++++++++-- tests/test_skill_cli.py | 13 +++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/phidown/skill_cli.py b/phidown/skill_cli.py index f066bba..1febc26 100644 --- a/phidown/skill_cli.py +++ b/phidown/skill_cli.py @@ -79,12 +79,18 @@ def _remove_path(target: Path) -> str: return "not installed" +def _home_dir() -> Path: + home = os.environ.get("HOME") + return Path(home) if home else Path.home() + + def _codex_target() -> Path: - return Path(os.environ.get("CODEX_HOME", Path.home() / ".codex")) / "skills" / SKILL_NAME + codex_home = os.environ.get("CODEX_HOME") + return (Path(codex_home) if codex_home else _home_dir() / ".codex") / "skills" / SKILL_NAME def _claude_target() -> Path: - return Path.home() / ".claude" / "skills" / SKILL_NAME + return _home_dir() / ".claude" / "skills" / SKILL_NAME def _cursor_target(project_dir: Path) -> Path: diff --git a/tests/test_skill_cli.py b/tests/test_skill_cli.py index 99d3d6d..10cd383 100644 --- a/tests/test_skill_cli.py +++ b/tests/test_skill_cli.py @@ -7,6 +7,7 @@ import pytest from phidown.cli import main +from phidown import skill_cli from phidown.skill_cli import skill_main @@ -40,6 +41,18 @@ def test_add_all_installs_codex_claude_and_cursor(monkeypatch, tmp_path): assert "Phidown" in cursor_rule.read_text(encoding="utf-8") +def test_claude_install_uses_home_env_when_available(monkeypatch, tmp_path): + home = tmp_path / "home" + fallback_home = tmp_path / "fallback-home" + monkeypatch.setenv("HOME", str(home)) + monkeypatch.setattr(skill_cli.Path, "home", lambda: fallback_home) + + assert skill_main(["add", "--engine", "claude"]) == 0 + + assert (home / ".claude" / "skills" / "phidown" / "SKILL.md").is_file() + assert not (fallback_home / ".claude" / "skills" / "phidown").exists() + + def test_remove_all_removes_installed_targets(monkeypatch, tmp_path): home = tmp_path / "home" project = tmp_path / "project"