Sergio
a90b4ef626
valkey: la familia «caché en memoria» estaba VACÍA — y el artefacto salió vacío sin que nada fallara
...
`scripts/mudanza/planear.py` agrupa el software del origen en familias funcionales y contesta, para
cada una, con qué la reemplaza takana. Cruzando esa tabla contra el catálogo, cuatro familias salen
SIN NADA sellado: caché en memoria, contenedores, correo y base vectorial. Ésta cierra la primera.
Valkey y no redis a propósito: redis dejó de ser software libre en 2024 (RSALv2/SSPLv1, que no pasan
la OSI); valkey es el fork de la Linux Foundation desde el último commit BSD, mismo protocolo y mismo
RDB/AOF. Y upstream instala los seis alias `redis-*`, así que un `redis-server` se reemplaza sin
tocar datos ni clientes. Para una distro que publica el catálogo con `license` poblado receta a
receta, meter SSPL sería meter algo que después hay que sacar.
**El hallazgo caro de esta receta no fue compilar: fue que el PRIMER artefacto se selló VACÍO.**
`make install PREFIX=/usr DESTDIR=/out` imprimió sus `INSTALL valkey-server` en verde y salió 0 — y
`/out` quedó sin un solo fichero. La causa está en la línea 65 de `src/Makefile`: valkey define
`INSTALL_BIN=$(PREFIX)/bin` **sin prefijar `$(DESTDIR)`**, o sea que IGNORA `DESTDIR` y copió los
binarios a `/usr/bin` dentro del sandbox, que se tira al terminar. Lo sellado fue un directorio con
`.hammer/recipe.toml` y nada más: un cache-hit permanente que habría contestado «valkey ya está»
para siempre. Es la regla 3 del repo en vivo — *un ausente falla ruidosamente; un vacío llega hasta
el final diciendo que todo fue bien*. Se vio mirando el árbol del artefacto, NO el código de salida.
El arreglo es `PREFIX=/out/usr`.
El otro muro, medido con un control mínimo fuera de valkey: con `zig cc` el link muere con
`undefined symbol: __cpu_model` en los tres binarios. No es valkey — es que `__builtin_cpu_supports()`
(que valkey usa para elegir en runtime las rutas AVX2/AVX-512) emite esa referencia y el
`compiler_rt` de zig 0.16.0 no la trae:
printf '#include <stdio.h>\nint main(void){__builtin_cpu_init();return printf("%d",__builtin_cpu_supports("avx2"));}\n' > t.c
zig cc -target x86_64-linux-musl -O2 -o t t.c ⇒ ld.lld: error: undefined symbol: __cpu_model
De ahí `compiler = "gcc"`, que es la palanca declarativa que el lab expone justo para esto. Arrancarle
el multiversioning a parches habría costado las rutas SIMD de `BITCOUNT`/`PFCOUNT` y habría que
rehacer el parche en cada versión.
Verificado: REPRODUCE bit a bit. Único NEEDED `libc.so`, que provee `musl-shared` — raíz de `base`
desde hoy ⇒ resuelve en cualquier imagen sin declarar nada en la receta.
2026-09-11 17:29:41 +00:00
..
2026-09-10 23:17:32 +00:00
2026-09-04 21:02:51 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 20:29:21 +00:00
2026-09-09 19:41:52 +00:00
2026-09-09 23:17:42 +00:00
2026-09-08 19:47:55 +00:00
2026-09-06 01:29:41 +00:00
2026-09-06 05:44:09 +00:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-07-11 00:36:55 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-04 01:38:30 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-27 20:30:03 +00:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 09:53:17 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-10 20:45:53 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 02:48:20 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-03 12:14:07 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 17:47:16 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:51:09 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 17:13:42 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-06 23:58:53 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 17:13:42 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 06:16:05 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 16:09:24 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-26 18:42:11 +00:00
2026-08-08 00:53:26 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 18:07:17 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-07-11 00:36:55 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 23:33:32 -04:00
2026-08-12 20:48:55 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-08-27 03:31:09 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 11:49:44 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 12:49:30 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 18:07:17 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 12:14:07 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-27 16:30:56 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-09-05 15:34:35 +00:00
2026-08-31 16:11:50 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-07-11 00:36:55 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 20:29:21 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 21:18:17 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-31 14:54:58 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:06:59 -04:00
2026-09-04 16:27:24 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 03:10:00 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 12:14:07 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-08 11:14:37 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-03 03:12:12 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 14:06:59 -04:00
2026-08-26 18:42:11 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-09-04 15:35:32 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:29:31 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-09-10 22:30:18 +00:00
2026-09-10 22:30:18 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-21 13:08:49 +00:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 14:06:59 -04:00
2026-09-03 06:16:05 +00:00
2026-09-05 15:34:35 +00:00
2026-09-05 15:34:35 +00:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-07-29 22:36:43 -04:00
2026-08-07 13:26:22 -04:00
2026-09-03 03:12:12 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:43:51 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:06:59 -04:00
2026-09-09 19:23:26 +00:00
2026-09-11 03:03:31 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 21:26:53 +00:00
2026-09-11 17:13:42 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 05:07:12 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:29:31 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:29:31 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:06:59 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-06 20:08:53 +00:00
2026-09-06 20:08:53 +00:00
2026-09-09 19:23:26 +00:00
2026-07-16 08:04:03 -04:00
2026-09-05 15:34:35 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-08-27 20:36:04 +00:00
2026-08-27 19:56:11 +00:00
2026-09-11 01:47:54 +00:00
2026-09-11 01:47:54 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 17:29:24 +00:00
2026-08-08 00:53:26 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-10 21:40:46 +00:00
2026-09-10 22:30:18 +00:00
2026-09-10 22:30:18 +00:00
2026-09-04 16:27:24 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:29:31 -04:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-04 16:49:57 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:43:51 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-04 02:27:22 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 17:47:16 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-03 05:34:32 +00:00
2026-09-03 06:16:05 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 12:14:07 +00:00
2026-09-03 12:14:07 +00:00
2026-09-11 17:13:42 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 06:16:05 +00:00
2026-09-09 19:23:26 +00:00
2026-09-10 21:07:30 +00:00
2026-09-10 23:17:32 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:51:09 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 02:59:13 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 10:24:11 -04:00
2026-08-07 14:06:59 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-08 20:15:06 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-04 16:33:22 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 17:47:16 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-27 19:10:54 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 11:37:02 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 13:31:56 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 15:15:20 -04:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-08-07 14:01:15 -04:00
2026-09-09 19:23:26 +00:00
2026-09-05 15:34:35 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:51:09 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-11 17:29:41 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-06 01:29:41 +00:00
2026-09-06 01:29:41 +00:00
2026-09-06 01:46:38 +00:00
2026-09-06 01:42:34 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 06:17:57 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 18:10:52 +00:00
2026-09-09 19:23:26 +00:00
2026-09-04 16:27:24 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-05 12:02:24 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:51:09 -04:00
2026-09-09 19:23:26 +00:00
2026-09-03 11:49:44 +00:00
2026-09-09 17:47:16 +00:00
2026-08-07 10:24:11 -04:00
2026-08-07 13:26:22 -04:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-03 12:14:07 +00:00
2026-09-03 12:14:07 +00:00
2026-08-07 13:26:22 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-08-07 13:26:22 -04:00
2026-08-07 23:33:32 -04:00
2026-08-07 10:24:11 -04:00
2026-09-09 19:23:26 +00:00
2026-09-09 19:23:26 +00:00
2026-09-11 13:18:41 +00:00
2026-08-08 00:53:26 -04:00