agra
a4906975bd
fix(diag): undeclared type in a main-file generic struct field → diagnostic (no silent stub) [stdlib E3 attempt-2]
...
Closes the main-file carveout left by attempt-1 (4072689 ): a genuinely-
undeclared type used as a field type inside a MAIN-file GENERIC struct still
fell through the type leaf's empty-struct stub and silently compiled —
`Box :: struct($T: Type) { good: T; bad: MissingType; }` with `b : Box(s64)`
exited 0 and printed a value instead of reporting `unknown type 'MissingType'`.
Root cause: `UnknownTypeChecker` is the main-file diagnostic authority (the
type leaf defers to it for `.undeclared` names there), but
`checkStructFieldTypes` SKIPPED every generic struct outright ("its fields
reference `$T`, resolved at instantiation"), so the undeclared name was never
examined. The sibling `walkBodyTypes` `.struct_decl` arm skipped body-local
generic structs the same way.
Fix (semantic_diagnostics.zig, checker only — no leaf change):
- `checkStructFieldTypes`: stop skipping generic structs; walk the field
types with the struct's OWN type params (`$T`, `$N`, `..$Ts`) passed as the
in-scope set. A param name resolves; any OTHER bare name that is neither
declared nor a generic param is reported. Value-param positions (a `Vector`
lane count, a `$N: u32` arg) are still skipped inside
`checkTypeNodeForUnknown` / `isValueParamPosition`.
- `walkBodyTypes` `.struct_decl`: same close for body-local structs — the
local struct's own type params join the enclosing scope's in-scope params
(so it can name both the outer fn's `$T` and its own), any other bare field
type is still flagged.
The `..$Ts` pack field `(..$Ts)` parses to a `spread_expr` inside the tuple,
which hits `checkTypeNodeForUnknown`'s `else` arm — never walked — so the pack
examples (0538-0543, 0414) stay green. The checker walks only MAIN-file decls,
so library generic structs (List, Map) are untouched.
Regression: examples/0171-types-undeclared-type-in-generic-struct-field — the
reviewer's exact shape; `unknown type 'MissingType'` at the field, exit 1.
Fail-before on 4072689 (prints 7, exit 0), pass-after.
Gate: zig build; zig build test (423/423 + LSP corpus sweep 514); run_examples
498 passed / 0 failed (prior 497 byte-identical); m3te ios-sim build exit 0.
2026-06-08 08:36:45 +03:00
..
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-06 02:51:09 +03:00
2026-06-06 03:15:29 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:28:00 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 15:07:51 +03:00
2026-06-06 15:31:14 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:41:01 +03:00
2026-06-07 05:17:23 +03:00
2026-06-07 06:09:28 +03:00
2026-06-07 09:07:27 +03:00
2026-06-07 12:05:12 +03:00
2026-06-07 12:40:00 +03:00
2026-06-07 15:24:43 +03:00
2026-06-07 16:49:15 +03:00
2026-06-07 16:49:15 +03:00
2026-06-07 17:51:09 +03:00
2026-06-07 17:51:09 +03:00
2026-06-07 18:41:01 +03:00
2026-06-07 18:41:01 +03:00
2026-06-07 19:31:13 +03:00
2026-06-07 20:43:01 +03:00
2026-06-07 21:12:33 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 23:51:46 +03:00
2026-06-07 23:51:46 +03:00
2026-06-08 08:10:42 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-08 08:36:45 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 22:28:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:31:18 +03:00
2026-06-02 09:35:41 +03:00
2026-06-02 19:20:14 +03:00
2026-06-04 02:00:13 +03:00
2026-06-05 09:05:37 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-03 19:00:39 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 16:59:20 +03:00
2026-06-02 17:20:31 +03:00
2026-06-02 17:45:37 +03:00
2026-06-03 19:00:39 +03:00
2026-06-04 03:44:19 +03:00
2026-06-04 04:04:40 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 08:22:45 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 09:39:18 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 15:32:48 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 17:04:41 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 22:17:53 +03:00
2026-06-05 00:35:52 +03:00
2026-06-04 23:30:41 +03:00
2026-06-05 00:21:32 +03:00
2026-06-05 15:34:33 +03:00
2026-06-05 08:23:59 +03:00
2026-06-05 12:09:52 +03:00
2026-06-05 13:24:15 +03:00
2026-06-05 14:00:24 +03:00
2026-06-05 14:40:06 +03:00
2026-06-05 19:26:22 +03:00
2026-06-05 20:02:11 +03:00
2026-06-07 22:57:28 +03:00
2026-06-08 08:36:45 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-07 15:24:43 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:28:35 +03:00
2026-06-01 20:35:25 +03:00
2026-06-02 23:29:49 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:17:33 +03:00
2026-06-05 20:48:49 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 00:08:46 +03:00
2026-06-05 21:18:08 +03:00
2026-06-04 01:08:14 +03:00
2026-06-04 02:32:32 +03:00
2026-06-04 02:57:32 +03:00
2026-06-04 03:21:41 +03:00
2026-06-04 07:54:20 +03:00
2026-06-05 01:01:25 +03:00
2026-06-07 16:49:15 +03:00
2026-06-06 02:51:09 +03:00
2026-06-06 03:15:29 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 14:28:00 +03:00
2026-06-06 14:04:03 +03:00
2026-06-06 15:07:51 +03:00
2026-06-06 15:31:14 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:16:57 +03:00
2026-06-06 16:41:01 +03:00
2026-06-07 05:17:23 +03:00
2026-06-07 06:09:28 +03:00
2026-06-07 09:07:27 +03:00
2026-06-07 09:31:17 +03:00
2026-06-07 12:05:12 +03:00
2026-06-07 12:40:00 +03:00
2026-06-07 15:24:43 +03:00
2026-06-07 16:49:15 +03:00
2026-06-07 16:49:15 +03:00
2026-06-07 17:51:09 +03:00
2026-06-07 17:51:09 +03:00
2026-06-07 18:41:01 +03:00
2026-06-07 18:41:01 +03:00
2026-06-07 19:31:13 +03:00
2026-06-07 20:43:01 +03:00
2026-06-07 21:12:33 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 22:57:28 +03:00
2026-06-07 23:51:46 +03:00
2026-06-07 23:51:46 +03:00
2026-06-08 08:10:42 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-03 19:00:39 +03:00
2026-06-06 07:42:17 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 22:47:58 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:35:25 +03:00
2026-06-01 20:56:10 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:18:47 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 22:44:20 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:29:07 +03:00
2026-06-03 06:42:51 +03:00
2026-06-03 06:31:18 +03:00
2026-06-03 06:42:51 +03:00
2026-06-04 18:31:08 +03:00
2026-06-05 22:10:14 +03:00
2026-06-05 22:42:12 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:41:29 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 15:51:04 +03:00
2026-06-02 16:33:38 +03:00
2026-06-02 17:57:17 +03:00
2026-06-03 19:00:39 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 22:06:56 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 05:25:19 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 12:31:24 +03:00
2026-06-05 17:43:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:38:18 +03:00
2026-06-04 15:17:33 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-05 08:23:59 +03:00
2026-06-05 11:22:59 +03:00
2026-06-05 14:00:24 +03:00
2026-06-05 18:15:17 +03:00
2026-06-05 19:26:22 +03:00
2026-06-05 20:02:11 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:32:48 +03:00
2026-06-05 01:32:35 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00