nesquena-hermes
da5bf69aee
fix(sidebar): hoist _sessionAttentionState to fix ReferenceError crash ( #3696 ) + scope-undef prevention gate ( #3698 )
...
* fix(sidebar): hoist _sessionAttentionState to top-level scope (#3696 )
_sessionAttentionState was declared inside renderSessionListFromCache() and
relied on function hoisting, but the top-level function _sidebarRowHasVisible
Messages (reached via renderSessionListFromCache -> _partitionSidebarSessionRows)
called it bare. Hoisting is scoped to the enclosing function, so every sidebar
cache-render threw 'ReferenceError: _sessionAttentionState is not defined' and
the session list went blank. Regressed in #3672 (v0.51.269) when _sidebarRow
HasVisibleMessages was extracted to top level.
Fix: move _sessionAttentionState to top-level scope (it is pure — only uses its
arg plus the i18n global t), so both the visibility predicate and the nested
per-row renderer can reach it.
Prevention (the durable half): add scripts/scope_undef_gate.py — models the
classic-<script> shared global scope (union of all static files' top-level
symbols) and runs ESLint no-undef per file, flagging a function defined nested
but called from a sibling scope. Wired into CI (.github/workflows/tests.yml lint
job) alongside the existing no-const-assign runtime gate, plus an in-suite test
(test_static_js_scope_undef.py) and a focused structural regression test
(test_issue3696_session_attention_scope.py). RED/GREEN-validated against the
broken tree.
* fix(streaming): thread source param into stale-stream bailout; tighten scope gate
Opus review of #3698 found the new scope_undef_gate's 'source' allowlist entry
was masking a real same-class bug: _bailOutOfTerminalEventsFromStaleStream
(declared inside attachLiveStream, params activeSid/streamId/uploaded/options)
called _closeSource(source) against a 'source' not in its lexical scope. All 5
call sites are inside _wireSSE(source), but JS scope is lexical not dynamic, so
the helper would throw ReferenceError: source is not defined on the stale-stream
terminal-event path (user back in an active session whose old stream finalizes
late).
Fix: thread source as an explicit parameter (declaration + all 5 call sites),
the same make-the-dependency-explicit fix as #3696 — and REMOVE the 'source'
allowlist entry so the gate stays gated against that name (it now passes because
the bug is fixed, not because it's allowlisted). Added the documented
false-negative classes from Opus's review to the gate docstring (name-collision
shadowing, destructuring-regex gap, exposure escape hatches, name-keyed
allowlist) and a focused regression test.
This is the prevention gate catching a real latent bug on its first outing.
---------
Co-authored-by: nesquena-hermes <nesquena-hermes@users.noreply.github.com >
2026-06-05 20:49:45 -07:00
..
2026-03-30 20:40:19 -07:00
2026-04-21 02:25:14 +00:00
2026-05-30 18:48:25 -07:00
2026-06-04 10:50:34 -07:00
2026-05-10 18:03:21 +02:00
2026-05-01 17:14:51 +00:00
2026-05-05 02:26:55 +00:00
2026-05-04 18:11:58 +00:00
2026-06-01 04:42:05 +00:00
2026-04-23 12:15:56 -07:00
2026-04-29 19:54:07 -07:00
2026-05-24 15:52:34 +00:00
2026-05-12 20:09:54 +08:00
2026-04-25 15:47:44 -07:00
2026-05-03 01:53:01 +08:00
2026-05-05 12:51:13 +02:00
2026-05-20 00:23:01 +00:00
2026-05-13 16:34:38 +00:00
2026-05-02 02:50:40 +00:00
2026-05-05 08:36:17 -07:00
2026-05-02 00:52:41 +00:00
2026-05-03 01:53:01 +08:00
2026-06-05 17:48:27 -07:00
2026-05-24 17:13:34 +00:00
2026-05-04 10:48:36 -04:00
2026-05-07 16:58:40 +00:00
2026-05-06 14:53:40 +00:00
2026-05-30 19:40:40 +00:00
2026-05-05 22:14:07 +00:00
2026-05-05 16:13:58 +00:00
2026-05-05 16:41:30 +00:00
2026-05-07 01:39:52 +00:00
2026-05-12 07:47:21 -06:00
2026-05-14 12:34:49 -07:00
2026-06-04 17:16:31 -07:00
2026-05-24 17:42:06 +00:00
2026-06-05 19:52:52 -07:00
2026-06-05 13:34:54 -07:00
2026-06-02 20:24:48 -07:00
2026-05-19 23:55:58 -07:00
2026-05-25 17:11:59 +00:00
2026-06-04 15:21:41 -07:00
2026-05-08 15:37:08 +00:00
2026-05-30 01:39:54 +00:00
2026-04-27 11:43:32 -07:00
2026-04-29 04:37:31 +00:00
2026-06-05 13:10:45 -07:00
2026-06-05 13:10:45 -07:00
2026-04-14 19:04:48 +00:00
2026-06-05 13:10:45 -07:00
2026-05-18 07:27:31 +08:00
2026-05-30 21:09:25 +00:00
2026-05-13 14:18:47 -03:00
2026-06-04 15:21:41 -07:00
2026-06-05 13:45:15 -07:00
2026-05-25 08:51:44 +08:00
2026-04-24 01:32:47 +00:00
2026-05-24 03:26:45 +00:00
2026-04-25 23:08:59 -07:00
2026-05-07 17:07:48 +00:00
2026-05-24 21:49:21 +02:00
2026-05-02 19:35:42 +00:00
2026-05-07 18:35:00 +02:00
2026-05-31 01:56:39 +00:00
2026-04-25 14:33:41 -07:00
2026-05-28 13:38:50 -04:00
2026-05-12 20:05:28 +08:00
2026-04-29 19:54:07 -07:00
2026-06-03 11:26:12 -07:00
2026-06-05 00:23:59 -07:00
2026-05-12 15:43:36 -07:00
2026-05-25 11:14:15 +02:00
2026-05-17 03:35:19 +00:00
2026-05-22 09:25:15 +02:00
2026-06-05 11:58:25 -07:00
2026-06-01 05:31:53 +00:00
2026-05-10 17:13:52 +00:00
2026-05-11 23:13:16 +00:00
2026-05-04 00:06:58 -07:00
2026-05-20 16:35:15 +00:00
2026-06-05 16:52:28 -07:00
2026-06-04 23:56:44 -07:00
2026-05-07 02:47:19 +00:00
2026-05-25 02:06:42 +02:00
2026-04-21 22:55:09 -07:00
2026-04-25 21:35:51 -07:00
2026-06-04 23:56:44 -07:00
2026-05-26 15:16:03 +08:00
2026-05-13 18:56:55 +08:00
2026-05-30 11:48:57 +02:00
2026-05-24 18:08:42 +00:00
2026-05-11 06:18:13 +00:00
2026-05-28 13:38:06 -06:00
2026-05-26 11:32:34 +08:00
2026-04-22 20:18:02 +00:00
2026-05-27 10:58:49 +08:00
2026-05-17 01:41:06 -07:00
2026-04-26 21:04:38 -07:00
2026-05-08 13:18:29 +08:00
2026-06-03 09:24:51 -07:00
2026-05-07 04:00:40 +00:00
2026-05-06 18:11:14 +00:00
2026-05-05 01:52:42 +00:00
2026-05-11 21:58:35 +02:00
2026-05-07 06:25:18 +00:00
2026-05-13 11:50:31 +08:00
2026-05-12 05:36:31 +00:00
2026-06-05 10:53:45 -07:00
2026-06-05 10:44:02 -07:00
2026-05-01 18:30:41 +00:00
2026-06-05 11:35:26 -07:00
2026-05-28 11:13:00 +08:00
2026-05-19 21:35:10 -04:00
2026-05-24 14:57:37 -04:00
2026-04-26 21:04:38 -07:00
2026-05-17 17:34:46 -07:00
2026-05-14 23:05:35 +08:00
2026-05-13 16:47:14 +08:00
2026-05-13 11:37:11 -07:00
2026-04-29 16:45:26 +08:00
2026-05-28 15:30:49 +08:00
2026-04-27 16:44:07 -07:00
2026-05-13 11:50:31 +08:00
2026-05-04 00:06:58 -07:00
2026-06-01 17:19:48 +00:00
2026-05-30 01:39:54 +00:00
2026-05-18 21:40:02 -05:00
2026-05-14 11:09:21 +08:00
2026-05-31 18:26:30 +00:00
2026-06-04 15:21:41 -07:00
2026-06-05 18:56:43 -07:00
2026-05-20 00:09:06 +00:00
2026-05-18 12:10:17 -07:00
2026-06-03 16:46:53 -07:00
2026-05-07 18:41:13 +00:00
2026-05-02 04:19:28 +00:00
2026-05-05 22:32:19 +02:00
2026-05-12 02:57:37 -07:00
2026-05-24 04:08:25 +00:00
2026-05-22 23:17:00 +00:00
2026-05-28 02:48:17 +00:00
2026-05-30 18:58:20 +00:00
2026-04-18 06:37:09 +00:00
2026-04-29 04:39:50 +00:00
2026-06-01 19:08:30 +00:00
2026-05-08 20:48:39 +00:00
2026-06-04 11:13:45 -07:00
2026-04-27 22:56:12 -07:00
2026-05-18 22:32:20 -06:00
2026-05-26 23:49:02 +02:00
2026-05-13 11:50:31 +08:00
2026-05-13 11:50:31 +08:00
2026-04-14 21:52:34 +00:00
2026-04-16 00:00:22 +00:00
2026-04-29 04:33:24 +00:00
2026-05-21 17:14:36 +00:00
2026-05-05 01:12:07 +00:00
2026-05-24 17:13:32 +00:00
2026-06-04 10:50:34 -07:00
2026-04-16 20:16:07 -07:00
2026-04-25 15:47:44 -07:00
2026-06-02 20:01:53 +00:00
2026-05-03 22:04:58 +00:00
2026-05-14 09:14:28 +08:00
2026-04-16 18:09:16 -07:00
2026-04-24 09:05:25 -07:00
2026-05-06 18:11:14 +00:00
2026-04-21 15:26:52 -07:00
2026-04-25 13:07:35 -07:00
2026-05-06 06:26:44 +00:00
2026-04-18 06:46:43 +00:00
2026-04-20 23:04:09 +00:00
2026-05-05 02:26:55 +00:00
2026-06-03 16:46:53 -07:00
2026-05-30 21:09:25 +00:00
2026-05-24 17:13:32 +00:00
2026-05-05 01:20:32 +00:00
2026-05-28 18:27:03 +00:00
2026-05-21 17:14:37 +00:00
2026-04-20 22:48:19 +00:00
2026-04-19 23:11:49 -07:00
2026-05-15 18:36:38 +08:00
2026-05-30 18:19:31 +02:00
2026-05-15 09:43:18 -06:00
2026-04-27 16:27:03 -07:00
2026-05-24 14:57:37 -04:00
2026-05-06 22:01:20 +00:00
2026-04-21 23:08:24 -07:00
2026-04-22 20:21:42 +00:00
2026-04-23 09:58:15 -07:00
2026-05-27 09:10:43 +02:00
2026-05-31 16:53:57 +00:00
2026-06-03 16:46:53 -07:00
2026-05-03 01:44:38 +08:00
2026-05-13 21:11:01 +00:00
2026-04-23 10:44:10 -07:00
2026-04-26 18:47:38 -07:00
2026-05-03 16:35:50 +00:00
2026-04-25 13:07:35 -07:00
2026-05-11 07:33:52 +08:00
2026-04-29 17:42:32 -07:00
2026-04-30 15:24:32 +00:00
2026-04-26 15:29:02 -07:00
2026-04-26 14:24:20 -07:00
2026-05-24 18:42:44 -06:00
2026-04-26 10:36:59 -07:00
2026-05-16 05:43:09 +00:00
2026-04-26 15:29:02 -07:00
2026-05-19 07:17:11 -06:00
2026-05-04 00:06:58 -07:00
2026-04-29 19:54:07 -07:00
2026-04-27 13:34:59 -07:00
2026-05-06 08:10:08 +00:00
2026-05-05 08:36:17 -07:00
2026-04-27 15:28:19 -07:00
2026-05-29 10:24:44 -07:00
2026-04-27 18:40:13 -07:00
2026-05-01 05:35:24 +00:00
2026-06-05 11:35:26 -07:00
2026-05-25 00:10:27 +00:00
2026-04-30 15:24:35 +00:00
2026-05-11 07:33:52 +08:00
2026-06-02 22:48:35 -07:00
2026-05-06 06:30:32 +00:00
2026-05-01 04:46:12 +00:00
2026-05-19 07:17:11 -06:00
2026-05-11 02:55:50 +00:00
2026-05-01 05:29:42 +00:00
2026-05-01 17:57:34 +00:00
2026-05-11 07:33:52 +08:00
2026-05-07 01:39:51 +00:00
2026-05-02 00:21:15 +00:00
2026-05-17 13:27:40 +08:00
2026-05-05 08:36:17 -07:00
2026-05-02 04:19:28 +00:00
2026-05-05 08:36:17 -07:00
2026-05-02 04:19:28 +00:00
2026-05-04 15:30:37 -07:00
2026-05-04 04:51:30 +00:00
2026-05-24 17:13:34 +00:00
2026-05-03 01:15:26 +00:00
2026-05-03 03:07:07 +00:00
2026-05-15 08:51:30 +08:00
2026-05-03 02:46:24 +00:00
2026-05-03 06:47:52 +00:00
2026-05-03 17:04:46 +00:00
2026-05-11 07:33:52 +08:00
2026-05-24 18:08:41 +00:00
2026-05-11 23:13:55 +00:00
2026-05-11 07:33:52 +08:00
2026-05-11 07:33:52 +08:00
2026-05-07 02:04:36 +00:00
2026-05-14 23:07:14 +08:00
2026-05-28 11:13:00 +08:00
2026-05-04 16:17:26 +00:00
2026-06-01 21:05:32 +00:00
2026-06-05 13:45:15 -07:00
2026-05-05 08:36:17 -07:00
2026-05-04 16:49:43 +00:00
2026-05-04 16:49:43 +00:00
2026-05-08 15:16:18 +00:00
2026-05-05 08:33:44 -07:00
2026-05-05 02:02:54 +00:00
2026-05-06 18:01:11 +00:00
2026-06-02 19:11:15 +00:00
2026-05-05 08:45:14 -07:00
2026-05-16 22:24:12 -07:00
2026-05-06 16:11:46 +00:00
2026-06-01 20:34:06 +00:00
2026-05-22 16:58:55 +00:00
2026-05-07 01:39:52 +00:00
2026-05-16 22:04:56 +00:00
2026-06-04 10:50:34 -07:00
2026-05-24 18:08:41 +00:00
2026-05-08 13:32:05 +08:00
2026-05-09 10:36:30 -07:00
2026-05-07 16:59:00 +00:00
2026-06-05 12:58:11 -07:00
2026-05-07 21:40:23 +08:00
2026-05-07 18:09:40 +00:00
2026-05-08 15:01:49 +00:00
2026-06-05 23:09:00 +00:00
2026-05-07 21:14:16 +00:00
2026-05-08 15:37:08 +00:00
2026-05-21 17:13:56 +00:00
2026-05-17 02:49:34 +00:00
2026-05-15 11:39:23 +08:00
2026-05-11 23:13:09 +00:00
2026-05-14 22:28:20 +08:00
2026-05-08 15:15:49 +00:00
2026-05-26 16:56:02 +02:00
2026-05-17 13:27:40 +08:00
2026-05-13 00:05:09 +02:00
2026-05-08 20:48:39 +00:00
2026-05-13 10:52:59 +08:00
2026-06-05 01:19:59 -07:00
2026-05-08 20:48:41 +00:00
2026-05-08 16:40:17 +00:00
2026-06-01 19:46:36 +00:00
2026-05-11 12:51:57 +08:00
2026-05-11 12:12:40 +08:00
2026-05-09 20:08:16 +00:00
2026-05-10 14:25:08 +08:00
2026-05-11 19:12:02 +08:00
2026-05-12 01:43:16 -07:00
2026-05-11 07:33:52 +08:00
2026-05-25 15:16:26 +08:00
2026-05-11 07:03:17 +08:00
2026-05-12 00:05:05 +00:00
2026-05-12 10:08:01 +08:00
2026-05-13 09:49:15 +08:00
2026-05-12 02:57:37 -07:00
2026-05-13 10:55:59 +08:00
2026-05-16 02:58:33 +00:00
2026-05-13 10:28:12 +08:00
2026-05-13 07:05:57 +00:00
2026-05-13 09:57:40 -07:00
2026-05-15 18:33:27 -07:00
2026-05-15 17:31:37 +08:00
2026-05-15 13:08:22 -07:00
2026-05-22 18:34:06 +08:00
2026-05-17 10:38:40 -07:00
2026-05-14 09:05:13 -07:00
2026-05-30 00:10:29 +00:00
2026-05-15 08:36:48 +08:00
2026-05-18 15:18:20 -07:00
2026-05-15 18:04:53 +08:00
2026-05-15 09:29:46 -07:00
2026-06-02 19:11:15 +00:00
2026-06-05 10:53:45 -07:00
2026-05-16 07:31:44 -07:00
2026-05-16 08:44:04 -07:00
2026-05-17 00:21:50 +00:00
2026-05-24 17:13:34 +00:00
2026-05-17 03:53:29 +00:00
2026-05-17 16:11:29 -07:00
2026-05-28 13:03:55 -06:00
2026-06-03 16:46:53 -07:00
2026-05-28 19:58:17 +02:00
2026-06-03 21:41:05 -07:00
2026-06-02 17:35:18 -07:00
2026-05-18 01:08:09 -07:00
2026-06-03 12:23:46 -07:00
2026-05-18 06:48:05 -07:00
2026-05-28 02:57:04 +00:00
2026-05-18 19:28:46 +00:00
2026-05-18 19:51:01 -07:00
2026-05-19 00:08:07 +00:00
2026-05-19 01:49:52 -07:00
2026-05-24 04:08:40 +00:00
2026-05-19 08:05:52 -07:00
2026-05-24 15:52:34 +00:00
2026-05-19 11:16:21 -07:00
2026-05-21 17:14:37 +00:00
2026-05-20 15:54:44 -07:00
2026-05-25 08:51:44 +08:00
2026-05-21 17:13:59 +00:00
2026-05-24 17:13:34 +00:00
2026-05-26 11:32:34 +08:00
2026-05-24 03:42:13 +00:00
2026-05-25 15:50:47 +08:00
2026-05-24 15:52:35 +00:00
2026-05-26 21:45:27 +02:00
2026-06-04 15:21:41 -07:00
2026-06-02 17:35:18 -07:00
2026-06-02 20:58:22 -07:00
2026-05-25 01:58:32 +00:00
2026-06-05 17:48:27 -07:00
2026-05-25 21:29:06 +08:00
2026-05-25 21:21:20 +08:00
2026-05-30 10:31:35 +02:00
2026-05-26 08:57:31 +08:00
2026-05-25 15:58:27 +08:00
2026-05-25 21:48:52 +08:00
2026-06-01 05:05:16 +00:00
2026-06-01 18:14:48 +00:00
2026-06-05 01:19:59 -07:00
2026-05-27 10:29:31 +08:00
2026-06-05 11:35:26 -07:00
2026-05-27 19:17:46 +05:30
2026-05-30 03:35:24 +00:00
2026-06-05 10:53:45 -07:00
2026-05-28 02:09:05 +00:00
2026-05-28 09:02:06 +02:00
2026-06-05 10:44:02 -07:00
2026-05-29 23:21:48 +00:00
2026-05-30 03:51:13 +00:00
2026-05-30 02:08:37 +00:00
2026-05-30 02:18:06 +00:00
2026-06-02 19:11:15 +00:00
2026-05-30 23:25:41 +08:00
2026-05-31 19:12:30 +00:00
2026-06-05 00:44:03 -07:00
2026-06-05 10:44:02 -07:00
2026-05-31 18:26:31 +00:00
2026-06-01 20:34:06 +00:00
2026-06-01 01:19:49 +00:00
2026-05-31 17:03:07 +00:00
2026-06-01 05:05:16 +00:00
2026-06-02 17:35:18 -07:00
2026-06-02 18:33:22 -07:00
2026-06-05 14:45:31 -07:00
2026-06-01 19:08:30 +00:00
2026-06-01 17:27:02 +00:00
2026-06-02 05:08:30 +00:00
2026-06-04 15:21:41 -07:00
2026-06-02 19:20:23 +00:00
2026-06-02 05:08:30 +00:00
2026-06-03 09:13:01 -07:00
2026-06-03 18:19:09 -07:00
2026-06-03 17:41:11 -07:00
2026-06-03 12:38:52 -07:00
2026-06-02 20:58:22 -07:00
2026-06-03 18:19:09 -07:00
2026-06-02 21:04:02 +00:00
2026-06-02 20:49:29 +00:00
2026-06-03 21:12:23 -07:00
2026-06-02 22:48:35 -07:00
2026-06-03 10:11:32 -07:00
2026-06-03 14:33:50 -07:00
2026-06-04 11:13:45 -07:00
2026-06-04 12:28:06 -07:00
2026-06-04 17:16:31 -07:00
2026-06-04 13:04:01 -07:00
2026-06-04 13:04:01 -07:00
2026-06-04 15:04:45 -07:00
2026-06-04 15:04:45 -07:00
2026-06-05 00:11:48 -07:00
2026-06-05 00:11:48 -07:00
2026-06-05 00:44:03 -07:00
2026-06-04 14:28:00 -07:00
2026-06-04 23:56:44 -07:00
2026-06-04 14:28:00 -07:00
2026-06-05 00:11:48 -07:00
2026-06-05 18:56:43 -07:00
2026-06-05 00:51:23 -07:00
2026-06-05 13:45:15 -07:00
2026-06-05 11:54:42 -07:00
2026-06-05 20:49:45 -07:00
2026-05-03 22:43:11 -07:00
2026-05-09 15:08:13 +08:00
2026-04-27 17:43:36 -07:00
2026-06-05 00:44:03 -07:00
2026-05-25 06:18:06 +02:00
2026-05-27 09:51:32 +08:00
2026-04-20 22:48:19 +00:00
2026-04-26 21:04:38 -07:00
2026-04-23 14:41:06 -07:00
2026-05-02 02:44:59 +00:00
2026-05-26 23:49:02 +02:00
2026-05-07 17:57:09 +00:00
2026-05-18 16:44:36 +00:00
2026-05-28 08:56:34 +02:00
2026-05-26 23:49:02 +02:00
2026-05-19 07:17:11 -06:00
2026-04-14 17:14:01 +00:00
2026-06-02 19:48:01 -07:00
2026-05-01 04:46:15 +00:00
2026-06-01 20:21:40 +00:00
2026-05-19 18:41:08 -04:00
2026-05-12 16:14:47 +00:00
2026-04-19 06:47:24 +00:00
2026-05-05 01:51:05 +00:00
2026-05-11 15:40:49 +00:00
2026-05-16 05:43:04 +00:00
2026-05-08 20:26:11 +00:00
2026-05-13 15:33:54 -07:00
2026-06-01 22:48:01 +00:00
2026-06-04 12:28:06 -07:00
2026-06-05 23:09:00 +00:00
2026-06-05 14:45:31 -07:00
2026-05-28 19:58:18 +02:00
2026-06-05 20:49:45 -07:00
2026-05-20 23:43:30 +08:00
2026-06-05 10:44:02 -07:00
2026-06-02 19:48:01 -07:00
2026-05-10 19:12:20 +10:00
2026-05-04 17:03:02 +00:00
2026-05-24 19:17:59 +00:00
2026-04-30 23:45:46 -06:00
2026-05-14 23:03:48 +08:00
2026-05-11 17:24:53 +08:00
2026-04-29 04:33:29 +00:00
2026-05-22 16:58:55 +00:00
2026-06-03 19:21:26 -07:00
2026-05-16 23:03:38 +00:00
2026-06-03 12:23:46 -07:00
2026-06-02 05:08:30 +00:00
2026-05-15 08:36:48 +08:00
2026-04-22 22:56:21 -07:00
2026-05-29 13:00:15 +08:00
2026-05-15 00:40:21 -07:00
2026-05-27 09:10:43 +02:00
2026-06-04 11:13:45 -07:00
2026-05-25 01:01:45 +00:00
2026-05-24 18:42:44 -06:00
2026-04-26 21:04:38 -07:00
2026-05-30 21:09:25 +00:00
2026-04-14 19:04:48 +00:00
2026-06-03 10:46:06 -07:00
2026-06-02 18:08:01 -07:00
2026-05-29 23:22:15 +00:00
2026-04-15 16:57:31 +00:00
2026-06-02 19:11:15 +00:00
2026-05-21 17:56:46 +00:00
2026-06-05 11:35:26 -07:00
2026-05-13 11:50:31 +08:00
2026-05-30 01:39:54 +00:00
2026-06-02 17:35:18 -07:00
2026-06-05 11:35:26 -07:00
2026-06-03 09:13:01 -07:00
2026-06-02 22:48:35 -07:00
2026-05-26 17:51:49 -07:00
2026-06-05 00:44:03 -07:00
2026-04-30 18:34:37 +00:00
2026-04-30 18:45:15 +00:00
2026-04-30 14:39:37 -07:00
2026-04-30 22:27:40 +00:00
2026-05-02 12:09:36 +08:00
2026-04-30 23:43:23 +00:00
2026-05-02 02:56:48 +00:00
2026-05-02 03:49:40 +00:00
2026-05-24 17:13:34 +00:00
2026-05-09 18:15:50 +00:00
2026-05-11 06:06:58 +00:00
2026-05-18 21:22:02 +03:00
2026-04-21 19:14:31 -07:00
2026-05-30 21:09:25 +00:00
2026-05-15 04:14:09 -06:00
2026-06-01 18:24:05 +00:00
2026-05-06 06:27:00 +00:00
2026-06-05 20:49:45 -07:00
2026-05-15 23:22:44 +00:00
2026-04-25 23:28:29 -07:00
2026-05-17 02:49:15 +00:00
2026-05-11 17:24:53 +08:00
2026-06-03 12:23:46 -07:00
2026-05-15 08:51:30 +08:00
2026-05-22 16:13:46 +00:00
2026-06-05 14:27:38 -07:00
2026-05-24 18:28:52 +00:00
2026-05-24 15:14:28 -04:00
2026-05-03 22:47:55 -07:00
2026-05-16 19:32:49 +00:00
2026-04-26 21:04:38 -07:00
2026-05-24 17:13:34 +00:00
2026-04-21 16:26:51 +00:00
2026-05-31 04:54:56 +00:00
2026-06-03 21:41:05 -07:00
2026-04-25 19:21:00 -07:00
2026-05-24 18:42:44 -06:00
2026-04-25 21:06:31 -07:00
2026-06-03 19:21:26 -07:00
2026-06-03 19:21:26 -07:00
2026-06-05 00:44:03 -07:00
2026-06-03 09:53:32 -07:00
2026-04-25 21:06:31 -07:00
2026-05-31 03:17:10 +00:00
2026-05-07 16:56:49 +00:00
2026-05-15 12:16:23 -07:00
2026-06-05 13:10:45 -07:00
2026-06-05 12:58:11 -07:00
2026-05-31 18:26:37 +00:00
2026-05-16 20:11:06 +00:00
2026-06-03 11:26:12 -07:00
2026-05-16 03:58:54 +00:00
2026-05-25 02:06:42 +02:00
2026-05-11 02:15:00 +02:00
2026-05-31 17:49:26 +00:00
2026-06-01 18:24:05 +00:00
2026-04-25 17:50:58 -07:00
2026-06-05 00:44:03 -07:00
2026-06-02 17:33:49 +00:00
2026-06-03 09:53:32 -07:00
2026-05-24 18:28:52 +00:00
2026-05-28 13:03:55 -06:00
2026-05-30 19:54:51 +00:00
2026-05-30 19:40:40 +00:00
2026-05-02 23:05:55 +08:00
2026-05-30 19:25:51 -04:00
2026-05-26 22:05:58 -07:00
2026-06-02 20:24:48 -07:00
2026-05-06 14:53:40 +00:00
2026-05-11 16:30:25 +08:00
2026-05-28 08:13:35 +02:00
2026-05-27 23:42:24 +02:00
2026-05-28 08:19:49 +02:00
2026-05-30 01:19:50 +00:00
2026-05-30 01:19:50 +00:00
2026-05-02 17:54:58 +00:00
2026-05-14 10:44:16 +08:00
2026-05-20 22:27:23 +00:00
2026-06-05 00:44:03 -07:00
2026-05-28 13:38:06 -06:00
2026-06-01 19:46:36 +00:00
2026-05-11 10:46:17 +08:00
2026-05-29 23:21:48 +00:00
2026-05-12 07:47:21 -06:00
2026-05-30 19:13:49 +00:00
2026-05-14 23:48:49 +02:00
2026-05-28 00:51:12 +02:00
2026-06-05 10:44:02 -07:00
2026-05-31 01:56:39 +00:00
2026-05-28 15:30:49 +08:00
2026-05-13 12:35:12 +08:00
2026-06-05 13:45:15 -07:00
2026-05-26 16:40:35 +08:00
2026-05-01 04:46:37 +00:00
2026-05-11 16:30:25 +08:00
2026-05-11 02:06:43 +02:00
2026-04-27 13:34:59 -07:00
2026-06-01 20:07:16 +00:00
2026-05-28 08:35:26 -04:00
2026-05-11 13:09:16 +08:00
2026-04-21 22:11:32 -07:00
2026-05-16 04:31:48 -07:00
2026-05-25 02:06:42 +02:00
2026-05-14 11:52:12 -07:00
2026-05-28 09:52:42 +02:00
2026-06-05 14:45:31 -07:00
2026-06-05 00:44:03 -07:00
2026-06-02 17:33:49 +00:00
2026-05-28 13:03:55 -06:00
2026-06-03 09:34:31 -07:00
2026-06-05 10:53:45 -07:00
2026-06-05 10:53:45 -07:00
2026-04-24 09:05:25 -07:00
2026-05-28 23:22:31 +02:00
2026-05-10 21:57:47 -07:00
2026-05-30 18:19:34 +02:00
2026-05-28 08:10:15 -04:00
2026-05-30 00:52:29 +00:00
2026-06-05 10:53:45 -07:00
2026-06-05 18:39:42 -07:00
2026-06-05 18:39:42 -07:00
2026-05-31 18:26:31 +00:00
2026-06-05 10:53:45 -07:00
2026-04-29 21:34:27 -07:00
2026-05-15 18:04:53 +08:00
2026-04-29 17:42:32 -07:00
2026-05-14 22:57:15 +08:00
2026-05-31 23:02:23 +00:00
2026-05-27 20:57:32 +08:00
2026-04-29 17:42:32 -07:00
2026-05-22 19:43:00 +00:00
2026-06-05 14:45:31 -07:00
2026-05-18 03:45:02 +00:00
2026-04-11 20:06:37 -07:00
2026-05-25 17:48:19 +00:00
2026-05-16 05:13:58 -07:00
2026-05-06 08:10:08 +00:00
2026-04-14 19:04:48 +00:00
2026-06-03 09:13:01 -07:00
2026-05-16 05:13:58 -07:00
2026-04-14 19:04:48 +00:00
2026-04-14 19:04:48 +00:00
2026-04-30 16:18:01 +00:00
2026-06-05 12:45:47 -07:00
2026-04-18 06:46:43 +00:00
2026-04-23 10:44:10 -07:00
2026-04-14 19:04:48 +00:00
2026-04-14 19:04:48 +00:00
2026-04-14 19:04:48 +00:00
2026-05-05 08:36:17 -07:00
2026-04-14 19:04:48 +00:00
2026-05-03 18:18:27 -07:00
2026-05-07 04:30:02 +00:00
2026-05-30 04:32:18 +00:00
2026-04-14 19:04:48 +00:00
2026-04-18 06:37:09 +00:00
2026-04-14 19:04:48 +00:00
2026-04-14 19:04:48 +00:00
2026-06-05 01:19:59 -07:00
2026-06-05 10:44:02 -07:00
2026-05-28 16:07:13 +08:00
2026-04-22 20:49:28 +00:00
2026-04-11 12:19:12 -07:00
2026-04-24 09:05:25 -07:00
2026-04-12 10:51:48 -07:00
2026-05-19 07:17:11 -06:00
2026-05-03 06:09:47 +00:00
2026-05-14 07:13:34 +08:00
2026-04-16 10:19:10 -07:00
2026-05-20 08:47:49 -06:00
2026-04-12 14:28:16 -07:00
2026-05-15 09:43:18 -06:00
2026-06-05 00:44:03 -07:00
2026-04-13 11:11:56 -07:00
2026-05-15 09:43:18 -06:00
2026-04-14 19:04:48 +00:00
2026-05-16 01:02:19 -07:00
2026-04-19 05:37:44 +00:00
2026-04-24 11:04:16 -07:00
2026-05-18 10:50:42 -07:00
2026-04-19 23:17:00 -07:00
2026-04-20 23:54:40 +00:00
2026-05-11 23:13:55 +00:00
2026-05-05 02:15:25 +00:00
2026-05-06 08:10:08 +00:00
2026-05-30 01:39:54 +00:00
2026-05-09 18:36:01 +00:00
2026-05-16 03:58:54 +00:00
2026-06-03 19:41:22 -07:00
2026-05-16 02:58:33 +00:00
2026-05-03 20:00:56 +02:00
2026-05-28 15:19:09 +02:00
2026-05-11 06:00:13 +00:00
2026-05-24 04:26:46 +00:00
2026-05-30 03:24:41 +00:00
2026-06-05 20:49:45 -07:00
2026-05-05 01:12:07 +00:00
2026-05-31 00:26:59 +00:00
2026-05-28 08:56:34 +02:00
2026-05-25 16:04:40 +08:00
2026-06-04 10:50:34 -07:00
2026-05-03 11:46:42 +02:00
2026-05-31 00:07:39 +00:00
2026-04-30 15:24:33 +00:00
2026-05-13 11:30:06 -07:00
2026-06-04 16:46:20 -07:00
2026-05-07 20:42:55 +00:00
2026-05-02 02:50:40 +00:00
2026-06-02 16:56:30 -07:00
2026-06-01 20:34:06 +00:00
2026-06-03 20:15:53 -07:00
2026-05-27 04:48:21 +00:00
2026-05-31 04:33:11 +00:00
2026-05-14 15:16:33 +08:00
2026-06-02 21:14:49 +00:00
2026-04-23 09:45:34 -07:00
2026-04-09 18:08:29 -07:00
2026-06-04 16:46:20 -07:00
2026-06-04 16:46:20 -07:00
2026-06-04 16:46:20 -07:00
2026-06-02 17:33:49 +00:00
2026-06-01 19:46:36 +00:00
2026-05-05 13:46:54 -07:00
2026-05-31 19:21:15 +00:00
2026-05-29 16:12:05 +08:00
2026-06-04 10:50:34 -07:00
2026-04-21 00:33:03 +00:00
2026-05-24 17:13:34 +00:00
2026-05-05 13:42:47 -07:00
2026-05-11 17:16:43 +02:00
2026-05-11 17:16:43 +02:00
2026-06-04 11:24:25 -07:00
2026-06-04 11:24:25 -07:00
2026-05-17 03:57:54 -07:00
2026-05-26 11:32:34 +08:00
2026-05-18 12:50:25 +08:00
2026-06-05 18:13:35 -07:00
2026-06-05 18:13:35 -07:00
2026-05-21 22:59:54 +00:00
2026-05-28 12:47:55 -06:00
2026-06-05 12:28:31 -07:00
2026-05-31 16:18:06 +00:00
2026-05-01 06:53:32 +00:00
2026-05-01 16:25:04 +00:00
2026-05-01 17:19:53 +00:00
2026-05-01 18:36:24 +00:00
2026-05-04 00:06:58 -07:00
2026-06-04 12:28:06 -07:00
2026-05-28 08:39:59 +02:00
2026-06-05 22:18:47 +00:00
2026-05-30 11:25:33 +02:00
2026-04-13 22:11:45 -07:00
2026-06-05 00:44:03 -07:00
2026-06-04 17:16:31 -07:00
2026-05-31 01:57:29 +00:00
2026-04-24 11:03:42 -07:00
2026-06-02 19:43:26 +00:00
2026-05-19 22:48:10 +00:00
2026-06-04 17:16:31 -07:00
2026-05-26 16:40:35 +08:00
2026-06-04 17:16:31 -07:00
2026-05-22 23:17:00 +00:00
2026-06-03 10:46:06 -07:00
2026-05-06 17:38:11 +00:00
2026-04-27 17:43:36 -07:00
2026-04-27 21:39:30 -07:00
2026-05-07 06:25:18 +00:00
2026-05-20 04:51:41 +00:00
2026-06-01 05:31:53 +00:00
2026-04-27 18:40:13 -07:00
2026-05-28 14:50:33 -04:00
2026-05-07 16:56:48 +00:00
2026-04-27 17:43:36 -07:00
2026-06-03 16:46:53 -07:00
2026-05-31 16:54:22 +00:00
2026-05-12 06:28:35 -06:00
2026-06-05 12:58:11 -07:00
2026-05-05 16:13:58 +00:00
2026-06-02 16:56:30 -07:00
2026-05-13 09:49:15 +08:00
2026-06-05 22:18:47 +00:00
2026-06-02 20:01:53 +00:00