Laine Stump
be5332c81d
schema: fix <interleave> errors when validating <domain> subelements
...
I first noticed a problem when I added a <memoryBacking> element at an
unusual (but still correct) place in the domain XML, and validation
failed. Then I tried adding that element in several different places
and it failed in many, but not all of them.
(NB: from here on, I will use '' for the names of attributes in the
domain XML, <> for elements in the domain XML, and "" for the names of
grammar rule definitions in the RNG file, and "<>" for the names of
elements in the RNG file's own XML. Confused yet? If so, please tell
me a better way - everything I know about RNG I've picked up
informally by looking at examples in already existing RNG files)
Starting from the top level of the grammar for <domain>
("domaincontents" in domaincommon.rng), I noticed that
1) the "<attribute>" for the 'id' attribute of <domain> is defined
inside an "<interleave>" down in the definition of "ids" (which is
referenced from "domaincontents") (I'm not familiar with the
nomenclature - does that make it a "sub-grammer", "child-grammar",
???)
2) although the definition of "ids", had all of its
"<attribute>"s/"<element>"s inside an "<interleave>",
"domaincontents" already had the reference to "ids" inside an
"<interleave>", so there were nested "<interleave>"s.
It's not clear to me how an "<attribute>" or "<interleave>" inside
another "<interleave>" is supposed to behave, but they both seemed a
bit suspicious.
I tried all of the below modifications:
1) moving the grammar for the 'id' attribute out of the "<interleave>"
but still inside "ids"
2) moving the grammer for the 'id' attribute directly into
"domaincontents" (and outside of its "interleave"
3) removing the "<interleave>" that was inside "ids"
4) (2) + (3)
5) move the entire grammar rule "ids" up directly in place of <ref
name="ids"> in "domaincontents".
6) (5), but with the grammar for the 'id' attribute moved outside of
the "<interleave>"
(6) was the only change that allowed all of the following (using
modifications to the subelements of <domain> in
net-vhostuser-passt.xml as example):
a) a <memoryBacking> element in between *any* two existing elements
b) moving <name> in between any two elements
c) oddly, in addition to the problem with putting <memoryBacking> in
odd places, I also found that the original RNG did not allow the
<clock> element to be placed in between <on_poweroff> and
<on_reboot>, but once I'd made the change in (6), this was no
longer problematic. Why should this have any effect? No idea, but
it works :-/
(NB: there are many other cases of referencing "sub-grammar" from
inside an "<interleave>", and they all seem to work just fine;
possibly in this case it was problematic because the sub-grammar a)
also contained an "<interleave>", b) had an "<attribute>" at its
toplevel, or c) had multiple "<element>"s.)
(inexplicably (to me) at one point during my experimentation, I tried
reordering the references to "clock", "resources", "features", and
"events", and that *also* made it legal to put a <clock> element in
between the <on_*> elements:-O)
Since I was no longer able to reproduce the error described in (c)
once I had made mod (6) (move all of "ids" directly into
"domaincontent", I decided it was pointless for me to spend any more
time randomly poking and just add that to the new test case for that
in case some other random change to the RNG causes it to start failing
again.
(I thought of writing a test program that would try all possible
orderings of the subelements of <domain>, but since doing that for
even 10 subelements would mean testing > 3.2 million different XML
documents, I decided we could continue in this adhoc manner, just
adding a single new test case if/when a new validation failure is
found.)
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
2025-02-21 13:52:52 -05:00
..
2024-07-15 13:08:15 +02:00
2024-07-15 13:08:15 +02:00
2024-07-15 13:08:15 +02:00
2024-05-02 13:17:17 +02:00
2024-05-02 13:17:17 +02:00
2024-05-02 13:17:17 +02:00
2024-08-06 15:12:14 +02:00
2024-08-06 15:12:14 +02:00
2024-03-06 16:30:37 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:37 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-06-07 11:13:19 +02:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-09-03 14:08:34 +02:00
2024-09-03 14:08:34 +02:00
2024-09-03 14:08:34 +02:00
2024-09-03 14:08:34 +02:00
2024-09-03 14:08:34 +02:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-03-06 16:30:37 +01:00
2024-03-06 16:30:37 +01:00
2024-05-02 15:38:34 +02:00
2024-05-02 15:38:34 +02:00
2024-05-02 15:38:34 +02:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-12-20 10:00:22 +00:00
2024-08-09 16:34:33 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-09-19 10:30:14 +02:00
2024-09-19 10:30:14 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-09-19 10:30:14 +02:00
2024-09-19 10:30:14 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-04-02 14:24:30 +02:00
2024-04-02 14:24:30 +02:00
2024-04-02 14:24:30 +02:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-01 10:37:16 +01:00
2024-02-01 10:37:16 +01:00
2024-02-01 10:37:16 +01:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-02-02 16:03:08 +01:00
2025-02-20 15:21:45 +01:00
2025-02-20 15:21:45 +01:00
2024-12-19 15:24:05 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-05-28 09:51:40 +02:00
2024-12-19 15:24:05 +01:00
2024-12-19 15:24:05 +01:00
2024-12-19 15:24:05 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-05-28 09:51:40 +02:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-02-20 17:29:27 +01:00
2024-05-28 09:51:40 +02:00
2024-02-02 16:03:08 +01:00
2024-05-02 19:56:45 +02:00
2024-12-17 11:45:50 +01:00
2024-12-17 11:45:50 +01:00
2024-12-17 11:45:50 +01:00
2024-12-17 11:45:50 +01:00
2024-12-17 11:45:50 +01:00
2024-07-04 14:58:15 +02:00
2024-07-04 14:58:15 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-04-02 14:24:30 +02:00
2024-04-02 14:24:30 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-03-06 16:30:37 +01:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-08-21 15:49:36 +02:00
2024-08-21 15:49:36 +02:00
2024-08-21 15:49:36 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-08-21 15:49:36 +02:00
2024-08-21 15:49:36 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-06-25 10:05:49 +02:00
2024-06-25 10:05:49 +02:00
2024-06-25 10:05:49 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-10-16 14:39:09 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-11-25 22:31:18 +01:00
2024-11-25 22:31:18 +01:00
2024-11-25 22:31:18 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2025-01-29 16:15:29 +01:00
2025-01-29 16:15:29 +01:00
2025-01-29 16:15:29 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2025-01-29 16:15:29 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2025-01-29 16:15:29 +01:00
2025-01-29 16:15:29 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2025-02-07 13:52:45 +01:00
2025-02-07 13:52:45 +01:00
2025-02-07 13:52:45 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-07-04 09:27:34 +02:00
2024-07-04 09:27:34 +02:00
2024-07-04 09:27:34 +02:00
2024-09-10 14:26:52 +02:00
2024-09-10 14:26:52 +02:00
2024-02-02 16:03:08 +01:00
2024-10-16 14:39:09 +02:00
2024-05-15 10:37:55 +02:00
2024-05-15 10:37:55 +02:00
2024-10-16 14:39:09 +02:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-03-21 14:42:27 +01:00
2024-11-15 09:42:04 +01:00
2024-03-21 14:42:27 +01:00
2024-11-15 09:42:04 +01:00
2024-03-21 14:42:27 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-07-19 15:18:41 +02:00
2024-07-19 15:18:38 +02:00
2024-11-15 09:42:04 +01:00
2024-07-19 15:18:36 +02:00
2024-07-19 15:18:39 +02:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:03 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-06-24 08:55:50 -05:00
2024-05-20 12:42:18 -05:00
2024-05-20 12:42:18 -05:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-07-03 09:54:43 +02:00
2024-07-03 09:54:43 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-07-03 09:54:43 +02:00
2024-07-03 09:54:43 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-08-26 11:48:15 +02:00
2024-08-26 11:48:15 +02:00
2024-12-26 10:46:59 +01:00
2025-01-07 10:55:38 +01:00
2024-12-26 10:46:59 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-08-09 10:05:56 +02:00
2024-08-09 10:05:56 +02:00
2024-08-09 10:05:56 +02:00
2024-12-18 15:27:12 +01:00
2024-12-18 15:27:12 +01:00
2024-12-18 15:27:12 +01:00
2024-11-07 10:46:33 +01:00
2024-11-07 10:46:33 +01:00
2024-12-16 15:43:16 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2025-02-06 11:31:42 +01:00
2025-02-06 11:31:42 +01:00
2025-02-06 11:31:42 +01:00
2024-02-02 16:03:08 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-06-07 11:12:59 +02:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-03-21 14:42:27 +01:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-08-21 17:10:51 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-11-11 10:15:06 +01:00
2024-02-02 16:03:08 +01:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-22 10:54:07 +01:00
2024-02-22 10:54:07 +01:00
2024-02-22 10:54:07 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2025-02-04 09:15:45 +01:00
2025-02-04 09:15:45 +01:00
2025-02-04 09:15:45 +01:00
2025-02-04 09:15:45 +01:00
2025-02-04 09:15:45 +01:00
2025-02-04 09:15:45 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-03-19 17:36:19 +01:00
2024-03-19 17:36:19 +01:00
2024-03-19 17:36:19 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-04-03 10:40:32 +02:00
2024-04-03 10:40:32 +02:00
2024-04-03 10:40:32 +02:00
2024-02-02 16:03:08 +01:00
2024-11-19 13:06:02 +01:00
2025-02-17 00:00:37 -05:00
2024-02-02 16:03:08 +01:00
2024-10-16 14:39:09 +02:00
2025-02-17 00:02:11 -05:00
2025-02-17 00:02:11 -05:00
2025-02-17 00:02:11 -05:00
2025-02-17 00:02:11 -05:00
2025-02-17 00:02:11 -05:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-12-20 10:00:22 +00:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-08-09 14:42:07 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-07-25 16:04:50 +02:00
2024-07-25 16:04:50 +02:00
2024-07-25 16:04:50 +02:00
2024-11-15 09:42:04 +01:00
2024-11-15 09:42:04 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-04-19 14:27:30 +02:00
2024-04-19 14:22:42 +02:00
2024-04-19 14:22:42 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-09-03 14:07:47 +02:00
2024-09-03 14:06:08 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-08-06 15:12:14 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-06-07 11:12:59 +02:00
2025-01-24 07:30:52 -03:00
2025-01-24 07:30:52 -03:00
2025-01-24 07:30:52 -03:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-09-05 15:24:55 +02:00
2024-01-30 10:58:13 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-02-12 11:28:09 +01:00
2024-02-12 11:28:09 +01:00
2024-02-12 11:28:09 +01:00
2024-02-12 11:28:12 +01:00
2024-02-12 11:28:11 +01:00
2024-02-12 11:28:11 +01:00
2024-02-12 11:28:09 +01:00
2024-02-12 11:28:09 +01:00
2024-02-12 11:28:09 +01:00
2024-08-06 15:12:14 +02:00
2024-08-06 15:12:14 +02:00
2024-08-06 15:12:14 +02:00
2024-08-06 15:12:14 +02:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-06-07 11:12:59 +02:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2025-02-21 13:52:52 -05:00
2025-02-21 13:52:52 -05:00
2025-02-21 13:52:52 -05:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-09-19 10:30:15 +02:00
2024-09-19 10:30:15 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-05-02 15:38:34 +02:00
2024-05-02 15:38:34 +02:00
2024-05-02 15:38:34 +02:00
2024-07-01 16:13:12 +02:00
2024-02-02 16:03:08 +01:00
2024-11-18 08:46:33 +01:00
2024-11-18 08:46:33 +01:00
2024-11-18 08:46:49 +01:00
2024-11-05 15:25:53 +01:00
2024-11-05 15:25:53 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:36 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:37 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:35 +01:00
2024-03-06 16:30:36 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-04-24 10:30:36 +02:00
2024-04-24 10:30:36 +02:00
2024-10-24 18:46:21 +02:00
2024-04-24 10:30:36 +02:00
2024-04-24 10:30:36 +02:00
2024-07-10 12:32:23 +02:00
2024-07-24 12:48:16 +02:00
2024-07-24 12:48:16 +02:00
2024-07-24 12:48:16 +02:00
2024-04-24 10:30:36 +02:00
2024-04-24 10:30:36 +02:00
2024-04-24 10:30:36 +02:00
2025-01-07 10:25:02 +01:00
2025-01-07 10:25:02 +01:00
2025-01-07 10:25:02 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-10-24 18:46:21 +02:00
2024-11-15 09:42:04 +01:00
2024-10-02 16:06:51 +02:00
2024-10-02 16:06:51 +02:00
2024-06-12 08:21:12 +02:00
2024-06-12 08:21:12 +02:00
2024-06-12 08:21:12 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-10-24 18:46:21 +02:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-02-02 16:03:08 +01:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-06-07 11:12:59 +02:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00
2024-01-30 10:58:13 +01:00