Christoph M. Becker
3b0f051193
Allow empty $escape to eschew escaping CSV
...
Albeit CSV is still a widespread data exchange format, it has never been
officially standardized. There exists, however, the “informational” RFC
4180[1] which has no notion of escape characters, but rather defines
`escaped` as strings enclosed in double-quotes where contained
double-quotes have to be doubled. While this concept is supported by
PHP's implementation (`$enclosure`), the `$escape` sometimes interferes,
so that `fgetcsv()` is unable to correctly parse externally generated
CSV, and `fputcsv()` is sometimes generating non-compliant CSV. Since
PHP's `$escape` concept is availble for many years, we cannot drop it
for BC reasons (even though many consider it as bug). Instead we allow
to pass an empty string as `$escape` parameter to the respective
functions, which results in ignoring/omitting any escaping, and as such
is more inline with RFC 4180. It is noteworthy that this is almost no
userland BC break, since formerly most functions did not accept an empty
string, and failed in this case. The only exception was `str_getcsv()`
which did accept an empty string, and used a backslash as escape
character then (which appears to be unintended behavior, anyway).
The changed functions are `fputcsv()`, `fgetcsv()` and `str_getcsv()`,
and also the `::setCsvControl()`, `::getCsvControl()`, `::fputcsv()`,
and `::fgetcsv()` methods of `SplFileObject`.
The implementation also changes the type of the escape parameter of the
PHP_APIs `php_fgetcsv()` and `php_fputcsv()` from `char` to `int`, where
`PHP_CSV_NO_ESCAPE` means to ignore/omit escaping. The parameter
accepts the same values as `isalpha()` and friends, i.e. “the value of
which shall be representable as an `unsigned char` or shall equal the
value of the macro `EOF`. If the argument has any other value, the
behavior is undefined.” This is a subtle BC break, since the character
`chr(128)` has the value `-1` if `char` is signed, and so likely would
be confused with `EOF` when converted to `int`. We consider this BC
break to be acceptable, since it's rather unlikely that anybody uses
`chr(128)` as escape character, and it easily can be fixed by casting
all `escape` arguments to `unsigned char`.
This patch implements the feature requests 38301[2] and 51496[3].
[1] <https://tools.ietf.org/html/rfc4180 >
[2] <https://bugs.php.net/bug.php?id=38301 >
[3] <https://bugs.php.net/bug.php?id=51496 >
2018-12-15 14:38:15 +01:00
..
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2011-07-22 11:56:20 +00:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2014-11-23 17:19:56 -08:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2014-11-23 17:19:56 -08:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-07-29 15:42:19 -03:00
2015-03-26 03:29:18 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2017-02-03 18:52:57 +01:00
2017-01-30 22:50:25 +01:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2014-02-28 23:45:04 +08:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2016-11-20 21:11:53 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2016-11-20 21:11:53 +01:00
2018-10-15 04:33:09 +02:00
2018-09-16 15:39:18 -03:00
2010-11-19 16:36:10 +00:00
2013-07-15 00:23:03 -07:00
2018-09-16 15:39:18 -03:00
2018-09-16 15:39:18 -03:00
2018-10-14 12:07:20 -03:00
2016-11-20 22:31:24 +01:00
2016-11-20 22:31:24 +01:00
2013-06-10 14:30:59 -07:00
2016-11-20 21:11:53 +01:00
2016-11-20 22:31:24 +01:00
2018-02-20 21:53:48 +01:00
2011-02-21 06:53:24 +00:00
2011-04-13 06:32:41 +00:00
2018-02-04 19:08:23 +01:00
2011-07-11 09:47:59 +00:00
2011-04-21 01:51:24 +00:00
2018-10-14 12:07:20 -03:00
2016-08-07 18:48:36 +02:00
2011-09-13 12:44:13 +00:00
2018-10-14 12:07:20 -03:00
2012-03-02 03:39:04 +00:00
2012-02-05 09:59:33 +00:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2012-03-13 18:08:30 +00:00
2012-04-08 22:38:21 +02:00
2012-04-23 22:09:38 +01:00
2012-06-28 20:00:03 -04:00
2012-08-20 23:47:20 +02:00
2012-12-29 23:11:37 -05:00
2013-01-09 10:53:20 +08:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-03-16 18:57:32 +01:00
2018-10-14 19:46:15 +02:00
2014-07-02 22:39:54 +02:00
2014-05-27 11:28:22 -07:00
2018-10-15 04:33:09 +02:00
2015-01-09 01:41:13 +03:00
2018-02-20 21:53:48 +01:00
2018-11-21 08:08:09 -02:00
2015-02-28 22:37:46 +08:00
2015-05-11 01:10:35 -07:00
2015-09-14 15:04:43 +02:00
2015-10-08 14:30:43 +03:00
2018-02-20 21:53:48 +01:00
2015-12-22 11:07:30 +08:00
2015-12-22 12:13:28 +08:00
2016-03-11 22:45:38 +01:00
2016-03-11 22:45:38 +01:00
2016-04-06 10:19:24 +08:00
2016-04-26 13:04:06 +03:00
2016-07-07 01:27:23 +02:00
2016-07-07 01:27:23 +02:00
2016-07-07 01:27:23 +02:00
2017-10-13 15:53:11 +03:00
2018-08-01 22:39:00 -03:00
2016-09-21 17:20:02 +08:00
2017-07-04 21:05:06 -07:00
2016-08-17 12:39:35 +02:00
2016-08-13 11:40:33 +02:00
2018-10-15 04:33:09 +02:00
2018-07-15 23:06:38 +02:00
2017-02-03 17:54:39 +01:00
2017-08-15 12:34:13 +08:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-02-20 21:53:48 +01:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-07-30 00:53:28 -03:00
2016-11-20 21:11:53 +01:00
2018-07-30 00:53:28 -03:00
2018-07-29 15:42:19 -03:00
2018-07-29 15:42:19 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-07-29 15:42:19 -03:00
2018-07-29 15:42:19 -03:00
2014-03-27 17:20:57 +09:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2015-07-30 09:05:07 +02:00
2015-07-30 09:05:07 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2015-06-29 23:49:41 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2016-11-20 22:31:24 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2013-01-18 12:10:27 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-02-20 21:53:48 +01:00
2015-06-29 23:10:50 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2016-02-10 17:52:49 -05:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2016-11-20 21:11:53 +01:00
2018-10-14 12:07:20 -03:00
2011-08-01 03:42:02 +00:00
2011-01-25 10:57:07 +00:00
2011-01-25 10:57:07 +00:00
2011-01-25 10:57:07 +00:00
2011-01-25 10:57:07 +00:00
2011-01-25 10:57:07 +00:00
2012-03-02 05:04:40 +00:00
2012-03-02 05:04:40 +00:00
2012-05-15 14:39:51 +01:00
2011-01-25 10:57:07 +00:00
2010-11-18 21:44:42 +00:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2016-11-20 22:31:24 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-11 13:04:08 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2017-02-03 21:02:52 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2015-06-25 20:34:41 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-07-29 15:42:19 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2014-10-09 21:02:42 +01:00
2018-02-20 21:53:48 +01:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2012-12-11 16:30:08 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2017-02-03 18:52:57 +01:00
2018-10-15 04:33:09 +02:00
2016-09-28 19:20:17 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2012-08-21 10:09:05 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2012-10-10 10:27:49 +08:00
2012-10-10 10:27:49 +08:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2016-11-20 21:11:53 +01:00
2018-12-15 14:38:15 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-18 08:01:22 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-07-07 17:14:54 +02:00
2018-10-14 19:46:15 +02:00
2018-02-04 17:32:56 +01:00
2018-02-04 17:32:56 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-18 08:01:22 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-07-21 22:34:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-07-21 22:34:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-07-21 22:34:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2016-11-20 22:31:24 +01:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-02-04 19:08:23 +01:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-02-04 19:08:23 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-07-21 22:34:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2015-01-18 21:38:25 -05:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2015-01-18 21:38:25 -05:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-15 04:33:09 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-18 08:01:22 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2011-10-21 06:08:47 +00:00
2018-02-04 23:09:40 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2014-07-12 10:44:11 +08:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2016-10-17 15:39:02 +01:00
2018-10-14 12:07:20 -03:00
2013-11-06 10:31:47 +01:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2013-11-06 10:31:47 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2013-11-06 10:31:47 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2015-01-17 18:50:28 +00:00
2015-01-17 18:50:28 +00:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2015-01-17 18:50:28 +00:00
2015-01-17 18:50:28 +00:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 19:46:15 +02:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-02-06 16:59:00 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-11-07 02:40:15 +03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-20 21:53:48 +01:00
2018-02-20 21:53:48 +01:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-11-07 02:40:15 +03:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2018-10-15 04:33:09 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-23 12:46:12 +03:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-10-15 04:33:09 +02:00
2018-10-14 19:46:15 +02:00
2018-10-14 19:46:15 +02:00
2018-02-04 23:09:40 +01:00
2018-10-14 12:07:20 -03:00
2018-10-15 04:33:09 +02:00