Dan Jackson
d669e2b60d
Fix macports package present/active detection ( #1308 )
...
* Fix typo in redhat_subscription testcase
* Fix macports state=present matching against the wrong package name
Previous implementation returned true if the desired package name occurred anywhere in
the list of all installed packages. For example as a substring of another package name,
or even as a substring of a variant name for a different package.
Instead:
- request macports only list installed packages matching the desired package name, instead of all installed packages.
- Note `port` exits with 0 regardless of whether any packages match the requested name.
- pass `-q` flag: "Do not print the header line. This is useful when parsing the output of port installed in scripts for further processing."
- eliminate `use_unsafe_shell=True` by searching stdout contents natively in python
instead of using `grep`. This has the added benefit of eliminating any potential
misinterpretation of characters in the package name as regex special characters.
If there are zero matching installed packages, `out` is empty.
If there are one or more matches (due to multiple installed versions), the output format
is: ec8a2bc682/src/port/port.tcl (L3320-L3323)
Notably, two leading spaces, the package name, a space, and then other information.
According to blame via github, those lines haven't changed in 11 years.
* Update macports state=active to eliminate use_unsafe_shell
Similar to previous commit (for macports state=present):
- pass `-q` flag: "Do not print the header line. This is useful when parsing the output of port installed in scripts for further processing."
- search stdout contents natively in python instead of using `grep`.
- added parentheses to search string to eliminate false positives if the package name
or variants contain the word `active`. Still could fail if they contain `(active)`, but
that's less likely
If there are zero matching installed packages, `out` is empty.
If there are one or more matches (due to multiple installed versions), the output format
is: ec8a2bc682/src/port/port.tcl (L3320-L3323)
For "state=active", we're looking for a line that contains `(active)` in the output.
* Basic test case of query_port for present and active
* Attempt to fix lint errors in test
* Different mock module creation, changed test cases indentation/spacing
- picked the wrong mock code to cargo-cult. Thanks to felixfontein for this suggestion
- 4 space indentation on continuation line. I thought I had that originally, but it looks like my editor sabotaged me with mixed tabs/spaces
- Remove leading newline on multi-line test cases. I don't think it would make a difference, but I'd read up on how the python syntax works and want to more accurately represent macports output.
fingers crossed this addresses the known build errors
* Add changelog fragment
* Update tests/unit/plugins/modules/packaging/os/test_macports.py
Co-authored-by: Felix Fontein <felix@fontein.de >
* Update changelogs/fragments/1307-macports-fix-status-check.yml
Co-authored-by: Felix Fontein <felix@fontein.de >
Co-authored-by: Felix Fontein <felix@fontein.de >
2020-11-26 06:59:32 +01:00
..
2020-11-25 12:03:12 +01:00
2020-11-23 11:14:43 +00:00
2020-11-24 09:01:50 +01:00
2020-11-24 08:11:36 +01:00
2020-11-23 11:14:43 +00:00
2020-11-25 07:25:00 +01:00
2020-11-24 06:34:23 +01:00
2020-11-05 06:50:47 +01:00
2020-11-26 06:59:32 +01:00
2020-11-23 14:10:18 +01:00
2020-11-23 14:10:18 +01:00
2020-11-23 14:10:18 +01:00
2020-11-23 18:59:09 +01:00
2020-11-23 11:14:43 +00:00
2020-03-09 09:11:07 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-04-02 17:50:13 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-09 09:38:06 +03:00
2020-06-09 09:38:06 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-10 21:01:16 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-07-23 22:40:33 +02:00
2020-07-21 07:45:32 +01:00
2020-07-21 07:45:32 +01:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-09-16 07:24:37 +02:00
2020-09-21 10:15:56 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-08-15 10:36:07 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-03 10:00:07 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-07-22 16:54:58 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-04-17 10:53:37 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-10-19 13:40:07 +02:00
2020-10-19 13:40:07 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-07-17 07:39:37 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-11-13 11:44:57 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-11-24 17:30:39 +01:00
2020-11-24 17:30:39 +01:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-11-24 17:30:39 +01:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-05-12 20:18:24 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-09-03 15:02:30 +03:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-08-11 17:54:41 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-08-18 09:10:41 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-06-26 09:17:51 +02:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00
2020-03-11 14:10:38 +00:00