Vladimir Sementsov-Ogievskiy
e2c5093c99
iotests: 30: drop from auto group (and effectively from make check)
...
I reproduced the following crash fast enough:
0 raise () at /lib64/libc.so.6
1 abort () at /lib64/libc.so.6
2 _nl_load_domain.cold () at /lib64/libc.so.6
3 annobin_assert.c_end () at /lib64/libc.so.6
4 bdrv_reopen_multiple (bs_queue=0x55de75fa9b70, errp=0x0)
at ../block.c:3820
5 bdrv_reopen_set_read_only (bs=0x55de760fc020, read_only=true,
errp=0x0) at ../block.c:3870
6 stream_clean (job=0x55de75fa9410) at ../block/stream.c:99
7 job_clean (job=0x55de75fa9410) at ../job.c:680
8 job_finalize_single (job=0x55de75fa9410) at ../job.c:696
9 job_txn_apply (job=0x55de75fa9410,
fn=0x55de741eee27 <job_finalize_single>) at ../job.c:158
10 job_do_finalize (job=0x55de75fa9410) at ../job.c:805
11 job_completed_txn_success (job=0x55de75fa9410) at ../job.c:855
12 job_completed (job=0x55de75fa9410) at ../job.c:868
13 job_exit (opaque=0x55de75fa9410) at ../job.c:888
14 aio_bh_call (bh=0x55de76b9b4e0) at ../util/async.c:136
15 aio_bh_poll (ctx=0x55de75bc5300) at ../util/async.c:164
16 aio_dispatch (ctx=0x55de75bc5300) at ../util/aio-posix.c:381
17 aio_ctx_dispatch (source=0x55de75bc5300, callback=0x0,
user_data=0x0) at ../util/async.c:306
18 g_main_context_dispatch () at /lib64/libglib-2.0.so.0
19 glib_pollfds_poll () at ../util/main-loop.c:232
20 os_host_main_loop_wait (timeout=0) at ../util/main-loop.c:255
21 main_loop_wait (nonblocking=0) at ../util/main-loop.c:531
22 qemu_main_loop () at ../softmmu/runstate.c:722
23 main (argc=20, argv=0x7ffe218f0268, envp=0x7ffe218f0310) at
../softmmu/main.c:50
(gdb) fr 4
4 bdrv_reopen_multiple (bs_queue=0x55de75fa9b70, errp=0x0) at
../block.c:3820
3820 assert(perm == state->perm);
(gdb) list
3815
3816 if (ret == 0) {
3817 uint64_t perm, shared;
3818
3819 bdrv_get_cumulative_perm(state->bs, &perm,
&shared);
3820 assert(perm == state->perm);
3821 assert(shared == state->shared_perm);
3822
3823 bdrv_set_perm(state->bs);
3824 } else {
(gdb) p perm
$1 = 1
(gdb) p state->perm
$2 = 0
Then I had 38 successful iterations and another crash:
0 bdrv_check_update_perm (bs=0x5631ac97bc50, q=0x0, new_used_perm=1,
new_shared_perm=31, ignore_children=0x0, errp=0x7ffd9d477cf8) at
../block.c:2197
1 bdrv_root_attach_child
(child_bs=0x5631ac97bc50, child_name=0x5631aaf6b1f9 "backing",
child_class=0x5631ab280ca0 <child_of_bds>, child_role=8,
ctx=0x5631ab757300, perm=1, shared_perm=31, opaque=0x5631abb8c020,
errp=0x7ffd9d477cf8)
at ../block.c:2642
2 bdrv_attach_child (parent_bs=0x5631abb8c020,
child_bs=0x5631ac97bc50, child_name=0x5631aaf6b1f9 "backing",
child_class=0x5631ab280ca0 <child_of_bds>, child_role=8,
errp=0x7ffd9d477cf8)
at ../block.c:2719
3 bdrv_set_backing_hd (bs=0x5631abb8c020, backing_hd=0x5631ac97bc50,
errp=0x7ffd9d477cf8) at ../block.c:2854
4 stream_prepare (job=0x5631ac751eb0) at ../block/stream.c:74
5 job_prepare (job=0x5631ac751eb0) at ../job.c:784
6 job_txn_apply (job=0x5631ac751eb0, fn=0x5631aacb1156 <job_prepare>)
at ../job.c:158
7 job_do_finalize (job=0x5631ac751eb0) at ../job.c:801
8 job_completed_txn_success (job=0x5631ac751eb0) at ../job.c:855
9 job_completed (job=0x5631ac751eb0) at ../job.c:868
10 job_exit (opaque=0x5631ac751eb0) at ../job.c:888
11 aio_bh_call (bh=0x7f3d9c007680) at ../util/async.c:136
12 aio_bh_poll (ctx=0x5631ab757300) at ../util/async.c:164
13 aio_dispatch (ctx=0x5631ab757300) at ../util/aio-posix.c:381
14 aio_ctx_dispatch (source=0x5631ab757300, callback=0x0,
user_data=0x0) at ../util/async.c:306
15 g_main_context_dispatch () at /lib64/libglib-2.0.so.0
16 glib_pollfds_poll () at ../util/main-loop.c:232
17 os_host_main_loop_wait (timeout=0) at ../util/main-loop.c:255
18 main_loop_wait (nonblocking=0) at ../util/main-loop.c:531
19 qemu_main_loop () at ../softmmu/runstate.c:722
20 main (argc=20, argv=0x7ffd9d478198, envp=0x7ffd9d478240) at
../softmmu/main.c:50
(gdb) list
2192 QLIST_FOREACH(c, &bs->parents, next_parent) {
2193 if (g_slist_find(ignore_children, c)) {
2194 continue;
2195 }
2196
2197 if ((new_used_perm & c->shared_perm) != new_used_perm)
{
2198 char *user = bdrv_child_user_desc(c);
2199 char *perm_names = bdrv_perm_names(new_used_perm &
~c->shared_perm);
2200
2201 error_setg(errp, "Conflicts with use by %s as '%s',
which does not "
(gdb) p c
$1 = (BdrvChild *) 0x8585858585858585
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20210205111021.715240-1-vsementsov@virtuozzo.com
Reviewed-by: Eric Blake <eblake@redhat.com>
[PMM: trimmed the part of the commit message referring to
as-yet-unapplied patchseries]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2021-02-05 15:16:13 +00:00
..
2019-02-01 13:46:44 +01:00
2021-01-27 20:53:14 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-09-08 13:40:52 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2016-05-12 15:33:24 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-03-24 12:05:31 +01:00
2020-03-24 12:05:31 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-12-11 17:52:40 +01:00
2021-01-20 14:53:22 -06:00
2021-02-05 15:16:13 +00:00
2019-07-15 15:48:40 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2018-03-02 18:39:07 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-09-08 13:40:53 +02:00
2021-01-20 14:53:22 -06:00
2020-09-08 13:40:49 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2017-07-11 17:45:02 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-12-11 17:52:40 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2016-05-12 15:33:24 +02:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:23:55 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2016-05-12 15:33:24 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-05-08 13:26:35 +02:00
2021-01-26 14:36:37 +01:00
2019-08-06 13:17:17 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-09-02 16:32:14 -05:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 10:20:15 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-01-06 13:43:07 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2017-05-11 12:08:24 +02:00
2021-01-20 14:53:22 -06:00
2017-09-06 15:19:01 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2018-12-18 07:55:47 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2017-10-26 14:45:57 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2017-11-14 18:06:25 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-11-17 12:38:32 +01:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2019-10-28 11:22:31 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:33:06 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-12-11 17:52:40 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-01-06 13:43:07 +01:00
2021-01-20 14:53:22 -06:00
2019-05-07 09:43:42 -05:00
2021-01-20 14:53:22 -06:00
2018-08-15 12:50:39 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:37 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2018-04-03 17:39:37 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2018-06-11 16:18:45 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:24:05 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2018-12-18 07:55:47 +01:00
2021-01-20 14:53:22 -06:00
2018-12-18 07:55:47 +01:00
2021-01-20 14:53:22 -06:00
2018-03-26 12:16:00 +02:00
2021-01-20 14:53:22 -06:00
2020-07-21 17:44:35 +02:00
2021-01-20 14:53:22 -06:00
2021-01-26 14:36:37 +01:00
2019-08-06 13:17:24 +02:00
2021-01-20 14:53:22 -06:00
2020-09-15 11:30:36 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:33:06 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2016-05-19 16:45:31 +02:00
2021-01-20 14:53:22 -06:00
2020-01-06 13:43:07 +01:00
2021-01-20 14:53:22 -06:00
2020-03-26 14:52:43 +01:00
2021-01-20 14:53:22 -06:00
2016-09-23 13:45:36 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2021-01-26 14:36:37 +01:00
2020-07-14 15:18:59 +02:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2017-04-27 15:39:49 +02:00
2021-01-20 14:53:22 -06:00
2021-01-27 20:53:02 +01:00
2021-01-20 14:53:22 -06:00
2018-01-26 09:37:21 -06:00
2021-01-20 14:53:22 -06:00
2016-03-17 16:43:30 +01:00
2021-01-20 14:53:22 -06:00
2019-10-10 10:56:18 +02:00
2021-01-20 14:53:22 -06:00
2019-09-03 14:55:35 +02:00
2019-09-03 14:55:35 +02:00
2021-01-20 14:53:22 -06:00
2019-08-06 13:17:26 +02:00
2021-01-20 14:53:22 -06:00
2016-04-20 16:52:55 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-03-11 15:54:38 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2017-07-11 17:44:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2016-09-20 22:10:57 +02:00
2021-01-20 14:53:22 -06:00
2016-09-20 22:10:57 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-10-29 09:57:37 +00:00
2021-01-20 14:53:22 -06:00
2017-09-26 15:00:32 +02:00
2021-01-20 14:53:22 -06:00
2019-10-17 17:02:32 -04:00
2021-01-20 14:53:22 -06:00
2016-09-20 22:10:57 +02:00
2021-01-20 14:53:22 -06:00
2016-10-31 16:52:39 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 11:48:39 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2017-02-12 00:47:42 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2017-09-26 14:46:23 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:31:31 +02:00
2021-01-26 14:36:37 +01:00
2021-02-03 08:00:33 -06:00
2021-01-20 14:53:22 -06:00
2020-12-18 11:48:39 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:33:06 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-05-28 13:16:16 -05:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2019-10-28 11:22:31 +01:00
2021-01-20 14:53:22 -06:00
2020-06-09 17:05:50 -05:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2017-11-17 18:06:21 +01:00
2021-01-20 14:53:22 -06:00
2020-07-28 15:28:56 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-12-11 17:52:40 +01:00
2021-01-20 14:53:22 -06:00
2018-01-23 12:33:07 +01:00
2021-01-20 14:53:22 -06:00
2018-10-30 21:13:54 -03:00
2021-01-20 14:53:22 -06:00
2018-10-30 21:13:54 -03:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:31:31 +02:00
2021-01-20 14:53:22 -06:00
2018-01-26 09:37:21 -06:00
2021-01-20 14:53:22 -06:00
2021-02-03 08:00:33 -06:00
2021-01-20 14:53:22 -06:00
2019-06-24 16:01:04 +02:00
2021-01-20 14:53:22 -06:00
2018-10-30 21:13:54 -03:00
2021-01-20 14:53:22 -06:00
2019-03-30 20:52:29 -05:00
2021-01-20 14:53:22 -06:00
2020-12-18 11:48:39 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2020-01-06 13:43:07 +01:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2018-10-30 21:13:54 -03:00
2021-01-20 14:53:22 -06:00
2018-06-11 16:18:45 +02:00
2021-01-20 14:53:22 -06:00
2019-07-19 15:17:55 +02:00
2021-01-26 14:36:37 +01:00
2020-01-27 17:19:53 +01:00
2021-01-20 14:53:22 -06:00
2019-03-08 12:26:45 +01:00
2021-01-20 14:53:22 -06:00
2020-12-11 17:52:40 +01:00
2021-01-20 14:53:22 -06:00
2018-10-30 21:13:54 -03:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2019-02-25 15:11:27 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-10-10 10:56:18 +02:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:31:31 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2018-09-24 23:46:05 -04:00
2021-01-20 14:53:22 -06:00
2019-03-19 15:49:29 +01:00
2021-01-29 17:07:53 +00:00
2019-09-24 07:30:19 -05:00
2021-01-20 14:53:22 -06:00
2019-02-01 13:46:44 +01:00
2021-01-20 14:53:22 -06:00
2018-12-03 16:51:53 +01:00
2021-01-20 14:53:22 -06:00
2019-03-12 12:05:48 -04:00
2021-01-20 14:53:22 -06:00
2019-04-30 15:29:00 +02:00
2021-01-20 14:53:22 -06:00
2019-01-24 10:02:28 +00:00
2021-01-20 14:53:22 -06:00
2019-02-01 13:46:44 +01:00
2021-01-20 14:53:22 -06:00
2020-11-09 15:44:21 +01:00
2021-01-20 14:53:22 -06:00
2019-04-12 18:03:01 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2019-03-08 12:26:46 +01:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:31:31 +02:00
2021-01-26 14:36:37 +01:00
2020-05-05 13:17:36 +02:00
2021-01-20 14:53:22 -06:00
2019-03-12 15:00:48 -04:00
2021-01-20 14:53:22 -06:00
2019-03-19 15:49:29 +01:00
2021-01-20 14:53:22 -06:00
2019-03-26 11:37:51 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2019-06-04 16:55:58 +02:00
2021-01-20 14:53:22 -06:00
2019-06-14 15:09:27 +02:00
2021-01-20 14:53:22 -06:00
2019-05-10 16:45:40 +02:00
2021-01-20 14:53:22 -06:00
2019-09-03 14:55:35 +02:00
2021-01-20 14:53:22 -06:00
2019-08-16 16:28:03 -04:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2019-08-16 16:28:03 -04:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2019-08-16 10:25:16 +02:00
2021-01-20 14:53:22 -06:00
2020-09-02 16:32:14 -05:00
2021-01-20 14:53:22 -06:00
2019-10-17 17:02:32 -04:00
2021-01-20 14:53:22 -06:00
2020-10-06 08:34:49 +02:00
2021-01-20 14:53:22 -06:00
2019-10-08 14:28:25 +01:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:33:06 +02:00
2021-01-20 20:22:31 -06:00
2020-07-28 09:54:43 -05:00
2021-01-20 14:53:22 -06:00
2019-09-10 08:58:43 +02:00
2021-01-20 14:53:22 -06:00
2019-12-19 14:32:43 +01:00
2021-01-20 14:53:22 -06:00
2020-10-06 08:34:49 +02:00
2021-01-20 14:53:22 -06:00
2019-10-14 17:12:48 +02:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2019-11-07 14:37:46 +01:00
2021-01-20 14:53:22 -06:00
2020-09-07 12:31:31 +02:00
2021-01-20 14:53:22 -06:00
2020-10-23 13:42:16 +01:00
2021-01-20 14:53:22 -06:00
2019-11-18 16:01:31 -06:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2020-01-27 17:19:53 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-05-08 13:26:35 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:33:06 +02:00
2021-01-20 14:53:22 -06:00
2020-02-20 16:43:42 +01:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2021-01-20 14:53:22 -06:00
2020-03-11 12:42:29 +01:00
2021-01-20 14:53:22 -06:00
2020-03-24 12:05:31 +01:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:18:59 +02:00
2021-01-20 14:53:22 -06:00
2020-10-30 15:10:14 -05:00
2021-01-20 14:53:22 -06:00
2020-05-08 13:26:35 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:49:28 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:49:28 +02:00
2021-01-20 14:53:22 -06:00
2020-07-06 08:49:28 +02:00
2021-01-20 14:53:22 -06:00
2020-07-21 10:49:02 +02:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:35:55 +01:00
2021-01-20 14:53:22 -06:00
2020-07-17 14:20:57 +02:00
2021-01-26 14:36:37 +01:00
2020-08-21 08:56:09 -05:00
2021-01-20 14:53:22 -06:00
2020-07-14 15:24:05 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2020-08-25 09:19:55 +02:00
2021-01-20 14:53:22 -06:00
2020-08-11 09:29:31 +02:00
2021-01-20 14:53:22 -06:00
2020-09-15 11:05:13 +02:00
2021-01-20 14:53:22 -06:00
2020-10-02 15:46:40 +02:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-20 14:53:22 -06:00
2020-10-30 15:22:00 -05:00
2021-01-26 14:36:29 +01:00
2021-01-26 14:36:29 +01:00
2021-01-20 14:53:22 -06:00
2020-12-18 12:47:38 +01:00
2021-01-26 14:36:37 +01:00
2021-01-26 14:36:37 +01:00
2021-02-02 17:05:38 +01:00
2019-03-08 12:26:45 +01:00
2020-12-18 11:48:39 +01:00
2019-10-28 11:22:31 +01:00
2020-04-07 13:51:09 +02:00
2020-12-18 12:47:38 +01:00
2021-01-26 11:26:54 +01:00
2020-07-17 14:20:57 +02:00
2021-01-27 20:53:14 +01:00
2021-01-27 20:53:14 +01:00
2017-02-12 00:47:42 +01:00
2021-01-27 20:53:14 +01:00
2020-11-17 12:26:47 +01:00
2021-02-02 13:23:47 +01:00
2020-08-21 08:56:09 -05:00
2020-08-21 08:56:09 -05:00
2020-02-07 15:15:16 +01:00
2016-06-16 15:19:55 +02:00
2016-10-27 19:05:23 +02:00
2021-02-02 17:05:04 +01:00
2021-02-02 17:05:38 +01:00