Robert Allan James and Claude Sonnet 5
a88c004ecb
Artemis Milestone 2g: CBW construction and send for SCSI READ(10)
...
First real use of the bulk Transfer Rings Configure Endpoint wired up.
xhci_bot_send_read10() builds a 31-byte Command Block Wrapper (USB Mass
Storage Class Bulk-Only Transport spec section 5.1) and submits it as a
single Normal TRB on the bulk OUT ring via a new
xhci_bulk_out_enqueue_and_ring() helper -- a CBW is always exactly one
TRB, so unlike the EP0 helper this one rings its own doorbell rather
than leaving that to a caller assembling a group.
usb_bot_cbw_t is a real struct (every field up to the CDB array is
naturally aligned, and this driver's targets are all little-endian
already assumed everywhere else), but its DMA length is the explicit
USB_BOT_CBW_LENGTH (31) constant, never sizeof(*cbw), since the
compiler may pad the struct to 32 bytes. The SCSI READ(10) CDB itself
is written byte-by-byte since its LBA/Transfer Length fields are
big-endian on the wire, unlike everything else in this driver -- the
one place two byte orders are both live in the same function.
Completion is correlated via the existing pending_transfer_slot_id/
transfer_purpose gate (new XHCI_XFER_CBW_SENT purpose) -- no
ring-specific dispatch needed, since this driver's single-outstanding-
transfer scope already implies which ring produced an event.
This covers construction and send only (one third of a full READ(10):
CBW -> Data-In stage -> CSW) -- reading the Data-In stage and CSW
receive/validation are separate, explicitly not-yet-implemented items.
Verified live via a temporary probe (written, run once, log captured,
reverted per this project's own probe convention) -- all three
architectures, byte-identical: CBW submitted -> CBW send completed,
then a clean disconnect even with the Data-In stage never drained
(confirms no wedge on a dangling BOT transaction). Probe-free
re-verification afterward on all three architectures.
FABRIC-2.md Section X Milestone 2g's CBW checklist item marked done.
Also records a monitoring gotcha hit three times this session: `ls -t`
over the logs/ tree can return a stale leftover log from an earlier
run in the same session -- fixed going forward by reading the log path
off the actual running QEMU process's own command line instead, and a
memory note added so it doesn't recur next session.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com >
Claude-Session: https://claude.ai/code/session_01R4VMX6VSKCten8nGgaMkq4
2026-08-25 09:07:33 -04:00
..
2026-08-20 09:16:18 -04:00
2026-08-20 12:08:48 -04:00
2026-08-20 19:41:55 -04:00
2026-08-21 23:46:02 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-02 05:11:24 -04:00
2026-08-02 06:59:48 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 10:07:18 -04:00
2026-08-02 11:44:23 -04:00
2026-08-02 14:49:52 -04:00
2026-08-02 21:49:16 -04:00
2026-08-03 12:47:21 -04:00
2026-08-03 18:23:37 -04:00
2026-08-03 18:30:25 -04:00
2026-08-03 18:47:29 -04:00
2026-08-03 19:48:56 -04:00
2026-08-03 22:14:52 -04:00
2026-08-04 00:01:48 -04:00
2026-08-04 00:21:23 -04:00
2026-08-04 13:15:50 -04:00
2026-08-04 13:54:22 -04:00
2026-08-04 14:55:30 -04:00
2026-08-04 15:15:59 -04:00
2026-08-04 16:48:13 -04:00
2026-08-04 17:06:14 -04:00
2026-08-04 17:16:46 -04:00
2026-08-04 17:28:38 -04:00
2026-08-04 17:36:23 -04:00
2026-08-04 18:09:34 -04:00
2026-08-04 19:50:34 -04:00
2026-08-05 13:37:10 -04:00
2026-08-05 15:12:30 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 13:21:02 -04:00
2026-08-07 13:39:09 -04:00
2026-08-07 15:21:13 -04:00
2026-08-07 15:29:10 -04:00
2026-08-07 20:13:22 -04:00
2026-08-08 00:18:58 -04:00
2026-08-08 09:56:20 -04:00
2026-08-08 11:07:29 -04:00
2026-08-08 11:24:47 -04:00
2026-08-08 11:51:07 -04:00
2026-08-08 12:15:23 -04:00
2026-08-08 12:15:23 -04:00
2026-08-08 12:15:23 -04:00
2026-08-08 12:29:27 -04:00
2026-08-08 12:48:05 -04:00
2026-08-09 18:53:02 -04:00
2026-08-09 19:00:36 -04:00
2026-08-09 19:15:05 -04:00
2026-08-09 20:26:14 -04:00
2026-08-09 20:33:01 -04:00
2026-08-09 20:41:04 -04:00
2026-08-09 20:46:55 -04:00
2026-08-09 21:35:07 -04:00
2026-08-11 00:45:11 -04:00
2026-08-11 07:37:13 -04:00
2026-08-11 09:03:31 -04:00
2026-08-11 10:09:56 -04:00
2026-08-11 12:17:23 -04:00
2026-08-11 16:57:20 -04:00
2026-08-11 17:18:58 -04:00
2026-08-11 19:35:32 -04:00
2026-08-11 19:56:50 -04:00
2026-08-11 20:10:12 -04:00
2026-08-11 20:34:14 -04:00
2026-08-11 21:23:25 -04:00
2026-08-11 23:07:04 -04:00
2026-08-12 13:08:49 -04:00
2026-08-12 14:59:07 -04:00
2026-08-12 15:07:04 -04:00
2026-08-12 15:41:26 -04:00
2026-08-12 15:50:23 -04:00
2026-08-12 16:22:09 -04:00
2026-08-12 16:22:09 -04:00
2026-08-13 08:38:33 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 18:24:26 -04:00
2026-08-18 20:24:53 -04:00
2026-08-22 08:33:35 -04:00
2026-08-22 08:33:35 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 10:11:47 -04:00
2026-08-22 10:33:37 -04:00
2026-08-22 11:44:15 -04:00
2026-08-22 12:41:26 -04:00
2026-08-22 12:59:49 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:40:16 -04:00
2026-08-25 08:17:50 -04:00
2026-08-25 08:40:35 -04:00
2026-08-25 09:07:33 -04:00
2026-08-25 09:07:33 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-02 05:11:24 -04:00
2026-08-02 06:59:48 -04:00
2026-08-02 08:05:28 -04:00
2026-08-02 08:05:28 -04:00
2026-08-02 08:05:28 -04:00
2026-08-02 08:05:28 -04:00
2026-08-02 08:05:28 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 10:07:18 -04:00
2026-08-02 10:07:18 -04:00
2026-08-02 10:07:18 -04:00
2026-08-02 11:44:23 -04:00
2026-08-02 14:49:52 -04:00
2026-08-02 14:49:52 -04:00
2026-08-02 14:49:52 -04:00
2026-08-02 21:49:16 -04:00
2026-08-03 12:47:21 -04:00
2026-08-03 18:23:37 -04:00
2026-08-04 00:01:48 -04:00
2026-08-04 00:01:48 -04:00
2026-08-04 07:28:30 -04:00
2026-08-04 00:21:23 -04:00
2026-08-04 00:21:23 -04:00
2026-08-04 00:21:23 -04:00
2026-08-04 13:15:50 -04:00
2026-08-04 13:15:50 -04:00
2026-08-04 13:54:22 -04:00
2026-08-04 14:55:30 -04:00
2026-08-04 15:15:59 -04:00
2026-08-04 16:48:13 -04:00
2026-08-04 17:06:14 -04:00
2026-08-04 17:16:46 -04:00
2026-08-04 17:28:38 -04:00
2026-08-04 17:36:23 -04:00
2026-08-04 18:09:34 -04:00
2026-08-04 19:50:34 -04:00
2026-08-05 13:37:10 -04:00
2026-08-05 15:12:30 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 13:21:02 -04:00
2026-08-07 13:39:09 -04:00
2026-08-07 15:21:13 -04:00
2026-08-07 15:29:10 -04:00
2026-08-07 20:13:22 -04:00
2026-08-08 00:18:58 -04:00
2026-08-08 00:18:58 -04:00
2026-08-08 00:18:58 -04:00
2026-08-08 11:07:29 -04:00
2026-08-08 11:24:47 -04:00
2026-08-08 11:51:07 -04:00
2026-08-08 12:15:23 -04:00
2026-08-08 12:29:27 -04:00
2026-08-08 12:48:05 -04:00
2026-08-09 18:53:02 -04:00
2026-08-09 19:00:36 -04:00
2026-08-09 19:15:05 -04:00
2026-08-09 20:26:14 -04:00
2026-08-09 20:33:01 -04:00
2026-08-09 20:41:04 -04:00
2026-08-09 20:46:55 -04:00
2026-08-09 21:35:07 -04:00
2026-08-11 00:45:11 -04:00
2026-08-11 07:37:13 -04:00
2026-08-11 09:03:31 -04:00
2026-08-11 09:42:35 -04:00
2026-08-11 10:09:56 -04:00
2026-08-11 11:14:52 -04:00
2026-08-11 11:14:52 -04:00
2026-08-11 11:35:09 -04:00
2026-08-11 12:17:23 -04:00
2026-08-11 12:17:23 -04:00
2026-08-11 12:40:30 -04:00
2026-08-11 16:57:20 -04:00
2026-08-11 17:06:09 -04:00
2026-08-11 17:18:58 -04:00
2026-08-11 19:35:32 -04:00
2026-08-11 19:56:50 -04:00
2026-08-11 20:10:12 -04:00
2026-08-11 20:34:14 -04:00
2026-08-11 21:23:25 -04:00
2026-08-11 21:23:25 -04:00
2026-08-11 23:07:04 -04:00
2026-08-11 23:07:04 -04:00
2026-08-11 23:07:04 -04:00
2026-08-12 12:55:08 -04:00
2026-08-12 12:55:08 -04:00
2026-08-12 12:55:08 -04:00
2026-08-12 12:55:08 -04:00
2026-08-12 13:08:49 -04:00
2026-08-12 13:08:49 -04:00
2026-08-12 14:59:07 -04:00
2026-08-12 15:07:04 -04:00
2026-08-12 15:41:26 -04:00
2026-08-12 15:50:23 -04:00
2026-08-12 16:22:09 -04:00
2026-08-12 16:22:09 -04:00
2026-08-12 16:56:35 -04:00
2026-08-12 18:45:13 -04:00
2026-08-12 19:09:18 -04:00
2026-08-13 08:13:04 -04:00
2026-08-13 08:13:04 -04:00
2026-08-13 08:13:04 -04:00
2026-08-13 08:13:04 -04:00
2026-08-13 08:38:33 -04:00
2026-08-15 08:11:21 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 19:26:08 -04:00
2026-08-18 20:24:53 -04:00
2026-08-18 22:31:57 -04:00
2026-08-19 07:57:43 -04:00
2026-08-19 07:57:43 -04:00
2026-08-20 09:16:18 -04:00
2026-08-20 09:16:18 -04:00
2026-08-22 08:33:35 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:37:55 -04:00
2026-08-22 09:49:15 -04:00
2026-08-22 10:11:47 -04:00
2026-08-22 10:33:37 -04:00
2026-08-22 12:59:49 -04:00
2026-08-22 12:59:49 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:40:16 -04:00
2026-08-25 08:17:50 -04:00
2026-08-25 08:40:35 -04:00
2026-08-25 09:07:33 -04:00
2026-08-25 09:07:33 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-02 05:11:24 -04:00
2026-08-02 06:59:48 -04:00
2026-08-02 09:11:07 -04:00
2026-08-02 10:07:18 -04:00
2026-08-02 11:44:23 -04:00
2026-08-02 14:49:52 -04:00
2026-08-02 14:49:52 -04:00
2026-08-03 12:47:21 -04:00
2026-08-03 12:52:34 -04:00
2026-08-03 18:23:37 -04:00
2026-08-04 00:01:48 -04:00
2026-08-04 07:28:30 -04:00
2026-08-04 00:21:23 -04:00
2026-08-04 13:15:50 -04:00
2026-08-04 13:54:22 -04:00
2026-08-04 14:55:30 -04:00
2026-08-04 15:15:59 -04:00
2026-08-04 16:48:13 -04:00
2026-08-04 17:06:14 -04:00
2026-08-04 17:16:46 -04:00
2026-08-04 17:28:38 -04:00
2026-08-04 17:36:23 -04:00
2026-08-04 18:09:34 -04:00
2026-08-04 19:50:34 -04:00
2026-08-05 13:37:10 -04:00
2026-08-05 15:12:30 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 01:50:45 -04:00
2026-08-07 13:21:02 -04:00
2026-08-07 13:39:09 -04:00
2026-08-07 15:21:13 -04:00
2026-08-07 15:29:10 -04:00
2026-08-07 20:13:22 -04:00
2026-08-08 00:18:58 -04:00
2026-08-08 11:07:29 -04:00
2026-08-08 11:07:29 -04:00
2026-08-08 11:24:47 -04:00
2026-08-08 11:24:47 -04:00
2026-08-08 11:51:07 -04:00
2026-08-08 12:15:23 -04:00
2026-08-08 12:29:27 -04:00
2026-08-08 12:48:05 -04:00
2026-08-09 18:53:02 -04:00
2026-08-09 19:00:36 -04:00
2026-08-09 19:15:05 -04:00
2026-08-09 20:26:14 -04:00
2026-08-09 20:33:01 -04:00
2026-08-09 20:41:04 -04:00
2026-08-09 20:46:55 -04:00
2026-08-09 21:35:07 -04:00
2026-08-11 00:45:11 -04:00
2026-08-11 07:37:13 -04:00
2026-08-11 09:03:31 -04:00
2026-08-11 10:09:56 -04:00
2026-08-11 12:17:23 -04:00
2026-08-11 16:57:20 -04:00
2026-08-11 17:18:58 -04:00
2026-08-11 19:35:32 -04:00
2026-08-11 19:56:50 -04:00
2026-08-11 20:10:12 -04:00
2026-08-11 20:34:14 -04:00
2026-08-11 21:23:25 -04:00
2026-08-11 23:07:04 -04:00
2026-08-12 13:08:49 -04:00
2026-08-12 14:59:07 -04:00
2026-08-12 15:07:04 -04:00
2026-08-12 15:41:26 -04:00
2026-08-12 15:50:23 -04:00
2026-08-12 16:22:09 -04:00
2026-08-13 08:38:33 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 14:53:18 -04:00
2026-08-18 19:26:08 -04:00
2026-08-18 20:24:53 -04:00
2026-08-19 00:12:09 -04:00
2026-08-19 05:57:18 -04:00
2026-08-19 06:10:51 -04:00
2026-08-19 11:26:23 -04:00
2026-08-19 11:26:23 -04:00
2026-08-22 08:33:35 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:25:25 -04:00
2026-08-22 09:37:55 -04:00
2026-08-22 10:11:47 -04:00
2026-08-22 10:33:37 -04:00
2026-08-22 11:44:15 -04:00
2026-08-22 12:41:26 -04:00
2026-08-22 12:59:49 -04:00
2026-08-25 07:27:07 -04:00
2026-08-25 07:40:16 -04:00
2026-08-25 08:17:50 -04:00
2026-08-25 08:40:35 -04:00
2026-08-25 09:07:33 -04:00
2026-08-25 09:07:33 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00
2026-08-01 07:49:56 -04:00