diegosouzapw
21f8dc4b3c
fix(security): close semgrep MCP findings (CSWSH, log injection, copilot exposure, error sanitization)
...
semgrep's post-tool-cli-scan flagged five concrete issues; each fix is
narrow and keeps existing behaviour for legitimate callers.
src/server/ws/liveServer.ts
WebSocket upgrades did not check the Origin header (CWE-1385: CSWSH).
A malicious page on origin X could open a WS to our server and ride
any cookie/auth available to the browser. Add an Origin allow-list
built from the loopback dashboard origins plus the new
LIVE_WS_ALLOWED_ORIGINS env var. Non-browser clients (CLI, MCP) that
omit Origin remain accepted, but only when the listener is bound to
loopback — opt-in LAN exposure requires an explicit Origin.
src/app/api/v1/relay/chat/completions/route.ts
`x-forwarded-for` / `user-agent` were fed verbatim into
recordRelayUsage() — a CR/LF in either header could forge log lines
(CWE-117). Add sanitizeForensicHeader() to strip control chars and
cap to 256 chars, plus migrate every error branch to buildErrorBody()
(Hard Rule #12 ).
src/app/api/copilot/chat/route.ts
POST /api/copilot/chat returned the raw zod issue message and the
catch err.message in the JSON body. Route both through
buildErrorBody() so sanitizeErrorMessage() strips stack traces and
absolute paths before serialization (Hard Rule #12 ).
src/server/authz/routeGuard.ts (+ tests/unit/authz/routeGuard.test.ts)
/api/copilot/* drives the Copilot LLM and runs without auth by
default. Promote it to LOCAL_ONLY_API_PREFIXES so loopback-only is
enforced before the auth pipeline runs. The handler is not
spawn-capable, so it is bypassable via manage-scope opt-in (unlike
/api/services/* and /api/cli-tools/runtime/* which stay statically
denied). Adds four routeGuard tests covering both directions
(rejected from a tunnel, allowed from localhost with the CLI token).
Also: docs/reference/ENVIRONMENT.md + .env.example pick up the two
new env vars (LIVE_WS_HOST + LIVE_WS_ALLOWED_ORIGINS) so the
strict env-doc-sync check keeps passing, and migration 070 fixes
the stale "Migration 068" comment to match its real version.
2026-05-26 10:07:03 -03:00
..
2026-05-23 01:46:59 -03:00
2026-05-26 00:29:18 -03:00
2026-04-28 02:41:19 -03:00
2026-05-26 10:07:03 -03:00
2026-05-24 18:05:58 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 23:46:57 -03:00
2026-04-28 02:41:19 -03:00
2026-05-26 00:29:18 -03:00
2026-05-26 02:30:27 -03:00
2026-05-21 01:29:12 -03:00
2026-05-14 21:39:57 -03:00
2026-05-19 03:33:58 -03:00
2026-05-20 02:05:50 -03:00
2026-05-25 23:44:12 -03:00
2026-05-15 01:54:09 -03:00
2026-05-14 21:24:05 -03:00
2026-05-15 00:05:49 -03:00
2026-05-26 00:29:18 -03:00
2026-05-23 01:46:59 -03:00
2026-05-25 23:48:22 -03:00
2026-04-30 14:08:50 -03:00
2026-04-23 14:02:45 +09:00
2026-05-18 09:11:32 -03:00
2026-05-26 00:29:18 -03:00
2026-04-16 05:26:17 -03:00
2026-04-24 13:20:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-19 19:50:30 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-21 01:29:12 -03:00
2026-04-16 05:26:17 -03:00
2026-05-22 15:09:07 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 05:11:24 -03:00
2026-04-30 01:27:03 -03:00
2026-05-25 23:45:31 -03:00
2026-05-26 06:13:26 -03:00
2026-05-10 00:55:06 -03:00
2026-05-16 13:28:57 -03:00
2026-04-28 02:41:19 -03:00
2026-04-19 19:50:30 -03:00
2026-05-16 12:12:53 -03:00
2026-05-11 21:14:25 -03:00
2026-04-27 20:00:10 -03:00
2026-05-20 09:12:49 -03:00
2026-05-24 18:05:58 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 10:26:22 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-05-14 15:23:46 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-05-18 09:08:52 -03:00
2026-05-13 16:46:20 -03:00
2026-05-13 16:46:20 -03:00
2026-05-21 01:29:12 -03:00
2026-05-16 12:06:12 -03:00
2026-05-11 01:45:56 +07:00
2026-04-22 01:39:49 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 21:14:25 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 04:13:28 -03:00
2026-04-16 05:26:17 -03:00
2026-05-16 00:27:20 -03:00
2026-05-16 00:27:20 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-16 09:08:36 -03:00
2026-04-23 01:53:00 -03:00
2026-04-28 02:41:19 -03:00
2026-04-17 17:02:00 -03:00
2026-05-14 13:00:15 -03:00
2026-04-30 01:27:03 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:12:35 -03:00
2026-04-28 02:41:19 -03:00
2026-05-21 01:29:12 -03:00
2026-05-13 10:14:25 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:17:38 -03:00
2026-05-17 11:30:49 -03:00
2026-04-21 21:12:29 -03:00
2026-05-16 21:50:59 -03:00
2026-04-19 19:50:30 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:03:31 -03:00
2026-05-16 17:39:47 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 09:44:11 -03:00
2026-05-23 01:46:59 -03:00
2026-04-24 13:20:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-04 16:45:24 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-27 03:53:05 +07:00
2026-04-24 09:22:46 -03:00
2026-05-14 20:17:04 -03:00
2026-05-24 18:05:58 -03:00
2026-05-06 01:21:31 -03:00
2026-05-13 16:02:44 -03:00
2026-05-10 18:33:20 -03:00
2026-05-11 10:05:48 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 20:46:25 -03:00
2026-04-18 10:49:34 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 20:46:25 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-05-16 00:25:04 -03:00
2026-04-22 12:26:17 -03:00
2026-05-18 08:34:00 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 10:38:13 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-15 12:51:07 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-15 02:08:12 -03:00
2026-05-15 01:30:18 -03:00
2026-05-14 23:24:52 -03:00
2026-05-15 02:24:45 -03:00
2026-05-15 00:28:36 -03:00
2026-05-15 03:00:52 -03:00
2026-05-15 01:51:55 -03:00
2026-05-14 23:41:02 -03:00
2026-05-15 02:47:49 -03:00
2026-05-15 03:24:50 -03:00
2026-05-15 02:09:36 -03:00
2026-05-15 02:47:49 -03:00
2026-05-15 03:36:51 -03:00
2026-05-15 00:52:15 -03:00
2026-05-10 00:55:06 -03:00
2026-05-15 03:00:52 -03:00
2026-05-15 04:44:07 -03:00
2026-05-15 01:52:34 -03:00
2026-05-14 21:42:57 -03:00
2026-05-15 09:48:30 -03:00
2026-05-15 02:24:45 -03:00
2026-05-15 03:52:13 -03:00
2026-05-14 23:11:30 -03:00
2026-05-15 13:14:14 -03:00
2026-05-15 04:44:07 -03:00
2026-05-15 02:05:06 -03:00
2026-05-15 01:18:58 -03:00
2026-04-17 17:02:00 -03:00
2026-04-24 15:44:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-15 02:27:20 -03:00
2026-05-15 01:51:07 -03:00
2026-05-15 02:47:49 -03:00
2026-05-15 03:00:52 -03:00
2026-05-15 04:58:40 -03:00
2026-05-15 02:47:49 -03:00
2026-05-14 23:54:49 -03:00
2026-05-15 05:11:18 -03:00
2026-05-15 02:08:55 -03:00
2026-05-15 02:25:58 -03:00
2026-05-15 00:18:53 -03:00
2026-05-14 22:09:53 -03:00
2026-05-14 22:38:59 -03:00
2026-05-15 01:10:10 -03:00
2026-05-20 02:05:50 -03:00
2026-05-15 04:51:23 -03:00
2026-05-15 02:26:41 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-15 03:46:26 -03:00
2026-05-14 23:11:30 -03:00
2026-05-23 01:46:59 -03:00
2026-05-15 02:47:49 -03:00
2026-05-14 22:38:59 -03:00
2026-05-15 00:45:35 -03:00
2026-05-15 01:24:36 -03:00
2026-05-15 03:00:52 -03:00
2026-05-26 06:13:26 -03:00
2026-05-15 00:36:41 -03:00
2026-05-15 02:27:56 -03:00
2026-05-15 02:47:49 -03:00
2026-05-15 02:47:49 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 14:26:34 -03:00
2026-04-26 14:26:34 -03:00
2026-05-23 01:46:59 -03:00
2026-05-21 01:29:12 -03:00
2026-05-15 02:25:24 -03:00
2026-05-24 18:05:58 -03:00
2026-05-15 04:36:21 -03:00
2026-05-15 03:13:06 -03:00
2026-05-15 00:59:21 -03:00
2026-05-15 01:53:09 -03:00
2026-05-12 19:50:07 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-13 03:47:40 -03:00
2026-04-21 21:12:29 -03:00
2026-05-13 03:47:40 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 04:51:38 -03:00
2026-05-23 01:46:59 -03:00
2026-04-27 00:37:15 -03:00
2026-04-21 21:12:29 -03:00
2026-05-18 09:12:36 -03:00
2026-05-04 19:23:27 -03:00
2026-05-10 00:55:06 -03:00
2026-05-17 14:04:48 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-17 13:32:29 -03:00
2026-05-17 14:04:48 -03:00
2026-05-17 16:52:43 -03:00
2026-05-17 16:52:43 -03:00
2026-05-10 00:55:06 -03:00
2026-05-17 22:58:42 -03:00
2026-04-24 09:04:10 -03:00
2026-05-23 01:46:59 -03:00
2026-05-20 02:05:50 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 08:28:09 -03:00
2026-05-20 02:05:50 -03:00
2026-05-20 02:05:50 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-18 09:10:35 -03:00
2026-05-17 22:58:42 -03:00
2026-05-24 18:05:58 -03:00
2026-05-10 00:55:06 -03:00
2026-04-30 16:51:44 -03:00
2026-05-18 10:56:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-05-12 19:57:35 -03:00
2026-05-15 03:25:22 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-04 01:34:41 -03:00
2026-04-28 20:46:25 -03:00
2026-04-17 09:00:32 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-05-12 15:05:00 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-19 00:26:17 -03:00
2026-04-25 17:08:44 -03:00
2026-04-25 23:51:18 -03:00
2026-04-25 23:51:18 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 13:33:55 -03:00
2026-04-28 20:46:25 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-05-05 09:59:43 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-02 01:48:58 -03:00
2026-04-21 21:12:29 -03:00
2026-05-19 04:05:36 -03:00
2026-05-01 08:35:52 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 18:27:41 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-25 23:48:22 -03:00
2026-04-16 05:26:17 -03:00
2026-05-17 19:54:32 -03:00
2026-05-14 23:41:02 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 06:13:26 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-24 18:05:58 -03:00
2026-05-24 18:05:58 -03:00
2026-04-28 13:59:03 -03:00
2026-05-18 09:09:45 -03:00
2026-04-21 21:12:29 -03:00
2026-05-01 00:12:33 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-26 23:59:51 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-06 01:21:31 -03:00
2026-05-23 01:46:59 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-04-23 16:57:43 -03:00
2026-04-30 14:08:50 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 05:53:26 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-05-24 18:05:58 -03:00
2026-05-26 06:13:26 -03:00
2026-04-28 02:41:19 -03:00
2026-04-24 07:00:21 -03:00
2026-04-27 01:45:36 -03:00
2026-05-23 01:46:59 -03:00
2026-04-24 09:22:46 -03:00
2026-04-17 09:00:32 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-05-24 18:05:58 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 15:29:17 -03:00
2026-05-18 19:18:49 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 00:20:13 -03:00
2026-05-26 00:20:13 -03:00
2026-05-26 00:20:13 -03:00
2026-05-26 00:20:13 -03:00
2026-05-18 03:01:51 -03:00
2026-05-18 22:55:49 -03:00
2026-05-18 08:34:00 -03:00
2026-05-18 08:34:00 -03:00
2026-05-14 20:19:55 -03:00
2026-05-17 05:24:11 +07:00
2026-05-16 21:47:40 -03:00
2026-05-10 00:55:06 -03:00
2026-05-01 16:11:32 -03:00
2026-04-17 11:56:52 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-04 19:23:27 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 17:51:22 -03:00
2026-05-24 18:05:58 -03:00
2026-05-03 16:12:52 -03:00
2026-05-10 00:55:06 -03:00
2026-05-20 02:05:50 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 00:10:05 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-04-23 01:53:00 -03:00
2026-05-10 00:55:06 -03:00
2026-05-14 20:20:54 -03:00
2026-05-14 20:52:08 +08:00
2026-05-15 02:05:32 +08:00
2026-05-10 18:27:41 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:16:54 -03:00
2026-04-28 02:16:16 -03:00
2026-04-30 01:27:03 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-02 01:48:58 -03:00
2026-05-10 20:48:03 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 03:47:40 -03:00
2026-05-11 21:38:26 -03:00
2026-05-10 23:47:20 -03:00
2026-04-16 05:26:17 -03:00
2026-04-17 11:56:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-25 11:03:31 -03:00
2026-05-14 00:40:18 -03:00
2026-04-28 02:41:19 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-12 19:57:26 -03:00
2026-04-28 02:41:19 -03:00
2026-05-05 09:08:18 -03:00
2026-04-28 02:41:19 -03:00
2026-04-28 02:41:19 -03:00
2026-05-10 00:55:06 -03:00
2026-05-02 04:51:38 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 10:14:25 -03:00
2026-05-18 23:49:51 +07:00
2026-05-24 18:05:58 -03:00
2026-05-26 06:13:26 -03:00
2026-05-06 01:21:31 -03:00
2026-05-20 09:12:49 -03:00
2026-04-30 01:27:03 -03:00
2026-05-21 01:29:12 -03:00
2026-05-25 23:29:50 -03:00
2026-04-30 14:08:50 -03:00
2026-04-16 05:26:17 -03:00
2026-04-17 09:00:32 -03:00
2026-05-06 01:21:31 -03:00
2026-05-26 06:13:26 -03:00
2026-05-26 06:13:26 -03:00
2026-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-28 10:03:39 -03:00
2026-04-21 21:12:29 -03:00
2026-05-15 00:06:14 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 20:48:03 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-17 19:38:25 -03:00
2026-04-16 05:26:17 -03:00
2026-05-20 02:05:50 -03:00
2026-04-23 16:57:43 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 10:03:39 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 20:19:55 -03:00
2026-05-21 01:29:12 -03:00
2026-05-10 18:33:20 -03:00
2026-05-23 01:46:59 -03:00
2026-05-12 15:05:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-05-18 10:55:33 -03:00
2026-05-13 03:47:40 -03:00
2026-05-12 19:57:15 -03:00
2026-05-01 16:11:13 -03:00
2026-05-23 01:46:59 -03:00
2026-04-17 16:59:18 -03:00
2026-04-24 07:00:21 -03:00
2026-05-19 09:48:16 -03:00
2026-05-23 01:46:59 -03:00
2026-04-28 13:59:03 -03:00
2026-05-23 01:46:59 -03:00
2026-05-17 11:30:49 -03:00
2026-05-24 18:05:58 -03:00
2026-05-24 18:05:58 -03:00
2026-05-21 01:29:12 -03:00
2026-05-19 04:04:26 -03:00
2026-05-01 09:53:51 -03:00
2026-05-11 21:14:25 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 20:48:03 -03:00
2026-05-26 00:20:13 -03:00
2026-05-14 05:11:24 -03:00
2026-05-13 03:47:40 -03:00
2026-05-14 10:38:13 -03:00
2026-05-10 00:55:06 -03:00
2026-04-18 10:29:30 -03:00
2026-05-24 18:05:58 -03:00
2026-05-14 10:38:13 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-05-14 20:19:55 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 15:48:50 -03:00
2026-05-18 10:57:23 -03:00
2026-05-14 09:22:17 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 20:46:25 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 02:25:46 -03:00
2026-04-17 16:59:18 -03:00
2026-04-24 09:04:04 -03:00
2026-04-30 01:27:03 -03:00
2026-04-16 05:26:17 -03:00
2026-04-18 11:44:20 -03:00
2026-05-14 05:11:24 -03:00
2026-05-14 20:19:55 -03:00
2026-05-10 18:33:20 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 09:20:21 -03:00
2026-05-23 01:46:59 -03:00
2026-05-16 12:12:53 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 10:22:07 -03:00
2026-05-13 10:14:25 -03:00
2026-05-24 18:05:58 -03:00
2026-05-16 10:13:08 -03:00
2026-05-10 20:48:03 -03:00
2026-05-23 01:46:59 -03:00
2026-05-13 10:14:25 -03:00
2026-05-13 10:14:25 -03:00
2026-05-13 10:14:25 -03:00
2026-05-16 21:47:40 -03:00
2026-04-21 21:12:29 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 05:42:22 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 06:19:02 -03:00
2026-05-14 05:42:22 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 14:08:50 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-21 01:29:12 -03:00
2026-04-21 21:12:29 -03:00
2026-04-26 03:03:52 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-04-17 11:56:52 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-14 20:19:55 -03:00
2026-05-14 20:20:54 -03:00
2026-05-14 05:42:22 -03:00
2026-05-10 09:44:11 -03:00
2026-04-26 03:03:52 -03:00
2026-05-21 01:29:12 -03:00
2026-05-16 12:12:53 -03:00
2026-05-23 01:46:59 -03:00
2026-04-25 07:46:33 -03:00
2026-05-02 01:18:37 -03:00
2026-05-12 19:49:59 -03:00
2026-05-04 00:11:25 -03:00
2026-04-17 17:02:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-05-24 18:05:58 -03:00
2026-05-23 01:46:59 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-04 14:13:20 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-26 06:13:26 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-17 19:36:57 -03:00
2026-04-27 01:09:23 -03:00
2026-05-26 06:13:26 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-04-26 14:26:34 -03:00
2026-04-16 05:26:17 -03:00
2026-04-19 19:50:30 -03:00
2026-05-23 01:46:59 -03:00
2026-04-21 21:12:29 -03:00
2026-04-22 12:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-12 19:44:45 -03:00
2026-04-21 04:13:28 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-25 23:29:50 -03:00
2026-04-21 21:12:29 -03:00
2026-05-25 23:29:50 -03:00
2026-05-10 00:55:06 -03:00
2026-05-14 09:20:21 -03:00
2026-04-28 02:41:19 -03:00
2026-04-16 05:26:17 -03:00
2026-05-18 09:18:25 -03:00
2026-04-21 21:12:29 -03:00
2026-05-13 13:18:27 +00:00
2026-04-30 01:27:03 -03:00
2026-05-03 17:51:22 -03:00
2026-04-16 05:26:17 -03:00
2026-05-26 00:24:57 -03:00
2026-05-24 18:05:58 -03:00
2026-05-21 01:29:12 -03:00
2026-04-16 05:26:17 -03:00
2026-05-24 20:41:07 -03:00
2026-05-23 01:46:59 -03:00
2026-05-14 11:41:27 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-24 20:41:07 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 10:22:07 -03:00
2026-04-16 05:26:17 -03:00
2026-04-21 21:12:29 -03:00
2026-04-23 16:57:43 -03:00
2026-05-14 08:08:02 -03:00
2026-05-24 18:05:58 -03:00
2026-04-16 05:26:17 -03:00
2026-05-15 20:23:53 +01:00
2026-04-27 20:00:10 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-17 21:11:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-05-16 10:14:06 -03:00
2026-05-13 10:14:25 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-04-30 01:27:03 -03:00
2026-05-18 08:35:34 -03:00
2026-04-21 21:12:29 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-13 03:47:40 -03:00
2026-05-23 01:46:59 -03:00
2026-04-22 01:39:49 -03:00
2026-04-28 02:41:19 -03:00
2026-04-30 01:27:03 -03:00
2026-05-24 18:05:58 -03:00
2026-04-21 21:12:29 -03:00
2026-05-23 01:46:59 -03:00
2026-05-26 00:27:22 -03:00
2026-05-26 00:27:22 -03:00
2026-05-26 00:27:22 -03:00
2026-05-26 00:27:22 -03:00
2026-05-26 00:27:22 -03:00
2026-04-16 05:26:17 -03:00
2026-05-23 01:46:59 -03:00
2026-05-24 18:05:58 -03:00
2026-05-20 02:05:50 -03:00
2026-04-24 07:48:19 -03:00