Stuart Cook
5e781d05f6
Rollup merge of #143764 - dianne:primary-binding-drop-order, r=Nadrieril,traviscross
...
lower pattern bindings in the order they're written and base drop order on primary bindings' order
To fix rust-lang/rust#142163 , this PR does two things:
- Makes match arms base their drop order on the first sub-branch instead of the last sub-branch. Together with the second change, this makes bindings' drop order correspond to the relative order of when each binding first appears (i.e. the order of the "primary" bindings).
- Lowers pattern bindings in the order they're written (still treating the right-hand side of a ``@`` as coming before the binding on the left). In each sub-branch of a match arm, this is the order that would be obtained if the or-alternatives chosen in that sub-branch were inlined into the arm's pattern. This both affects drop order (making bindings in or-patterns not be dropped first) and fixes the issue in [this test](https://github.com/rust-lang/rust/blob/2a023bf80a6fbd6a06d5460a34eb247b986286ed/tests/ui/pattern/bindings-after-at/bind-by-copy-or-pat.rs ) from rust-lang/rust#121716 .
My approach to the second point is admittedly a bit trickier than may be necessary. To avoid passing around a counter when building `FlatPat`s, I've instead added just enough information to recover the original structure of the pattern's bindings from a `MatchTreeSubBranch`'s path through the `Candidate` tree. Some alternatives:
- We could use a counter, then sort bindings by their ordinals when making `MatchTreeSubBranch`es.
- I'd like to experiment with always merging sub-candidates and removing `test_remaining_match_pairs_after_or`; that would require lowering bindings and guards in a different way. That makes it a bigger change too, though, so I figure it might be simplest to start here.
- For a very big change, we could track which or-alternatives succeed at runtime to base drop order on the binding order in the particular alternatives matched.
This is a breaking change. It will need a crater run, language team sign-off, and likely updates to the Reference.
This will conflict with rust-lang/rust#143376 and probably also rust-lang/rust#143028 , so they shouldn't be merged at the same time.
r? `@matthewjasper` or `@Nadrieril`
2025-08-07 20:49:39 +10:00
..
2025-08-07 20:49:38 +10:00
2025-07-23 23:54:37 +00:00
2025-07-10 09:36:20 +02:00
2025-07-30 13:17:05 +10:00
2025-01-27 23:42:47 +00:00
2025-07-23 23:54:37 +00:00
2025-04-03 21:59:49 +08:00
2025-04-07 16:53:11 -03:00
2025-07-23 23:54:37 +00:00
2025-07-28 23:19:06 -07:00
2025-07-25 22:34:55 +02:00
2025-01-27 23:42:47 +00:00
2025-08-04 14:58:09 +10:00
2025-07-29 20:41:34 -07:00
2025-05-23 12:10:53 +00:00
2023-06-15 15:19:11 -04:00
2024-06-03 14:17:16 +10:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2024-08-18 15:52:23 -07:00
2024-09-27 14:40:38 +01:00
2024-09-27 14:40:38 +01:00
2025-04-28 16:23:13 +07:00
2025-04-28 16:23:13 +07:00
2025-03-30 22:53:21 +00:00
2025-04-28 16:23:13 +07:00
2025-04-28 16:23:13 +07:00
2024-12-13 00:04:56 +00:00
2025-04-28 16:23:13 +07:00
2025-04-28 16:23:13 +07:00
2024-12-13 00:04:56 +00:00
2024-12-13 00:04:56 +00:00
2025-03-30 22:53:21 +00:00
2025-06-14 15:10:08 +07:00
2025-06-14 15:10:08 +07:00
2025-06-14 15:10:08 +07:00
2024-08-18 16:07:33 -07:00
2024-10-17 10:22:55 +02:00
2024-04-20 13:19:34 +02:00
2025-07-25 13:19:43 -07:00
2025-07-25 13:42:45 -07:00
2025-02-15 23:20:52 -08:00
2025-01-06 18:43:40 -08:00
2025-02-15 23:20:52 -08:00
2025-02-15 23:20:52 -08:00
2024-09-24 23:12:02 +02:00
2024-08-13 16:23:18 -04:00
2024-03-17 19:59:15 +01:00
2024-03-17 19:59:15 +01:00
2024-09-27 14:40:38 +01:00
2024-09-27 14:40:38 +01:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-05-21 19:22:04 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2025-07-23 23:54:37 +00:00
2024-06-26 15:05:01 -07:00
2024-08-18 16:07:33 -07:00
2024-02-22 16:04:04 +00:00
2025-01-10 08:57:54 +00:00
2025-01-10 08:57:54 +00:00
2023-06-15 15:19:11 -04:00
2024-03-17 19:59:15 +01:00
2024-09-24 23:12:02 +02:00
2024-03-17 19:59:15 +01:00
2024-04-24 08:05:29 +00:00
2024-04-24 08:05:29 +00:00
2025-04-01 14:49:15 +00:00
2024-04-24 08:05:29 +00:00
2024-04-24 08:05:29 +00:00
2024-04-24 08:05:29 +00:00
2024-04-24 08:05:29 +00:00
2024-04-24 08:05:29 +00:00
2025-05-27 21:21:28 +00:00
2025-05-27 21:21:28 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2024-04-20 13:19:34 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2023-06-15 15:19:11 -04:00
2024-06-03 14:17:16 +10:00
2023-06-15 15:19:11 -04:00
2024-06-03 14:17:16 +10:00
2023-09-19 05:42:23 +00:00
2024-07-29 08:26:52 +10:00
2025-02-13 23:36:51 -05:00
2025-05-21 09:10:06 -04:00
2025-04-04 10:55:36 +00:00
2025-05-21 09:10:06 -04:00
2025-04-04 10:55:36 +00:00
2024-08-18 16:07:33 -07:00
2025-05-24 15:36:06 +08:00
2024-08-18 15:52:23 -07:00
2024-04-20 13:19:34 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2024-08-18 16:07:33 -07:00
2024-04-07 21:14:26 +08:00
2024-04-20 13:19:34 +02:00
2024-12-18 20:43:55 +08:00
2024-12-18 20:43:55 +08:00
2024-12-18 20:43:55 +08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-05-24 15:36:06 +08:00
2025-05-24 15:36:06 +08:00
2024-12-18 20:43:54 +08:00
2024-12-18 20:43:54 +08:00
2025-05-24 15:36:06 +08:00
2025-05-24 15:36:06 +08:00
2025-05-24 15:36:06 +08:00
2024-08-02 17:45:55 -04:00
2024-08-02 17:45:55 -04:00
2025-02-18 12:52:56 +11:00
2025-02-18 12:52:56 +11:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2025-05-28 15:14:34 +01:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2025-02-18 12:52:56 +11:00
2025-02-18 12:52:56 +11:00
2023-06-28 00:41:37 +00:00
2024-02-22 16:04:04 +00:00
2025-03-12 16:32:11 +01:00
2025-03-12 16:32:11 +01:00
2025-03-12 16:32:11 +01:00
2025-03-12 16:32:11 +01:00
2025-03-10 12:20:05 +01:00
2025-03-10 14:46:01 +01:00
2025-03-10 14:46:01 +01:00
2024-02-22 16:04:04 +00:00
2025-04-03 21:59:43 +08:00
2025-04-03 21:59:43 +08:00
2025-07-04 19:14:26 +02:00
2025-07-04 19:14:26 +02:00
2025-07-04 19:14:26 +02:00
2025-07-04 19:14:26 +02:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2024-09-14 13:30:35 +08:00
2025-04-03 21:59:43 +08:00
2024-09-14 13:30:35 +08:00
2025-04-04 10:55:36 +00:00
2025-04-04 10:55:36 +00:00
2025-04-04 10:55:36 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 15:52:23 -07:00
2025-03-15 18:10:55 +00:00
2025-03-15 18:10:55 +00:00
2025-03-15 18:10:55 +00:00
2025-05-18 18:42:00 +08:00
2025-05-18 18:42:00 +08:00
2025-01-18 21:44:41 -05:00
2024-10-21 15:22:17 +01:00
2025-05-19 21:35:49 +08:00
2025-05-19 21:35:49 +08:00
2025-05-19 21:35:49 +08:00
2025-04-02 19:59:26 +08:00
2025-04-02 19:59:26 +08:00
2024-04-20 13:19:34 +02:00
2025-01-08 18:46:31 -08:00
2025-01-08 18:46:31 -08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2025-04-02 19:59:26 +08:00
2025-04-02 19:59:26 +08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2024-11-25 20:19:08 +01:00
2024-11-25 20:19:08 +01:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-01 11:40:36 +00:00
2025-07-01 11:40:36 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-04-04 10:55:42 +00:00
2025-04-04 10:55:42 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-07-23 23:54:37 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-11-25 20:19:08 +01:00
2024-11-25 20:19:08 +01:00
2025-01-08 18:46:30 -08:00
2025-01-08 18:46:30 -08:00
2025-01-08 18:46:30 -08:00
2025-01-08 18:46:30 -08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2025-01-11 20:50:39 +00:00
2025-01-11 20:50:39 +00:00
2024-04-20 13:19:34 +02:00
2025-07-27 13:21:06 -07:00
2025-07-27 13:21:06 -07:00
2025-07-06 23:01:45 +00:00
2025-07-06 23:01:45 +00:00
2025-07-06 23:01:45 +00:00
2025-07-06 23:01:45 +00:00
2025-07-06 23:01:45 +00:00
2025-07-18 16:35:55 +00:00
2025-07-18 16:35:55 +00:00
2025-07-18 16:35:55 +00:00
2025-07-18 16:35:55 +00:00
2025-07-18 16:35:55 +00:00
2025-03-03 23:30:18 +00:00
2025-03-03 23:30:18 +00:00
2024-04-18 09:35:35 -07:00
2024-04-20 13:19:34 +02:00
2025-06-28 12:20:45 +01:00
2024-08-18 16:07:33 -07:00
2023-10-19 15:51:52 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2025-01-03 12:01:31 +01:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-07-09 22:47:35 +02:00
2024-10-17 10:22:55 +02:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2024-06-03 14:17:16 +10:00
2024-06-20 22:16:59 -07:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-08-18 16:07:33 -07:00
2024-07-29 18:14:35 +08:00
2024-07-09 22:47:35 +02:00
2025-01-28 00:00:33 +00:00
2025-01-27 23:42:47 +00:00
2024-07-09 22:47:35 +02:00
2024-06-03 14:17:16 +10:00
2024-10-17 10:22:55 +02:00
2024-10-17 10:22:55 +02:00
2024-07-17 11:01:29 +01:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2024-04-03 08:50:12 +00:00
2024-04-03 08:50:12 +00:00
2024-06-03 14:17:16 +10:00
2024-02-13 17:21:53 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-04-13 20:29:49 +00:00
2025-04-13 20:29:49 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-07-29 09:50:07 +02:00
2024-07-29 09:50:07 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-04-13 20:29:49 +00:00
2025-04-13 20:29:49 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-04-13 20:29:49 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2023-06-15 15:19:11 -04:00
2024-02-22 16:04:04 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-08-18 15:52:23 -07:00
2025-06-12 17:50:25 +02:00
2025-06-12 17:50:25 +02:00
2024-04-03 08:50:12 +00:00
2024-04-03 08:50:12 +00:00
2024-03-10 14:59:41 +01:00
2024-03-10 14:59:41 +01:00
2025-05-20 08:09:16 +02:00
2025-05-20 08:09:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-06-12 17:50:25 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2025-05-30 12:04:41 -07:00
2025-05-30 12:04:41 -07:00
2024-08-18 16:07:33 -07:00
2025-03-01 13:06:51 -08:00
2024-08-18 16:07:33 -07:00
2025-03-01 13:06:51 -08:00
2024-08-18 16:07:33 -07:00
2025-03-01 13:06:51 -08:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2025-01-06 18:43:40 -08:00
2025-01-06 18:43:40 -08:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-23 14:37:36 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-03 08:50:12 +00:00
2024-04-03 08:50:12 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-03 08:50:12 +00:00
2024-04-03 08:50:12 +00:00
2025-01-27 23:42:47 +00:00
2025-01-27 23:42:47 +00:00
2024-06-03 14:17:16 +10:00
2025-08-06 12:13:12 -07:00
2025-08-06 12:13:12 -07:00
2023-10-19 15:51:52 +00:00
2024-08-18 16:07:33 -07:00
2025-07-25 22:34:55 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-05-26 18:15:54 +08:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:43 +08:00
2024-08-18 16:07:33 -07:00
2024-12-27 10:57:46 +00:00
2025-05-30 13:52:26 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-03 10:55:46 +08:00
2024-02-22 16:04:04 +00:00
2023-06-15 15:19:11 -04:00
2024-03-17 19:59:15 +01:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2023-10-19 15:51:52 +00:00
2024-06-03 13:24:44 +10:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2025-01-31 11:13:34 +00:00
2025-01-23 17:40:41 +00:00
2024-06-16 18:23:48 +02:00
2024-08-18 16:07:33 -07:00
2025-04-08 21:05:20 +00:00
2025-07-08 18:15:05 -05:00
2025-07-08 18:15:05 -05:00
2024-03-17 19:59:15 +01:00
2024-03-17 19:59:15 +01:00
2024-06-03 14:17:16 +10:00
2025-03-06 10:50:23 +00:00
2025-03-06 10:50:23 +00:00
2025-04-08 21:05:20 +00:00
2025-04-08 21:05:20 +00:00
2024-04-20 13:19:34 +02:00
2025-01-18 22:09:34 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-19 23:10:46 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2023-10-19 15:51:52 +00:00
2023-06-15 15:19:11 -04:00
2024-01-06 14:17:33 -05:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2025-07-29 00:41:55 +00:00
2025-07-29 00:41:55 +00:00
2025-07-29 00:41:55 +00:00
2025-07-29 00:41:55 +00:00
2025-07-29 00:41:55 +00:00
2023-06-15 15:19:11 -04:00
2025-01-11 15:56:58 -08:00
2025-01-11 15:56:58 -08:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-03-17 19:59:15 +01:00
2024-03-17 19:59:15 +01:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2025-01-06 18:43:40 -08:00
2025-01-06 18:43:40 -08:00
2025-04-22 14:06:09 +02:00
2025-04-22 14:06:09 +02:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-09-24 23:12:02 +02:00
2024-09-24 23:12:02 +02:00
2024-06-03 14:17:16 +10:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2024-09-25 19:00:19 -07:00
2024-08-18 16:07:33 -07:00
2024-12-18 11:00:21 +01:00
2024-12-18 11:00:21 +01:00
2024-12-18 11:00:21 +01:00
2025-04-03 21:59:49 +08:00
2025-04-03 21:59:49 +08:00
2025-04-03 21:59:49 +08:00
2023-06-15 15:19:11 -04:00
2024-03-17 19:59:15 +01:00
2024-03-17 19:59:15 +01:00
2024-08-18 16:07:33 -07:00
2024-08-18 15:52:23 -07:00
2024-01-07 01:42:57 +00:00
2024-01-07 01:42:57 +00:00
2024-01-28 13:50:20 -06:00
2025-04-21 21:46:44 +08:00
2025-04-21 21:46:44 +08:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2024-02-12 17:37:05 +01:00
2024-04-20 13:19:34 +02:00
2024-09-24 23:12:02 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2024-08-18 16:07:33 -07:00
2023-06-15 15:19:11 -04:00
2024-06-03 14:17:16 +10:00
2024-08-18 16:07:33 -07:00
2024-04-03 08:50:12 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-03 14:17:16 +10:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2024-06-10 00:06:02 -07:00
2025-04-22 14:06:09 +02:00
2025-04-22 14:06:09 +02:00
2024-12-14 21:27:23 -08:00
2023-10-19 15:51:52 +00:00
2024-08-30 07:14:31 +00:00
2023-10-19 15:51:52 +00:00
2024-12-10 01:29:43 -08:00
2024-06-03 13:24:44 +10:00
2024-08-18 16:07:33 -07:00
2025-08-04 18:35:43 +00:00
2025-08-04 18:35:43 +00:00
2025-08-04 18:35:43 +00:00
2025-08-04 18:35:43 +00:00
2025-01-24 06:45:19 +01:00
2025-01-24 06:45:19 +01:00
2025-01-24 06:45:19 +01:00
2025-01-24 06:45:19 +01:00
2024-07-07 17:11:05 +02:00
2025-04-13 22:01:54 +00:00
2025-04-13 22:01:54 +00:00
2024-12-18 21:58:39 +00:00
2024-04-03 08:50:12 +00:00
2024-02-22 16:04:04 +00:00
2024-10-05 19:10:47 -04:00
2024-10-05 19:10:47 -04:00
2024-10-05 19:10:47 -04:00
2024-07-29 09:50:07 +02:00
2024-07-29 09:50:07 +02:00
2024-03-09 14:32:27 +08:00
2024-10-05 18:36:47 -04:00
2024-10-05 18:36:47 -04:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-04-20 13:19:34 +02:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-08-10 12:07:17 +02:00
2025-07-23 23:54:37 +00:00
2025-07-23 23:54:37 +00:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-18 16:07:33 -07:00
2024-08-10 12:07:17 +02:00
2024-06-03 14:17:16 +10:00
2025-04-22 14:06:09 +02:00
2023-06-15 15:19:11 -04:00
2024-06-03 14:17:16 +10:00
2023-06-15 15:19:11 -04:00