alfadb
ddf91e9a7f
fix(gateway): 按最终 anthropic-beta header 对 body.context_management 做能力维度 sanitize
上游 Anthropic 在 body 含 `context_management` 但最终发出去的
`anthropic-beta` header 不含 `context-management-2025-06-27` 时会拒收:
{
"type": "invalid_request_error",
"message": "context_management: Extra inputs are not permitted"
}
(HTTP 400, request_id 形如 req_011C...)
该 400 在 haiku 路径上触发,因为三个 beta header 构造器有意排除了
context-management beta:
- HaikuBetaHeader (messages, OAuth / mimic CC)
- APIKeyHaikuBetaHeader (messages, API-key)
- CountTokensBetaHeader (count_tokens, 所有认证类型)
但 body 中仍然带着 `context_management` 字段,原因有二:
1. normalizeClaudeOAuthRequestBody 在 thinking_enabled / thinking_adaptive
打开时为 `clear_thinking_20251015` 主动注入;
2. 客户端 (Claude Code CLI >= 2.1.87) 原样发送, 网关透传时一并转发。
修复方案: 能力维度对称约束
==========================
对齐已有的 Bedrock 模式
(`backend/internal/service/bedrock_request.go` 中的
`sanitizeBedrockFieldsForBetaTokens`):
根据 **最终** 发出的 `anthropic-beta` header 决定是否保留
`body.context_management`, 而不是按 model 名或路由分类来决定。
新增纯函数:
sanitizeAnthropicBodyForBetaTokens(body, betaHeader) (body, changed)
如果 `betaHeader` 不含 `context-management-2025-06-27`, 用 sjson 把 body
字段 strip 掉; 否则原样返回。
在所有 Anthropic / Anthropic-兼容 上游出口都接入:
| 路径 | sanitize 接入点 |
|--------------------------------------------|-------------------------------------------------------|
| /v1/messages OAuth mimic CC | buildUpstreamRequest |
| /v1/messages OAuth 真 CC 透传 | buildUpstreamRequest |
| /v1/messages API-key | buildUpstreamRequest |
| /v1/messages API-key passthrough | buildUpstreamRequestAnthropicAPIKeyPassthrough |
| /v1/messages Vertex / service-account | buildUpstreamRequestAnthropicVertex |
| /v1/messages/count_tokens (全部 4 条路径) | buildCountTokensRequest, |
| | buildCountTokensRequestAnthropicAPIKeyPassthrough |
| Antigravity Anthropic-兼容 上游 | AntigravityGatewayService.ForwardUpstream |
| Bedrock | (已由 sanitizeBedrockFieldsForBetaTokens 处理) |
为什么要重排 (而不是加一行调用)
================================
sanitize 必须 **在** `signBillingHeaderCCH` 之前运行。CCH 对整个 body
取 xxHash64 摘要后写入 billing header 里 5 位十六进制的 `cch` 字段;
如果先签名再 strip, 上游对发出去的 body 重算 hash 会和 `cch` 不一致,
请求被判为 third-party。这就要求在 `http.NewRequest` 之前算出最终的
`anthropic-beta` header, 所以把原本内联在 builder 里的 beta 计算逻辑
抽成了两个纯函数:
- computeFinalAnthropicBeta (messages 路径: mimic 不透传
客户端 beta)
- computeFinalCountTokensAnthropicBeta (count_tokens 路径: mimic 不
跳过白名单透传)
两者逐位保留原行为:
- mimic 路径在 messages 上跳过客户端 beta, 在 count_tokens 上合并
- API-key 路径尊重 `InjectBetaForAPIKey` 开关
- dropSet (`defaultDroppedBetasSet` + BetaPolicy filter) 应用在主路径,
passthrough / Vertex 路径有意不应用 —— 这条原有的不对称行为本 PR
不动。
一条语义测试 (`TestSanitizeMustBeBeforeCCHSigning_HashConsistency`) 把
顺序约束文档化并强制守住: 它证明 `sanitize -> signBillingHeaderCCH`
产生的 `cch` 与最终 body 一致, 而 `signBillingHeaderCCH -> sanitize`
产生的 `cch` 会被上游 hash 重算判失败。
为什么是能力维度 (而不是 haiku 模型名匹配)
==========================================
最朴素的"按 model 名 strip"方案
(`strings.Contains(modelID, "haiku") -> DeleteBytes "context_management"`)
有四个真实失败模式:
1. 过度删除。CLI >= 2.1.87 的真 Claude Code 客户端在 haiku 上同时
发送 body 字段 **和** `anthropic-beta: context-management-2025-06-27`。
一律 strip 会让该用户的 `clear_thinking_20251015` 静默失效。
2. 别名漂移。未来的 haiku 别名 (`claude-3-haiku-...`,
`claude-haiku-...` 等) 改变匹配面; 任何新别名都会悄悄绕过 strip。
3. count_tokens 漏覆盖。count_tokens 有自己的 builder 和不同的 beta
header 集合; 在一个地方做 model 名检查会漏掉这条路径。
4. API-key passthrough 早退。passthrough builder 在 model 名 strip
之前就 return 了, strip 根本不执行。
能力维度沿着 header 端到端走, 上述 4 个 case 都由构造方式保证正确,
不依赖任何 modelID 匹配。
防御项
======
- 当 `sjson.DeleteBytes` 在 `gjson` 刚验证过字段存在的 body 上失败时,
`sanitizeAnthropicBodyForBetaTokens` 会记 warning 日志 —— 这种情况
现实中仅在请求中途被破坏时发生, 日志把此前会静默发生的 body / header
不一致暴露出来。
- `header_util.go` 新增 `deleteHeaderAllForms`: 在白名单透传已经写入
canonical 大小写的 `Anthropic-Beta` 之后再覆盖, 否则会同时留下两条。
测试
====
`backend/internal/service` 下新增 44 个测试:
- 纯函数: anthropicBetaTokensContains x 5, sanitize keep/strip x 6,
computeFinal{Anthropic,CountTokens}AnthropicBeta x 12
- normalize 回归 x 5
- buildUpstreamRequest 端到端 x 4
(OAuth mimic haiku strip / mimic sonnet preserve /
真 CC haiku 带客户端 beta preserve / API-key haiku strip)
- buildCountTokensRequest 端到端 x 2
- buildUpstreamRequestAnthropicAPIKeyPassthrough x 2 (strip / preserve)
- buildCountTokensRequestAnthropicAPIKeyPassthrough x 2 (strip / preserve)
- buildUpstreamRequestAnthropicVertex x 2 (strip / preserve, 含 outgoing
`anthropic-beta` header 对称断言)
- CCH 顺序语义测试 x 1
unit 套件全过 (本机 88s), `golangci-lint` 0 issues。
已知局限 (本 PR 范围外)
========================
- Vertex 路径用透传过来的客户端 `anthropic-beta` header 作为 sanitize
依据, 而不是 Vertex 侧的能力矩阵。最坏情况是过度 strip (= 当前 main
的行为, 主路径本来什么都不 strip); 不是 regression。完整的 Vertex
能力模型属于单独的 PR。
- Vertex builder 仍然不应用 BetaPolicy filter / dropSet。这是该 builder
早 return 的既有架构决策, 本 PR 不动。
- count_tokens mimic 在 haiku 上仍然注入 `context-management-2025-06-27`
(因为原 count_tokens mimic 逻辑并不像 messages mimic 那样排除它)。
本 PR 逐位保留 main 的行为; 是否要让它与 messages mimic 的排除策略
统一是另一个问题。
- `sanitizeAnthropicBodyForBetaTokens` 目前只处理
`context_management <-> context-management-2025-06-27` 这一对。如果
Anthropic 后续推出更多 beta-gated body 字段, 可以在后续 PR 重构为
`{body 路径 -> required beta token}` 注册表的形式。
2026-05-28 00:02:50 +08:00
..
2026-05-26 20:07:00 +08:00
2026-03-07 13:39:47 +08:00
2026-02-21 14:16:18 +08:00
2026-02-08 13:06:25 +08:00
2026-01-15 15:14:44 +08:00
2026-03-23 03:49:28 +08:00
2026-05-08 03:44:04 +08:00
2026-05-08 03:44:04 +08:00
2026-01-07 16:59:35 +08:00
2025-12-26 16:45:40 +08:00
2026-02-24 16:48:16 +08:00
2026-03-06 05:07:52 +08:00
2026-04-25 14:52:58 +08:00
2026-03-05 11:50:58 +08:00
2026-03-08 14:12:17 +08:00
2026-05-26 11:24:25 -07:00
2026-03-14 17:37:34 +08:00
2026-04-19 18:45:04 +08:00
2026-03-31 13:24:22 +08:00
2026-05-26 20:29:48 +08:00
2026-05-26 20:29:48 +08:00
2026-04-14 16:26:46 +08:00
2026-05-05 03:26:54 +08:00
2026-04-05 17:11:01 +08:00
2026-05-26 13:57:59 +08:00
2026-05-26 13:57:59 +08:00
2026-05-26 13:57:59 +08:00
2026-05-26 13:57:59 +08:00
2026-05-19 15:43:21 +08:00
2026-05-19 15:43:21 +08:00
2026-04-14 09:32:11 +08:00
2026-04-01 02:19:42 +08:00
2026-05-26 11:24:25 -07:00
2026-05-03 20:33:14 +08:00
2026-05-05 06:44:37 -07:00
2026-04-22 13:19:28 +08:00
2026-04-27 17:32:34 +08:00
2026-05-23 10:18:43 +08:00
2026-03-02 03:59:31 +08:00
2026-05-08 03:44:04 +08:00
2026-05-26 10:49:20 +08:00
2026-05-05 06:44:37 -07:00
2026-04-23 16:34:37 +08:00
2026-05-05 03:26:54 +08:00
2026-04-23 16:34:37 +08:00
2026-03-16 16:22:31 +08:00
2026-04-05 17:11:01 +08:00
2026-04-23 16:34:37 +08:00
2026-04-09 18:14:28 +08:00
2026-01-11 10:55:25 +08:00
2026-04-23 16:34:37 +08:00
2026-05-27 18:00:45 +08:00
2026-04-25 20:22:07 +08:00
2026-05-03 22:12:57 +08:00
2026-04-21 09:53:15 -07:00
2026-04-21 09:53:15 -07:00
2026-02-02 22:13:50 +08:00
2026-04-21 09:53:15 -07:00
2026-02-09 07:02:12 +08:00
2026-02-09 07:02:12 +08:00
2026-04-04 14:32:26 +08:00
2026-04-04 14:32:26 +08:00
2026-05-27 09:02:15 +00:00
2026-05-28 00:02:50 +08:00
2026-05-12 16:12:08 +08:00
2026-03-27 20:11:24 +08:00
2026-03-27 20:18:07 +08:00
2026-04-01 02:19:42 +08:00
2026-02-11 13:41:55 +08:00
2026-04-01 12:24:52 +08:00
2026-03-25 19:03:12 +08:00
2026-03-25 17:38:41 +08:00
2026-03-16 04:58:23 +08:00
2026-03-16 04:58:23 +08:00
2026-03-16 04:58:58 +08:00
2026-05-26 20:29:48 +08:00
2026-03-17 01:47:08 +08:00
2026-04-05 17:21:36 +08:00
2026-03-25 19:03:12 +08:00
2026-02-07 12:31:10 +08:00
2026-02-07 14:39:25 +08:00
2026-03-23 03:49:28 +08:00
2026-03-16 01:31:54 +08:00
2026-05-27 18:00:45 +08:00
2026-01-11 10:55:25 +08:00
2026-05-27 18:00:45 +08:00
2026-05-27 18:00:45 +08:00
2026-03-15 14:04:13 +08:00
2026-05-07 09:14:47 +08:00
2026-03-19 22:27:55 +08:00
2026-03-19 22:27:55 +08:00
2026-02-23 12:45:37 +08:00
2026-03-19 22:27:55 +08:00
2026-03-15 14:04:13 +08:00
2026-01-11 10:55:26 +08:00
2026-05-20 13:25:58 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-04-21 09:53:15 -07:00
2026-04-22 14:56:56 +08:00
2026-04-22 14:56:56 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-19 15:27:47 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-03-16 20:22:10 +08:00
2026-03-16 20:22:10 +08:00
2026-04-14 09:36:40 +08:00
2026-04-14 09:36:26 +08:00
2026-04-14 09:31:45 +08:00
2026-05-20 13:25:18 +08:00
2026-05-25 14:15:39 +08:00
2026-05-25 14:15:39 +08:00
2026-03-13 17:00:16 +08:00
2026-03-13 17:00:16 +08:00
2026-03-13 19:15:27 +08:00
2026-03-13 19:15:27 +08:00
2025-12-25 17:15:01 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-12 15:21:31 +08:00
2026-04-17 22:06:32 +08:00
2026-05-27 09:59:58 +00:00
2026-04-17 22:06:32 +08:00
2026-05-27 09:59:58 +00:00
2026-05-15 01:28:13 +08:00
2026-05-15 01:28:13 +08:00
2026-05-21 11:46:24 +08:00
2026-04-20 23:38:59 +08:00
2026-04-20 20:21:02 +08:00
2026-05-20 21:19:06 +08:00
2026-05-20 21:19:06 +08:00
2026-05-19 22:05:43 +08:00
2026-04-22 20:08:31 +08:00
2026-04-22 20:08:31 +08:00
2026-05-19 22:05:43 +08:00
2026-04-20 20:21:02 +08:00
2026-05-19 22:05:43 +08:00
2026-05-19 22:05:43 +08:00
2026-05-19 22:05:43 +08:00
2026-05-19 22:05:43 +08:00
2026-04-23 00:45:10 +08:00
2026-05-15 13:14:07 +08:00
2026-05-15 13:14:07 +08:00
2026-04-14 09:20:39 +08:00
2026-05-21 11:46:24 +08:00
2026-02-08 12:05:39 +08:00
2026-03-01 16:39:21 +08:00
2026-03-18 11:08:58 +08:00
2026-04-25 20:39:58 -04:00
2026-04-29 16:53:09 +08:00
2026-05-07 00:10:20 +08:00
2026-05-23 10:18:43 +08:00
2026-05-23 10:18:43 +08:00
2026-05-07 09:14:47 +08:00
2026-05-22 14:54:06 +08:00
2026-05-22 14:54:06 +08:00
2026-05-07 14:31:19 +08:00
2026-05-26 13:58:02 +08:00
2026-05-26 13:58:02 +08:00
2026-02-09 10:39:09 +08:00
2026-03-23 03:49:28 +08:00
2026-03-12 16:53:18 +08:00
2026-03-12 16:53:18 +08:00
2026-03-12 16:53:18 +08:00
2026-03-18 14:16:50 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:05:54 +08:00
2025-12-28 09:49:54 +08:00
2026-02-09 07:02:12 +08:00
2026-02-09 07:02:12 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 10:49:20 +08:00
2026-05-20 13:25:58 +08:00
2026-05-20 13:25:18 +08:00
2026-04-23 21:40:58 +08:00
2026-02-10 11:42:39 +08:00
2026-02-10 21:40:31 +08:00
2026-02-12 23:43:47 +08:00
2026-03-27 14:33:05 +08:00
2026-04-23 21:40:58 +08:00
2026-02-07 12:31:10 +08:00
2026-02-09 21:35:41 +08:00
2026-02-21 14:16:18 +08:00
2026-05-19 19:37:41 +08:00
2026-05-28 00:02:50 +08:00
2026-05-07 18:56:11 +08:00
2026-04-24 23:16:32 +08:00
2026-04-08 16:11:19 +08:00
2026-04-08 16:23:02 +08:00
2026-05-11 21:26:41 +08:00
2026-02-06 09:54:29 +08:00
2026-04-04 11:25:01 +08:00
2026-04-04 11:25:01 +08:00
2026-05-28 00:02:50 +08:00
2026-03-26 11:17:25 +08:00
2026-03-24 09:32:34 +08:00
2026-05-26 20:29:48 +08:00
2026-03-24 09:32:34 +08:00
2026-05-26 20:29:48 +08:00
2026-03-03 13:20:58 +08:00
2026-04-23 21:40:58 +08:00
2026-05-11 21:26:41 +08:00
2026-05-26 20:29:48 +08:00
2026-01-29 01:49:51 +08:00
2026-04-25 22:50:35 +08:00
2026-05-26 10:49:20 +08:00
2026-05-20 18:46:50 +08:00
2026-05-28 00:02:50 +08:00
2026-02-06 16:09:58 +08:00
2026-02-07 14:32:08 +08:00
2026-05-21 11:46:24 +08:00
2026-03-13 17:00:16 +08:00
2026-02-09 06:47:22 +08:00
2026-04-05 17:11:01 +08:00
2026-05-03 17:11:27 +08:00
2026-04-17 22:06:32 +08:00
2026-05-28 00:02:50 +08:00
2026-04-29 15:44:54 +08:00
2026-05-11 21:26:41 +08:00
2026-05-11 17:27:04 +08:00
2026-02-28 15:01:20 +08:00
2026-04-14 09:36:40 +08:00
2026-04-14 17:35:27 +08:00
2026-05-19 19:37:41 +08:00
2026-05-16 00:16:38 +08:00
2026-05-14 15:33:10 +08:00
2026-05-19 19:37:41 +08:00
2026-05-26 20:29:48 +08:00
2026-03-12 11:04:14 +08:00
2026-02-03 21:34:55 +08:00
2026-02-26 10:53:04 +08:00
2026-03-02 16:04:20 +08:00
2025-12-26 00:11:03 -08:00
2026-01-04 15:36:00 +08:00
2026-02-09 07:02:12 +08:00
2026-03-24 09:32:01 +08:00
2026-03-24 09:32:01 +08:00
2026-01-14 15:55:44 +08:00
2026-04-29 16:53:09 +08:00
2026-03-16 01:31:54 +08:00
2025-12-26 00:11:03 -08:00
2026-03-24 09:31:32 +08:00
2026-03-18 10:06:35 +08:00
2026-05-27 18:00:45 +08:00
2026-05-05 03:26:54 +08:00
2026-01-05 17:07:29 +08:00
2026-05-27 18:00:45 +08:00
2026-05-28 00:02:50 +08:00
2026-03-27 14:33:05 +08:00
2026-05-26 13:57:59 +08:00
2026-05-26 13:57:59 +08:00
2026-02-23 12:45:37 +08:00
2026-02-23 12:45:37 +08:00
2026-02-23 12:45:37 +08:00
2026-02-23 12:45:37 +08:00
2026-02-23 12:45:37 +08:00
2026-03-19 16:56:18 +08:00
2026-04-24 23:16:32 +08:00
2026-05-05 03:26:54 +08:00
2026-05-12 15:21:31 +08:00
2026-05-12 15:21:31 +08:00
2026-05-12 15:21:31 +08:00
2026-05-12 16:04:24 +08:00
2026-05-12 15:21:31 +08:00
2026-03-27 20:11:24 +08:00
2026-03-18 11:08:58 +08:00
2026-03-18 11:08:58 +08:00
2026-05-26 20:29:48 +08:00
2026-05-26 20:29:48 +08:00
2026-04-23 00:45:10 +08:00
2026-04-22 12:30:08 +08:00
2026-02-24 23:24:48 +08:00
2026-02-28 15:01:20 +08:00
2026-05-20 16:40:18 +08:00
2026-05-20 16:40:18 +08:00
2026-04-14 09:36:40 +08:00
2026-04-14 09:35:20 +08:00
2026-03-30 16:23:38 +08:00
2026-03-30 16:44:15 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-04-23 12:58:13 +08:00
2026-05-26 20:29:48 +08:00
2026-05-26 20:29:48 +08:00
2026-02-28 15:01:20 +08:00
2026-04-25 14:52:58 +08:00
2026-05-26 20:29:48 +08:00
2026-04-25 14:52:58 +08:00
2026-05-23 10:18:43 +08:00
2026-05-26 13:57:59 +08:00
2026-04-04 11:25:01 +08:00
2026-02-21 12:06:24 +08:00
2026-02-21 12:06:24 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-04-09 12:29:49 +08:00
2026-05-19 15:14:36 +08:00
2026-05-19 15:14:36 +08:00
2026-04-25 14:52:58 +08:00
2026-04-25 14:52:58 +08:00
2026-04-25 14:52:58 +08:00
2026-05-19 09:53:50 +08:00
2026-03-29 20:52:29 +08:00
2026-05-05 19:36:33 +08:00
2026-05-05 19:36:33 +08:00
2026-04-02 00:11:17 +08:00
2026-04-02 01:03:22 +08:00
2026-04-11 22:48:45 +08:00
2026-05-13 11:25:15 +08:00
2026-05-14 16:45:31 +08:00
2026-05-14 16:45:31 +08:00
2026-05-03 17:43:56 +08:00
2026-05-26 21:33:28 +08:00
2026-05-27 22:09:55 +08:00
2026-05-26 21:33:28 +08:00
2026-05-27 22:09:55 +08:00
2026-05-27 22:09:55 +08:00
2026-05-26 10:49:20 +08:00
2026-05-26 13:57:59 +08:00
2026-05-27 22:09:55 +08:00
2026-05-22 23:28:21 +08:00
2026-02-22 21:04:52 +08:00
2026-04-01 00:46:38 +08:00
2026-03-16 10:28:51 +08:00
2026-05-27 20:24:52 +08:00
2026-01-15 23:52:50 +08:00
2026-05-27 22:09:55 +08:00
2026-05-07 00:10:20 +08:00
2026-05-27 22:09:55 +08:00
2026-05-26 13:57:59 +08:00
2026-05-27 22:09:55 +08:00
2026-02-28 15:01:20 +08:00
2026-05-05 19:36:33 +08:00
2026-05-11 12:03:17 +08:00
2026-05-05 19:36:33 +08:00
2026-04-09 12:29:28 +08:00
2026-04-09 12:29:28 +08:00
2026-05-05 19:36:33 +08:00
2026-05-05 19:36:33 +08:00
2026-05-05 19:36:33 +08:00
2026-05-05 03:26:54 +08:00
2026-05-12 09:26:53 +00:00
2026-05-04 11:43:00 +08:00
2026-05-05 19:36:33 +08:00
2026-04-05 17:11:01 +08:00
2026-05-08 11:36:09 +08:00
2026-02-28 15:01:20 +08:00
2026-04-05 17:21:36 +08:00
2026-04-27 00:39:06 +00:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-03-23 00:10:22 +08:00
2026-04-02 20:44:28 +08:00
2026-05-19 15:48:36 +08:00
2026-05-05 03:26:54 +08:00
2026-02-28 15:01:20 +08:00
2026-03-09 15:08:37 +08:00
2026-05-23 10:18:43 +08:00
2026-05-23 10:18:43 +08:00
2026-05-25 10:46:58 +08:00
2026-05-25 10:46:58 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-04-25 14:52:58 +08:00
2026-02-28 15:01:20 +08:00
2026-03-05 11:50:58 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-05-16 03:03:43 +08:00
2026-05-25 10:46:58 +08:00
2026-05-25 10:46:58 +08:00
2026-02-28 15:01:20 +08:00
2026-05-05 03:26:54 +08:00
2026-05-27 15:14:28 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-03-06 20:49:47 +08:00
2026-05-26 10:49:20 +08:00
2026-03-05 11:50:58 +08:00
2026-03-05 11:50:58 +08:00
2026-05-26 20:07:00 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-05-27 15:14:28 +08:00
2026-02-09 08:19:01 +08:00
2026-01-10 01:38:47 +08:00
2026-03-14 18:47:37 +08:00
2026-02-08 12:05:39 +08:00
2026-05-20 13:25:32 +08:00
2026-01-15 15:14:44 +08:00
2026-01-15 15:14:44 +08:00
2026-05-19 19:37:41 +08:00
2026-05-04 13:35:26 +08:00
2026-04-29 15:01:02 +08:00
2026-05-19 19:37:41 +08:00
2026-04-14 17:35:27 +08:00
2026-01-10 01:38:47 +08:00
2026-03-04 13:45:49 +08:00
2026-03-04 13:45:49 +08:00
2026-01-15 15:14:44 +08:00
2026-01-15 23:02:15 +08:00
2026-03-04 13:45:49 +08:00
2026-02-12 16:25:44 +08:00
2026-02-12 16:27:29 +08:00
2026-05-26 17:21:56 +08:00
2026-05-26 17:21:56 +08:00
2026-05-19 19:37:41 +08:00
2026-02-12 14:20:14 +08:00
2026-02-12 14:20:14 +08:00
2026-02-12 14:20:14 +08:00
2026-05-19 19:37:41 +08:00
2026-03-04 15:22:46 +08:00
2026-03-04 13:45:49 +08:00
2026-02-09 08:27:14 +08:00
2026-01-12 14:17:42 +08:00
2026-01-12 14:17:42 +08:00
2026-01-09 20:53:44 +08:00
2026-05-19 19:37:41 +08:00
2026-01-11 23:57:20 +08:00
2026-05-20 13:25:32 +08:00
2026-05-19 19:37:41 +08:00
2026-05-19 19:37:41 +08:00
2026-05-19 19:37:41 +08:00
2026-03-13 17:18:04 +08:00
2026-03-15 17:26:18 +08:00
2026-05-04 13:35:26 +08:00
2026-02-12 16:25:44 +08:00
2026-02-12 16:27:29 +08:00
2026-04-14 17:35:27 +08:00
2026-02-12 17:42:29 +08:00
2026-01-23 19:39:48 +08:00
2026-03-04 13:45:49 +08:00
2026-05-19 19:37:41 +08:00
2026-05-26 17:18:27 +08:00
2026-01-09 20:53:44 +08:00
2026-03-18 16:22:19 +08:00
2026-02-12 14:20:56 +08:00
2026-05-11 11:17:26 +08:00
2026-05-11 11:17:26 +08:00
2026-05-11 11:17:26 +08:00
2026-04-14 09:36:26 +08:00
2026-04-14 17:35:27 +08:00
2026-05-11 11:17:26 +08:00
2026-05-11 11:17:26 +08:00
2026-04-21 23:20:37 +08:00
2026-05-19 18:22:12 +08:00
2026-05-11 11:17:26 +08:00
2026-04-23 19:22:43 +08:00
2026-05-11 11:17:26 +08:00
2026-05-20 11:09:18 +08:00
2026-05-19 16:56:31 +08:00
2026-04-22 11:28:58 +08:00
2026-05-20 16:08:41 +08:00
2026-05-19 16:56:31 +08:00
2026-05-11 11:17:26 +08:00
2026-05-11 11:17:26 +08:00
2026-05-14 11:36:02 +08:00
2026-05-20 11:09:18 +08:00
2026-05-11 11:17:26 +08:00
2026-05-11 11:17:26 +08:00
2026-04-22 12:30:17 +08:00
2026-05-19 16:56:31 +08:00
2026-04-22 14:57:16 +08:00
2026-04-22 12:30:17 +08:00
2026-05-20 11:09:18 +08:00
2026-04-11 13:16:35 +08:00
2026-04-22 16:38:36 +08:00
2026-04-22 02:32:53 +08:00
2026-04-21 12:50:55 +08:00
2026-05-26 10:49:20 +08:00
2026-05-19 20:32:32 +08:00
2026-05-19 20:32:32 +08:00
2026-01-10 13:14:35 +08:00
2026-01-10 13:14:35 +08:00
2026-01-11 10:55:25 +08:00
2026-02-20 12:13:04 +08:00
2026-02-05 18:40:49 +08:00
2026-03-17 08:40:08 +08:00
2026-03-17 08:40:08 +08:00
2026-01-03 06:29:02 -08:00
2026-05-05 20:11:12 +08:00
2026-03-14 02:21:22 +08:00
2026-05-16 19:40:23 +08:00
2026-05-23 10:18:43 +08:00
2026-02-14 00:21:56 +08:00
2026-05-23 10:18:43 +08:00
2026-05-26 20:29:48 +08:00
2026-05-11 16:22:40 +08:00
2026-05-26 20:29:48 +08:00
2026-05-26 20:29:48 +08:00
2026-05-19 15:53:28 +08:00
2026-05-19 15:53:28 +08:00
2026-05-20 16:08:41 +08:00
2026-05-20 16:08:41 +08:00
2026-03-16 01:31:54 +08:00
2026-02-05 12:42:54 +08:00
2026-05-21 21:02:26 +08:00
2026-05-21 21:02:26 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 20:34:22 +08:00
2026-03-08 06:59:53 +08:00
2026-03-08 06:59:53 +08:00
2026-03-05 16:37:07 +08:00
2026-04-29 22:48:39 +08:00
2026-01-12 14:19:06 +08:00
2026-02-07 12:31:10 +08:00
2026-01-12 14:19:06 +08:00
2026-02-09 21:35:41 +08:00
2026-05-23 10:18:43 +08:00
2026-04-29 22:48:39 +08:00
2026-02-02 22:13:50 +08:00
2026-04-21 20:36:10 +08:00
2026-03-12 02:42:57 +03:00
2026-04-22 16:51:23 +08:00
2026-05-26 10:49:20 +08:00
2026-05-21 21:02:26 +08:00
2026-05-21 21:02:26 +08:00
2026-04-22 13:18:10 +08:00
2026-05-26 10:49:20 +08:00
2025-12-26 16:45:40 +08:00
2026-05-26 10:49:20 +08:00
2026-05-19 19:37:41 +08:00
2026-04-21 10:13:28 -07:00
2026-02-06 22:55:12 +08:00
2026-02-07 21:18:03 +08:00
2026-04-23 21:40:58 +08:00
2026-05-18 21:09:11 +08:00
2026-05-18 21:09:11 +08:00
2026-05-21 14:27:50 +08:00
2026-05-21 14:27:50 +08:00
2026-02-10 17:52:10 +08:00
2026-02-10 17:51:49 +08:00
2026-03-13 10:39:35 +08:00
2026-05-18 21:09:11 +08:00
2026-02-23 12:45:37 +08:00
2026-02-23 12:45:37 +08:00
2026-02-07 12:31:10 +08:00
2026-01-11 21:54:52 -08:00
2026-04-04 11:13:58 +08:00
2026-02-10 17:52:10 +08:00
2026-02-12 19:01:09 +08:00
2026-03-27 14:33:05 +08:00
2026-02-02 22:13:50 +08:00
2026-04-05 17:11:01 +08:00
2026-01-15 19:08:07 +08:00
2026-01-15 18:27:06 +08:00
2026-05-20 09:24:51 +00:00
2026-05-23 10:18:43 +08:00
2026-04-05 17:11:01 +08:00
2026-05-08 11:36:09 +08:00
2026-05-20 13:25:58 +08:00
2026-02-12 19:01:09 +08:00
2026-01-04 19:28:20 +08:00
2026-05-18 19:01:12 +08:00
2026-05-18 19:01:12 +08:00
2026-04-16 01:53:22 +08:00
2026-04-17 22:07:15 +08:00
2026-04-14 09:36:26 +08:00
2026-03-12 16:53:18 +08:00
2026-02-28 15:01:20 +08:00
2026-02-28 15:01:20 +08:00
2026-03-12 18:38:09 +08:00
2026-04-04 11:09:01 +08:00
2026-02-28 15:01:20 +08:00
2026-05-12 15:21:31 +08:00
2026-02-22 12:56:57 +08:00
2026-02-22 12:56:57 +08:00
2026-05-20 15:48:38 +08:00
2026-05-19 15:27:47 +08:00
2026-01-01 18:58:34 +08:00
2026-03-06 16:47:51 +08:00
2026-03-06 16:47:51 +08:00
2026-04-23 16:34:37 +08:00
2026-03-03 01:05:11 +08:00
2026-05-26 10:49:20 +08:00
2026-04-23 16:34:37 +08:00
2026-04-21 01:00:59 +08:00
2026-05-26 10:49:20 +08:00
2026-05-20 13:25:58 +08:00
2026-05-18 21:09:11 +08:00
2026-03-18 09:23:19 +08:00
2026-05-18 21:09:11 +08:00
2026-04-23 16:34:37 +08:00
2026-05-08 14:03:15 +08:00
2026-05-11 11:43:44 +08:00
2026-04-14 09:36:40 +08:00
2026-04-14 17:35:27 +08:00
2026-01-16 15:25:33 +08:00
2026-05-26 10:49:20 +08:00