Mourad Maatoug
634b4fe0ce
feat(system-transforms): generic per-provider DSL closing OpenWebUI bypass
...
v2 of the CC bridge body transforms (issue #2260 ). Generalizes the
single-provider `ccBridgeTransforms` config (commit e3e962db ) into a
per-provider registry keyed by OmniRoute provider id, and wires the
native `claude` OAuth path into the same DSL so raw `claude/<model>`
requests no longer bypass the sanitization layer.
Reference: comment 4459544580 reported a 429 on raw `claude/<model>`
from Open WebUI; CC-bridge-only v1 didn't help that path. v2 closes
three gaps named in the comment:
1. `openwebui` / `open-webui` added to the default obfuscation
word list (new `obfuscate_words` op kind, configurable).
2. Native `claude` provider path now runs the per-provider pipeline
after its existing billing+sentinel prepend (executors/base.ts).
Its default pipeline is cosmetic only (Open WebUI paragraph
anchors + identity-prefix drop + ZWJ obfuscation); it deliberately
omits `inject_billing_header` so it never collides with the native
prepend.
3. Open WebUI paragraph anchors (github.com/open-webui/open-webui,
openwebui.com, docs.openwebui.com) and identity prefix
("You are Open WebUI") added to both `claude` and CC bridge
default pipelines.
API surface:
- New module: open-sse/services/systemTransforms.ts
* `SystemTransformsConfig { providers: Record<id, { enabled, pipeline }> }`
* `TransformOp` extends the base CC bridge op set with
`obfuscate_words { words[], targets[] }`.
* `applySystemTransformPipeline(providerId, body, config?)`
routes to the right per-provider pipeline (with CC bridge prefix
match so `anthropic-compatible-cc-*` all share one config).
* `setSystemTransformsConfig` accepts both legacy single-provider
shape (migrates into providers[anthropic-compatible-cc]) and the
new per-provider shape (merges with defaults for unset providers).
- Native claude wedge: executors/base.ts now calls
`applySystemTransformPipeline(PROVIDER_CLAUDE, tb)` after the
existing billing+sentinel prepend (line ~789).
- CC bridge step 5b: claudeCodeCompatible.ts step 5b switched from
`applyCcBridgeTransformPipeline` (single-config) to
`applySystemTransformPipeline(PROVIDER_CC_BRIDGE, body)`. The
underlying ccBridgeTransforms.ts module remains the base executor
that systemTransforms.ts delegates to for the shared op kinds —
no rename to keep the diff reviewable, and all 30 base-op tests
stay green.
- Settings:
* Zod schema gains `systemTransforms.providers[*]` with full
discriminated union over the 9 op kinds (including
obfuscate_words).
* Legacy `ccBridgeTransforms` zod field kept for back-compat read;
runtime now feeds it through `setSystemTransformsConfig` migration
shim so persisted Phase-2 data keeps working. v2 `systemTransforms`
wins on conflict (applied last).
* Runtime settings registry gains `systemTransforms` reload section
next to legacy `ccBridgeTransforms`.
- UI rewrite (RoutingTab.tsx): the two standalone cards (CLI
Fingerprint + CC Bridge Transforms) collapse into one
"Provider Upstream Compatibility" card. Per-provider tiles render
the pipeline summary + JSON editor with client-side shape
validation + Apply / Reset. Copy clarifies that no local Claude
Code binary is required (the lock badge on the Claude tile means
the fingerprint is force-applied for OAuth account safety, not
that the user must install the CLI).
Tests:
- tests/unit/system-transforms.test.ts (22 new tests covering
defaults, per-op semantics, ordering, per-provider routing, opt-in
pass-through, Open WebUI fixture, migration shim, idempotency).
- tests/unit/cc-bridge-transforms.test.ts (30 base-op tests
unchanged, still green).
- tests/unit/claude-code-compatible-{helpers,request}.test.ts and
8 related claude/cc/executor test files all green (140 tests).
Closes #2260 .
2026-05-15 17:36:21 +02:00
..
2026-05-14 00:16:22 -03:00
2026-04-28 02:41:19 -03:00
2026-05-13 03:47:40 -03:00
2026-05-10 01:15:07 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 04:48:32 -03:00
2026-04-28 02:41:19 -03:00
2026-05-11 01:49:10 +07:00
2026-04-30 14:08:50 -03:00
2026-04-23 14:02:45 +09:00
2026-05-11 10:05:48 -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-04-16 05:26:17 -03:00
2026-05-14 00:09:26 -03:00
2026-05-10 00:55:06 -03:00
2026-05-14 05:11:24 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 20:48:03 -03:00
2026-04-28 02:41:19 -03:00
2026-04-19 19:50:30 -03:00
2026-05-10 00:55:06 -03:00
2026-05-11 21:14:25 -03:00
2026-04-27 20:00:10 -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-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-13 16:46:20 -03:00
2026-05-13 16:46:20 -03:00
2026-05-03 16:12:52 -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-11 10:08:34 -03:00
2026-04-18 11:51:24 -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-10 00:55:06 -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-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-10 00:55:06 -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-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-13 10:14:25 -03:00
2026-05-13 10:14:25 -03:00
2026-05-03 16:17:38 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -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-04-16 05:26:17 -03:00
2026-04-25 11:03:31 -03:00
2026-05-15 14:04:34 +02:00
2026-04-21 21:12:29 -03:00
2026-05-10 09:44:11 -03:00
2026-04-24 09:04:10 -03:00
2026-04-24 13:20:59 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-04 16:45:24 -03:00
2026-04-21 21:12:29 -03:00
2026-04-28 02:41:19 -03:00
2026-04-21 21:12:29 -03:00
2026-04-27 03:53:05 +07:00
2026-04-24 09:22:46 -03:00
2026-05-10 21:16:52 -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-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-04-16 20:53:35 -03:00
2026-04-16 05:26:17 -03:00
2026-04-22 12:26:17 -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-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-13 03:47:40 -03:00
2026-04-17 17:02:00 -03:00
2026-04-24 15:44:59 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -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-10 00:55:06 -03:00
2026-05-12 19:50:07 -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-04-27 00:37:15 -03:00
2026-04-21 21:12:29 -03:00
2026-05-04 19:23:27 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -03:00
2026-05-10 00:55:06 -03:00
2026-04-24 09:04:10 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-28 08:28:09 -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-13 03:47:40 -03:00
2026-05-10 00:55:06 -03:00
2026-04-30 16:51:44 -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-14 08:06:55 -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-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-01 08:35:52 -03:00
2026-05-05 09:59:43 -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-04-21 21:12:29 -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-04-30 14:08:50 -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-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 13:59:03 -03:00
2026-05-13 18:01:53 -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-02 04:51:38 -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-03 00:37:08 -03:00
2026-05-10 00:55:06 -03:00
2026-05-01 13:48:13 -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-04-21 04:13:28 -03:00
2026-04-30 14:08:50 -03:00
2026-04-22 12:26:17 -03:00
2026-05-14 10:38:13 -03:00
2026-04-23 16:57:43 -03:00
2026-04-30 14:08:50 -03:00
2026-05-14 05:11:24 -03:00
2026-05-14 05:53:26 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-12 19:57:06 -03:00
2026-05-10 20:48:03 -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-04-24 07:00:21 -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-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 15:29:17 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -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-04-28 10:03:39 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-05-10 00:55:06 -03:00
2026-05-04 19:23:27 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 17:51:22 -03:00
2026-05-03 16:12:52 -03:00
2026-05-10 00:55:06 -03:00
2026-05-14 00:21:16 -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-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03: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-04-16 05:26:17 -03:00
2026-04-30 01:27:03 -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-04-16 23:25:58 -03:00
2026-05-12 20:28:02 -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-10 20:48:03 -03:00
2026-05-11 21:14:25 -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-03 00:37:08 -03:00
2026-05-06 01:21:31 -03:00
2026-04-30 01:27:03 -03:00
2026-05-14 10:38:13 -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-04-21 21:12:29 -03:00
2026-04-25 16:45:59 -03:00
2026-04-22 12:25:49 -03:00
2026-04-28 10:03:39 -03:00
2026-04-21 21:12:29 -03:00
2026-05-13 10:14:25 -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-04-28 02:41:19 -03:00
2026-05-10 20:48:03 -03:00
2026-04-16 05:26:17 -03:00
2026-05-13 10:14:25 -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-10 13:33:55 -03:00
2026-05-10 18:33:20 -03:00
2026-05-10 00:55:06 -03:00
2026-05-12 15:05:00 -03:00
2026-04-21 21:12:29 -03:00
2026-05-14 00:40:18 -03:00
2026-04-21 21:12:29 -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-04-17 16:59:18 -03:00
2026-04-24 07:00:21 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 13:59:03 -03:00
2026-05-14 08:06:55 -03:00
2026-04-24 13:20:59 -03:00
2026-05-10 00:55:06 -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-04-21 21:12:29 -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-04-28 20:46:25 -03:00
2026-05-14 10:38:13 -03:00
2026-04-16 05:26:17 -03:00
2026-04-28 02:41:19 -03:00
2026-05-01 20:23:31 -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-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-10 18:33:20 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 09:20:21 -03:00
2026-05-14 06:19:02 -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-04-16 05:26:17 -03:00
2026-05-10 20:48:03 -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-14 05:42:22 -03:00
2026-04-21 21:12:29 -03:00
2026-05-14 09:20:21 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 05:42:22 -03:00
2026-04-25 09:19:20 -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-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-30 14:08:50 -03:00
2026-05-05 09:12:35 -03:00
2026-04-21 21:12:29 -03:00
2026-05-10 00:55:06 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-03 18:42:05 -03:00
2026-04-16 20:53:35 -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-04-19 19:50:30 -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-10 20:48:03 -03:00
2026-05-14 05:42:22 -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-10 00:55:06 -03:00
2026-05-10 09:44:11 -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-13 10:14:25 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-15 17:36:21 +02:00
2026-04-30 14:08:50 -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-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-04-16 05:26:17 -03:00
2026-04-27 01:09:23 -03:00
2026-05-10 00:55:06 -03:00
2026-05-10 00:55:06 -03:00
2026-04-16 05:26:17 -03:00
2026-05-01 08:36:24 -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-04-16 05:26:17 -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-04-21 21:12:29 -03:00
2026-05-04 00:14:16 -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-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-14 09:21:17 -03:00
2026-05-11 21:03:26 -03:00
2026-05-10 21:25:32 -03:00
2026-04-16 05:26:17 -03:00
2026-05-14 00:15:40 -03:00
2026-05-11 10:06:05 -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-05-02 06:01: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-04-16 05:26:17 -03: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-04-16 05:26:17 -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-10 20:48:03 -03:00
2026-05-13 10:14:25 -03:00
2026-04-21 21:12:29 -03:00
2026-04-30 01:27:03 -03:00
2026-04-30 01:27:03 -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-04-22 01:39:49 -03:00
2026-04-28 02:41:19 -03:00
2026-04-30 01:27:03 -03:00
2026-04-21 21:12:29 -03:00
2026-04-16 05:26:17 -03:00
2026-05-11 21:49:32 -03:00
2026-05-01 08:36:24 -03:00
2026-04-24 07:48:19 -03:00