bors
cb3752d20e
Auto merge of #124136 - estebank:clone-o-rama-2, r=nnethercote
...
Provide more context and suggestions in borrowck errors involving closures
Start pointing to where bindings where declared when they are captured in closures:
```
error[E0597]: `x` does not live long enough
--> $DIR/suggest-return-closure.rs:23:9
|
LL | let x = String::new();
| - binding `x` declared here
...
LL | |c| {
| --- value captured here
LL | x.push(c);
| ^ borrowed value does not live long enough
...
LL | }
| -- borrow later used here
| |
| `x` dropped here while still borrowed
```
Suggest cloning in more cases involving closures:
```
error[E0507]: cannot move out of `foo` in pattern guard
--> $DIR/issue-27282-move-ref-mut-into-guard.rs:11:19
|
LL | if { (|| { let mut bar = foo; bar.take() })(); false } => {},
| ^^ --- move occurs because `foo` has type `&mut Option<&i32>`, which does not implement the `Copy` trait
| |
| `foo` is moved here
|
= note: variables bound in patterns cannot be moved from until after the end of the pattern guard
help: consider cloning the value if the performance cost is acceptable
|
LL | if { (|| { let mut bar = foo.clone(); bar.take() })(); false } => {},
| ++++++++
```
Mention when type parameter could be Clone
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
Suggest cloning captured binding in move closure
```
error[E0507]: cannot move out of `bar`, a captured variable in an `FnMut` closure
--> $DIR/borrowck-move-by-capture.rs:9:29
|
LL | let bar: Box<_> = Box::new(3);
| --- captured outer variable
LL | let _g = to_fn_mut(|| {
| -- captured by this `FnMut` closure
LL | let _h = to_fn_once(move || -> isize { *bar });
| ^^^^^^^^^^^^^^^^ ----
| | |
| | variable moved due to use in closure
| | move occurs because `bar` has type `Box<isize>`, which does not implement the `Copy` trait
| `bar` is moved here
|
help: clone the value before moving it into the closure 1
|
LL ~ let value = bar.clone();
LL ~ let _h = to_fn_once(move || -> isize { value });
|
```
2024-04-25 01:00:41 +00:00
..
2024-04-22 18:48:47 +02:00
2024-03-11 09:36:35 -07:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-02-18 11:19:24 +03:00
2024-03-07 00:19:55 +00:00
2024-03-15 13:37:41 +00:00
2024-04-15 08:54:11 -04:00
2024-04-11 09:31:50 +02:00
2024-04-16 11:11:50 +05:30
2024-04-19 16:12:54 +00:00
2024-02-22 18:05:28 +00:00
2024-04-16 11:11:50 +05:30
2024-04-24 22:21:15 +00:00
2024-04-24 08:05:29 +00:00
2024-04-24 14:00:55 +02:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-04-15 08:54:11 -04:00
2024-02-16 20:02:50 +00:00
2024-04-21 15:43:43 -03:00
2024-04-24 22:21:15 +00:00
2024-02-22 18:05:28 +00:00
2024-04-24 22:21:16 +00:00
2024-04-24 22:21:15 +00:00
2024-04-11 16:41:41 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-21 13:04:51 +02:00
2024-04-07 01:16:45 +02:00
2024-04-18 12:51:02 +02:00
2024-02-29 15:27:59 -03:00
2024-04-21 15:43:43 -03:00
2024-02-16 20:02:50 +00:00
2024-03-17 10:11:04 -07:00
2024-03-18 16:40:43 +00:00
2024-04-21 15:43:43 -03:00
2024-04-24 08:05:29 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-04-07 17:06:15 +00:00
2024-04-09 23:58:18 +02:00
2024-02-22 18:05:28 +00:00
2024-04-24 13:12:33 +01:00
2024-04-24 13:12:33 +01:00
2024-02-16 20:02:50 +00:00
2024-04-24 13:12:33 +01:00
2024-04-24 22:21:13 +00:00
2024-03-06 18:19:13 -05:00
2024-03-18 16:08:58 +00:00
2024-03-14 14:10:45 +00:00
2024-02-16 20:02:50 +00:00
2024-03-07 14:26:31 +00:00
2024-04-22 12:05:39 +00:00
2024-02-16 20:02:50 +00:00
2024-04-23 23:05:39 +03:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-21 15:43:43 -03:00
2024-04-24 22:21:15 +00:00
2024-04-14 11:34:15 +02:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-21 17:46:48 +01:00
2024-03-18 16:40:43 +00:00
2024-02-20 23:48:59 +01:00
2024-03-27 14:02:15 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 08:05:29 +00:00
2024-02-16 20:02:50 +00:00
2024-04-11 16:41:41 +00:00
2024-02-01 03:31:03 +00:00
2024-03-11 09:36:35 -07:00
2024-04-22 11:51:50 -04:00
2024-03-11 19:42:04 +00:00
2024-02-16 20:02:50 +00:00
2024-03-20 15:53:06 +00:00
2024-02-16 20:02:50 +00:00
2024-03-06 12:01:54 +00:00
2024-04-21 15:43:43 -03:00
2024-02-16 20:02:50 +00:00
2024-03-17 21:59:40 +00:00
2024-04-24 22:21:15 +00:00
2024-03-02 22:47:17 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 21:28:16 +00:00
2024-04-21 15:43:43 -03:00
2024-04-17 09:18:14 -04:00
2024-04-18 09:52:00 -04:00
2024-04-24 13:12:25 +01:00
2024-04-14 21:34:14 +05:30
2024-04-24 22:21:13 +00:00
2024-03-10 21:18:41 -04:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-04-12 20:57:07 +00:00
2024-02-16 20:02:50 +00:00
2024-04-23 16:11:09 +00:00
2024-04-13 17:07:02 +02:00
2024-03-17 23:40:12 +00:00
2024-04-12 17:45:15 +01:00
2024-03-06 12:35:07 -08:00
2024-02-16 20:02:50 +00:00
2024-04-03 22:48:55 +01:00
2024-03-10 18:07:34 +01:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 13:12:33 +01:00
2024-04-03 22:32:46 +01:00
2024-04-11 14:38:21 -04:00
2024-03-29 18:22:44 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-20 15:48:27 +02:00
2024-03-07 14:26:31 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 13:12:33 +01:00
2024-04-19 10:43:53 +08:00
2024-02-16 20:02:50 +00:00
2024-02-26 11:10:18 +01:00
2024-02-16 20:02:50 +00:00
2024-04-15 08:54:11 -04:00
2024-04-23 20:17:51 +02:00
2024-02-16 20:02:50 +00:00
2024-04-24 15:52:01 +02:00
2024-03-11 09:36:35 -07:00
2024-04-24 22:21:15 +00:00
2024-03-27 14:02:15 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 21:28:16 +00:00
2024-02-16 20:02:50 +00:00
2024-04-17 13:00:43 +02:00
2024-02-16 20:02:50 +00:00
2024-04-23 06:24:55 +02:00
2024-03-27 14:02:15 +00:00
2024-02-16 20:02:50 +00:00
2024-04-12 17:45:15 +01:00
2024-04-18 21:38:55 -07:00
2024-04-24 13:12:33 +01:00
2024-02-16 20:02:50 +00:00
2024-04-10 17:43:45 +02:00
2024-04-24 13:12:33 +01:00
2024-04-24 08:05:29 +00:00
2024-04-24 13:12:33 +01:00
2024-02-29 11:08:27 +11:00
2024-03-06 12:35:07 -08:00
2024-03-01 17:51:29 +01:00
2024-02-16 20:02:50 +00:00
2024-04-21 15:43:43 -03:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-31 20:44:30 -04:00
2024-04-15 23:34:50 -04:00
2024-03-04 19:30:53 +00:00
2024-04-21 20:10:12 -04:00
2024-04-24 22:21:15 +00:00
2024-04-21 20:10:12 -04:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-21 20:10:12 -04:00
2024-04-07 17:38:07 -03:00
2024-02-16 20:02:50 +00:00
2024-04-24 22:21:15 +00:00
2024-03-27 11:20:28 -04:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-19 11:05:02 +00:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-30 21:28:18 +00:00
2024-04-22 18:48:47 +02:00
2024-02-16 20:02:50 +00:00
2024-03-20 17:29:58 +00:00
2024-04-07 17:06:15 +00:00
2024-03-18 16:25:36 +00:00
2024-03-27 14:02:15 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 08:05:29 +00:00
2024-04-17 13:00:43 +02:00
2024-03-11 09:36:35 -07:00
2024-04-09 13:58:52 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 13:12:33 +01:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 08:05:29 +00:00
2024-04-11 17:53:27 -04:00
2024-04-24 08:05:29 +00:00
2024-02-16 20:02:50 +00:00
2024-04-12 17:41:35 +02:00
2024-04-18 20:42:19 +02:00
2024-04-15 08:54:11 -04:00
2024-03-06 12:35:07 -08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-27 14:02:15 +00:00
2024-03-23 16:14:42 +01:00
2024-03-20 22:28:56 -04:00
2024-04-21 15:43:43 -03:00
2024-02-16 20:02:50 +00:00
2024-04-24 22:21:13 +00:00
2024-02-16 20:02:50 +00:00
2024-04-01 03:05:55 +01:00
2024-01-29 17:43:07 +08:00
2024-04-21 20:10:12 -04:00
2024-04-14 09:42:53 -04:00
2024-04-24 08:05:29 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-04-22 11:51:50 -04:00
2024-02-22 18:05:28 +00:00
2024-04-22 11:51:50 -04:00
2024-02-29 14:43:43 +01:00
2024-04-24 08:05:29 +00:00
2024-04-04 14:25:45 +00:00
2024-02-16 20:02:50 +00:00
2024-02-22 18:05:27 +00:00
2024-03-07 00:19:55 +00:00
2024-04-24 13:12:33 +01:00
2024-03-09 18:24:45 +00:00
2024-04-15 18:48:12 -04:00
2024-04-24 22:21:13 +00:00
2024-04-16 12:42:48 +05:30
2024-03-31 15:38:22 +02:00
2024-03-25 14:19:07 +00:00
2024-02-16 20:02:50 +00:00
2024-03-31 14:58:17 -03:00
2024-04-17 09:50:15 +00:00
2024-03-14 12:42:04 +01:00
2024-04-09 01:19:43 +02:00
2024-02-16 20:02:50 +00:00
2024-03-17 23:35:18 +00:00
2024-02-16 20:02:50 +00:00
2024-04-22 18:48:47 +02:00
2024-04-24 22:21:16 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-08 12:02:19 +00:00
2024-01-30 21:28:18 +00:00
2024-03-07 14:26:31 +00:00
2024-03-11 09:36:35 -07:00
2024-04-17 09:34:39 -04:00
2024-03-06 12:35:07 -08:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-04-09 13:58:52 +00:00
2024-03-22 20:31:28 +01:00
2024-04-24 08:05:29 +00:00
2024-04-08 15:36:52 +00:00
2024-03-20 10:58:43 +01:00
2024-02-19 22:11:13 +00:00
2024-04-11 16:41:41 +00:00
2024-04-11 16:41:41 +00:00
2024-03-27 14:02:15 +00:00
2024-03-15 13:37:41 +00:00
2024-04-21 15:43:43 -03:00
2024-02-16 20:02:50 +00:00
2024-03-20 09:49:57 +00:00
2024-04-24 08:05:29 +00:00
2024-04-10 00:41:27 +00:00
2024-04-21 20:10:12 -04:00
2024-02-08 07:32:30 +00:00
2024-04-12 18:14:29 -04:00
2024-04-24 22:21:13 +00:00
2024-02-22 18:05:27 +00:00
2024-03-20 17:29:58 +00:00
2024-02-16 20:02:50 +00:00
2024-04-10 20:36:14 +00:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-04-04 18:43:26 +08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-07 17:38:07 -03:00
2024-03-24 09:34:11 +01:00
2024-04-14 14:20:55 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-04-06 15:14:16 -04:00
2024-03-22 11:27:34 -04:00
2024-02-16 20:02:50 +00:00
2024-04-09 10:23:58 +00:00
2024-03-18 16:44:12 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-27 14:02:16 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-17 13:00:43 +02:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-22 18:05:28 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-11 16:41:41 +00:00
2024-04-11 16:41:41 +00:00
2024-02-16 20:02:50 +00:00
2024-02-22 18:04:55 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2023-12-21 10:17:11 +08:00
2024-01-13 12:46:58 -05:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-15 08:54:11 -04:00
2024-04-11 16:41:41 +00:00
2024-02-08 08:10:43 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-02 15:34:37 -05:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2023-12-15 16:12:27 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-07 10:42:01 +08:00
2024-03-11 09:36:35 -07:00
2024-03-11 09:36:35 -07:00
2024-03-11 09:36:35 -07:00
2024-03-11 09:36:35 -07:00
2024-02-16 04:28:05 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-13 12:46:58 -05:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-07 01:16:45 +02:00
2023-12-12 17:40:53 +01:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-29 14:43:43 +01:00
2024-02-29 14:43:43 +01:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-12 10:59:41 +01:00
2024-02-16 20:02:50 +00:00
2024-03-07 06:27:09 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-04-07 01:16:45 +02:00
2024-02-16 20:02:50 +00:00
2024-02-06 22:45:39 +01:00
2024-02-16 20:02:50 +00:00
2024-01-30 21:28:18 +00:00
2024-02-12 17:44:53 +00:00
2024-02-17 23:16:30 -08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-03 18:53:35 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-14 21:04:51 +00:00
2024-02-14 21:04:51 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-06 12:35:07 -08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-07 01:16:45 +02:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-30 21:28:18 +00:00
2024-01-30 21:28:18 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-30 21:28:18 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-15 08:54:11 -04:00
2024-04-15 08:54:11 -04:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-30 21:28:18 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-22 18:05:28 +00:00
2024-02-16 20:02:50 +00:00
2024-02-22 18:18:33 +01:00
2024-02-22 18:18:33 +01:00
2024-02-22 18:18:33 +01:00
2024-02-22 18:18:33 +01:00
2024-02-22 18:18:33 +01:00
2024-02-22 18:18:33 +01:00
2024-04-11 16:41:42 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2023-12-16 19:56:50 -08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 19:40:23 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-17 11:23:08 +01:00
2024-02-16 22:26:01 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-14 09:42:53 -04:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-03-11 09:36:35 -07:00
2024-04-07 01:16:45 +02:00
2024-01-13 12:46:58 -05:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-01-09 21:08:16 +00:00
2024-03-07 14:26:31 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-09 09:19:44 +05:30
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-14 11:00:30 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-07 10:42:01 +08:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-17 13:00:43 +02:00
2024-04-17 13:00:43 +02:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 22:21:15 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-03-11 09:36:35 -07:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-04-24 08:05:29 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00
2024-02-16 20:02:50 +00:00