Christian Clason
b7e5769132
vim-patch:c4d0c8c81245
...
runtime(java): Improve the recognition of the "indent" method declarations (vim/vim#14659 )
There is a flaw in the current implementation that has been
exacerbated around v5.2. It lies in the recognition of all
three indentation styles simultaneously: a tab, two space,
and eight space character(s). With it, it is not uncommon
to misidentify various constructs as method declarations
when they belong to two-space indented members and other
blocks of a type and are offset at eight space characters or
a tab from the start of the line.
For example,
------------------------------------------------------------
class Test
{
static String hello() { return "hello"; }
public static void main(String[] args)
{
try {
if (args.length > 0) {
// FIXME: eight spaces.
System.out.println(args[0]);
} else {
// FIXME: a tab.
System.out.println(hello());
}
} catch (Exception e) {
throw new Error(e);
}
}
}
------------------------------------------------------------
------------------------------------------------------------
:let g:java_highlight_functions = 'indent'
:doautocmd Syntax
------------------------------------------------------------
A better approach is to pick an only indentation style out
of all supported styles (so either two spaces _or_ eight
spaces _or_ a tab). Note that tabs and spaces can still be
mixed, only the leading tab or the leading run of spaces
matters for the recognition. And there is no reason to not
complement the set of valid styles with any number of spaces
from 1 to 8, inclusively.
Please proceed with the necessary change as follows:
- rename from "indent" to "indent2" for a 2-space run;
- rename from "indent" to "indent8" for an 8-space run;
- continue to have "indent" for a tab run;
- define an "indent" variable with a suffix number denoting
the preferred amount of indentation for any other run of
spaces [1-8].
As before, this alternative style of recognition of method
declarations still does not prescribe naming conventions and
still cannot recognise method declarations in nested types
that are conventionally indented.
The proposed changes also follow suit of "style" in stopping
the claiming of constructor and enum constant declarations.
c4d0c8c812
Co-authored-by: Aliaksei Budavei <32549825+zzzyxwvut@users.noreply.github.com >
2024-04-30 00:10:02 +02:00
..
2024-01-16 17:45:57 +00:00
2024-04-27 13:08:12 +02:00
2023-12-19 23:44:20 +01:00
2017-11-06 05:26:16 +01:00
2023-08-24 11:33:06 +09:00
2023-08-13 13:25:10 +01:00
2023-10-16 16:36:25 +08:00
2022-08-09 10:43:28 +02:00
2017-04-28 21:25:15 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:25:15 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:25:15 +02:00
2021-09-13 16:33:41 +02:00
2021-05-01 22:29:03 -04:00
2017-11-06 05:26:16 +01:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2024-01-27 19:38:05 +01:00
2017-04-28 21:25:15 +02:00
2022-04-27 17:48:35 +02:00
2018-10-28 13:57:08 +01:00
2021-09-11 16:47:45 +02:00
2017-11-06 05:26:16 +01:00
2021-11-08 00:10:44 +01:00
2014-07-29 02:12:31 +00:00
2021-04-28 21:29:56 -04:00
2023-10-16 16:36:25 +08:00
2021-05-01 22:29:02 -04:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2021-09-13 16:33:41 +02:00
2021-05-01 14:22:52 -04:00
2017-04-28 21:25:15 +02:00
2024-04-22 00:18:34 +02:00
2017-04-28 21:25:15 +02:00
2018-10-28 14:05:14 +01:00
2022-07-30 15:48:32 +02:00
2021-11-17 10:02:59 +01:00
2023-02-03 09:18:18 +01:00
2017-04-28 23:39:24 +02:00
2017-04-29 01:01:51 +02:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-08-23 20:36:16 +01:00
2022-07-02 11:06:03 +02:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2017-11-07 23:07:03 +01:00
2023-08-24 11:33:06 +09:00
2022-07-26 11:26:23 +02:00
2017-04-28 21:25:15 +02:00
2021-04-27 21:31:28 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2016-04-18 21:50:37 -07:00
2017-04-28 21:25:15 +02:00
2024-03-06 10:05:12 +01:00
2022-11-10 09:05:25 +00:00
2021-03-03 01:54:39 +00:00
2021-03-03 01:54:39 +00:00
2017-11-06 05:26:16 +01:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2018-10-12 21:33:13 +02:00
2021-09-13 16:33:41 +02:00
2024-04-12 17:07:24 +08:00
2017-04-28 21:25:15 +02:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2022-09-28 12:48:36 +02:00
2023-05-08 17:02:53 +02:00
2017-04-28 21:25:15 +02:00
2021-10-05 14:12:16 +02:00
2017-04-28 21:25:15 +02:00
2022-04-27 17:48:35 +02:00
2024-01-22 23:40:50 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2022-03-30 12:12:12 +01:00
2023-12-15 10:30:13 +01:00
2024-04-16 09:33:16 +08:00
2018-10-28 14:05:14 +01:00
2017-11-06 05:26:16 +01:00
2019-08-01 22:48:28 +02:00
2022-06-17 20:38:21 +02:00
2023-08-13 13:25:10 +01:00
2014-07-29 02:12:31 +00:00
2023-08-13 13:25:10 +01:00
2018-10-28 14:07:58 +01:00
2022-06-04 10:53:42 +02:00
2017-04-29 01:47:36 +02:00
2023-12-09 07:45:31 +08:00
2017-11-06 05:26:16 +01:00
2023-08-24 11:33:06 +09:00
2022-12-08 16:33:38 +01:00
2021-09-13 16:33:41 +02:00
2014-07-29 02:12:31 +00:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2024-03-04 23:03:09 +01:00
2017-04-28 21:25:15 +02:00
2023-08-13 13:25:10 +01:00
2023-12-29 00:54:09 +01:00
2024-04-09 09:54:16 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:25:15 +02:00
2021-04-27 09:21:32 -04:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2016-06-07 06:46:37 -04:00
2021-04-27 09:21:28 -04:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2024-02-27 10:31:11 +01:00
2023-10-27 10:06:52 +02:00
2024-03-28 10:15:47 +01:00
2023-02-03 09:18:18 +01:00
2024-02-27 10:31:11 +01:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2023-02-03 09:18:18 +01:00
2017-04-28 21:25:15 +02:00
2022-09-28 12:48:36 +02:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2024-01-12 13:52:26 +01:00
2018-10-28 14:18:21 +01:00
2022-06-17 20:38:21 +02:00
2017-04-28 21:25:15 +02:00
2021-12-06 13:55:38 +01:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2020-11-29 16:31:09 +01:00
2024-02-06 11:42:15 +01:00
2023-08-21 22:34:48 +09:00
2021-05-02 11:51:38 -04:00
2022-06-27 10:23:09 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2021-12-26 11:03:25 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2023-05-15 09:38:32 +02:00
2021-05-01 22:29:03 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-07-27 14:39:05 +02:00
2017-04-28 21:25:15 +02:00
2021-05-01 22:29:02 -04:00
2017-11-06 05:26:16 +01:00
2021-01-08 19:48:56 -05:00
2024-02-21 06:30:18 +08:00
2022-10-05 10:56:53 +02:00
2022-03-30 12:12:12 +01:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:13:55 +02:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2022-07-07 08:15:33 +02:00
2017-04-28 21:25:15 +02:00
2023-02-21 23:50:29 +08:00
2023-08-24 11:33:06 +09:00
2021-09-13 16:33:41 +02:00
2017-11-07 20:03:24 +01:00
2023-08-31 10:58:54 +02:00
2024-02-02 08:59:49 +01:00
2017-04-28 21:25:15 +02:00
2021-05-02 13:00:38 -04:00
2017-11-06 05:26:16 +01:00
2023-08-16 09:15:39 +02:00
2023-02-21 23:50:29 +08:00
2017-04-28 21:13:55 +02:00
2014-07-29 02:12:31 +00:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2022-09-06 08:57:53 +02:00
2022-09-18 15:20:20 +02:00
2022-08-31 08:08:51 +02:00
2017-04-28 21:25:15 +02:00
2021-09-13 06:05:27 -07:00
2021-05-01 22:29:03 -04:00
2023-12-29 00:54:09 +01:00
2022-09-10 14:54:13 +02:00
2023-12-29 00:54:09 +01:00
2020-11-22 04:43:16 +01:00
2022-09-10 14:54:13 +02:00
2017-11-07 23:07:03 +01:00
2022-01-11 14:14:17 +01:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2021-11-17 10:02:59 +01:00
2024-04-13 22:41:51 +02:00
2017-04-28 21:25:15 +02:00
2023-08-24 11:33:06 +09:00
2024-02-21 06:30:18 +08:00
2021-09-22 06:12:06 -07:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2021-05-02 11:51:38 -04:00
2023-08-24 11:33:06 +09:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2021-09-09 18:59:11 +02:00
2022-09-28 12:48:36 +02:00
2021-04-27 09:21:31 -04:00
2021-09-13 16:33:41 +02:00
2022-09-28 12:48:36 +02:00
2024-03-28 10:41:42 +01:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2021-11-08 00:10:44 +01:00
2024-01-12 13:52:26 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-01-01 15:00:39 +01:00
2019-08-02 16:20:22 +02:00
2022-09-28 12:48:36 +02:00
2021-04-27 09:21:27 -04:00
2023-04-23 15:22:55 +02:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:13:55 +02:00
2023-11-29 21:00:07 +01:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2024-04-16 07:48:15 +08:00
2021-05-01 14:22:52 -04:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:13:55 +02:00
2022-06-17 20:38:21 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:25:15 +02:00
2021-11-22 10:53:57 +01:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2022-06-17 20:38:21 +02:00
2021-04-27 09:21:30 -04:00
2022-06-17 20:38:21 +02:00
2017-04-28 21:25:15 +02:00
2023-08-13 11:53:51 +02:00
2017-04-28 21:25:15 +02:00
2021-04-27 09:21:30 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2021-04-27 21:31:28 -04:00
2024-04-30 00:10:02 +02:00
2017-04-28 21:25:15 +02:00
2023-08-21 20:32:28 +09:00
2020-12-12 11:38:28 -05:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2024-04-27 11:01:14 +02:00
2023-12-22 01:07:50 +01:00
2024-04-27 11:01:14 +02:00
2021-09-04 19:49:17 +02:00
2017-04-28 21:25:15 +02:00
2021-08-15 11:02:19 +02:00
2015-11-08 03:39:07 +01:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2023-09-17 22:52:56 +02:00
2023-08-09 22:37:49 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-02-03 09:18:18 +01:00
2023-04-23 15:22:55 +02:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:25:15 +02:00
2021-05-01 14:22:52 -04:00
2024-02-21 06:30:18 +08:00
2017-11-06 05:26:16 +01:00
2021-05-02 10:23:35 -04:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2022-03-20 10:48:10 +01:00
2024-02-21 06:30:18 +08:00
2023-08-24 11:33:06 +09:00
2017-11-06 05:26:16 +01:00
2023-04-23 15:22:55 +02:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2023-12-16 15:57:22 +01:00
2017-04-28 21:25:15 +02:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2022-07-15 08:13:16 -07:00
2023-08-24 11:33:06 +09:00
2022-09-18 15:20:20 +02:00
2023-05-15 09:38:32 +02:00
2023-11-12 10:53:57 +01:00
2022-09-18 15:20:20 +02:00
2021-05-02 12:44:04 -04:00
2021-05-02 12:44:04 -04:00
2022-06-14 08:52:04 +02:00
2024-01-26 08:51:13 +01:00
2017-11-06 05:26:16 +01:00
2014-07-29 02:12:31 +00:00
2022-11-10 09:05:25 +00:00
2014-07-29 02:12:31 +00:00
2022-05-16 04:49:44 -07:00
2017-11-06 05:26:16 +01:00
2023-08-13 13:25:10 +01:00
2024-02-21 06:30:18 +08:00
2022-10-17 08:19:48 +02:00
2023-12-22 01:07:50 +01:00
2022-06-15 09:20:32 +02:00
2017-04-28 21:25:15 +02:00
2019-08-02 16:20:22 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-12-28 10:42:09 +01:00
2023-06-11 12:40:22 +01:00
2021-05-01 23:47:11 -04:00
2017-04-28 23:49:16 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2018-10-28 14:01:46 +01:00
2021-09-13 16:33:41 +02:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:13:55 +02:00
2017-11-06 05:26:16 +01:00
2023-08-23 20:36:16 +01:00
2017-04-28 21:25:15 +02:00
2024-01-16 17:45:57 +00:00
2023-04-15 19:01:19 +08:00
2023-09-11 10:05:54 +02:00
2017-04-28 21:25:15 +02:00
2021-05-01 22:29:02 -04:00
2017-04-29 01:47:36 +02:00
2015-12-17 21:56:41 -05:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2022-06-17 20:38:21 +02:00
2019-09-06 18:44:52 -07:00
2017-04-28 21:25:15 +02:00
2023-08-16 09:15:39 +02:00
2017-04-28 21:25:15 +02:00
2017-11-07 03:23:37 +01:00
2021-04-27 09:21:28 -04:00
2017-11-06 05:26:16 +01:00
2023-09-10 11:52:48 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2022-04-08 19:53:41 +02:00
2023-04-23 15:22:55 +02:00
2024-02-21 06:30:18 +08:00
2023-11-26 16:17:03 +01:00
2018-10-29 08:26:47 +01:00
2023-10-16 16:36:25 +08:00
2023-08-13 13:25:10 +01:00
2017-04-28 21:25:15 +02:00
2021-05-02 11:51:38 -04:00
2022-11-19 10:31:51 +00:00
2017-04-28 21:25:15 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:13:55 +02:00
2022-11-24 10:23:50 +00:00
2021-05-01 22:29:03 -04:00
2017-04-28 21:25:15 +02:00
2024-01-16 23:08:41 +00:00
2017-04-28 21:25:15 +02:00
2024-04-23 09:38:46 +02:00
2021-05-01 22:29:03 -04:00
2017-04-28 21:25:15 +02:00
2022-04-19 15:14:17 +02:00
2022-10-29 17:41:22 +02:00
2017-04-28 21:25:15 +02:00
2023-10-16 16:36:25 +08:00
2023-12-05 09:45:13 +01:00
2024-03-31 23:05:38 +02:00
2021-04-28 21:29:57 -04:00
2024-04-09 10:24:49 +02:00
2017-04-28 21:13:55 +02:00
2021-09-11 16:47:45 +02:00
2017-11-06 05:26:16 +01:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2022-06-17 20:38:21 +02:00
2018-10-29 09:50:08 +01:00
2017-04-28 21:25:15 +02:00
2021-09-22 06:12:06 -07:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2018-10-28 14:05:14 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2022-09-28 12:48:36 +02:00
2023-10-16 16:36:25 +08:00
2022-06-17 20:38:21 +02:00
2023-02-21 23:50:29 +08:00
2021-05-02 10:33:32 -04:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2023-10-16 16:36:25 +08:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2021-05-01 23:19:57 -04:00
2017-04-28 21:13:55 +02:00
2021-05-01 22:29:02 -04:00
2017-11-06 05:26:16 +01:00
2021-05-02 12:03:34 -04:00
2021-05-02 12:03:34 -04:00
2017-04-28 21:25:15 +02:00
2021-05-02 12:44:04 -04:00
2022-11-19 10:31:51 +00:00
2017-04-28 21:25:15 +02:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2023-02-28 09:34:27 +01:00
2023-04-23 15:22:55 +02:00
2022-01-31 15:27:01 +01:00
2024-02-20 03:57:13 -08:00
2023-08-21 10:13:44 +09:00
2017-11-06 05:26:16 +01:00
2024-02-21 06:30:18 +08:00
2024-01-28 17:53:14 -08:00
2024-02-21 06:30:18 +08:00
2017-11-06 05:26:16 +01:00
2023-12-16 15:57:22 +01:00
2017-04-28 21:25:15 +02:00
2021-05-02 12:53:49 -04:00
2019-07-29 20:50:07 +02:00
2023-08-09 22:37:49 +02:00
2021-05-02 12:44:04 -04:00
2022-01-23 18:38:41 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2018-10-29 09:55:07 +01:00
2023-08-23 20:31:07 +01:00
2017-04-28 21:25:15 +02:00
2021-09-12 11:02:33 +02:00
2017-04-28 21:25:15 +02:00
2022-12-08 16:33:38 +01:00
2017-04-28 21:25:15 +02:00
2024-04-16 09:33:33 +08:00
2020-10-01 10:25:09 +02:00
2021-04-27 09:21:27 -04:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2017-11-06 05:26:16 +01:00
2014-07-29 02:12:31 +00:00
2021-05-02 12:53:49 -04:00
2021-05-01 22:29:02 -04:00
2021-11-17 10:02:59 +01:00
2024-02-21 06:30:18 +08:00
2021-05-01 22:29:02 -04:00
2018-10-29 23:54:15 +01:00
2021-04-27 22:40:39 -04:00
2021-05-01 22:29:02 -04:00
2023-09-02 11:08:29 +02:00
2023-09-13 17:23:45 +02:00
2017-04-28 21:25:15 +02:00
2017-11-07 03:23:37 +01:00
2022-03-20 10:48:10 +01:00
2017-04-28 21:25:15 +02:00
2017-11-07 01:27:14 +01:00
2023-09-11 10:05:54 +02:00
2022-05-13 15:20:58 +02:00
2021-09-12 11:02:33 +02:00
2017-04-28 21:25:15 +02:00
2016-04-18 21:36:16 -07:00
2021-04-27 09:21:31 -04:00
2017-04-28 21:25:15 +02:00
2023-08-21 20:32:28 +09:00
2017-04-28 21:25:15 +02:00
2022-10-17 08:19:48 +02:00
2022-06-17 20:38:21 +02:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2021-05-01 22:29:03 -04:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2024-03-04 23:03:09 +01:00
2015-11-01 21:27:28 +03:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2021-05-01 22:29:03 -04:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-11-07 01:46:19 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2023-08-24 11:33:06 +09:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2022-04-08 19:53:41 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2018-10-28 14:05:14 +01:00
2023-08-24 11:33:06 +09:00
2024-02-23 09:31:30 +01:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-10-16 16:36:25 +08:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2023-08-24 11:33:06 +09:00
2023-08-24 11:33:06 +09:00
2018-10-29 09:37:13 +01:00
2017-04-28 21:25:15 +02:00
2023-08-24 11:33:06 +09:00
2023-12-09 07:45:31 +08:00
2017-04-28 21:25:15 +02:00
2022-09-18 15:20:20 +02:00
2024-04-29 05:50:13 +08:00
2024-03-31 23:05:20 +02:00
2024-03-31 23:05:20 +02:00
2021-09-13 16:33:41 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2022-01-31 15:27:01 +01:00
2023-06-11 12:40:22 +01:00
2021-05-02 11:51:38 -04:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2024-04-16 07:48:15 +08:00
2021-05-01 22:29:03 -04:00
2021-04-27 09:21:34 -04:00
2023-11-26 00:41:59 +01:00
2023-08-13 13:25:10 +01:00
2023-08-13 13:25:10 +01:00
2017-11-06 05:26:16 +01:00
2016-04-18 21:50:37 -07:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2024-02-21 06:30:18 +08:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2022-06-15 09:20:32 +02:00
2022-06-17 20:38:21 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:13:55 +02:00
2023-08-24 11:33:06 +09:00
2021-11-17 10:02:59 +01:00
2021-10-16 18:03:51 +02:00
2023-08-13 13:25:10 +01:00
2018-10-29 23:55:45 +01:00
2017-11-06 05:26:16 +01:00
2024-02-21 06:30:18 +08:00
2021-12-16 21:46:13 +01:00
2017-04-28 21:25:15 +02:00
2023-08-24 11:33:06 +09:00
2021-05-01 23:19:58 -04:00
2021-05-01 22:29:02 -04:00
2017-04-28 21:25:15 +02:00
2024-02-22 09:50:35 +01:00
2021-10-16 18:03:51 +02:00
2023-02-03 09:18:18 +01:00
2017-04-28 21:25:15 +02:00
2017-11-06 05:26:16 +01:00
2022-06-17 20:38:21 +02:00
2023-08-24 11:33:06 +09:00
2023-10-16 16:36:25 +08:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2022-06-15 09:20:32 +02:00
2022-06-15 09:20:32 +02:00
2022-06-15 09:20:32 +02:00
2024-03-18 11:19:20 +00:00
2023-08-23 20:36:16 +01:00
2023-08-23 20:36:16 +01:00
2017-04-28 21:25:15 +02:00
2024-04-19 14:50:12 +08:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-11-06 05:26:16 +01:00
2017-04-28 23:14:36 +02:00
2023-08-09 22:34:02 +02:00
2017-11-06 05:26:16 +01:00
2017-04-28 21:13:55 +02:00
2016-01-25 21:45:26 +01:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2019-07-28 11:48:07 +02:00
2023-06-11 12:40:22 +01:00
2014-07-29 02:12:31 +00:00
2016-01-25 21:45:26 +01:00
2019-08-02 16:20:23 +02:00
2021-12-06 13:55:38 +01:00
2022-09-18 15:20:20 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2023-08-13 13:25:10 +01:00
2021-04-27 22:40:39 -04:00
2024-04-15 07:46:14 +08:00
2023-08-13 13:25:10 +01:00
2015-08-15 15:25:30 -03:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:13:55 +02:00
2017-04-28 21:25:15 +02:00
2019-09-06 18:30:35 -07:00
2023-11-14 21:51:28 +01:00
2017-04-28 21:25:15 +02:00
2022-12-08 16:33:38 +01:00
2017-04-28 21:13:55 +02:00
2022-06-10 08:40:32 +02:00
2023-11-09 19:17:11 +01:00
2023-11-09 19:17:11 +01:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2017-04-28 21:25:15 +02:00
2014-07-29 02:12:31 +00:00
2014-07-29 02:12:31 +00:00
2023-11-12 07:51:25 +08:00
2017-04-28 21:25:15 +02:00
2023-02-03 09:18:18 +01:00
2014-07-29 02:12:31 +00:00
2017-11-06 05:26:16 +01:00
2021-05-01 22:29:02 -04:00
2024-02-21 06:30:18 +08:00
2021-12-26 11:03:25 +01:00
2017-11-06 05:26:16 +01:00
2017-05-01 13:32:51 +02:00
2023-06-11 12:40:22 +01:00
2014-07-29 02:12:31 +00:00
2022-06-15 09:20:32 +02:00
2014-07-29 02:12:31 +00:00
2021-04-27 09:21:34 -04:00
2024-02-21 06:30:18 +08:00
2024-02-21 06:30:18 +08:00
2024-04-01 15:52:26 +02:00
2017-04-28 21:25:15 +02:00
2024-04-09 09:54:07 +02:00
2023-10-19 10:20:55 -05:00
2023-08-23 20:36:16 +01:00
2022-12-08 16:33:38 +01:00
2023-09-02 11:08:29 +02:00
2023-10-16 16:36:25 +08:00