logone 0.2.9

A command-line tool that parses Nix's --log-format json-internal output as standalone and crate library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
@nix {"action":"start","id":2693962401841152,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/source-stdenv.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841152}
@nix {"action":"start","id":2693962401841153,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/default-builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841153}
@nix {"action":"start","id":2693962401841154,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/linux/bootstrap-tools/glibc/unpack-bootstrap-tools.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841154}
@nix {"action":"start","id":2693962401841155,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841155}
@nix {"action":"start","id":2693962401841156,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/no-broken-symlinks.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841156}
@nix {"action":"start","id":2693962401841157,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/audit-tmpdir.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841157}
@nix {"action":"start","id":2693962401841158,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/compress-man-pages.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841158}
@nix {"action":"start","id":2693962401841159,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/make-symlinks-relative.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841159}
@nix {"action":"start","id":2693962401841160,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-docs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841160}
@nix {"action":"start","id":2693962401841161,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-lib64.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841161}
@nix {"action":"start","id":2693962401841162,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-sbin.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841162}
@nix {"action":"start","id":2693962401841163,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/move-systemd-user-units.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841163}
@nix {"action":"start","id":2693962401841164,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/multiple-outputs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841164}
@nix {"action":"start","id":2693962401841165,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/patch-shebangs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841165}
@nix {"action":"start","id":2693962401841166,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/prune-libtool-files.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841166}
@nix {"action":"start","id":2693962401841167,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/reproducible-builds.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841167}
@nix {"action":"start","id":2693962401841168,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/set-source-date-epoch-to-latest.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841168}
@nix {"action":"start","id":2693962401841169,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/strip.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841169}
@nix {"action":"start","id":2693962401841170,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/setup.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841170}
@nix {"action":"start","id":2693962401841171,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/update-autotools-gnu-config-scripts.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841171}
@nix {"action":"start","id":2693962401841172,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/ld-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841172}
@nix {"action":"start","id":2693962401841173,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/gnu-binutils-strip-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841173}
@nix {"action":"start","id":2693962401841174,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841174}
@nix {"action":"start","id":2693962401841175,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841175}
@nix {"action":"start","id":2693962401841176,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/wrapper-common/utils.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841176}
@nix {"action":"start","id":2693962401841177,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/wrapper-common/darwin-sdk-setup.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841177}
@nix {"action":"start","id":2693962401841178,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/role.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841178}
@nix {"action":"start","id":2693962401841179,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/bintools-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841179}
@nix {"action":"start","id":2693962401841180,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841180}
@nix {"action":"start","id":2693962401841181,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841181}
@nix {"action":"start","id":2693962401841182,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841182}
@nix {"action":"start","id":2693962401841183,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/cc-wrapper/cc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841183}
@nix {"action":"start","id":2693962401841184,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/CVE-2024-56406.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841184}
@nix {"action":"start","id":2693962401841185,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/no-sys-dirs-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841185}
@nix {"action":"start","id":2693962401841186,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/fix-build-with-only-C-locale-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841186}
@nix {"action":"start","id":2693962401841187,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/perl/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841187}
@nix {"action":"start","id":2693962401841188,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/separate-debug-info.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841188}
@nix {"action":"start","id":2693962401841189,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/pgrp-pipe-5.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841189}
@nix {"action":"start","id":2693962401841190,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/parallel.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841190}
@nix {"action":"start","id":2693962401841191,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/shells/bash/fix-pop-var-context-error.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841191}
@nix {"action":"start","id":2693962401841192,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/absolute-paths.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841192}
@nix {"action":"start","id":2693962401841193,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/0001-msginit-Do-not-use-POT-Creation-Date.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841193}
@nix {"action":"start","id":2693962401841194,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/gettext/gettext-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841194}
@nix {"action":"start","id":2693962401841195,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ex/expand-response-params/expand-response-params.c' to the store","type":0}
@nix {"action":"stop","id":2693962401841195}
@nix {"action":"start","id":2693962401841196,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/deterministic.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841196}
@nix {"action":"start","id":2693962401841197,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-the-NM-nm-over-here-B-option-w.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841197}
@nix {"action":"start","id":2693962401841198,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-nm-BSD-flag-detection.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841198}
@nix {"action":"start","id":2693962401841199,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/always-search-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841199}
@nix {"action":"start","id":2693962401841200,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/plugins-no-BINDIR.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841200}
@nix {"action":"start","id":2693962401841201,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/0001-libtool.m4-update-macos-version-detection-block.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841201}
@nix {"action":"start","id":2693962401841202,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/avr-size.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841202}
@nix {"action":"start","id":2693962401841203,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/binutils/windres-locate-gcc.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841203}
@nix {"action":"start","id":2693962401841204,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/patchelf/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841204}
@nix {"action":"start","id":2693962401841205,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/autoreconf.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841205}
@nix {"action":"start","id":2693962401841206,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/misc/automake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841206}
@nix {"action":"start","id":2693962401841207,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/perl-modules/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841207}
@nix {"action":"start","id":2693962401841208,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/gcc-12-no-sys-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841208}
@nix {"action":"start","id":2693962401841209,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/13/no-sys-dirs-riscv.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841209}
@nix {"action":"start","id":2693962401841210,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/13/mangle-NIX_STORE-in-__FILE__.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841210}
@nix {"action":"start","id":2693962401841211,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/ppc-musl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841211}
@nix {"action":"start","id":2693962401841212,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/cfi_startproc-reorder-label-14-1.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841212}
@nix {"action":"start","id":2693962401841213,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/gcc/patches/14/aarch64-fix-ice-subreg.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841213}
@nix {"action":"start","id":2693962401841214,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/nuke-references/nuke-refs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841214}
@nix {"action":"start","id":2693962401841215,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/kernel-headers/no-relocs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841215}
@nix {"action":"start","id":2693962401841216,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/compression/bzip2/patches/bzip2-1.0.6.2-autoconfiscated.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841216}
@nix {"action":"start","id":2693962401841217,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0001-ax_check_gl.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841217}
@nix {"action":"start","id":2693962401841218,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0002-ax_check_glx.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841218}
@nix {"action":"start","id":2693962401841219,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/autoconf-archive/0003-ax_switch_flags.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841219}
@nix {"action":"start","id":2693962401841220,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/pkg-config-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841220}
@nix {"action":"start","id":2693962401841221,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/pk/pkg-config-unwrapped/requires-private.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841221}
@nix {"action":"start","id":2693962401841222,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841222}
@nix {"action":"start","id":2693962401841223,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/pkg-config-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841223}
@nix {"action":"start","id":2693962401841224,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/3.12/no-ldconfig.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841224}
@nix {"action":"start","id":2693962401841225,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/virtualenv-permissions.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841225}
@nix {"action":"start","id":2693962401841226,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/platform-triplet-detection.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841226}
@nix {"action":"start","id":2693962401841227,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841227}
@nix {"action":"start","id":2693962401841228,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/2.40-master.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841228}
@nix {"action":"start","id":2693962401841229,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/nix-locale-archive.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841229}
@nix {"action":"start","id":2693962401841230,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-cache.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841230}
@nix {"action":"start","id":2693962401841231,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-preload.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841231}
@nix {"action":"start","id":2693962401841232,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/fix_path_attribute_in_getconf.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841232}
@nix {"action":"start","id":2693962401841233,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/fix-x64-abi.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841233}
@nix {"action":"start","id":2693962401841234,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/nix-nss-open-files.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841234}
@nix {"action":"start","id":2693962401841235,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/0001-Revert-Remove-all-usage-of-BASH-or-BASH-in-installed.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841235}
@nix {"action":"start","id":2693962401841236,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/reenable_DT_HASH.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841236}
@nix {"action":"start","id":2693962401841237,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/make-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841237}
@nix {"action":"start","id":2693962401841238,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/die.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841238}
@nix {"action":"start","id":2693962401841239,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/attr/musl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841239}
@nix {"action":"start","id":2693962401841240,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/misc/findutils/no-install-statedir.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841240}
@nix {"action":"start","id":2693962401841241,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0001-No-impure-bin-sh.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841241}
@nix {"action":"start","id":2693962401841242,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0002-Remove-impure-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841242}
@nix {"action":"start","id":2693962401841243,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tools/build-managers/gnumake/patches/0003-Do-not-search-for-a-C-compiler-and-set-MAKE_CXX.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841243}
@nix {"action":"start","id":2693962401841244,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/archivers/gnutar/link-libiconv.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841244}
@nix {"action":"start","id":2693962401841245,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/glibc/locales-builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841245}
@nix {"action":"start","id":2693962401841246,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/lz/lzip/lzip-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841246}
@nix {"action":"start","id":2693962401841247,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-6951.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841247}
@nix {"action":"start","id":2693962401841248,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/Allow_input_files_to_be_missing_for_ed-style_patches.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841248}
@nix {"action":"start","id":2693962401841249,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/Abort_when_cleaning_up_fails.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841249}
@nix {"action":"start","id":2693962401841250,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-1000156.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841250}
@nix {"action":"start","id":2693962401841251,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2018-6952.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841251}
@nix {"action":"start","id":2693962401841252,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2019-13636.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841252}
@nix {"action":"start","id":2693962401841253,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/gnupatch/CVE-2019-13638-and-CVE-2018-20969.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841253}
@nix {"action":"start","id":2693962401841254,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchurl/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841254}
@nix {"action":"start","id":2693962401841255,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchurl/write-mirror-list.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841255}
@nix {"action":"start","id":2693962401841256,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ma/makeBinaryWrapper/make-binary-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841256}
@nix {"action":"start","id":2693962401841257,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.0/nix-ssl-cert-file.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841257}
@nix {"action":"start","id":2693962401841258,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.0/openssl-disable-kernel-detection.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841258}
@nix {"action":"start","id":2693962401841259,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/openssl/3.4/use-etc-ssl-certs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841259}
@nix {"action":"start","id":2693962401841260,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/conf-symlink.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841260}
@nix {"action":"start","id":2693962401841261,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/0001-Remove-unused-function-after_eq.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841261}
@nix {"action":"start","id":2693962401841262,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ke/keyutils/pkg-config-static.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841262}
@nix {"action":"start","id":2693962401841263,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cu/curlMinimal/0001-http2-fix-stream-window-size-after-unpausing.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841263}
@nix {"action":"start","id":2693975286743040,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743041,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743042,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743041,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743042,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743040,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743040,"type":106}
@nix {"action":"start","id":2693975286743043,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743043}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743041,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743042,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743040,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743040,"type":106}
@nix {"action":"stop","id":2693975286743042}
@nix {"action":"stop","id":2693975286743041}
@nix {"action":"stop","id":2693975286743040}
@nix {"action":"start","id":2693962401841264,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/source-stdenv.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841264}
@nix {"action":"start","id":2693962401841265,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/default-builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841265}
@nix {"action":"start","id":2693962401841266,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/linux/bootstrap-tools/glibc/unpack-bootstrap-tools.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841266}
@nix {"action":"start","id":2693962401841267,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841267}
@nix {"action":"start","id":2693962401841268,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/no-broken-symlinks.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841268}
@nix {"action":"start","id":2693962401841269,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/audit-tmpdir.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841269}
@nix {"action":"start","id":2693962401841270,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/compress-man-pages.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841270}
@nix {"action":"start","id":2693962401841271,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/make-symlinks-relative.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841271}
@nix {"action":"start","id":2693962401841272,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-docs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841272}
@nix {"action":"start","id":2693962401841273,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-lib64.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841273}
@nix {"action":"start","id":2693962401841274,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-sbin.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841274}
@nix {"action":"start","id":2693962401841275,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/move-systemd-user-units.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841275}
@nix {"action":"start","id":2693962401841276,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/multiple-outputs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841276}
@nix {"action":"start","id":2693962401841277,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/patch-shebangs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841277}
@nix {"action":"start","id":2693962401841278,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/prune-libtool-files.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841278}
@nix {"action":"start","id":2693962401841279,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/reproducible-builds.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841279}
@nix {"action":"start","id":2693962401841280,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/set-source-date-epoch-to-latest.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841280}
@nix {"action":"start","id":2693962401841281,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/strip.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841281}
@nix {"action":"start","id":2693962401841282,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/stdenv/generic/setup.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841282}
@nix {"action":"start","id":2693962401841283,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/update-autotools-gnu-config-scripts.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841283}
@nix {"action":"start","id":2693962401841284,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/ld-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841284}
@nix {"action":"start","id":2693962401841285,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/gnu-binutils-strip-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841285}
@nix {"action":"start","id":2693962401841286,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841286}
@nix {"action":"start","id":2693962401841287,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841287}
@nix {"action":"start","id":2693962401841288,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/wrapper-common/utils.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841288}
@nix {"action":"start","id":2693962401841289,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/wrapper-common/darwin-sdk-setup.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841289}
@nix {"action":"start","id":2693962401841290,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/role.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841290}
@nix {"action":"start","id":2693962401841291,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/bintools-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841291}
@nix {"action":"start","id":2693962401841292,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841292}
@nix {"action":"start","id":2693962401841293,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/add-hardening.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841293}
@nix {"action":"start","id":2693962401841294,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841294}
@nix {"action":"start","id":2693962401841295,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/cc-wrapper/cc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841295}
@nix {"action":"start","id":2693962401841296,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/CVE-2024-56406.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841296}
@nix {"action":"start","id":2693962401841297,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/CVE-2025-40909.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841297}
@nix {"action":"start","id":2693962401841298,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/no-sys-dirs-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841298}
@nix {"action":"start","id":2693962401841299,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/fix-build-with-only-C-locale-5.40.0.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841299}
@nix {"action":"start","id":2693962401841300,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/perl/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841300}
@nix {"action":"start","id":2693962401841301,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/separate-debug-info.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841301}
@nix {"action":"start","id":2693962401841302,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/shells/bash/pgrp-pipe-5.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841302}
@nix {"action":"start","id":2693962401841303,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/absolute-paths.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841303}
@nix {"action":"start","id":2693962401841304,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/0001-msginit-Do-not-use-POT-Creation-Date.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841304}
@nix {"action":"start","id":2693962401841305,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/memory-safety.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841305}
@nix {"action":"start","id":2693962401841306,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/gettext/gettext-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841306}
@nix {"action":"start","id":2693962401841307,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ex/expand-response-params/expand-response-params.c' to the store","type":0}
@nix {"action":"stop","id":2693962401841307}
@nix {"action":"start","id":2693962401841308,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/deterministic.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841308}
@nix {"action":"start","id":2693962401841309,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-the-NM-nm-over-here-B-option-w.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841309}
@nix {"action":"start","id":2693962401841310,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-Revert-libtool.m4-fix-nm-BSD-flag-detection.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841310}
@nix {"action":"start","id":2693962401841311,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/always-search-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841311}
@nix {"action":"start","id":2693962401841312,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/plugins-no-BINDIR.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841312}
@nix {"action":"start","id":2693962401841313,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/0001-libtool.m4-update-macos-version-detection-block.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841313}
@nix {"action":"start","id":2693962401841314,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/avr-size.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841314}
@nix {"action":"start","id":2693962401841315,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/binutils/windres-locate-gcc.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841315}
@nix {"action":"start","id":2693962401841316,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/patchelf/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841316}
@nix {"action":"start","id":2693962401841317,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/sa/sanitiseHeaderPathsHook/sanitise-header-paths-hook.bash' to the store","type":0}
@nix {"action":"stop","id":2693962401841317}
@nix {"action":"start","id":2693962401841318,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/remove-references-to/remove-references-to.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841318}
@nix {"action":"start","id":2693962401841319,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/gcc-12-no-sys-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841319}
@nix {"action":"start","id":2693962401841320,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/13/no-sys-dirs-riscv.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841320}
@nix {"action":"start","id":2693962401841321,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/13/mangle-NIX_STORE-in-__FILE__.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841321}
@nix {"action":"start","id":2693962401841322,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/ppc-musl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841322}
@nix {"action":"start","id":2693962401841323,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/compilers/gcc/patches/cfi_startproc-reorder-label-14-1.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841323}
@nix {"action":"start","id":2693962401841324,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/nuke-references/nuke-refs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841324}
@nix {"action":"start","id":2693962401841325,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/os-specific/linux/kernel-headers/no-relocs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841325}
@nix {"action":"start","id":2693962401841326,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0001-ax_check_gl.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841326}
@nix {"action":"start","id":2693962401841327,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0002-ax_check_glx.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841327}
@nix {"action":"start","id":2693962401841328,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/au/autoconf-archive/0003-ax_switch_flags.m4-properly-quote-m4_fatal.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841328}
@nix {"action":"start","id":2693962401841329,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/autoreconf.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841329}
@nix {"action":"start","id":2693962401841330,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/misc/automake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841330}
@nix {"action":"start","id":2693962401841331,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/file/32-bit-time_t.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841331}
@nix {"action":"start","id":2693962401841332,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/pkg-config-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841332}
@nix {"action":"start","id":2693962401841333,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/pk/pkg-config-unwrapped/requires-private.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841333}
@nix {"action":"start","id":2693962401841334,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/add-flags.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841334}
@nix {"action":"start","id":2693962401841335,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/pkg-config-wrapper/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841335}
@nix {"action":"start","id":2693962401841336,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/cpython/3.13/no-ldconfig.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841336}
@nix {"action":"start","id":2693962401841337,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/cpython/3.13/virtualenv-permissions.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841337}
@nix {"action":"start","id":2693962401841338,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/interpreters/python/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841338}
@nix {"action":"start","id":2693962401841339,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/2.40-master.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841339}
@nix {"action":"start","id":2693962401841340,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/nix-locale-archive.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841340}
@nix {"action":"start","id":2693962401841341,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-cache.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841341}
@nix {"action":"start","id":2693962401841342,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/dont-use-system-ld-so-preload.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841342}
@nix {"action":"start","id":2693962401841343,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/fix_path_attribute_in_getconf.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841343}
@nix {"action":"start","id":2693962401841344,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/fix-x64-abi.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841344}
@nix {"action":"start","id":2693962401841345,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/nix-nss-open-files.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841345}
@nix {"action":"start","id":2693962401841346,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/0001-Revert-Remove-all-usage-of-BASH-or-BASH-in-installed.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841346}
@nix {"action":"start","id":2693962401841347,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/reenable_DT_HASH.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841347}
@nix {"action":"start","id":2693962401841348,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/make-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841348}
@nix {"action":"start","id":2693962401841349,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/setup-hooks/die.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841349}
@nix {"action":"start","id":2693962401841350,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/compression/bzip2/patches/bzip2-1.0.6.2-autoconfiscated.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841350}
@nix {"action":"start","id":2693962401841351,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/attr/musl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841351}
@nix {"action":"start","id":2693962401841352,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/coreutils/CVE-2025-5278.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841352}
@nix {"action":"start","id":2693962401841353,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/coreutils/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841353}
@nix {"action":"start","id":2693962401841354,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/text/diffutils/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841354}
@nix {"action":"start","id":2693962401841355,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/misc/findutils/no-install-statedir.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841355}
@nix {"action":"start","id":2693962401841356,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0001-No-impure-bin-sh.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841356}
@nix {"action":"start","id":2693962401841357,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0002-Remove-impure-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841357}
@nix {"action":"start","id":2693962401841358,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/tools/build-managers/gnumake/patches/0003-Do-not-search-for-a-C-compiler-and-set-MAKE_CXX.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841358}
@nix {"action":"start","id":2693962401841359,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/archivers/gnutar/link-libiconv.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841359}
@nix {"action":"start","id":2693962401841360,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/glibc/locales-builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841360}
@nix {"action":"start","id":2693962401841361,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/tools/text/gnugrep/gnulib-float-h-tests-port-to-C23-PowerPC-GCC.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841361}
@nix {"action":"start","id":2693962401841362,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/lz/lzip/lzip-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841362}
@nix {"action":"start","id":2693962401841363,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/fetchurl/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841363}
@nix {"action":"start","id":2693962401841364,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/build-support/fetchurl/write-mirror-list.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841364}
@nix {"action":"start","id":2693962401841365,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ma/makeBinaryWrapper/make-binary-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841365}
@nix {"action":"start","id":2693962401841366,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.0/nix-ssl-cert-file.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841366}
@nix {"action":"start","id":2693962401841367,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.0/openssl-disable-kernel-detection.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841367}
@nix {"action":"start","id":2693962401841368,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/development/libraries/openssl/3.5/use-etc-ssl-certs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841368}
@nix {"action":"start","id":2693962401841369,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/conf-symlink.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841369}
@nix {"action":"start","id":2693962401841370,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/0001-Remove-unused-function-after_eq.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841370}
@nix {"action":"start","id":2693962401841371,"level":5,"parent":0,"text":"copying '/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source/pkgs/by-name/ke/keyutils/pkg-config-static.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841371}
@nix {"action":"msg","level":0,"msg":"trace: No Cargo.dependencies.nix found"}
@nix {"action":"start","id":2693962401841372,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gr/groff/site.tmac' to the store","type":0}
@nix {"action":"stop","id":2693962401841372}
@nix {"action":"start","id":2693962401841373,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/text/patchutils/drop-comments.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841373}
@nix {"action":"start","id":2693962401841374,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/remove-references-to/remove-references-to.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841374}
@nix {"action":"start","id":2693975286743044,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743045,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743046,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743045,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743046,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743044,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743044,"type":106}
@nix {"action":"start","id":2693975286743047,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743047}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743045,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743046,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743044,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743044,"type":106}
@nix {"action":"stop","id":2693975286743046}
@nix {"action":"stop","id":2693975286743045}
@nix {"action":"stop","id":2693975286743044}
@nix {"action":"start","id":2693962401841375,"level":5,"parent":0,"text":"copying '/nix/store/qcgr82a27rmifcmw7hhxywsd43gnb75j-source/Cargo.lock' to the store","type":0}
@nix {"action":"stop","id":2693962401841375}
@nix {"action":"start","id":2693962401841376,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libedit/01-cygwin.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841376}
@nix {"action":"start","id":2693962401841377,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/in/installShellFiles/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841377}
@nix {"action":"start","id":2693962401841378,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/tz/tzdata/tzdata-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841378}
@nix {"action":"start","id":2693962401841379,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841379}
@nix {"action":"start","id":2693962401841380,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/check-pc-files-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841380}
@nix {"action":"start","id":2693962401841381,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/000-nixpkgs-cmake-prefix-path.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841381}
@nix {"action":"start","id":2693962401841382,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/001-search-path.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841382}
@nix {"action":"start","id":2693962401841383,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/008-FindCURL-Add-more-target-properties-from-pkg-config.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841383}
@nix {"action":"start","id":2693962401841384,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/cm/cmake/009-cmCurl-Avoid-using-undocumented-type-for-CURLOPT_NETRC-values.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841384}
@nix {"action":"start","id":2693962401841385,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/tools/compression/zstd/playtests-darwin.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841385}
@nix {"action":"start","id":2693962401841386,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8139.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841386}
@nix {"action":"start","id":2693962401841387,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8140.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841387}
@nix {"action":"start","id":2693962401841388,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-8141.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841388}
@nix {"action":"start","id":2693962401841389,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-9636.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841389}
@nix {"action":"start","id":2693962401841390,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2015-7696.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841390}
@nix {"action":"start","id":2693962401841391,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2015-7697.diff' to the store","type":0}
@nix {"action":"stop","id":2693962401841391}
@nix {"action":"start","id":2693962401841392,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2014-9913.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841392}
@nix {"action":"start","id":2693962401841393,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2016-9844.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841393}
@nix {"action":"start","id":2693962401841394,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/CVE-2018-18384.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841394}
@nix {"action":"start","id":2693962401841395,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/dont-hardcode-cc.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841395}
@nix {"action":"start","id":2693962401841396,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/implicit-declarations-fix.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841396}
@nix {"action":"start","id":2693962401841397,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/un/unzip/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841397}
@nix {"action":"start","id":2693962401841398,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/sqlite/Libs.private.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841398}
@nix {"action":"start","id":2693962401841399,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/sqlite/3.48.0-fk-conflict-handling.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841399}
@nix {"action":"start","id":2693962401841400,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ut/util-linux/rtcwake-search-PATH-for-shutdown.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841400}
@nix {"action":"start","id":2693962401841401,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ut/util-linux/fix-darwin-build.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841401}
@nix {"action":"start","id":2693962401841402,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/tcl/tcl-package-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841402}
@nix {"action":"start","id":2693962401841403,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/fix-build-time-run-tcl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841403}
@nix {"action":"start","id":2693962401841404,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/0004-enable-cross-compilation.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841404}
@nix {"action":"start","id":2693962401841405,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/fix-darwin-bsd-clang16.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841405}
@nix {"action":"start","id":2693962401841406,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/tcl-modules/by-name/ex/expect/freebsd-unversioned.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841406}
@nix {"action":"start","id":2693962401841407,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-darwin-clock-nanosleep-fix.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841407}
@nix {"action":"start","id":2693962401841408,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-lockwait-test-fixes.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841408}
@nix {"action":"start","id":2693962401841409,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gd/gdbm/upstream-musl-ssize_t-fix.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841409}
@nix {"action":"start","id":2693962401841410,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/readline/link-against-ncurses.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841410}
@nix {"action":"start","id":2693962401841411,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/libraries/readline/no-arch_only-8.2.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841411}
@nix {"action":"start","id":2693962401841412,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/cpython/mimetypes.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841412}
@nix {"action":"start","id":2693962401841413,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/sitecustomize.py' to the store","type":0}
@nix {"action":"stop","id":2693962401841413}
@nix {"action":"start","id":2693962401841414,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/wrap.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841414}
@nix {"action":"start","id":2693962401841415,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-remove-tests-dir-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841415}
@nix {"action":"start","id":2693962401841416,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-catch-conflicts-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841416}
@nix {"action":"start","id":2693962401841417,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/catch_conflicts/catch_conflicts.py' to the store","type":0}
@nix {"action":"stop","id":2693962401841417}
@nix {"action":"start","id":2693962401841418,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-remove-bin-bytecode-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841418}
@nix {"action":"start","id":2693962401841419,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/setuptools-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841419}
@nix {"action":"start","id":2693962401841420,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pypa-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841420}
@nix {"action":"start","id":2693962401841421,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-runtime-deps-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841421}
@nix {"action":"start","id":2693962401841422,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-runtime-deps-check-hook.py' to the store","type":0}
@nix {"action":"stop","id":2693962401841422}
@nix {"action":"start","id":2693962401841423,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pypa-install-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841423}
@nix {"action":"start","id":2693962401841424,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-imports-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841424}
@nix {"action":"start","id":2693962401841425,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-namespaces-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841425}
@nix {"action":"start","id":2693962401841426,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/python-output-dist-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841426}
@nix {"action":"start","id":2693962401841427,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/wheel/0001-tests-Rename-a-a-o-_-.py-_-.py.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841427}
@nix {"action":"start","id":2693962401841428,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/setuptools/tag-date.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841428}
@nix {"action":"start","id":2693962401841429,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/run_setup.py' to the store","type":0}
@nix {"action":"stop","id":2693962401841429}
@nix {"action":"start","id":2693962401841430,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/setuptools-scm/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841430}
@nix {"action":"start","id":2693962401841431,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/unittest-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841431}
@nix {"action":"start","id":2693962401841432,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/iniconfig/version.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841432}
@nix {"action":"start","id":2693962401841433,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/interpreters/python/hooks/pytest-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841433}
@nix {"action":"start","id":2693962401841434,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/find-xml-catalogs.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841434}
@nix {"action":"start","id":2693962401841435,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/catalog-legacy-uris.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841435}
@nix {"action":"start","id":2693962401841436,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ni/ninja/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841436}
@nix {"action":"start","id":2693962401841437,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/000-nixpkgs-cmake-prefix-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841437}
@nix {"action":"start","id":2693962401841438,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/001-fix-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841438}
@nix {"action":"start","id":2693962401841439,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/002-clear-old-rpath.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841439}
@nix {"action":"start","id":2693962401841440,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/003-more-env-vars.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841440}
@nix {"action":"start","id":2693962401841441,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/004-gir-fallback-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841441}
@nix {"action":"start","id":2693962401841442,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/005-boost-Do-not-add-system-paths-on-nix.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841442}
@nix {"action":"start","id":2693962401841443,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/007-freebsd-pkgconfig-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841443}
@nix {"action":"start","id":2693962401841444,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/me/meson/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841444}
@nix {"action":"start","id":2693962401841445,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/fuse/fuse3-install.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841445}
@nix {"action":"start","id":2693962401841446,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/os-specific/linux/fuse/fuse3-Do-not-set-FUSERMOUNT_DIR.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841446}
@nix {"action":"start","id":2693962401841447,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libarchive/fix-pkg-config-iconv.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841447}
@nix {"action":"start","id":2693962401841448,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/rh/rhash/dont-fail-ln.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841448}
@nix {"action":"start","id":2693962401841449,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/rh/rhash/do-link-so.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841449}
@nix {"action":"start","id":2693962401841450,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/cython/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841450}
@nix {"action":"start","id":2693962401841451,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gt/gtk-doc/respect-xml-catalog-files-var.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841451}
@nix {"action":"start","id":2693962401841452,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/setup-hooks/auto-patchelf.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841452}
@nix {"action":"start","id":2693962401841453,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/buildenv/builder.pl' to the store","type":0}
@nix {"action":"stop","id":2693962401841453}
@nix {"action":"start","id":2693962401841454,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/au/auto-patchelf/source' to the store","type":0}
@nix {"action":"stop","id":2693962401841454}
@nix {"action":"start","id":2693962401841455,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/rust/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841455}
@nix {"action":"start","id":2693962401841456,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/rustc-wrapper/rustc-wrapper.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841456}
@nix {"action":"start","id":2693962401841457,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/certifi/env.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841457}
@nix {"action":"start","id":2693962401841458,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ca/cacert/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841458}
@nix {"action":"start","id":2693962401841459,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/attrs/remove-hatch-plugins.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841459}
@nix {"action":"start","id":2693962401841460,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/gt/gtest/fix-cmake-config-includedir.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841460}
@nix {"action":"start","id":2693962401841461,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/de/deterministic-uname/deterministic-uname.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841461}
@nix {"action":"start","id":2693962401841462,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/ma/man-db/systemwide-man-db-conf.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841462}
@nix {"action":"start","id":2693962401841463,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/w3/w3m/RAND_egd.libressl.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841463}
@nix {"action":"start","id":2693962401841464,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchgit/builder.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841464}
@nix {"action":"start","id":2693962401841465,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/fetchgit/nix-prefetch-git' to the store","type":0}
@nix {"action":"stop","id":2693962401841465}
@nix {"action":"start","id":2693962401841466,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/docbook2texi.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841466}
@nix {"action":"start","id":2693962401841467,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/git-sh-i18n.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841467}
@nix {"action":"start","id":2693962401841468,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/git-send-email-honor-PATH.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841468}
@nix {"action":"start","id":2693962401841469,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/applications/version-management/git/installCheck-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841469}
@nix {"action":"start","id":2693962401841470,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/op/opensp/fix-register-storage-class.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841470}
@nix {"action":"start","id":2693962401841471,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/op/opensp/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841471}
@nix {"action":"start","id":2693962401841472,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/perl-modules/xml-parser-0001-HACK-Assumes-Expat-paths-are-good.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841472}
@nix {"action":"start","id":2693962401841473,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/do/docbook2x/db2x_texixml-to-stdout.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841473}
@nix {"action":"start","id":2693962401841474,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/pytest-xdist/setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841474}
@nix {"action":"start","id":2693962401841475,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/python-modules/requests/ca-load-regression.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841475}
@nix {"action":"start","id":2693962401841476,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-build-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841476}
@nix {"action":"start","id":2693962401841477,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-check-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841477}
@nix {"action":"start","id":2693962401841478,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-install-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841478}
@nix {"action":"start","id":2693962401841479,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/hooks/cargo-setup-hook.sh' to the store","type":0}
@nix {"action":"stop","id":2693962401841479}
@nix {"action":"start","id":2693962401841480,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/rust/fetchcargo-default-config.toml' to the store","type":0}
@nix {"action":"stop","id":2693962401841480}
@nix {"action":"start","id":2693962401841481,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/by-name/li/libpfm/fix-windows.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841481}
@nix {"action":"start","id":2693962401841482,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841482}
@nix {"action":"start","id":2693962401841483,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841483}
@nix {"action":"start","id":2693962401841484,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841484}
@nix {"action":"start","id":2693962401841485,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841485}
@nix {"action":"start","id":2693962401841486,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841486}
@nix {"action":"start","id":2693962401841487,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/19/clang/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841487}
@nix {"action":"start","id":2693962401841488,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841488}
@nix {"action":"start","id":2693962401841489,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841489}
@nix {"action":"start","id":2693962401841490,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841490}
@nix {"action":"start","id":2693962401841491,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841491}
@nix {"action":"start","id":2693962401841492,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841492}
@nix {"action":"start","id":2693962401841493,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841493}
@nix {"action":"start","id":2693962401841494,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841494}
@nix {"action":"start","id":2693962401841495,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841495}
@nix {"action":"start","id":2693962401841496,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841496}
@nix {"action":"start","id":2693962401841497,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841497}
@nix {"action":"start","id":2693962401841498,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841498}
@nix {"action":"start","id":2693962401841499,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841499}
@nix {"action":"start","id":2693962401841500,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841500}
@nix {"action":"start","id":2693962401841501,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841501}
@nix {"action":"start","id":2693962401841502,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841502}
@nix {"action":"start","id":2693962401841503,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841503}
@nix {"action":"start","id":2693962401841504,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/17/llvm/llvm-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841504}
@nix {"action":"start","id":2693962401841505,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/lit-shell-script-runner-set-dyld-library-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841505}
@nix {"action":"start","id":2693962401841506,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/18/llvm/gnu-install-dirs-polly.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841506}
@nix {"action":"start","id":2693962401841507,"level":5,"parent":0,"text":"copying '/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/development/compilers/llvm/15/llvm/polly-lit-cfg-add-libs-to-dylib-path.patch' to the store","type":0}
@nix {"action":"stop","id":2693962401841507}
@nix {"action":"start","id":2693962401841508,"level":5,"parent":0,"text":"copying '/nix/store/qcgr82a27rmifcmw7hhxywsd43gnb75j-source' to the store","type":0}
@nix {"action":"stop","id":2693962401841508}
@nix {"action":"start","id":2693975286743048,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743049,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743050,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743049,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743050,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743048,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743048,"type":106}
@nix {"action":"start","id":2693975286743051,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743051}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743049,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743050,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743048,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743048,"type":106}
@nix {"action":"stop","id":2693975286743050}
@nix {"action":"stop","id":2693975286743049}
@nix {"action":"stop","id":2693975286743048}
@nix {"action":"start","id":2693975286743052,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743053,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743054,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743053,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743054,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743052,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743052,"type":106}
@nix {"action":"start","id":2693975286743055,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743055}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743053,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743054,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743052,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743052,"type":106}
@nix {"action":"stop","id":2693975286743054}
@nix {"action":"stop","id":2693975286743053}
@nix {"action":"stop","id":2693975286743052}
@nix {"action":"start","id":2693975286743056,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743057,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743058,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743057,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743058,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743056,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743056,"type":106}
@nix {"action":"start","id":2693975286743059,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743059}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743057,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743058,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743056,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743056,"type":106}
@nix {"action":"stop","id":2693975286743058}
@nix {"action":"stop","id":2693975286743057}
@nix {"action":"stop","id":2693975286743056}
@nix {"action":"start","id":2693975286743060,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743061,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743062,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743061,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743062,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743060,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743060,"type":106}
@nix {"action":"start","id":2693975286743063,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743063}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743061,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743062,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743060,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743060,"type":106}
@nix {"action":"stop","id":2693975286743062}
@nix {"action":"stop","id":2693975286743061}
@nix {"action":"stop","id":2693975286743060}
@nix {"action":"start","id":2693975286743064,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743065,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743066,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743065,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743066,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743064,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743064,"type":106}
@nix {"action":"start","id":2693975286743067,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743067}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743065,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743066,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743064,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743064,"type":106}
@nix {"action":"stop","id":2693975286743066}
@nix {"action":"stop","id":2693975286743065}
@nix {"action":"stop","id":2693975286743064}
@nix {"action":"start","id":2693975286743068,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743069,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743070,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743069,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743070,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743068,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743068,"type":106}
@nix {"action":"start","id":2693975286743071,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743071}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743069,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743070,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743068,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743068,"type":106}
@nix {"action":"stop","id":2693975286743070}
@nix {"action":"stop","id":2693975286743069}
@nix {"action":"stop","id":2693975286743068}
@nix {"action":"start","id":2693975286743072,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743073,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743074,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743073,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743074,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743072,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743072,"type":106}
@nix {"action":"start","id":2693975286743075,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743075}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743073,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743074,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743072,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743072,"type":106}
@nix {"action":"stop","id":2693975286743074}
@nix {"action":"stop","id":2693975286743073}
@nix {"action":"stop","id":2693975286743072}
@nix {"action":"start","id":2693975286743076,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743077,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743078,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743077,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743078,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743076,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743076,"type":106}
@nix {"action":"start","id":2693975286743079,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743079}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743077,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743078,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743076,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743076,"type":106}
@nix {"action":"stop","id":2693975286743078}
@nix {"action":"stop","id":2693975286743077}
@nix {"action":"stop","id":2693975286743076}
@nix {"action":"start","id":2693975286743080,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743081,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743082,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743081,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743082,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743080,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743080,"type":106}
@nix {"action":"start","id":2693975286743083,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743083}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743081,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743082,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743080,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743080,"type":106}
@nix {"action":"stop","id":2693975286743082}
@nix {"action":"stop","id":2693975286743081}
@nix {"action":"stop","id":2693975286743080}
@nix {"action":"start","id":2693975286743084,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743085,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743086,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743085,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743086,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743084,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743084,"type":106}
@nix {"action":"start","id":2693975286743087,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743087}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743085,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743086,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743084,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743084,"type":106}
@nix {"action":"stop","id":2693975286743086}
@nix {"action":"stop","id":2693975286743085}
@nix {"action":"stop","id":2693975286743084}
@nix {"action":"start","id":2693975286743088,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743089,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743090,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743089,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743090,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743088,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743088,"type":106}
@nix {"action":"start","id":2693975286743091,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743091}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743089,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743090,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743088,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743088,"type":106}
@nix {"action":"stop","id":2693975286743090}
@nix {"action":"stop","id":2693975286743089}
@nix {"action":"stop","id":2693975286743088}
@nix {"action":"start","id":2693975286743092,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743093,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743094,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743093,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743094,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743092,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743092,"type":106}
@nix {"action":"start","id":2693975286743095,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743095}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743093,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743094,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743092,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743092,"type":106}
@nix {"action":"stop","id":2693975286743094}
@nix {"action":"stop","id":2693975286743093}
@nix {"action":"stop","id":2693975286743092}
@nix {"action":"start","id":2693975286743096,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743097,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743098,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743097,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743098,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743096,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743096,"type":106}
@nix {"action":"start","id":2693975286743099,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743099}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743097,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743098,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743096,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743096,"type":106}
@nix {"action":"stop","id":2693975286743098}
@nix {"action":"stop","id":2693975286743097}
@nix {"action":"stop","id":2693975286743096}
@nix {"action":"start","id":2693975286743100,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743101,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743102,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743101,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743102,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743100,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743100,"type":106}
@nix {"action":"start","id":2693975286743103,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743103}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743101,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743102,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743100,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743100,"type":106}
@nix {"action":"stop","id":2693975286743102}
@nix {"action":"stop","id":2693975286743101}
@nix {"action":"stop","id":2693975286743100}
@nix {"action":"start","id":2693975286743104,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743105,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743106,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743105,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743106,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743104,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743104,"type":106}
@nix {"action":"start","id":2693975286743107,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743107}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743105,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743106,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743104,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743104,"type":106}
@nix {"action":"stop","id":2693975286743106}
@nix {"action":"stop","id":2693975286743105}
@nix {"action":"stop","id":2693975286743104}
@nix {"action":"start","id":2693975286743108,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743109,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743110,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743109,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743110,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743108,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743108,"type":106}
@nix {"action":"start","id":2693975286743111,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743111}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743109,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743110,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743108,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743108,"type":106}
@nix {"action":"stop","id":2693975286743110}
@nix {"action":"stop","id":2693975286743109}
@nix {"action":"stop","id":2693975286743108}
@nix {"action":"start","id":2693975286743112,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743113,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743114,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743113,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743114,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743112,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743112,"type":106}
@nix {"action":"start","id":2693975286743115,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743115}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743113,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743114,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743112,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743112,"type":106}
@nix {"action":"stop","id":2693975286743114}
@nix {"action":"stop","id":2693975286743113}
@nix {"action":"stop","id":2693975286743112}
@nix {"action":"start","id":2693975286743116,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743117,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743118,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743117,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743118,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743116,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743116,"type":106}
@nix {"action":"start","id":2693975286743119,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743119}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743117,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743118,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743116,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743116,"type":106}
@nix {"action":"stop","id":2693975286743118}
@nix {"action":"stop","id":2693975286743117}
@nix {"action":"stop","id":2693975286743116}
@nix {"action":"start","id":2693975286743120,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743121,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743122,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743121,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743122,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743120,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743120,"type":106}
@nix {"action":"start","id":2693975286743123,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743123}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743121,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743122,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743120,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743120,"type":106}
@nix {"action":"stop","id":2693975286743122}
@nix {"action":"stop","id":2693975286743121}
@nix {"action":"stop","id":2693975286743120}
@nix {"action":"start","id":2693975286743124,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743125,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743126,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743125,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743126,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743124,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743124,"type":106}
@nix {"action":"start","id":2693975286743127,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743127}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743125,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743126,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743124,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743124,"type":106}
@nix {"action":"stop","id":2693975286743126}
@nix {"action":"stop","id":2693975286743125}
@nix {"action":"stop","id":2693975286743124}
@nix {"action":"start","id":2693975286743128,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743129,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743130,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743129,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743130,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743128,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743128,"type":106}
@nix {"action":"start","id":2693975286743131,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743131}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743129,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743130,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743128,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743128,"type":106}
@nix {"action":"stop","id":2693975286743130}
@nix {"action":"stop","id":2693975286743129}
@nix {"action":"stop","id":2693975286743128}
@nix {"action":"start","id":2693975286743132,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743133,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743134,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743133,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743134,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743132,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743132,"type":106}
@nix {"action":"start","id":2693975286743135,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743135}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743133,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743134,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743132,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743132,"type":106}
@nix {"action":"stop","id":2693975286743134}
@nix {"action":"stop","id":2693975286743133}
@nix {"action":"stop","id":2693975286743132}
@nix {"action":"start","id":2693975286743136,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743137,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743138,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743137,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743138,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743136,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743136,"type":106}
@nix {"action":"start","id":2693975286743139,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743139}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743137,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743138,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743136,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743136,"type":106}
@nix {"action":"stop","id":2693975286743138}
@nix {"action":"stop","id":2693975286743137}
@nix {"action":"stop","id":2693975286743136}
@nix {"action":"start","id":2693975286743140,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743141,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743142,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743141,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743142,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743140,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743140,"type":106}
@nix {"action":"start","id":2693975286743143,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743143}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743141,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743142,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743140,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743140,"type":106}
@nix {"action":"stop","id":2693975286743142}
@nix {"action":"stop","id":2693975286743141}
@nix {"action":"stop","id":2693975286743140}
@nix {"action":"start","id":2693975286743144,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743145,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743146,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743145,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743146,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743144,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743144,"type":106}
@nix {"action":"start","id":2693975286743147,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743147}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743145,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743146,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743144,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743144,"type":106}
@nix {"action":"stop","id":2693975286743146}
@nix {"action":"stop","id":2693975286743145}
@nix {"action":"stop","id":2693975286743144}
@nix {"action":"start","id":2693975286743148,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743149,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743150,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743149,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743150,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743148,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743148,"type":106}
@nix {"action":"start","id":2693975286743151,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743151}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743149,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743150,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743148,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743148,"type":106}
@nix {"action":"stop","id":2693975286743150}
@nix {"action":"stop","id":2693975286743149}
@nix {"action":"stop","id":2693975286743148}
@nix {"action":"start","id":2693975286743152,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743153,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743154,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743153,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743154,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743152,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743152,"type":106}
@nix {"action":"start","id":2693975286743155,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743155}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743153,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743154,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743152,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743152,"type":106}
@nix {"action":"stop","id":2693975286743154}
@nix {"action":"stop","id":2693975286743153}
@nix {"action":"stop","id":2693975286743152}
@nix {"action":"start","id":2693975286743156,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743157,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743158,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743157,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743158,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743156,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743156,"type":106}
@nix {"action":"start","id":2693975286743159,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743159}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743157,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743158,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743156,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743156,"type":106}
@nix {"action":"stop","id":2693975286743158}
@nix {"action":"stop","id":2693975286743157}
@nix {"action":"stop","id":2693975286743156}
@nix {"action":"start","id":2693975286743160,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743161,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743162,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743161,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743162,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743160,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743160,"type":106}
@nix {"action":"start","id":2693975286743163,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743163}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743161,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743162,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743160,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743160,"type":106}
@nix {"action":"stop","id":2693975286743162}
@nix {"action":"stop","id":2693975286743161}
@nix {"action":"stop","id":2693975286743160}
@nix {"action":"start","id":2693962401841509,"level":5,"parent":0,"text":"copying '/home/nixos/ka4h2' to the store","type":0}
@nix {"action":"stop","id":2693962401841509}
@nix {"action":"start","id":2693975286743164,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743165,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743166,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743165,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743166,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743164,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743164,"type":106}
@nix {"action":"start","id":2693975286743167,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743167}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743165,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743166,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743164,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743164,"type":106}
@nix {"action":"stop","id":2693975286743166}
@nix {"action":"stop","id":2693975286743165}
@nix {"action":"stop","id":2693975286743164}
@nix {"action":"start","id":2693975286743168,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743169,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743170,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743169,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743170,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743168,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743168,"type":106}
@nix {"action":"start","id":2693975286743171,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743171}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743169,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743170,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743168,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743168,"type":106}
@nix {"action":"stop","id":2693975286743170}
@nix {"action":"stop","id":2693975286743169}
@nix {"action":"stop","id":2693975286743168}
@nix {"action":"start","id":2693975286743172,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743173,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743174,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743173,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743174,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743172,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743172,"type":106}
@nix {"action":"start","id":2693975286743175,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743175}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743173,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743174,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743172,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743172,"type":106}
@nix {"action":"stop","id":2693975286743174}
@nix {"action":"stop","id":2693975286743173}
@nix {"action":"stop","id":2693975286743172}
@nix {"action":"start","id":2693975286743176,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743177,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743178,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743177,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743178,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743176,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743176,"type":106}
@nix {"action":"start","id":2693975286743179,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743179}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743177,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743178,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743176,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743176,"type":106}
@nix {"action":"stop","id":2693975286743178}
@nix {"action":"stop","id":2693975286743177}
@nix {"action":"stop","id":2693975286743176}
@nix {"action":"start","id":2693975286743180,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743181,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743182,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743181,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743182,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743180,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743180,"type":106}
@nix {"action":"start","id":2693975286743183,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743183}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743181,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743182,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743180,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743180,"type":106}
@nix {"action":"stop","id":2693975286743182}
@nix {"action":"stop","id":2693975286743181}
@nix {"action":"stop","id":2693975286743180}
@nix {"action":"start","id":2693975286743184,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743185,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743186,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743185,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743186,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743184,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743184,"type":106}
@nix {"action":"start","id":2693975286743187,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743187}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743185,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743186,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743184,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743184,"type":106}
@nix {"action":"stop","id":2693975286743186}
@nix {"action":"stop","id":2693975286743185}
@nix {"action":"stop","id":2693975286743184}
@nix {"action":"start","id":2693975286743188,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743189,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743190,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743189,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743190,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743188,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743188,"type":106}
@nix {"action":"start","id":2693975286743191,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743191}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743189,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743190,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743188,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743188,"type":106}
@nix {"action":"stop","id":2693975286743190}
@nix {"action":"stop","id":2693975286743189}
@nix {"action":"stop","id":2693975286743188}
@nix {"action":"start","id":2693975286743192,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743193,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743194,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743193,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743194,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743192,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743192,"type":106}
@nix {"action":"start","id":2693975286743195,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743195}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743193,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743194,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743192,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743192,"type":106}
@nix {"action":"stop","id":2693975286743194}
@nix {"action":"stop","id":2693975286743193}
@nix {"action":"stop","id":2693975286743192}
@nix {"action":"start","id":2693975286743196,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743197,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743198,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743197,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743198,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743196,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743196,"type":106}
@nix {"action":"start","id":2693975286743199,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743199}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743197,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743198,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743196,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743196,"type":106}
@nix {"action":"stop","id":2693975286743198}
@nix {"action":"stop","id":2693975286743197}
@nix {"action":"stop","id":2693975286743196}
@nix {"action":"start","id":2693975286743200,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743201,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743202,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743201,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743202,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743200,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743200,"type":106}
@nix {"action":"start","id":2693975286743203,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743203}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743201,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743202,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743200,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743200,"type":106}
@nix {"action":"stop","id":2693975286743202}
@nix {"action":"stop","id":2693975286743201}
@nix {"action":"stop","id":2693975286743200}
@nix {"action":"start","id":2693975286743204,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743205,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743206,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743205,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743206,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743204,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743204,"type":106}
@nix {"action":"start","id":2693975286743207,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743207}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743205,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743206,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743204,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743204,"type":106}
@nix {"action":"stop","id":2693975286743206}
@nix {"action":"stop","id":2693975286743205}
@nix {"action":"stop","id":2693975286743204}
@nix {"action":"start","id":2693975286743208,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743209,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743210,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743209,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743210,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743208,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743208,"type":106}
@nix {"action":"start","id":2693975286743211,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743211}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743209,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743210,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743208,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743208,"type":106}
@nix {"action":"stop","id":2693975286743210}
@nix {"action":"stop","id":2693975286743209}
@nix {"action":"stop","id":2693975286743208}
@nix {"action":"start","id":2693975286743212,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743213,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743214,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743213,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743214,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743212,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743212,"type":106}
@nix {"action":"start","id":2693975286743215,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743215}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743213,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743214,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743212,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743212,"type":106}
@nix {"action":"stop","id":2693975286743214}
@nix {"action":"stop","id":2693975286743213}
@nix {"action":"stop","id":2693975286743212}
@nix {"action":"start","id":2693975286743216,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743217,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743218,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743217,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743218,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743216,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743216,"type":106}
@nix {"action":"start","id":2693975286743219,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743219}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743217,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743218,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743216,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743216,"type":106}
@nix {"action":"stop","id":2693975286743218}
@nix {"action":"stop","id":2693975286743217}
@nix {"action":"stop","id":2693975286743216}
@nix {"action":"start","id":2693975286743220,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743221,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743222,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743221,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743222,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743220,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743220,"type":106}
@nix {"action":"start","id":2693975286743223,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743223}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743221,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743222,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743220,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743220,"type":106}
@nix {"action":"stop","id":2693975286743222}
@nix {"action":"stop","id":2693975286743221}
@nix {"action":"stop","id":2693975286743220}
@nix {"action":"start","id":2693975286743224,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743225,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743226,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743225,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743226,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743224,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743224,"type":106}
@nix {"action":"start","id":2693975286743227,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743227}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743225,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743226,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743224,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743224,"type":106}
@nix {"action":"stop","id":2693975286743226}
@nix {"action":"stop","id":2693975286743225}
@nix {"action":"stop","id":2693975286743224}
@nix {"action":"start","id":2693975286743228,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743229,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743230,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743229,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743230,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743228,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743228,"type":106}
@nix {"action":"start","id":2693975286743231,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743231}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743229,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743230,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743228,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743228,"type":106}
@nix {"action":"stop","id":2693975286743230}
@nix {"action":"stop","id":2693975286743229}
@nix {"action":"stop","id":2693975286743228}
@nix {"action":"start","id":2693975286743232,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743233,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743234,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743233,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743234,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743232,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743232,"type":106}
@nix {"action":"start","id":2693975286743235,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743235}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743233,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743234,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743232,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743232,"type":106}
@nix {"action":"stop","id":2693975286743234}
@nix {"action":"stop","id":2693975286743233}
@nix {"action":"stop","id":2693975286743232}
@nix {"action":"start","id":2693975286743236,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743237,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743238,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743237,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743238,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743236,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743236,"type":106}
@nix {"action":"start","id":2693975286743239,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743239}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743237,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743238,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743236,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743236,"type":106}
@nix {"action":"stop","id":2693975286743238}
@nix {"action":"stop","id":2693975286743237}
@nix {"action":"stop","id":2693975286743236}
@nix {"action":"start","id":2693975286743240,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743241,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743242,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743241,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743242,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743240,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743240,"type":106}
@nix {"action":"start","id":2693975286743243,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743243}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743241,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743242,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743240,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743240,"type":106}
@nix {"action":"stop","id":2693975286743242}
@nix {"action":"stop","id":2693975286743241}
@nix {"action":"stop","id":2693975286743240}
@nix {"action":"start","id":2693975286743244,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743245,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743246,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743245,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743246,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743244,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743244,"type":106}
@nix {"action":"start","id":2693975286743247,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743247}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743245,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743246,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743244,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743244,"type":106}
@nix {"action":"stop","id":2693975286743246}
@nix {"action":"stop","id":2693975286743245}
@nix {"action":"stop","id":2693975286743244}
@nix {"action":"start","id":2693975286743248,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743249,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743250,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743249,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743250,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743248,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743248,"type":106}
@nix {"action":"start","id":2693975286743251,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743251}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743249,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743250,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743248,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743248,"type":106}
@nix {"action":"stop","id":2693975286743250}
@nix {"action":"stop","id":2693975286743249}
@nix {"action":"stop","id":2693975286743248}
@nix {"action":"start","id":2693975286743252,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743253,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743254,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743253,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743254,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743252,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743252,"type":106}
@nix {"action":"start","id":2693975286743255,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743255}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743253,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743254,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743252,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743252,"type":106}
@nix {"action":"stop","id":2693975286743254}
@nix {"action":"stop","id":2693975286743253}
@nix {"action":"stop","id":2693975286743252}
@nix {"action":"start","id":2693975286743256,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743257,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743258,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743257,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743258,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743256,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743256,"type":106}
@nix {"action":"start","id":2693975286743259,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743259}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743257,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743258,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743256,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743256,"type":106}
@nix {"action":"stop","id":2693975286743258}
@nix {"action":"stop","id":2693975286743257}
@nix {"action":"stop","id":2693975286743256}
@nix {"action":"start","id":2693975286743260,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743261,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743262,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743261,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743262,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743260,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743260,"type":106}
@nix {"action":"start","id":2693975286743263,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743263}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743261,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743262,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743260,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743260,"type":106}
@nix {"action":"stop","id":2693975286743262}
@nix {"action":"stop","id":2693975286743261}
@nix {"action":"stop","id":2693975286743260}
@nix {"action":"start","id":2693975286743264,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743265,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743266,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743265,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743266,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743264,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743264,"type":106}
@nix {"action":"start","id":2693975286743267,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743267}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743265,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743266,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743264,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743264,"type":106}
@nix {"action":"stop","id":2693975286743266}
@nix {"action":"stop","id":2693975286743265}
@nix {"action":"stop","id":2693975286743264}
@nix {"action":"start","id":2693975286743268,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743269,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743270,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743269,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743270,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743268,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743268,"type":106}
@nix {"action":"start","id":2693975286743271,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743271}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743269,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743270,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743268,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743268,"type":106}
@nix {"action":"stop","id":2693975286743270}
@nix {"action":"stop","id":2693975286743269}
@nix {"action":"stop","id":2693975286743268}
@nix {"action":"start","id":2693975286743272,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743273,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743274,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743273,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743274,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743272,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743272,"type":106}
@nix {"action":"start","id":2693975286743275,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743275}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743273,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743274,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743272,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743272,"type":106}
@nix {"action":"stop","id":2693975286743274}
@nix {"action":"stop","id":2693975286743273}
@nix {"action":"stop","id":2693975286743272}
@nix {"action":"start","id":2693975286743276,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743277,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743278,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743277,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743278,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743276,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743276,"type":106}
@nix {"action":"start","id":2693975286743279,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743279}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743277,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743278,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743276,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743276,"type":106}
@nix {"action":"stop","id":2693975286743278}
@nix {"action":"stop","id":2693975286743277}
@nix {"action":"stop","id":2693975286743276}
@nix {"action":"start","id":2693975286743280,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743281,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743282,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743281,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743282,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743280,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743280,"type":106}
@nix {"action":"start","id":2693975286743283,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743283}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743281,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743282,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743280,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743280,"type":106}
@nix {"action":"stop","id":2693975286743282}
@nix {"action":"stop","id":2693975286743281}
@nix {"action":"stop","id":2693975286743280}
@nix {"action":"start","id":2693975286743284,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743285,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743286,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743285,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743286,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743284,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743284,"type":106}
@nix {"action":"start","id":2693975286743287,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743287}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743285,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743286,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743284,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743284,"type":106}
@nix {"action":"stop","id":2693975286743286}
@nix {"action":"stop","id":2693975286743285}
@nix {"action":"stop","id":2693975286743284}
@nix {"action":"start","id":2693975286743288,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743289,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743290,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743289,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743290,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743288,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743288,"type":106}
@nix {"action":"start","id":2693975286743291,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743291}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743289,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743290,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743288,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743288,"type":106}
@nix {"action":"stop","id":2693975286743290}
@nix {"action":"stop","id":2693975286743289}
@nix {"action":"stop","id":2693975286743288}
@nix {"action":"start","id":2693975286743292,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743293,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743294,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743293,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743294,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743292,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743292,"type":106}
@nix {"action":"start","id":2693975286743295,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743295}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743293,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743294,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743292,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743292,"type":106}
@nix {"action":"stop","id":2693975286743294}
@nix {"action":"stop","id":2693975286743293}
@nix {"action":"stop","id":2693975286743292}
@nix {"action":"start","id":2693975286743296,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743297,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743298,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743297,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743298,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743296,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743296,"type":106}
@nix {"action":"start","id":2693975286743299,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743299}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743297,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743298,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743296,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743296,"type":106}
@nix {"action":"stop","id":2693975286743298}
@nix {"action":"stop","id":2693975286743297}
@nix {"action":"stop","id":2693975286743296}
@nix {"action":"start","id":2693975286743300,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743301,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743302,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743301,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743302,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743300,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743300,"type":106}
@nix {"action":"start","id":2693975286743303,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743303}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743301,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743302,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743300,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743300,"type":106}
@nix {"action":"stop","id":2693975286743302}
@nix {"action":"stop","id":2693975286743301}
@nix {"action":"stop","id":2693975286743300}
@nix {"action":"start","id":2693975286743304,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743305,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743306,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743305,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743306,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743304,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743304,"type":106}
@nix {"action":"start","id":2693975286743307,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743307}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743305,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743306,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743304,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743304,"type":106}
@nix {"action":"stop","id":2693975286743306}
@nix {"action":"stop","id":2693975286743305}
@nix {"action":"stop","id":2693975286743304}
@nix {"action":"start","id":2693975286743308,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743309,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743310,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743309,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743310,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743308,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743308,"type":106}
@nix {"action":"start","id":2693975286743311,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743311}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743309,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743310,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743308,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743308,"type":106}
@nix {"action":"stop","id":2693975286743310}
@nix {"action":"stop","id":2693975286743309}
@nix {"action":"stop","id":2693975286743308}
@nix {"action":"start","id":2693975286743312,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743313,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743314,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743313,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743314,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743312,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743312,"type":106}
@nix {"action":"start","id":2693975286743315,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743315}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743313,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743314,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743312,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743312,"type":106}
@nix {"action":"stop","id":2693975286743314}
@nix {"action":"stop","id":2693975286743313}
@nix {"action":"stop","id":2693975286743312}
@nix {"action":"start","id":2693975286743316,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743317,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743318,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743317,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743318,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743316,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743316,"type":106}
@nix {"action":"start","id":2693975286743319,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743319}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743317,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743318,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743316,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743316,"type":106}
@nix {"action":"stop","id":2693975286743318}
@nix {"action":"stop","id":2693975286743317}
@nix {"action":"stop","id":2693975286743316}
@nix {"action":"start","id":2693975286743320,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743321,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743322,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743321,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743322,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743320,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743320,"type":106}
@nix {"action":"start","id":2693975286743323,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743323}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743321,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743322,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743320,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743320,"type":106}
@nix {"action":"stop","id":2693975286743322}
@nix {"action":"stop","id":2693975286743321}
@nix {"action":"stop","id":2693975286743320}
@nix {"action":"start","id":2693975286743324,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743325,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743326,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743325,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743326,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743324,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743324,"type":106}
@nix {"action":"start","id":2693975286743327,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743327}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743325,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743326,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743324,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743324,"type":106}
@nix {"action":"stop","id":2693975286743326}
@nix {"action":"stop","id":2693975286743325}
@nix {"action":"stop","id":2693975286743324}
@nix {"action":"start","id":2693975286743328,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743329,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743330,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743329,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743330,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743328,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743328,"type":106}
@nix {"action":"start","id":2693975286743331,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743331}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743329,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743330,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743328,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743328,"type":106}
@nix {"action":"stop","id":2693975286743330}
@nix {"action":"stop","id":2693975286743329}
@nix {"action":"stop","id":2693975286743328}
@nix {"action":"start","id":2693975286743332,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743333,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743334,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743333,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743334,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743332,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743332,"type":106}
@nix {"action":"start","id":2693975286743335,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743335}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743333,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743334,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743332,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743332,"type":106}
@nix {"action":"stop","id":2693975286743334}
@nix {"action":"stop","id":2693975286743333}
@nix {"action":"stop","id":2693975286743332}
@nix {"action":"start","id":2693975286743336,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743337,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743338,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743337,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743338,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743336,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743336,"type":106}
@nix {"action":"start","id":2693975286743339,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743339}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743337,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743338,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743336,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743336,"type":106}
@nix {"action":"stop","id":2693975286743338}
@nix {"action":"stop","id":2693975286743337}
@nix {"action":"stop","id":2693975286743336}
@nix {"action":"start","id":2693975286743340,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743341,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743342,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743341,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743342,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743340,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743340,"type":106}
@nix {"action":"start","id":2693975286743343,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743343}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743341,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743342,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743340,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743340,"type":106}
@nix {"action":"stop","id":2693975286743342}
@nix {"action":"stop","id":2693975286743341}
@nix {"action":"stop","id":2693975286743340}
@nix {"action":"start","id":2693975286743344,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743345,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743346,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743345,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743346,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743344,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743344,"type":106}
@nix {"action":"start","id":2693975286743347,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743347}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743345,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743346,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743344,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743344,"type":106}
@nix {"action":"stop","id":2693975286743346}
@nix {"action":"stop","id":2693975286743345}
@nix {"action":"stop","id":2693975286743344}
@nix {"action":"start","id":2693975286743348,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743349,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743350,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743349,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743350,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743348,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743348,"type":106}
@nix {"action":"start","id":2693975286743351,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743351}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743349,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743350,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743348,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743348,"type":106}
@nix {"action":"stop","id":2693975286743350}
@nix {"action":"stop","id":2693975286743349}
@nix {"action":"stop","id":2693975286743348}
@nix {"action":"start","id":2693975286743352,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743353,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743354,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743353,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743354,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743352,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743352,"type":106}
@nix {"action":"start","id":2693975286743355,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743355}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743353,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743354,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743352,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743352,"type":106}
@nix {"action":"stop","id":2693975286743354}
@nix {"action":"stop","id":2693975286743353}
@nix {"action":"stop","id":2693975286743352}
@nix {"action":"start","id":2693975286743356,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743357,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743358,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743357,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743358,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743356,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743356,"type":106}
@nix {"action":"start","id":2693975286743359,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743359}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743357,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743358,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743356,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743356,"type":106}
@nix {"action":"stop","id":2693975286743358}
@nix {"action":"stop","id":2693975286743357}
@nix {"action":"stop","id":2693975286743356}
@nix {"action":"start","id":2693975286743360,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743361,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743362,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743361,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743362,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743360,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743360,"type":106}
@nix {"action":"start","id":2693975286743363,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743363}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743361,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743362,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743360,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743360,"type":106}
@nix {"action":"stop","id":2693975286743362}
@nix {"action":"stop","id":2693975286743361}
@nix {"action":"stop","id":2693975286743360}
@nix {"action":"start","id":2693975286743364,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743365,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743366,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743365,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743366,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743364,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743364,"type":106}
@nix {"action":"start","id":2693975286743367,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743367}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743365,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743366,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743364,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743364,"type":106}
@nix {"action":"stop","id":2693975286743366}
@nix {"action":"stop","id":2693975286743365}
@nix {"action":"stop","id":2693975286743364}
@nix {"action":"start","id":2693975286743368,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743369,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743370,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743369,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743370,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743368,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743368,"type":106}
@nix {"action":"start","id":2693975286743371,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743371}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743369,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743370,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743368,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743368,"type":106}
@nix {"action":"stop","id":2693975286743370}
@nix {"action":"stop","id":2693975286743369}
@nix {"action":"stop","id":2693975286743368}
@nix {"action":"start","id":2693975286743372,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743373,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743374,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743373,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743374,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743372,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743372,"type":106}
@nix {"action":"start","id":2693975286743375,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743375}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743373,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743374,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743372,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743372,"type":106}
@nix {"action":"stop","id":2693975286743374}
@nix {"action":"stop","id":2693975286743373}
@nix {"action":"stop","id":2693975286743372}
@nix {"action":"start","id":2693975286743376,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743377,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743378,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743377,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743378,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743376,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743376,"type":106}
@nix {"action":"start","id":2693975286743379,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743379}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743377,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743378,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743376,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743376,"type":106}
@nix {"action":"stop","id":2693975286743378}
@nix {"action":"stop","id":2693975286743377}
@nix {"action":"stop","id":2693975286743376}
@nix {"action":"start","id":2693975286743380,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743381,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743382,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743381,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743382,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743380,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743380,"type":106}
@nix {"action":"start","id":2693975286743383,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743383}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743381,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743382,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743380,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743380,"type":106}
@nix {"action":"stop","id":2693975286743382}
@nix {"action":"stop","id":2693975286743381}
@nix {"action":"stop","id":2693975286743380}
@nix {"action":"start","id":2693975286743384,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743385,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743386,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743385,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743386,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743384,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743384,"type":106}
@nix {"action":"start","id":2693975286743387,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743387}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743385,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743386,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743384,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743384,"type":106}
@nix {"action":"stop","id":2693975286743386}
@nix {"action":"stop","id":2693975286743385}
@nix {"action":"stop","id":2693975286743384}
@nix {"action":"start","id":2693975286743388,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743389,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743390,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743389,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743390,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743388,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743388,"type":106}
@nix {"action":"start","id":2693975286743391,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743391}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743389,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743390,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743388,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743388,"type":106}
@nix {"action":"stop","id":2693975286743390}
@nix {"action":"stop","id":2693975286743389}
@nix {"action":"stop","id":2693975286743388}
@nix {"action":"start","id":2693975286743392,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743393,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743394,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743393,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743394,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743392,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743392,"type":106}
@nix {"action":"start","id":2693975286743395,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743395}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743393,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743394,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743392,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743392,"type":106}
@nix {"action":"stop","id":2693975286743394}
@nix {"action":"stop","id":2693975286743393}
@nix {"action":"stop","id":2693975286743392}
@nix {"action":"start","id":2693975286743396,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743397,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743398,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743397,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743398,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743396,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743396,"type":106}
@nix {"action":"start","id":2693975286743399,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743399}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743397,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743398,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743396,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743396,"type":106}
@nix {"action":"stop","id":2693975286743398}
@nix {"action":"stop","id":2693975286743397}
@nix {"action":"stop","id":2693975286743396}
@nix {"action":"start","id":2693975286743400,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743401,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743402,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743401,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743402,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743400,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743400,"type":106}
@nix {"action":"start","id":2693975286743403,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743403}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743401,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743402,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743400,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743400,"type":106}
@nix {"action":"stop","id":2693975286743402}
@nix {"action":"stop","id":2693975286743401}
@nix {"action":"stop","id":2693975286743400}
@nix {"action":"start","id":2693975286743404,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743405,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743406,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743405,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743406,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743404,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743404,"type":106}
@nix {"action":"start","id":2693975286743407,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743407}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743405,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743406,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743404,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743404,"type":106}
@nix {"action":"stop","id":2693975286743406}
@nix {"action":"stop","id":2693975286743405}
@nix {"action":"stop","id":2693975286743404}
@nix {"action":"start","id":2693975286743408,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743409,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743410,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743409,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743410,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743408,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743408,"type":106}
@nix {"action":"start","id":2693975286743411,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743411}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743409,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743410,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743408,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743408,"type":106}
@nix {"action":"stop","id":2693975286743410}
@nix {"action":"stop","id":2693975286743409}
@nix {"action":"stop","id":2693975286743408}
@nix {"action":"start","id":2693975286743412,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743413,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743414,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743413,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743414,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743412,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743412,"type":106}
@nix {"action":"start","id":2693975286743415,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743415}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743413,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743414,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743412,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743412,"type":106}
@nix {"action":"stop","id":2693975286743414}
@nix {"action":"stop","id":2693975286743413}
@nix {"action":"stop","id":2693975286743412}
@nix {"action":"start","id":2693975286743416,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743417,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743418,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743417,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743418,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743416,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743416,"type":106}
@nix {"action":"start","id":2693975286743419,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743419}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743417,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743418,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743416,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743416,"type":106}
@nix {"action":"stop","id":2693975286743418}
@nix {"action":"stop","id":2693975286743417}
@nix {"action":"stop","id":2693975286743416}
@nix {"action":"start","id":2693975286743420,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743421,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743422,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743421,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743422,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743420,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743420,"type":106}
@nix {"action":"start","id":2693975286743423,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743423}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743421,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743422,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743420,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743420,"type":106}
@nix {"action":"stop","id":2693975286743422}
@nix {"action":"stop","id":2693975286743421}
@nix {"action":"stop","id":2693975286743420}
@nix {"action":"start","id":2693975286743424,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743425,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743426,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743425,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743426,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743424,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743424,"type":106}
@nix {"action":"start","id":2693975286743427,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743427}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743425,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743426,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743424,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743424,"type":106}
@nix {"action":"stop","id":2693975286743426}
@nix {"action":"stop","id":2693975286743425}
@nix {"action":"stop","id":2693975286743424}
@nix {"action":"start","id":2693975286743428,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743429,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743430,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743429,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743430,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743428,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743428,"type":106}
@nix {"action":"start","id":2693975286743431,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743431}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743429,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743430,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743428,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743428,"type":106}
@nix {"action":"stop","id":2693975286743430}
@nix {"action":"stop","id":2693975286743429}
@nix {"action":"stop","id":2693975286743428}
@nix {"action":"start","id":2693975286743432,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743433,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743434,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743433,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743434,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743432,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743432,"type":106}
@nix {"action":"start","id":2693975286743435,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743435}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743433,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743434,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743432,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743432,"type":106}
@nix {"action":"stop","id":2693975286743434}
@nix {"action":"stop","id":2693975286743433}
@nix {"action":"stop","id":2693975286743432}
@nix {"action":"start","id":2693975286743436,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743437,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743438,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743437,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743438,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743436,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743436,"type":106}
@nix {"action":"start","id":2693975286743439,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743439}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743437,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743438,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743436,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743436,"type":106}
@nix {"action":"stop","id":2693975286743438}
@nix {"action":"stop","id":2693975286743437}
@nix {"action":"stop","id":2693975286743436}
@nix {"action":"start","id":2693975286743440,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743441,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743442,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743441,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743442,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743440,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743440,"type":106}
@nix {"action":"start","id":2693975286743443,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743443}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743441,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743442,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743440,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743440,"type":106}
@nix {"action":"stop","id":2693975286743442}
@nix {"action":"stop","id":2693975286743441}
@nix {"action":"stop","id":2693975286743440}
@nix {"action":"start","id":2693975286743444,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743445,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743446,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743445,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743446,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743444,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743444,"type":106}
@nix {"action":"start","id":2693975286743447,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743447}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743445,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743446,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743444,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743444,"type":106}
@nix {"action":"stop","id":2693975286743446}
@nix {"action":"stop","id":2693975286743445}
@nix {"action":"stop","id":2693975286743444}
@nix {"action":"start","id":2693975286743448,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743449,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743450,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743449,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743450,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743448,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743448,"type":106}
@nix {"action":"start","id":2693975286743451,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743451}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743449,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743450,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743448,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743448,"type":106}
@nix {"action":"stop","id":2693975286743450}
@nix {"action":"stop","id":2693975286743449}
@nix {"action":"stop","id":2693975286743448}
@nix {"action":"start","id":2693975286743452,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743453,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743454,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743453,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743454,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743452,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743452,"type":106}
@nix {"action":"start","id":2693975286743455,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743455}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743453,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743454,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743452,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743452,"type":106}
@nix {"action":"stop","id":2693975286743454}
@nix {"action":"stop","id":2693975286743453}
@nix {"action":"stop","id":2693975286743452}
@nix {"action":"start","id":2693975286743456,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743457,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743458,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743457,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743458,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743456,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743456,"type":106}
@nix {"action":"start","id":2693975286743459,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743459}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743457,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743458,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743456,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743456,"type":106}
@nix {"action":"stop","id":2693975286743458}
@nix {"action":"stop","id":2693975286743457}
@nix {"action":"stop","id":2693975286743456}
@nix {"action":"start","id":2693975286743460,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743461,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743462,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743461,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743462,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743460,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743460,"type":106}
@nix {"action":"start","id":2693975286743463,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743463}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743461,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743462,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743460,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743460,"type":106}
@nix {"action":"stop","id":2693975286743462}
@nix {"action":"stop","id":2693975286743461}
@nix {"action":"stop","id":2693975286743460}
@nix {"action":"start","id":2693975286743464,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743465,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743466,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743465,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743466,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743464,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743464,"type":106}
@nix {"action":"start","id":2693975286743467,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743467}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743465,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743466,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743464,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743464,"type":106}
@nix {"action":"stop","id":2693975286743466}
@nix {"action":"stop","id":2693975286743465}
@nix {"action":"stop","id":2693975286743464}
@nix {"action":"start","id":2693975286743468,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743469,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743470,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743469,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743470,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743468,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743468,"type":106}
@nix {"action":"start","id":2693975286743471,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743471}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743469,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743470,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743468,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743468,"type":106}
@nix {"action":"stop","id":2693975286743470}
@nix {"action":"stop","id":2693975286743469}
@nix {"action":"stop","id":2693975286743468}
@nix {"action":"start","id":2693975286743472,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743473,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743474,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743473,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743474,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743472,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743472,"type":106}
@nix {"action":"start","id":2693975286743475,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743475}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743473,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743474,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743472,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743472,"type":106}
@nix {"action":"stop","id":2693975286743474}
@nix {"action":"stop","id":2693975286743473}
@nix {"action":"stop","id":2693975286743472}
@nix {"action":"start","id":2693975286743476,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743477,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743478,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743477,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743478,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743476,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743476,"type":106}
@nix {"action":"start","id":2693975286743479,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743479}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743477,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743478,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743476,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743476,"type":106}
@nix {"action":"stop","id":2693975286743478}
@nix {"action":"stop","id":2693975286743477}
@nix {"action":"stop","id":2693975286743476}
@nix {"action":"start","id":2693975286743480,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743481,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743482,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743481,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743482,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743480,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743480,"type":106}
@nix {"action":"start","id":2693975286743483,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743483}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743481,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743482,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743480,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743480,"type":106}
@nix {"action":"stop","id":2693975286743482}
@nix {"action":"stop","id":2693975286743481}
@nix {"action":"stop","id":2693975286743480}
@nix {"action":"start","id":2693975286743484,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743485,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743486,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743485,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743486,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743484,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743484,"type":106}
@nix {"action":"start","id":2693975286743487,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743487}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743485,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743486,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743484,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743484,"type":106}
@nix {"action":"stop","id":2693975286743486}
@nix {"action":"stop","id":2693975286743485}
@nix {"action":"stop","id":2693975286743484}
@nix {"action":"start","id":2693975286743488,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743489,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743490,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743489,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743490,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743488,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743488,"type":106}
@nix {"action":"start","id":2693975286743491,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743491}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743489,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743490,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743488,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743488,"type":106}
@nix {"action":"stop","id":2693975286743490}
@nix {"action":"stop","id":2693975286743489}
@nix {"action":"stop","id":2693975286743488}
@nix {"action":"start","id":2693975286743492,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743493,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743494,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743493,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743494,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743492,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743492,"type":106}
@nix {"action":"start","id":2693975286743495,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743495}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743493,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743494,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743492,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743492,"type":106}
@nix {"action":"stop","id":2693975286743494}
@nix {"action":"stop","id":2693975286743493}
@nix {"action":"stop","id":2693975286743492}
@nix {"action":"start","id":2693975286743496,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743497,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743498,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743497,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743498,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743496,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743496,"type":106}
@nix {"action":"start","id":2693975286743499,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743499}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743497,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743498,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743496,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743496,"type":106}
@nix {"action":"stop","id":2693975286743498}
@nix {"action":"stop","id":2693975286743497}
@nix {"action":"stop","id":2693975286743496}
@nix {"action":"start","id":2693975286743500,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743501,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743502,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743501,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743502,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743500,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743500,"type":106}
@nix {"action":"start","id":2693975286743503,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743503}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743501,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743502,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743500,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743500,"type":106}
@nix {"action":"stop","id":2693975286743502}
@nix {"action":"stop","id":2693975286743501}
@nix {"action":"stop","id":2693975286743500}
@nix {"action":"start","id":2693975286743504,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743505,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743506,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743505,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743506,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743504,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743504,"type":106}
@nix {"action":"start","id":2693975286743507,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743507}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743505,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743506,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743504,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743504,"type":106}
@nix {"action":"stop","id":2693975286743506}
@nix {"action":"stop","id":2693975286743505}
@nix {"action":"stop","id":2693975286743504}
@nix {"action":"start","id":2693975286743508,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743509,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743510,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743509,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743510,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743508,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743508,"type":106}
@nix {"action":"start","id":2693975286743511,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743511}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743509,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743510,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743508,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743508,"type":106}
@nix {"action":"stop","id":2693975286743510}
@nix {"action":"stop","id":2693975286743509}
@nix {"action":"stop","id":2693975286743508}
@nix {"action":"start","id":2693975286743512,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743513,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743514,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743513,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743514,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743512,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743512,"type":106}
@nix {"action":"start","id":2693975286743515,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743515}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743513,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743514,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743512,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743512,"type":106}
@nix {"action":"stop","id":2693975286743514}
@nix {"action":"stop","id":2693975286743513}
@nix {"action":"stop","id":2693975286743512}
@nix {"action":"start","id":2693975286743516,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743517,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743518,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743517,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743518,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743516,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743516,"type":106}
@nix {"action":"start","id":2693975286743519,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743519}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743517,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743518,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743516,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743516,"type":106}
@nix {"action":"stop","id":2693975286743518}
@nix {"action":"stop","id":2693975286743517}
@nix {"action":"stop","id":2693975286743516}
@nix {"action":"start","id":2693975286743520,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743521,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743522,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743521,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743522,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743520,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743520,"type":106}
@nix {"action":"start","id":2693975286743523,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743523}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743521,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743522,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743520,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743520,"type":106}
@nix {"action":"stop","id":2693975286743522}
@nix {"action":"stop","id":2693975286743521}
@nix {"action":"stop","id":2693975286743520}
@nix {"action":"start","id":2693975286743524,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743525,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743526,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743525,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743526,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743524,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743524,"type":106}
@nix {"action":"start","id":2693975286743527,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743527}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743525,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743526,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743524,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743524,"type":106}
@nix {"action":"stop","id":2693975286743526}
@nix {"action":"stop","id":2693975286743525}
@nix {"action":"stop","id":2693975286743524}
@nix {"action":"start","id":2693975286743528,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743529,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743530,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743529,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743530,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743528,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743528,"type":106}
@nix {"action":"start","id":2693975286743531,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743531}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743529,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743530,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743528,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743528,"type":106}
@nix {"action":"stop","id":2693975286743530}
@nix {"action":"stop","id":2693975286743529}
@nix {"action":"stop","id":2693975286743528}
@nix {"action":"start","id":2693975286743532,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743533,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743534,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743533,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743534,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743532,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743532,"type":106}
@nix {"action":"start","id":2693975286743535,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743535}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743533,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743534,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743532,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743532,"type":106}
@nix {"action":"stop","id":2693975286743534}
@nix {"action":"stop","id":2693975286743533}
@nix {"action":"stop","id":2693975286743532}
@nix {"action":"start","id":2693975286743536,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743537,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743538,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743537,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743538,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743536,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743536,"type":106}
@nix {"action":"start","id":2693975286743539,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743539}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743537,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743538,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743536,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743536,"type":106}
@nix {"action":"stop","id":2693975286743538}
@nix {"action":"stop","id":2693975286743537}
@nix {"action":"stop","id":2693975286743536}
@nix {"action":"start","id":2693975286743540,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743541,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743542,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743541,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743542,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743540,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743540,"type":106}
@nix {"action":"start","id":2693975286743543,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743543}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743541,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743542,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743540,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743540,"type":106}
@nix {"action":"stop","id":2693975286743542}
@nix {"action":"stop","id":2693975286743541}
@nix {"action":"stop","id":2693975286743540}
@nix {"action":"start","id":2693975286743544,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743545,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743546,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743545,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743546,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743544,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743544,"type":106}
@nix {"action":"start","id":2693975286743547,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743547}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743545,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743546,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743544,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743544,"type":106}
@nix {"action":"stop","id":2693975286743546}
@nix {"action":"stop","id":2693975286743545}
@nix {"action":"stop","id":2693975286743544}
@nix {"action":"start","id":2693975286743548,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743549,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743550,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743549,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743550,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743548,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743548,"type":106}
@nix {"action":"start","id":2693975286743551,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743551}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743549,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743550,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743548,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743548,"type":106}
@nix {"action":"stop","id":2693975286743550}
@nix {"action":"stop","id":2693975286743549}
@nix {"action":"stop","id":2693975286743548}
@nix {"action":"start","id":2693975286743552,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743553,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743554,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743553,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743554,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743552,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743552,"type":106}
@nix {"action":"start","id":2693975286743555,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743555}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743553,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743554,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743552,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743552,"type":106}
@nix {"action":"stop","id":2693975286743554}
@nix {"action":"stop","id":2693975286743553}
@nix {"action":"stop","id":2693975286743552}
@nix {"action":"start","id":2693975286743556,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743557,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743558,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743557,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743558,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743556,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743556,"type":106}
@nix {"action":"start","id":2693975286743559,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743559}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743557,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743558,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743556,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743556,"type":106}
@nix {"action":"stop","id":2693975286743558}
@nix {"action":"stop","id":2693975286743557}
@nix {"action":"stop","id":2693975286743556}
@nix {"action":"start","id":2693975286743560,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743561,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743562,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743561,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743562,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743560,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743560,"type":106}
@nix {"action":"start","id":2693975286743563,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743563}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743561,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743562,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743560,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743560,"type":106}
@nix {"action":"stop","id":2693975286743562}
@nix {"action":"stop","id":2693975286743561}
@nix {"action":"stop","id":2693975286743560}
@nix {"action":"start","id":2693975286743564,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743565,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743566,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743565,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743566,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743564,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743564,"type":106}
@nix {"action":"start","id":2693975286743567,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743567}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743565,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743566,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743564,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743564,"type":106}
@nix {"action":"stop","id":2693975286743566}
@nix {"action":"stop","id":2693975286743565}
@nix {"action":"stop","id":2693975286743564}
@nix {"action":"start","id":2693975286743568,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743569,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743570,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743569,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743570,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743568,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743568,"type":106}
@nix {"action":"start","id":2693975286743571,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743571}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743569,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743570,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743568,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743568,"type":106}
@nix {"action":"stop","id":2693975286743570}
@nix {"action":"stop","id":2693975286743569}
@nix {"action":"stop","id":2693975286743568}
@nix {"action":"start","id":2693975286743572,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743573,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743574,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743573,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743574,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743572,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743572,"type":106}
@nix {"action":"start","id":2693975286743575,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743575}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743573,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743574,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743572,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743572,"type":106}
@nix {"action":"stop","id":2693975286743574}
@nix {"action":"stop","id":2693975286743573}
@nix {"action":"stop","id":2693975286743572}
@nix {"action":"start","id":2693975286743576,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743577,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743578,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743577,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743578,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743576,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743576,"type":106}
@nix {"action":"start","id":2693975286743579,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743579}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743577,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743578,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743576,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743576,"type":106}
@nix {"action":"stop","id":2693975286743578}
@nix {"action":"stop","id":2693975286743577}
@nix {"action":"stop","id":2693975286743576}
@nix {"action":"start","id":2693975286743580,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743581,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743582,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743581,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743582,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743580,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743580,"type":106}
@nix {"action":"start","id":2693975286743583,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743583}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743581,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743582,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743580,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743580,"type":106}
@nix {"action":"stop","id":2693975286743582}
@nix {"action":"stop","id":2693975286743581}
@nix {"action":"stop","id":2693975286743580}
@nix {"action":"start","id":2693975286743584,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743585,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743586,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743585,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743586,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743584,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743584,"type":106}
@nix {"action":"start","id":2693975286743587,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743587}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743585,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743586,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743584,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743584,"type":106}
@nix {"action":"stop","id":2693975286743586}
@nix {"action":"stop","id":2693975286743585}
@nix {"action":"stop","id":2693975286743584}
@nix {"action":"start","id":2693975286743588,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743589,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743590,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743589,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743590,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743588,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743588,"type":106}
@nix {"action":"start","id":2693975286743591,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743591}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743589,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743590,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743588,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743588,"type":106}
@nix {"action":"stop","id":2693975286743590}
@nix {"action":"stop","id":2693975286743589}
@nix {"action":"stop","id":2693975286743588}
@nix {"action":"start","id":2693975286743592,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743593,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743594,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743593,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743594,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743592,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743592,"type":106}
@nix {"action":"start","id":2693975286743595,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743595}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743593,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743594,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743592,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743592,"type":106}
@nix {"action":"stop","id":2693975286743594}
@nix {"action":"stop","id":2693975286743593}
@nix {"action":"stop","id":2693975286743592}
@nix {"action":"start","id":2693975286743596,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743597,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743598,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743597,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743598,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743596,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743596,"type":106}
@nix {"action":"start","id":2693975286743599,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743599}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743597,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743598,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743596,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743596,"type":106}
@nix {"action":"stop","id":2693975286743598}
@nix {"action":"stop","id":2693975286743597}
@nix {"action":"stop","id":2693975286743596}
@nix {"action":"start","id":2693975286743600,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743601,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743602,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743601,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743602,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743600,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743600,"type":106}
@nix {"action":"start","id":2693975286743603,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743603}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743601,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743602,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743600,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743600,"type":106}
@nix {"action":"stop","id":2693975286743602}
@nix {"action":"stop","id":2693975286743601}
@nix {"action":"stop","id":2693975286743600}
@nix {"action":"start","id":2693975286743604,"level":0,"parent":0,"text":"","type":102}
@nix {"action":"start","id":2693975286743605,"level":0,"parent":0,"text":"","type":104}
@nix {"action":"start","id":2693975286743606,"level":0,"parent":0,"text":"","type":103}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"start","id":2693975286743607,"level":6,"parent":0,"text":"querying info about missing paths","type":0}
@nix {"action":"stop","id":2693975286743607}
@nix {"action":"result","fields":[0,2,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,3,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,4,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,5,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,6,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,7,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,8,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,7,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,6,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,5,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,4,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,3,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,2,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[0,1,0,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"start","fields":["/nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv","",1,1],"id":2693975286743608,"level":3,"parent":0,"text":"building '/nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv'","type":105}
@nix {"action":"result","fields":[0,1,1,0],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":["Running phase: unpackPhase"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["unpackPhase"],"id":2693975286743608,"type":104}
@nix {"action":"result","fields":["Running phase: patchPhase"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["patchPhase"],"id":2693975286743608,"type":104}
@nix {"action":"result","fields":["Running phase: updateAutotoolsGnuConfigScriptsPhase"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["updateAutotoolsGnuConfigScriptsPhase"],"id":2693975286743608,"type":104}
@nix {"action":"result","fields":["Running phase: configurePhase"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["configurePhase"],"id":2693975286743608,"type":104}
@nix {"action":"result","fields":["no configure script, doing nothing"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["Running phase: buildPhase"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["buildPhase"],"id":2693975286743608,"type":104}
@nix {"action":"result","fields":["\u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["@cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["+++ /nix/store/hz807sjm6hip066qbx4hyjyh7jyz7md8-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["+++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["    0    cargo:rerun-if-changed=build.rs"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["    1    cargo:rustc-check-cfg=cfg(exhaustive)"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["    2    cargo:rustc-check-cfg=cfg(prettyplease_debug)"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["    3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":[">   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m"],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":["Error: \"Command: 'VERSION' on line: '4' not implemented yet!\""],"id":2693975286743608,"type":101}
@nix {"action":"result","fields":[0,0,0,1],"id":2693975286743605,"type":105}
@nix {"action":"result","fields":[0,0,0,0],"id":2693975286743606,"type":105}
@nix {"action":"result","fields":[101,0],"id":2693975286743604,"type":106}
@nix {"action":"result","fields":[100,0],"id":2693975286743604,"type":106}
@nix {"action":"stop","id":2693975286743608}
@nix {"action":"stop","id":2693975286743606}
@nix {"action":"stop","id":2693975286743605}
@nix {"action":"stop","id":2693975286743604}
@nix {"action":"msg","column":null,"file":null,"level":0,"line":null,"msg":"\u001b[31;1merror:\u001b[0m\n       … while calling the '\u001b[35;1mderivationStrict\u001b[0m' builtin\n         \u001b[34;1mat \u001b[35;1m<nix/derivation-internal.nix>:37:12\u001b[0m:\n           36|\n           37|   strict = derivationStrict drvAttrs;\n             |            \u001b[31;1m^\u001b[0m\n           38|\n\n       … while evaluating derivation '\u001b[35;1mcreate-symlinks\u001b[0m'\n         whose name attribute is located at \u001b[35;1m/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/stdenv/generic/make-derivation.nix:480:13\u001b[0m\n\n       … while evaluating attribute '\u001b[35;1mtext\u001b[0m' of derivation '\u001b[35;1mcreate-symlinks\u001b[0m'\n         \u001b[34;1mat \u001b[35;1m/nix/store/5j5y90a6m6jssvg2xybf86xgkjfa4zab-source/pkgs/build-support/trivial-builders/default.nix:129:13\u001b[0m:\n          128|           inherit\n          129|             text\n             |             \u001b[31;1m^\u001b[0m\n          130|             executable\n\n       \u001b[35;1m(stack trace truncated; use '--show-trace' to show the full, detailed trace)\u001b[0m\n\n       \u001b[31;1merror:\u001b[0m builder for '\u001b[35;1m/nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m' failed with exit code 1;\n       last 16 log lines:\n       > Running phase: unpackPhase\n       > Running phase: patchPhase\n       > Running phase: updateAutotoolsGnuConfigScriptsPhase\n       > Running phase: configurePhase\n       > no configure script, doing nothing\n       > Running phase: buildPhase\n       > \u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\n       > @cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }\n       > +++ /nix/store/hz807sjm6hip066qbx4hyjyh7jyz7md8-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build\n       > +++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results\n       >     0    cargo:rerun-if-changed=build.rs\n       >     1    cargo:rustc-check-cfg=cfg(exhaustive)\n       >     2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\n       >     3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\n       > >   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m\n       > Error: \"Command: 'VERSION' on line: '4' not implemented yet!\"\n       For full logs, run:\n         \u001b[1mnix log /nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m","raw_msg":"builder for '\u001b[35;1m/nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m' failed with exit code 1;\nlast 16 log lines:\n> Running phase: unpackPhase\n> Running phase: patchPhase\n> Running phase: updateAutotoolsGnuConfigScriptsPhase\n> Running phase: configurePhase\n> no configure script, doing nothing\n> Running phase: buildPhase\n> \u001b[92mCompiling\u001b[0m prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\n> @cargo { \"type\":0, \"crate_name\":\"prettyplease\", \"id\":\"prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b\" }\n> +++ /nix/store/hz807sjm6hip066qbx4hyjyh7jyz7md8-prettyplease-0_2_37-script_build-dfa7ee66a4655c3f/build_script_build\n> +++ /nix/store/2q06anqfbq2jy1mjaw2qn2zc1cqhx8bg-cargo-build_script_build-parser-0.1.0/bin/cargo-build_script_build-parser /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix/build_script_build.out --out-path /nix/store/932hcsi5fxz5wrpzsy0rb41alsvn6i9i-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b/nix write-results\n>     0    cargo:rerun-if-changed=build.rs\n>     1    cargo:rustc-check-cfg=cfg(exhaustive)\n>     2    cargo:rustc-check-cfg=cfg(prettyplease_debug)\n>     3    cargo:rustc-check-cfg=cfg(prettyplease_debug_indent)\n> >   4    \u001b[31mcargo:VERSION=0.2.37\u001b[0m\n> Error: \"Command: 'VERSION' on line: '4' not implemented yet!\"\nFor full logs, run:\n  \u001b[1mnix log /nix/store/nk9nsywd47s2wh0x5hwr5r52dc8vx0qv-prettyplease-0_2_37-script_build_run-cdb69dfae8683d1b.drv\u001b[0m"}