-
Notifications
You must be signed in to change notification settings - Fork 0
/
stam.cast
15194 lines (15194 loc) Β· 446 KB
/
stam.cast
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
{"version": 2, "width": 240, "height": 52, "timestamp": 1716805697, "idle_time_limit": 1.0, "env": {"SHELL": "/bin/zsh", "TERM": "tmux-256color"}, "title": "stam.sh"}
[0.003215, "o", "\r\n"]
[0.004128, "o", " ____ _____ _ __ __ ___ \r\n / ___|_ _|/ \\ | \\/ | ( _ ) \r\n \\___ \\ | | / _ \\ | |\\/| | / _ \\/\\\r\n ___) || |/ ___ \\| | | | | (_> <\r\n |____/ |_/_/ \\_\\_| |_| \\___/\\/\r\n \r\n ____ _____ _ __ __ _ _ \r\n / ___|_ _|/ \\ | \\/ | | |_ ___ ___ | |___ \r\n \\___ \\ | | / _ \\ | |\\/| |_____| __/ _ \\ / _ \\| / __|\r\n ___) || |/ ___ \\| | | |_____| || (_) | (_) | \\__ \\\r\n |____/ |_/_/ \\_\\_| |_| \\__\\___/ \\___/|_|___/\r\n"]
[0.004186, "o", " \r\n"]
[0.004283, "o", "\r\n"]
[0.004307, "o", " https://annotation.github.io/stam\r\n"]
[0.004327, "o", " https://github.com/annotation/stam-tools\r\n\r\n"]
[0.011895, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mSTAM is a data model for stand-off annotation on text.\u001b[0m\u001b[0m\r\n"]
[0.012736, "o", "\rπ 4s"]
[1.013736, "o", "\rπ 3s"]
[2.015291, "o", "\rπ 2s"]
[3.016419, "o", "\rπ 1s"]
[4.017454, "o", "\r \r"]
[4.025042, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mIt comes with practical tooling to deal with annotations,\u001b[0m\u001b[0m\r\n"]
[4.026367, "o", "\rπ 4s"]
[5.027448, "o", "\rπ 3s"]
[6.028895, "o", "\rπ 2s"]
[7.029857, "o", "\rπ 1s"]
[8.030863, "o", "\r \r"]
[8.038265, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199msuch as programming libraries for Rust and Python, as well a set of command-line tools.\u001b[0m\u001b[0m\r\n"]
[8.039274, "o", "\rπ 4s"]
[9.040887, "o", "\rπ 3s"]
[10.042232, "o", "\rπ 2s"]
[11.043503, "o", "\rπ 1s"]
[12.044406, "o", "\r \r"]
[12.052116, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mThis demo will show the latter. See \u001b[0m\u001b[38;2;251;241;199mhttps://annotation.github.io\u001b[0m\u001b[38;2;251;241;199m/stam\u001b[0m\u001b[38;2;251;241;199m for more.\u001b[0m\u001b[0m\r\n"]
[12.052997, "o", "\rπ 4s"]
[13.053969, "o", "\rπ 3s"]
[14.055411, "o", "\rπ 2s"]
[15.056463, "o", "\rπ 1s"]
[16.057734, "o", "\r \r\r\n"]
[16.066007, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mFirst we install stam-tools using Rust's package manager \u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;250;189;47mcargo\u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;251;241;199m:\u001b[0m\u001b[0m\r\n"]
[16.066842, "o", "\rπ 4s"]
[17.0677, "o", "\rπ 3s"]
[18.068862, "o", "\rπ 2s"]
[19.070339, "o", "\rπ 1s"]
[20.071534, "o", "\r \r\r\n"]
[20.071585, "o", "\u001b[33;1m$\u001b[0m "]
[21.079364, "o", "\u001b"]
[21.105296, "o", "["]
[21.131121, "o", "3"]
[21.157011, "o", "8"]
[21.183183, "o", ";"]
[21.209319, "o", "2"]
[21.235324, "o", ";"]
[21.261256, "o", "1"]
[21.28718, "o", "4"]
[21.313021, "o", "2"]
[21.338973, "o", ";"]
[21.364674, "o", "1"]
[21.390446, "o", "9"]
[21.416181, "o", "2"]
[21.442018, "o", ";"]
[21.467752, "o", "1"]
[21.493421, "o", "2"]
[21.519492, "o", "4"]
[21.545675, "o", "m"]
[21.571891, "o", "c"]
[21.597731, "o", "a"]
[21.623549, "o", "r"]
[21.649493, "o", "g"]
[21.675256, "o", "o"]
[21.701043, "o", "\u001b"]
[21.726722, "o", "["]
[21.752603, "o", "0"]
[21.778434, "o", "m"]
[21.804424, "o", "\u001b"]
[21.830315, "o", "["]
[21.856402, "o", "3"]
[21.882474, "o", "8"]
[21.908574, "o", ";"]
[21.934552, "o", "2"]
[21.960497, "o", ";"]
[21.986487, "o", "2"]
[22.01273, "o", "5"]
[22.038986, "o", "1"]
[22.064927, "o", ";"]
[22.09082, "o", "2"]
[22.116868, "o", "4"]
[22.143089, "o", "1"]
[22.169192, "o", ";"]
[22.195256, "o", "1"]
[22.221222, "o", "9"]
[22.247193, "o", "9"]
[22.273055, "o", "m"]
[22.298913, "o", " "]
[22.324764, "o", "i"]
[22.350735, "o", "n"]
[22.376613, "o", "s"]
[22.40242, "o", "t"]
[22.428086, "o", "a"]
[22.453981, "o", "l"]
[22.479949, "o", "l"]
[22.506421, "o", " "]
[22.532596, "o", "s"]
[22.559009, "o", "t"]
[22.584922, "o", "a"]
[22.610895, "o", "m"]
[22.637022, "o", "-"]
[22.66297, "o", "t"]
[22.689091, "o", "o"]
[22.714833, "o", "o"]
[22.740724, "o", "l"]
[22.766717, "o", "s"]
[22.792602, "o", "\u001b"]
[22.818443, "o", "["]
[22.845039, "o", "0"]
[22.871092, "o", "m"]
[23.898294, "o", "\u001b[0m\r\n"]
[23.916573, "o", "\u001b[1m\u001b[32m Updating\u001b[0m crates.io index\r\n"]
[23.992013, "o", "\u001b[1m\u001b[36m Downloading\u001b[0m 1 crate \r"]
[24.062105, "o", "\u001b[K\u001b[1m\u001b[32m Downloaded\u001b[0m stam-tools v0.7.2\r\n\u001b[1m\u001b[36m Downloading\u001b[0m 0 crates \r"]
[24.064333, "o", "\u001b[K\u001b[1m\u001b[32m Downloaded\u001b[0m 1 crate (82.7 KB) in 0.07s\r\n"]
[24.088637, "o", "\u001b[1m\u001b[32m Installing\u001b[0m stam-tools v0.7.2\r\n"]
[24.107507, "o", "\u001b[1m\u001b[32m Updating\u001b[0m crates.io index\r\n"]
[24.755282, "o", "\u001b[1m\u001b[36m Fetch\u001b[0m [===========> ] 7 complete; 2 pending \r"]
[25.414284, "o", "\u001b[1m\u001b[36m Fetch\u001b[0m [=================> ] 53 complete; 2 pending \r"]
[26.051421, "o", "\u001b[1m\u001b[36m Fetch\u001b[0m [====================> ] 78 complete; 1 pending \r"]
[26.697551, "o", "\u001b[1m\u001b[36m Fetch\u001b[0m [=======================> ] 98 complete; 1 pending \r"]
[26.732071, "o", "\u001b[1m\u001b[36m Downloading\u001b[0m 1 crate \r"]
[26.778817, "o", "\u001b[K\u001b[1m\u001b[32m Downloaded\u001b[0m stam v0.14.1\r\n\u001b[1m\u001b[36m Downloading\u001b[0m 0 crates \r"]
[26.783431, "o", "\u001b[K\u001b[1m\u001b[32m Downloaded\u001b[0m 1 crate (208.1 KB) in 0.05s\r\n"]
[26.817973, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m proc-macro2 v1.0.84\r\n\u001b[1m\u001b[32m Compiling\u001b[0m unicode-ident v1.0.12\r\n"]
[26.818011, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m libc v0.2.155\r\n"]
[26.818039, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m serde v1.0.203\r\n"]
[26.818173, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m cfg-if v1.0.0\r\n\u001b[1m\u001b[32m Compiling\u001b[0m autocfg v1.3.0\r\n"]
[26.81899, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m typenum v1.17.0\r\n"]
[26.819498, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m version_check v0.9.4\r\n"]
[26.821377, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m crossbeam-utils v0.8.20\r\n"]
[26.822003, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m memchr v2.7.2\r\n"]
[26.823479, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m syn v1.0.109\r\n"]
[26.824403, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m rustix v0.38.34\r\n"]
[26.825455, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m rayon-core v1.12.1\r\n"]
[26.825525, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m ppv-lite86 v0.2.17\r\n"]
[26.82688, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m itoa v1.0.11\r\n"]
[26.827577, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m minicbor v0.24.0\r\n"]
[26.827717, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m bitflags v2.5.0\r\n"]
[26.829717, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m linux-raw-sys v0.4.14\r\n"]
[26.831887, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m equivalent v1.0.1\r\n"]
[26.835842, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m hashbrown v0.14.5\r\n"]
[26.839124, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m regex-syntax v0.8.3\r\n"]
[26.839185, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m ryu v1.0.18\r\n"]
[26.839271, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m serde_json v1.0.117\r\n"]
[26.84117, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m iana-time-zone v0.1.60\r\n"]
[26.841231, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m smallvec v1.13.2\r\n"]
[26.845752, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m heck v0.4.1\r\n"]
[26.8459, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m fastrand v2.1.0\r\n"]
[26.84996, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m cpufeatures v0.2.12\r\n"]
[26.854767, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m winnow v0.6.8\r\n"]
[26.857383, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m either v1.12.0\r\n"]
[26.859503, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m hashbrown v0.12.3\r\n"]
[26.859644, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m bitflags v1.3.2\r\n"]
[26.870353, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m os_str_bytes v6.6.1\r\n"]
[26.871017, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m textwrap v0.16.1\r\n"]
[26.872513, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m base16ct v0.2.0\r\n"]
[26.874797, "o", "\u001b[1m\u001b[36m Building\u001b[0m [ ] 3/110: autocfg, cpufeatures, itoa, linux-raw-sys, smallvec, either, proc-macro2(build.rs), bitflags, base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, r...\r"]
[26.899146, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m utf8-width v0.1.7\r\n"]
[26.899211, "o", "\u001b[1m\u001b[36m Building\u001b[0m [ ] 4/110: autocfg, itoa, linux-raw-sys, smallvec, either, proc-macro2(build.rs), bitflags, base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, rustix(build.r...\r"]
[26.913902, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m termcolor v1.4.1\r\n"]
[26.914723, "o", "\u001b[1m\u001b[36m Building\u001b[0m [> ] 5/110: autocfg, itoa, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, rustix(build.rs), bitfla...\r"]
[26.915139, "o", "\u001b[K"]
[26.917424, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m strsim v0.10.0"]
[26.917608, "o", "\r\n"]
[26.917978, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[26.91814, "o", "[> ] 6/110: autocfg, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, rustix(build.rs), bitflags, li...\r"]
[26.921646, "o", "\u001b[1m\u001b[36m Building\u001b[0m [> ] 7/110: autocfg, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, rustix(build.rs), bitflags, li...\r"]
[26.928114, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m roxmltree v0.20.0\r\n"]
[26.929083, "o", "\u001b[1m\u001b[36m Building\u001b[0m [> ] 8/110: autocfg, roxmltree, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, fastrand, ppv-lite86, rustix(build.rs), b...\r"]
[26.949253, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m html-escape v0.2.13\r\n\u001b[1m\u001b[36m Building\u001b[0m [=> ] 9/110: autocfg, roxmltree, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, serde_json(build.rs), typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix...\r"]
[26.955872, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=> ] 11/110: autocfg, roxmltree, serde_json(build), linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(bu...\r"]
[26.961609, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=> ] 12/110: autocfg, roxmltree, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, ...\r\u001b[1m\u001b[36m Building\u001b[0m [==> ] 13/110: autocfg, roxmltree, linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, ...\r"]
[26.98902, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==> ] 14/110: autocfg, roxmltree, serde(build), linux-raw-sys, smallvec, either, proc-macro2(build.rs), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.r...\r"]
[27.005331, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==> ] 15/110: autocfg, roxmltree, serde(build), linux-raw-sys, smallvec, proc-macro2(build.rs), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.rs), bitf...\r"]
[27.010911, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==> ] 16/110: autocfg, roxmltree, serde(build), linux-raw-sys, smallvec, proc-macro2(build), base16ct, hashbrown, typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflag...\r"]
[27.013789, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===> ] 17/110: autocfg, roxmltree, serde(build), linux-raw-sys, smallvec, proc-macro2(build), base16ct, hashbrown, syn(build), typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build....\r"]
[27.016462, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===> ] 18/110: autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), base16ct, hashbrown, syn(build), typenum(build.rs), heck, html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags,...\r"]
[27.017868, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===> ] 19/110: autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), base16ct, hashbrown, syn(build), typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(...\r"]
[27.032647, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m generic-array v0.14.7\r\n"]
[27.033204, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===> ] 21/110: autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, syn(build), typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build.rs),...\r"]
[27.037356, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.037533, "o", "[====> ] 22/110: autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build.rs), hashbrown, ...\r"]
[27.039038, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.039685, "o", "[====> ] 23/110: autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build.rs), hashbrown, ..."]
[27.039818, "o", "\r"]
[27.042589, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.042794, "o", "[====> ] 24/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build..."]
[27.045046, "o", "\r"]
[27.045853, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m clap_lex v0.2.4\r\n\u001b[1m\u001b[36m Building\u001b[0m "]
[27.048707, "o", "[====> ] 24/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build...\r"]
[27.049584, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====> ] 25/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), bitflags, libc(build...\r"]
[27.054976, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====> ] 26/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, smallvec, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), libc(build), hashbro...\r"]
[27.06685, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====> ] 27/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, proc-macro2(build), hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), libc(build), hashbrown, ryu, i...\r"]
[27.067365, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====> ] 28/110: crossbeam-utils, autocfg, roxmltree, linux-raw-sys, hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, rustix(build.rs), libc(build), hashbrown, proc-macro2, ryu, iana-tim..."]
[27.06744, "o", "\r"]
[27.08175, "o", "\u001b[K"]
[27.085949, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m num-traits v0.2.19\r\n"]
[27.086406, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======> ] 31/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, hashbrown, proc-macro2, ryu, rustix(build), iana-time-zone, winnow, num...\r"]
[27.095138, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m indexmap v1.9.3\r\n"]
[27.095445, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======> ] 31/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, fastrand, ppv-lite86, hashbrown, proc-macro2, ryu, rustix(build), iana-time-zone, winnow, num...\r"]
[27.106186, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======> ] 32/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, ppv-lite86, hashbrown, proc-macro2, ryu, rustix(build), iana-time-zone, winnow, num-traits(bu...\r"]
[27.108522, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.108658, "o", "[======> ] 33/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, ppv-lite86, hashbrown, proc-macro2, ryu, rustix(build), iana-time-zone, winnow, num-traits(bu...\r"]
[27.117357, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======> ] 34/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, ppv-lite86, hashbrown, proc-macro2, rustix(build), iana-time-zone, winnow, num-traits(build.r...\r"]
[27.127594, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======> ] 35/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, typenum(build.rs), html-escape, ppv-lite86, hashbrown, proc-macro2, iana-time-zone, winnow, num-traits(build.rs), textwrap, c...\r"]
[27.134085, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.134231, "o", "[=======> ] 36/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, html-escape, ppv-lite86, hashbrown, proc-macro2, iana-time-zone, winnow, num-traits(build.rs), textwrap, clap_lex, regex-synt...\r"]
[27.139422, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======> ] 37/110: crossbeam-utils, roxmltree, generic-array(build), linux-raw-sys, libc, hashbrown, html-escape, ppv-lite86, hashbrown, proc-macro2, iana-time-zone, winnow, num-traits(build.rs), textwrap...\r"]
[27.14501, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======> ] 38/110: crossbeam-utils, roxmltree, generic-array(build), linux-raw-sys, libc, hashbrown, html-escape, ppv-lite86, hashbrown, proc-macro2, winnow, num-traits(build.rs), textwrap, clap_lex, rege...\r"]
[27.160065, "o", "\u001b[1m\u001b[36m Building\u001b[0m [========> ] 39/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, html-escape, ppv-lite86, hashbrown, proc-macro2, winnow, num-traits(build.rs), textwrap, clap_lex, regex-syntax, termcolor, s...\r"]
[27.168869, "o", "\u001b[1m\u001b[36m Building\u001b[0m [========> ] 40/110: crossbeam-utils, roxmltree, linux-raw-sys, libc, hashbrown, html-escape, hashbrown, proc-macro2, winnow, num-traits(build.rs), textwrap, clap_lex, regex-syntax, termcolor, strsim, typen...\r"]
[27.171926, "o", "\u001b[1m\u001b[36m Building\u001b[0m [========> ] 41/110: crossbeam-utils, roxmltree, linux-raw-sys, num-traits(build), libc, hashbrown, html-escape, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, typenum(...\r"]
[27.17207, "o", "\u001b[1m\u001b[36m Building\u001b[0m [========> ] 41/110: crossbeam-utils, roxmltree, linux-raw-sys, num-traits(build), libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, ...\r"]
[27.175507, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.175538, "o", "[========> ] 42/110: crossbeam-utils, roxmltree, typenum, linux-raw-sys, num-traits(build), libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor,...\r"]
[27.185671, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=========> ] 43/110: crossbeam-utils, roxmltree, typenum, num-traits(build), libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, memchr...\r"]
[27.196116, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=========> ] 44/110: crossbeam-utils, roxmltree, indexmap(build), typenum, num-traits(build), libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolo...\r"]
[27.199112, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=========> ] 45/110: crossbeam-utils, roxmltree, typenum, num-traits(build), libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, memchr \r"]
[27.226473, "o", "\u001b[1m\u001b[36m Building\u001b[0m "]
[27.228155, "o", "[=========> ] 46/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, memchr \r"]
[27.2391, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m aho-corasick v1.1.3\r\n\u001b[1m\u001b[36m Building\u001b[0m [=========> ] 46/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, aho-corasick,...\r"]
[27.245334, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m csv-core v0.1.11\r\n\u001b[1m\u001b[36m Building\u001b[0m [=========> ] 46/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, textwrap, clap_lex, regex-syntax, termcolor, strsim, aho...\r"]
[27.281472, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 47/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, textwrap, regex-syntax, termcolor, strsim, aho-corasick,...\r"]
[27.296202, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 48/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, regex-syntax, termcolor, strsim, aho-corasick, memchr \r"]
[27.307499, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 49/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, regex-syntax, strsim, aho-corasick, memchr \r"]
[27.363819, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 49/110: crossbeam-utils, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, indexmap, regex-syntax, strsim, aho-corasick, memchr \r"]
[27.369781, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m quote v1.0.36\r\n"]
[27.36983, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 49/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, hashbrown, proc-macro2, winnow, indexmap, regex-syntax, strsim, aho-corasick, memchr\r"]
[27.376988, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==========> ] 50/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, proc-macro2, winnow, indexmap, regex-syntax, strsim, aho-corasick, memchr \r"]
[27.38986, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 51/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, proc-macro2, winnow, indexmap, regex-syntax, aho-corasick, memchr \r"]
[27.395618, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m crossbeam-epoch v0.9.18\r\n"]
[27.395678, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 51/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, proc-macro2, crossbeam-epoch, winnow, indexmap, regex-syntax, aho-corasick, memchr \r"]
[27.432645, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m indexmap v2.2.6\r\n"]
[27.432779, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 51/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, proc-macro2, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, aho-coras...\r"]
[27.453825, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 52/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, hashbrown, html-escape, rustix, csv-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, aho-corasick, memchr \r"]
[27.458983, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 53/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, html-escape, rustix, csv-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, aho-corasick, memchr \r"]
[27.475664, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m getrandom v0.2.15\r\n"]
[27.475711, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m memmap2 v0.5.10\r\n\u001b[1m\u001b[32m Compiling\u001b[0m atty v0.2.14\r\n"]
[27.475838, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 53/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, html-escape, rustix, getrandom, csv-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, aho-corasick, memmap2,...\r"]
[27.480622, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 54/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, aho-corasick, memmap2, memchr, atty\r"]
[27.490144, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m syn v2.0.66\r\n"]
[27.490428, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===========> ] 54/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, libc, syn, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2,...\r"]
[27.495018, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 55/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, syn, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, memch...\r"]
[27.513893, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 56/110: crossbeam-utils, quote, roxmltree, num-traits, typenum, syn, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, memchr \r"]
[27.524808, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 57/110: quote, roxmltree, num-traits, typenum, syn, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, memchr \r"]
[27.54741, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 58/110: roxmltree, num-traits, typenum, syn, html-escape, rustix, getrandom, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, memchr \r"]
[27.554998, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m crossbeam-deque v0.8.5\r\n"]
[27.555114, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 58/110: roxmltree, num-traits, typenum, syn, html-escape, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, memchr \r"]
[27.560897, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m rand_core v0.6.4\r\n\u001b[1m\u001b[32m Compiling\u001b[0m uuid v1.8.0\r\n"]
[27.561034, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 58/110: roxmltree, uuid, num-traits, typenum, rand_core, syn, html-escape, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memm...\r"]
[27.564883, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 58/110: roxmltree, uuid, num-traits, typenum, rand_core, generic-array, syn, html-escape, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho...\r"]
[27.574648, "o", "\u001b[1m\u001b[36m Building\u001b[0m [============> ] 59/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, html-escape, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick...\r"]
[27.593682, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 60/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2, me...\r"]
[27.606945, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 61/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, rustix, getrandom, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2 \r"]
[27.620354, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 62/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, rustix, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2 \r"]
[27.639101, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m clap v3.2.25\r\n"]
[27.639142, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 62/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick, memmap2 \r"]
[27.640813, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 63/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, crossbeam-deque, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick \r"]
[27.649815, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=============> ] 63/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, crossbeam-deque, rayon-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick \r"]
[27.655846, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 64/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, rayon-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, aho-corasick \r"]
[27.65905, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m rand_chacha v0.3.1\r\n"]
[27.65913, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 64/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, rayon-core, crossbeam-epoch, winnow, indexmap, indexmap, regex-syntax, syn, rand_chacha, aho-corasick \r"]
[27.661754, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 65/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, rayon-core, crossbeam-epoch, winnow, indexmap, regex-syntax, syn, rand_chacha, aho-corasick \r"]
[27.6731, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 66/110: roxmltree, uuid, num-traits, rand_core, generic-array, syn, clap, rustix, rayon-core, winnow, indexmap, regex-syntax, syn, rand_chacha, aho-corasick \r"]
[27.70995, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 67/110: roxmltree, uuid, num-traits, generic-array, syn, clap, rustix, rayon-core, winnow, indexmap, regex-syntax, syn, rand_chacha, aho-corasick \r"]
[27.772568, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m rand v0.8.5\r\n"]
[27.772705, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==============> ] 67/110: roxmltree, uuid, num-traits, generic-array, syn, clap, rustix, rayon-core, winnow, indexmap, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.830907, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===============> ] 68/110: roxmltree, uuid, generic-array, syn, clap, rustix, rayon-core, winnow, indexmap, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.838359, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===============> ] 69/110: roxmltree, generic-array, syn, clap, rustix, rayon-core, winnow, indexmap, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.901958, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m crypto-common v0.1.6\r\n\u001b[1m\u001b[32m Compiling\u001b[0m block-buffer v0.10.4\r\n"]
[27.902093, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===============> ] 69/110: roxmltree, generic-array, syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, indexmap, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.909388, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===============> ] 70/110: roxmltree, generic-array, syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.913175, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===============> ] 71/110: roxmltree, syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.947437, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 72/110: syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.953771, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m rayon v1.10.0\r\n"]
[27.953866, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 72/110: rayon, syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.957669, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m digest v0.10.7\r\n"]
[27.957734, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 72/110: digest, rayon, syn, crypto-common, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.959632, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 73/110: digest, rayon, syn, clap, rustix, rayon-core, block-buffer, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[27.966085, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 74/110: digest, rayon, syn, clap, rustix, rayon-core, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[28.081476, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m sha1 v0.10.6\r\n"]
[28.081612, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 74/110: sha1, digest, rayon, syn, clap, rustix, rayon-core, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[28.090586, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 75/110: sha1, rayon, syn, clap, rustix, rayon-core, winnow, regex-syntax, rand, syn, rand_chacha, aho-corasick \r"]
[28.140626, "o", "\u001b[1m\u001b[36m Building\u001b[0m [================> ] 76/110: sha1, rayon, syn, clap, rustix, rayon-core, winnow, regex-syntax, rand, syn, aho-corasick \r"]
[28.218181, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 77/110: sha1, rayon, syn, clap, rustix, rayon-core, regex-syntax, rand, syn, aho-corasick \r"]
[28.219251, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m tempfile v3.10.1\r\n"]
[28.219303, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 77/110: sha1, rayon, syn, clap, rustix, rayon-core, tempfile, regex-syntax, rand, syn, aho-corasick \r"]
[28.229691, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m nanoid v0.4.0\r\n"]
[28.229745, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 77/110: sha1, nanoid, rayon, syn, clap, rustix, rayon-core, tempfile, regex-syntax, rand, syn, aho-corasick \r"]
[28.267914, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 78/110: sha1, nanoid, rayon, syn, clap, rustix, tempfile, regex-syntax, rand, syn, aho-corasick \r"]
[28.290843, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m regex-automata v0.4.6\r\n"]
[28.290881, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 78/110: sha1, nanoid, rayon, syn, clap, rustix, tempfile, regex-automata, regex-syntax, rand, syn, aho-corasick \r"]
[28.306536, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 79/110: nanoid, rayon, syn, clap, rustix, tempfile, regex-automata, regex-syntax, rand, syn, aho-corasick \r"]
[28.310858, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 80/110: nanoid, rayon, syn, clap, rustix, tempfile, regex-automata, regex-syntax, syn, aho-corasick \r"]
[28.325508, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m seal v0.1.5\r\n\u001b[1m\u001b[36m Building\u001b[0m [=================> ] 80/110: nanoid, rayon, syn, clap, rustix, tempfile, regex-automata, regex-syntax, syn, aho-corasick, seal \r"]
[28.330896, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==================> ] 81/110: rayon, syn, clap, rustix, tempfile, regex-automata, regex-syntax, syn, aho-corasick, seal \r"]
[28.468469, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==================> ] 82/110: rayon, syn, clap, rustix, regex-automata, regex-syntax, syn, aho-corasick, seal \r"]
[28.556133, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==================> ] 83/110: rayon, syn, clap, rustix, regex-automata, regex-syntax, syn, aho-corasick \r"]
[28.818507, "o", "\u001b[1m\u001b[36m Building\u001b[0m [==================> ] 84/110: rayon, syn, clap, regex-automata, regex-syntax, syn, aho-corasick "]
[28.818674, "o", "\r"]
[29.383643, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===================> ] 85/110: rayon, syn, clap, regex-automata, syn, aho-corasick \r"]
[29.442953, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===================> ] 86/110: syn, clap, regex-automata, syn, aho-corasick "]
[29.443187, "o", "\r"]
[29.514535, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m datasize_derive v0.2.15\r\n"]
[29.514676, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===================> ] 87/110: syn, clap, regex-automata, aho-corasick, datasize_derive \r"]
[29.606835, "o", "\u001b[1m\u001b[36m Building\u001b[0m [===================> ] 88/110: syn, clap, regex-automata, datasize_derive \r"]
[29.665785, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m serde_derive v1.0.203\r\n"]
[29.665865, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m minicbor-derive v0.15.0\r\n\u001b[1m\u001b[32m Compiling\u001b[0m sealed v0.5.0\r\n\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 89/110: sealed, clap, minicbor-derive, regex-automata, datasize_derive, serde_derive \r"]
[29.699266, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m regex v1.10.4\r\n"]
[29.699361, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 89/110: sealed, clap, minicbor-derive, regex, regex-automata, datasize_derive, serde_derive \r"]
[29.74917, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m datasize v0.2.15\r\n"]
[29.749286, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 90/110: sealed, clap, minicbor-derive, regex, regex-automata, datasize, serde_derive \r"]
[29.817726, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 91/110: sealed, clap, minicbor-derive, regex, regex-automata, serde_derive \r"]
[29.874318, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 92/110: clap, minicbor-derive, regex, regex-automata, serde_derive \r"]
[30.287486, "o", "\u001b[1m\u001b[36m Building\u001b[0m [====================> ] 93/110: clap, minicbor-derive, regex-automata, serde_derive \r"]
[30.451835, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 94/110: minicbor, clap, regex-automata, serde_derive \r"]
[30.625861, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 95/110: minicbor, regex-automata, serde_derive \r"]
[31.071998, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 96/110: minicbor, regex-automata, serde \r"]
[31.29056, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 97/110: regex-automata, serde \r"]
[31.988985, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 98/110: serde \r"]
[32.445723, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m serde_spanned v0.6.6\r\n\u001b[1m\u001b[32m Compiling\u001b[0m toml_datetime v0.6.6\r\n"]
[32.445774, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m serde_path_to_error v0.1.16\r\n\u001b[1m\u001b[32m Compiling\u001b[0m csv v1.3.0\r\n"]
[32.445929, "o", "\u001b[1m\u001b[32m Compiling\u001b[0m chrono v0.4.38\r\n"]
[32.44596, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 98/110: toml_datetime, serde_json, csv, chrono, serde_spanned, serde, serde_path_to_error \r"]
[32.494222, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 99/110: toml_datetime, serde_json, csv, chrono, serde, serde_path_to_error \r"]
[32.507911, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m toml_edit v0.22.13\r\n\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 99/110: toml_datetime, serde_json, csv, chrono, serde, serde_path_to_error, toml_edit \r"]
[32.526486, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 100/110: toml_datetime, serde_json, csv, chrono, serde_path_to_error, toml_edit \r"]
[32.60784, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=====================> ] 101/110: serde_json, csv, chrono, serde_path_to_error, toml_edit \r"]
[32.693137, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 102/110: serde_json, csv, chrono, toml_edit \r"]
[32.774351, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 103/110: serde_json, chrono, toml_edit \r"]
[33.069971, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m stam v0.14.1\r\n\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 103/110: stam, serde_json, chrono, toml_edit \r"]
[33.258861, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 104/110: stam, chrono, toml_edit \r"]
[33.4101, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 105/110: stam, toml_edit \r"]
[33.427603, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m toml v0.8.13\r\n"]
[33.427635, "o", "\u001b[1m\u001b[36m Building\u001b[0m [======================> ] 105/110: stam, toml, toml_edit \r"]
[34.189522, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======================> ] 106/110: stam, toml_edit \r"]
[34.700767, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======================> ] 107/110: stam \r"]
[35.624396, "o", "\u001b[K\u001b[1m\u001b[32m Compiling\u001b[0m stam-tools v0.7.2\r\n\u001b[1m\u001b[36m Building\u001b[0m [=======================> ] 107/110: stam, stam-tools \r"]
[37.60278, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======================> ] 108/110: stam \r"]
[39.266597, "o", "\u001b[1m\u001b[36m Building\u001b[0m [=======================> ] 109/110: stam(bin) \r"]
[40.987313, "o", "\u001b[K\u001b[1m\u001b[32m Finished\u001b[0m `release` profile [optimized] target(s) in 17.08s\r\n"]
[40.999696, "o", "\u001b[1m\u001b[32m Replacing\u001b[0m /home/proycon/.cargo/bin/stam\r\n"]
[41.001828, "o", "\u001b[1m\u001b[32m Replaced\u001b[0m package `stam-tools v0.7.1` with `stam-tools v0.7.2` (executable `stam`)\r\n"]
[41.028292, "o", "\r\n"]
[41.036298, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mThis provides us with the \u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;250;189;47mstam\u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;251;241;199m tool which offers a wide variety of subcommands we will go through in this tutorial\u001b[0m\u001b[0m\r\n"]
[41.036923, "o", "\rπ 10s"]
[42.037932, "o", "\rπ 9s"]
[43.039284, "o", "\rπ 8s"]
[44.040636, "o", "\rπ 7s"]
[45.041987, "o", "\rπ 6s"]
[46.043324, "o", "\rπ 5s"]
[47.044405, "o", "\rπ 4s"]
[48.045911, "o", "\rπ 3s"]
[49.047214, "o", "\rπ 2s"]
[50.0485, "o", "\rπ 1s"]
[51.04964, "o", "\r \r\r\n"]
[51.049686, "o", "\u001b[33;1m$\u001b[0m "]
[52.05777, "o", "\u001b"]
[52.084062, "o", "["]
[52.110551, "o", "3"]
[52.136839, "o", "8"]
[52.163363, "o", ";"]
[52.189597, "o", "2"]
[52.21578, "o", ";"]
[52.242232, "o", "1"]
[52.268682, "o", "4"]
[52.295221, "o", "2"]
[52.321346, "o", ";"]
[52.347644, "o", "1"]
[52.373852, "o", "9"]
[52.399982, "o", "2"]
[52.426009, "o", ";"]
[52.452246, "o", "1"]
[52.478812, "o", "2"]
[52.505332, "o", "4"]
[52.531587, "o", "m"]
[52.557847, "o", "s"]
[52.584106, "o", "t"]
[52.61048, "o", "a"]
[52.636868, "o", "m"]
[52.662867, "o", "\u001b"]
[52.689516, "o", "["]
[52.715648, "o", "0"]
[52.742111, "o", "m"]
[52.768503, "o", "\u001b"]
[52.795142, "o", "["]
[52.821326, "o", "3"]
[52.847471, "o", "8"]
[52.873763, "o", ";"]
[52.899855, "o", "2"]
[52.926157, "o", ";"]
[52.952333, "o", "2"]
[52.978883, "o", "5"]
[53.005001, "o", "1"]
[53.031298, "o", ";"]
[53.057613, "o", "2"]
[53.083879, "o", "4"]
[53.110126, "o", "1"]
[53.136294, "o", ";"]
[53.163076, "o", "1"]
[53.189607, "o", "9"]
[53.215801, "o", "9"]
[53.242252, "o", "m"]
[53.268754, "o", " "]
[53.29534, "o", "h"]
[53.32185, "o", "e"]
[53.348021, "o", "l"]
[53.374375, "o", "p"]
[53.400499, "o", "\u001b"]
[53.42706, "o", "["]
[53.453552, "o", "0"]
[53.47993, "o", "m"]
[54.50757, "o", "\u001b[0m\r\n"]
[54.509367, "o", "\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[32mSTAM Tools\u001b[0m\u001b[0m \u001b[0m\u001b[0m0.7.2\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0mMaarten van Gompel (proycon) <[email protected]>, KNAW Humanities Cluster\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m\u001b[0m\u001b[0mCLI tool to work with standoff text annotation (STAM)\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m\u001b[33mUSAGE:\u001b[0m\u001b[0m\r\n \u001b[0m\u001b[0mstam [SUBCOMMAND]\u001b[0m\u001b[0m\r\n\r\n\u001b[0m\u001b[0m\u001b[33mOPTIONS:\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32m-h\u001b[0m\u001b[0m, \u001b[0m\u001b[0m\u001b[32m--help\u001b[0m\u001b[0m \u001b[0m\u001b[0mPrint help information\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32m-V\u001b[0m\u001b[0m, \u001b[0m\u001b[0m\u001b[32m--version\u001b[0m\u001b[0m \u001b[0m\u001b[0mPrint version information\u001b[0m\u001b[0m\r\n\r\n\u001b[0m\u001b[0m\u001b[33mSUBCOMMANDS\u001b[0m\u001b[0m\u001b[33m:\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32malign\u001b[0m\u001b[0m \u001b[0m\u001b[0mAligns two (or more) texts; computes a transposition annotation that maps the\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mtwo (See\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mhttps://github.com/annotation/stam/tree/master/extensions/stam-transpose) and\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0madds it to the store. The texts are retrieved from the first two queries\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m(--query) or (as a shortcut) from the first two --resource parameters. In\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m--verbose mode, the alignments will be outputted to standard output as tab\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mseparated values with the follows columns: resource 1, offset 1, resource 2,\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0moffset 2, text 1, text 2\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mannotate\u001b[0m\u001b[0m \u001b[0m\u001b[0mAdd annotations (or datasets, resources) to an existing annotationstore\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m[aliases: add]\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mbatch\u001b[0m\u001b[0m \u001b[0m\u001b[0mBatch mode, reads multiple STAM subcommands from standard input (or\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0minteractively). Loading takes place at the very beginning, and saving is\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mdeferred to the very end. [aliases: shell]\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mexport\u001b[0m\u001b[0m \u001b[0m\u001b[0mExport annotations (or other data structures) as tabular data to a TSV format.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mIf --verbose is set, a tree-like structure is expressed in which the order of\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mrows matters.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mfromxml\u001b[0m\u001b[0m \u001b[0m\u001b[0mConvert an XML file with inline annotations to STAM. A mapping for the\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mconversion is provided separately in a configuration file and is specific to a\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mtype of XML format.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mgrep\u001b[0m\u001b[0m \u001b[0m\u001b[0mRegular-expression based search on plain text\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mhelp\u001b[0m\u001b[0m \u001b[0m\u001b[0mPrint this message or the help of the given subcommand(s)\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mimport\u001b[0m\u001b[0m \u001b[0m\u001b[0mImport annotations from a TSV format.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32minfo\u001b[0m\u001b[0m \u001b[0m\u001b[0mReturn information regarding a STAM model. Set --verbose for extra details.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32minit\u001b[0m\u001b[0m \u001b[0m\u001b[0mInitialize a new stam annotationstore\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mprint\u001b[0m\u001b[0m \u001b[0m\u001b[0mOutput the plain text of given a query, or of all resources if no query was\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mprovided\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mquery\u001b[0m\u001b[0m \u001b[0m\u001b[0mQuery annotations by data and output results to a TSV format. If --verbose is\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mset, a tree-like structure is expressed in which the order of rows matters.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mtag\u001b[0m\u001b[0m \u001b[0m\u001b[0mRegular-expression based tagger on plain text\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mtranspose\u001b[0m\u001b[0m \u001b[0m\u001b[0mTranspose annotations over a transposition, effectively mapping them from one\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mcoordinate system to another (See\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mhttps://github.com/annotation/st"]
[54.509456, "o", "am/tree/master/extensions/stam-transpose). The\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mfirst query corresponds to the transposition, further queries correspond to the\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mannotations to transpose via that transposition. The new transposed annotations\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m(and the transpositions that produced them) will be added to the store.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mvalidate\u001b[0m\u001b[0m \u001b[0m\u001b[0mValidate a STAM model. Checks if the integrity of the annotations is still\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mvalid by checking if the text they point at remains unchanged.\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[32mview\u001b[0m\u001b[0m \u001b[0m\u001b[0mOutput the text and annotations of one or more resource(s) in HTML, suitable\u001b[0m\u001b[0m\r\n\u001b[0m\u001b[0m \u001b[0m\u001b[0mfor visualisation in a browser. Requires --resource\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[0m\u001b[0m\r\n\u001b[0m"]
[54.509671, "o", "\r\n"]
[54.518349, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mTo start, we create a small text file to annotate:\u001b[0m\u001b[0m\r\n"]
[54.519312, "o", "\rπ 4s"]
[55.520659, "o", "\rπ 3s"]
[56.522219, "o", "\rπ 2s"]
[57.52385, "o", "\rπ 1s"]
[58.52529, "o", "\r \r\r\n"]
[58.525334, "o", "\u001b[33;1m$\u001b[0m "]
[59.534337, "o", "\u001b"]
[59.56081, "o", "["]
[59.586914, "o", "3"]
[59.612954, "o", "8"]
[59.639512, "o", ";"]
[59.66571, "o", "2"]
[59.691752, "o", ";"]
[59.717798, "o", "1"]
[59.744134, "o", "4"]
[59.770317, "o", "2"]
[59.796353, "o", ";"]
[59.82242, "o", "1"]
[59.848588, "o", "9"]
[59.875206, "o", "2"]
[59.901633, "o", ";"]
[59.927963, "o", "1"]
[59.954508, "o", "2"]
[59.980667, "o", "4"]
[60.006988, "o", "m"]
[60.033248, "o", "e"]
[60.059505, "o", "c"]
[60.08581, "o", "h"]
[60.112, "o", "o"]
[60.138066, "o", "\u001b"]
[60.164187, "o", "["]
[60.190505, "o", "0"]
[60.216398, "o", "m"]
[60.242526, "o", "\u001b"]
[60.268828, "o", "["]
[60.294922, "o", "3"]
[60.320885, "o", "8"]
[60.346771, "o", ";"]
[60.372811, "o", "2"]
[60.398983, "o", ";"]
[60.425485, "o", "2"]
[60.45185, "o", "5"]
[60.47814, "o", "1"]
[60.504187, "o", ";"]
[60.530704, "o", "2"]
[60.557029, "o", "4"]
[60.583054, "o", "1"]
[60.609452, "o", ";"]
[60.635562, "o", "1"]
[60.661977, "o", "9"]
[60.687869, "o", "9"]
[60.713674, "o", "m"]
[60.739512, "o", " "]
[60.765289, "o", "\u001b"]
[60.791122, "o", "["]
[60.81706, "o", "0"]
[60.842966, "o", "m"]
[60.869071, "o", "\u001b"]
[60.895018, "o", "["]
[60.921002, "o", "3"]
[60.947444, "o", "8"]
[60.973797, "o", ";"]
[60.999821, "o", "2"]
[61.025792, "o", ";"]
[61.051552, "o", "2"]
[61.077582, "o", "5"]
[61.103711, "o", "1"]
[61.129611, "o", ";"]
[61.155581, "o", "2"]
[61.181777, "o", "4"]
[61.208158, "o", "1"]
[61.234488, "o", ";"]
[61.261026, "o", "1"]
[61.287404, "o", "9"]
[61.313477, "o", "9"]
[61.339549, "o", "m"]
[61.365798, "o", "\""]
[61.392297, "o", "\u001b"]
[61.418689, "o", "["]
[61.444983, "o", "0"]
[61.470991, "o", "m"]
[61.497202, "o", "\u001b"]
[61.523634, "o", "["]
[61.549717, "o", "3"]
[61.576179, "o", "8"]
[61.602252, "o", ";"]
[61.628337, "o", "2"]
[61.655002, "o", ";"]
[61.681056, "o", "1"]
[61.707105, "o", "8"]
[61.733097, "o", "4"]
[61.759105, "o", ";"]
[61.785269, "o", "1"]
[61.811581, "o", "8"]
[61.837883, "o", "7"]
[61.864338, "o", ";"]
[61.890675, "o", "3"]
[61.916756, "o", "8"]
[61.943294, "o", "m"]
[61.969735, "o", "I"]
[61.996108, "o", " "]
[62.022214, "o", "h"]
[62.048373, "o", "a"]
[62.07478, "o", "v"]
[62.100896, "o", "e"]
[62.126858, "o", " "]
[62.152801, "o", "n"]
[62.178688, "o", "o"]
[62.204477, "o", " "]
[62.230512, "o", "s"]
[62.256383, "o", "p"]
[62.282141, "o", "e"]
[62.307833, "o", "c"]
[62.333653, "o", "i"]
[62.359361, "o", "a"]
[62.385091, "o", "l"]
[62.410895, "o", " "]
[62.436713, "o", "t"]
[62.462558, "o", "a"]
[62.488419, "o", "l"]
[62.514272, "o", "e"]
[62.540249, "o", "n"]
[62.566042, "o", "t"]
[62.592007, "o", "."]
[62.617836, "o", " "]
[62.643734, "o", "I"]
[62.669547, "o", " "]
[62.695555, "o", "a"]
[62.721654, "o", "m"]
[62.747604, "o", " "]
[62.773481, "o", "o"]
[62.79929, "o", "n"]
[62.825071, "o", "l"]
[62.850833, "o", "y"]
[62.876707, "o", " "]
[62.902605, "o", "p"]
[62.928564, "o", "a"]
[62.954487, "o", "s"]
[62.980216, "o", "s"]
[63.005961, "o", "i"]
[63.031748, "o", "o"]
[63.057454, "o", "n"]
[63.083162, "o", "a"]
[63.109425, "o", "t"]
[63.135251, "o", "e"]
[63.161082, "o", "l"]
[63.186951, "o", "y"]
[63.212885, "o", " "]
[63.238789, "o", "c"]
[63.264515, "o", "u"]
[63.290637, "o", "r"]
[63.316613, "o", "i"]
[63.34267, "o", "o"]
[63.368546, "o", "u"]
[63.394593, "o", "s"]
[63.420834, "o", "."]
[63.446905, "o", " "]
[63.472905, "o", "-"]
[63.498895, "o", "-"]
[63.525027, "o", " "]
[63.550983, "o", "A"]
[63.576904, "o", "l"]
[63.602718, "o", "b"]
[63.628609, "o", "e"]
[63.654623, "o", "r"]
[63.680529, "o", "t"]
[63.706332, "o", " "]
[63.732046, "o", "E"]
[63.758079, "o", "i"]
[63.783991, "o", "n"]
[63.809661, "o", "s"]
[63.835324, "o", "t"]
[63.861027, "o", "e"]
[63.886781, "o", "i"]
[63.912597, "o", "n"]
[63.938276, "o", "\u001b"]
[63.964239, "o", "["]
[63.990008, "o", "0"]
[64.01585, "o", "m"]
[64.041572, "o", "\u001b"]
[64.067598, "o", "["]
[64.093773, "o", "3"]
[64.119626, "o", "8"]
[64.145519, "o", ";"]
[64.171266, "o", "2"]
[64.197173, "o", ";"]
[64.223132, "o", "2"]
[64.249283, "o", "5"]
[64.275267, "o", "1"]
[64.301343, "o", ";"]
[64.327533, "o", "2"]
[64.3533, "o", "4"]
[64.379034, "o", "1"]
[64.404778, "o", ";"]
[64.43114, "o", "1"]
[64.457246, "o", "9"]
[64.483184, "o", "9"]
[64.508824, "o", "m"]
[64.534641, "o", "\""]
[64.56084, "o", "\u001b"]
[64.586969, "o", "["]
[64.612905, "o", "0"]
[64.638607, "o", "m"]
[64.664355, "o", "\u001b"]
[64.690267, "o", "["]
[64.716056, "o", "3"]
[64.741703, "o", "8"]
[64.767439, "o", ";"]
[64.793261, "o", "2"]
[64.819086, "o", ";"]
[64.844804, "o", "2"]
[64.870601, "o", "5"]
[64.896477, "o", "1"]
[64.922322, "o", ";"]
[64.948124, "o", "2"]
[64.974062, "o", "4"]
[64.999919, "o", "1"]
[65.025638, "o", ";"]
[65.051486, "o", "1"]
[65.077227, "o", "9"]
[65.103012, "o", "9"]
[65.12875, "o", "m"]
[65.154459, "o", " "]
[65.180402, "o", "\u001b"]
[65.206106, "o", "["]
[65.231848, "o", "0"]
[65.257905, "o", "m"]
[65.283829, "o", "\u001b"]
[65.31022, "o", "["]
[65.336232, "o", "3"]
[65.362293, "o", "8"]
[65.3881, "o", ";"]
[65.414243, "o", "2"]
[65.440239, "o", ";"]
[65.466182, "o", "1"]
[65.492198, "o", "4"]
[65.518245, "o", "2"]
[65.544389, "o", ";"]
[65.57054, "o", "1"]
[65.596996, "o", "9"]
[65.623091, "o", "2"]
[65.649007, "o", ";"]
[65.674826, "o", "1"]
[65.700542, "o", "2"]
[65.726255, "o", "4"]
[65.751931, "o", "m"]
[65.777769, "o", ">"]
[65.803568, "o", "\u001b"]
[65.829372, "o", "["]
[65.855095, "o", "0"]
[65.880925, "o", "m"]
[65.906823, "o", "\u001b"]
[65.932798, "o", "["]
[65.958844, "o", "3"]
[65.984958, "o", "8"]
[66.01105, "o", ";"]
[66.037145, "o", "2"]
[66.06317, "o", ";"]
[66.088995, "o", "2"]
[66.114753, "o", "5"]
[66.140791, "o", "1"]
[66.166604, "o", ";"]
[66.192345, "o", "2"]
[66.218314, "o", "4"]
[66.244952, "o", "1"]
[66.270936, "o", ";"]
[66.296714, "o", "1"]
[66.322761, "o", "9"]
[66.348758, "o", "9"]
[66.374573, "o", "m"]
[66.400484, "o", " "]
[66.426272, "o", "s"]
[66.452189, "o", "m"]
[66.477999, "o", "a"]
[66.503773, "o", "l"]
[66.529622, "o", "l"]
[66.55528, "o", "q"]
[66.581029, "o", "u"]
[66.606963, "o", "o"]
[66.632807, "o", "t"]
[66.658525, "o", "e"]
[66.684375, "o", "."]
[66.71027, "o", "t"]
[66.73609, "o", "x"]
[66.762034, "o", "t"]
[66.788339, "o", "\u001b"]
[66.814242, "o", "["]
[66.840034, "o", "0"]
[66.865906, "o", "m"]
[67.893076, "o", "\u001b[0m\r\n"]
[67.893246, "o", "\r\n"]
[67.900695, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mWe can now add this resource to a new STAM model (called an annotation store):\u001b[0m\u001b[0m\r\n"]
[67.901334, "o", "\rπ 4s"]
[68.902161, "o", "\rπ 3s"]
[69.903171, "o", "\rπ 2s"]
[70.904275, "o", "\rπ 1s"]
[71.905278, "o", "\r \r\r\n\u001b[33;1m$\u001b[0m "]
[72.912618, "o", "\u001b"]
[72.93873, "o", "["]
[72.964886, "o", "3"]
[72.991097, "o", "8"]
[73.017172, "o", ";"]
[73.043129, "o", "2"]
[73.069133, "o", ";"]
[73.094809, "o", "1"]
[73.120615, "o", "4"]
[73.146827, "o", "2"]
[73.172926, "o", ";"]
[73.199087, "o", "1"]
[73.225412, "o", "9"]
[73.251563, "o", "2"]
[73.277529, "o", ";"]
[73.303529, "o", "1"]
[73.329714, "o", "2"]
[73.355585, "o", "4"]
[73.38165, "o", "m"]
[73.407759, "o", "s"]
[73.433938, "o", "t"]
[73.459837, "o", "a"]
[73.485879, "o", "m"]
[73.512065, "o", "\u001b"]
[73.537987, "o", "["]
[73.564122, "o", "0"]
[73.590171, "o", "m"]
[73.616233, "o", "\u001b"]
[73.642505, "o", "["]
[73.668261, "o", "3"]
[73.694495, "o", "8"]
[73.720551, "o", ";"]
[73.746491, "o", "2"]
[73.772335, "o", ";"]
[73.798197, "o", "2"]
[73.824094, "o", "5"]
[73.849984, "o", "1"]
[73.875656, "o", ";"]
[73.901432, "o", "2"]
[73.927459, "o", "4"]
[73.953525, "o", "1"]
[73.979696, "o", ";"]
[74.005818, "o", "1"]
[74.031732, "o", "9"]
[74.057718, "o", "9"]
[74.083787, "o", "m"]
[74.109425, "o", " "]
[74.135221, "o", "i"]
[74.161133, "o", "n"]
[74.187108, "o", "i"]
[74.213222, "o", "t"]
[74.239271, "o", "\u001b"]
[74.265253, "o", "["]
[74.291445, "o", "0"]
[74.317537, "o", "m"]
[74.343368, "o", "\u001b"]
[74.369251, "o", "["]
[74.394922, "o", "3"]
[74.421012, "o", "8"]
[74.447116, "o", ";"]
[74.473035, "o", "2"]
[74.498715, "o", ";"]
[74.524753, "o", "2"]
[74.550761, "o", "5"]
[74.57673, "o", "1"]
[74.602827, "o", ";"]
[74.628979, "o", "2"]
[74.654979, "o", "4"]
[74.680746, "o", "1"]
[74.706648, "o", ";"]
[74.732315, "o", "1"]
[74.75815, "o", "9"]
[74.784195, "o", "9"]
[74.809986, "o", "m"]
[74.835781, "o", " "]
[74.861644, "o", "-"]
[74.887624, "o", "-"]
[74.913627, "o", "\u001b"]
[74.939627, "o", "["]
[74.965395, "o", "0"]
[74.991614, "o", "m"]
[75.017603, "o", "\u001b"]
[75.043501, "o", "["]
[75.069215, "o", "3"]
[75.095132, "o", "8"]
[75.120857, "o", ";"]
[75.146812, "o", "2"]
[75.172919, "o", ";"]
[75.199103, "o", "2"]
[75.224923, "o", "5"]
[75.250857, "o", "1"]
[75.276679, "o", ";"]
[75.302652, "o", "2"]
[75.328919, "o", "4"]
[75.35483, "o", "1"]
[75.380782, "o", ";"]
[75.406872, "o", "1"]
[75.432884, "o", "9"]
[75.459213, "o", "9"]
[75.485303, "o", "m"]
[75.511693, "o", "r"]
[75.537897, "o", "e"]
[75.564539, "o", "s"]
[75.590694, "o", "o"]
[75.616558, "o", "u"]
[75.642823, "o", "r"]
[75.668792, "o", "c"]
[75.69486, "o", "e"]
[75.72078, "o", "\u001b"]
[75.746696, "o", "["]
[75.772232, "o", "0"]
[75.798078, "o", "m"]
[75.824261, "o", "\u001b"]
[75.850175, "o", "["]
[75.87587, "o", "3"]
[75.901889, "o", "8"]
[75.927666, "o", ";"]
[75.953728, "o", "2"]
[75.979823, "o", ";"]
[76.005798, "o", "2"]
[76.031934, "o", "5"]
[76.058727, "o", "1"]
[76.084712, "o", ";"]
[76.110549, "o", "2"]
[76.136402, "o", "4"]
[76.162245, "o", "1"]
[76.188049, "o", ";"]
[76.213858, "o", "1"]
[76.239577, "o", "9"]
[76.265381, "o", "9"]
[76.292265, "o", "m"]
[76.318461, "o", " "]
[76.345213, "o", "s"]
[76.371306, "o", "m"]
[76.397165, "o", "a"]
[76.422892, "o", "l"]
[76.448787, "o", "l"]
[76.474818, "o", "q"]
[76.500856, "o", "u"]
[76.526888, "o", "o"]
[76.552956, "o", "t"]
[76.578787, "o", "e"]
[76.60494, "o", "."]
[76.630771, "o", "t"]
[76.656662, "o", "x"]
[76.682665, "o", "t"]
[76.708503, "o", " "]
[76.734259, "o", "d"]
[76.760119, "o", "e"]
[76.78595, "o", "m"]
[76.811718, "o", "o"]
[76.837527, "o", "."]
[76.863459, "o", "s"]
[76.889416, "o", "t"]
[76.915483, "o", "o"]
[76.94118, "o", "r"]
[76.96688, "o", "e"]
[76.992555, "o", "."]
[77.018486, "o", "s"]
[77.044653, "o", "t"]
[77.070667, "o", "a"]
[77.096903, "o", "m"]
[77.123019, "o", "."]
[77.148946, "o", "j"]
[77.175252, "o", "s"]
[77.201195, "o", "o"]
[77.227311, "o", "n"]
[77.253441, "o", "\u001b"]
[77.279585, "o", "["]
[77.305633, "o", "0"]
[77.331785, "o", "m"]
[78.359437, "o", "\u001b[0m\r\n"]
[78.360702, "o", "New annotation store created\r\nInitializing store: 0 new annotation file(s), 1 new resource(s), 0 new annotationset(s)\r\n"]
[78.360764, "o", " total: 0 annotation(s), 1 resource(s), 0 annotationset(s)\r\nWriting annotation store to demo.store.stam.json\r\n"]
[78.361126, "o", "\r\n"]
[78.36827, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mThere is a variety of ways in which you can add annotations to this store.\u001b[0m\u001b[0m\r\n"]
[78.369089, "o", "\rπ 4s"]
[79.370011, "o", "\rπ 3s"]
[80.37112, "o", "\rπ 2s"]
[81.372163, "o", "\rπ 1s"]
[82.373182, "o", "\r \r"]
[82.380562, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199mThe most powerful means is via a STAMQL \u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;250;189;47mADD\u001b[0m\u001b[38;2;215;153;33m`\u001b[0m\u001b[38;2;251;241;199m query\u001b[0m\u001b[0m\r\n"]
[82.381482, "o", "\rπ 4s"]
[83.382485, "o", "\rπ 3s"]
[84.383608, "o", "\rπ 2s"]
[85.384459, "o", "\rπ 1s"]
[86.385458, "o", "\r \r"]
[86.392796, "o", "π¬ \u001b[3;1m\u001b[38;2;251;241;199m(documented at \u001b[0m\u001b[38;2;251;241;199mhttps://github.com\u001b[0m\u001b[38;2;251;241;199m/annotation/stam/tree/master/extensions/stam-query#add-query\u001b[0m\u001b[38;2;251;241;199m)\u001b[0m\u001b[0m\r\n"]
[86.393583, "o", "\rπ 4s"]
[87.394494, "o", "\rπ 3s"]
[88.395568, "o", "\rπ 2s"]
[89.396476, "o", "\rπ 1s"]
[90.397818, "o", "\r \r\r\n"]
[90.397946, "o", "\u001b[33;1m$\u001b[0m "]
[91.405429, "o", "\u001b"]
[91.431256, "o", "["]
[91.457297, "o", "3"]
[91.483503, "o", "8"]
[91.509455, "o", ";"]
[91.53561, "o", "2"]
[91.56147, "o", ";"]
[91.587334, "o", "1"]
[91.613035, "o", "4"]
[91.638717, "o", "2"]
[91.664603, "o", ";"]
[91.690453, "o", "1"]
[91.716469, "o", "9"]
[91.742228, "o", "2"]
[91.768019, "o", ";"]
[91.793822, "o", "1"]
[91.819819, "o", "2"]
[91.845989, "o", "4"]
[91.871967, "o", "m"]
[91.897933, "o", "s"]
[91.924087, "o", "t"]
[91.949997, "o", "a"]
[91.975789, "o", "m"]
[92.00163, "o", "\u001b"]
[92.02737, "o", "["]
[92.053007, "o", "0"]
[92.078856, "o", "m"]
[92.104638, "o", "\u001b"]
[92.1307, "o", "["]
[92.156687, "o", "3"]
[92.182542, "o", "8"]
[92.208431, "o", ";"]
[92.234123, "o", "2"]
[92.259838, "o", ";"]
[92.285806, "o", "2"]
[92.311613, "o", "5"]
[92.337326, "o", "1"]
[92.363073, "o", ";"]
[92.388774, "o", "2"]
[92.414521, "o", "4"]
[92.440433, "o", "1"]
[92.466227, "o", ";"]
[92.492147, "o", "1"]
[92.517842, "o", "9"]
[92.543648, "o", "9"]
[92.569393, "o", "m"]
[92.595061, "o", " "]
[92.620777, "o", "a"]
[92.646575, "o", "n"]
[92.672375, "o", "n"]
[92.698172, "o", "o"]
[92.724085, "o", "t"]
[92.749775, "o", "a"]
[92.775465, "o", "t"]
[92.801312, "o", "e"]
[92.827059, "o", "\u001b"]
[92.852867, "o", "["]
[92.878553, "o", "0"]
[92.904326, "o", "m"]
[92.930234, "o", "\u001b"]
[92.956066, "o", "["]
[92.981822, "o", "3"]
[93.007594, "o", "8"]
[93.033493, "o", ";"]
[93.059385, "o", "2"]
[93.08524, "o", ";"]
[93.111312, "o", "2"]
[93.137426, "o", "5"]
[93.16373, "o", "1"]
[93.189998, "o", ";"]
[93.216236, "o", "2"]
[93.242005, "o", "4"]
[93.26785, "o", "1"]
[93.293722, "o", ";"]
[93.3196, "o", "1"]
[93.345542, "o", "9"]
[93.371518, "o", "9"]
[93.397513, "o", "m"]
[93.423307, "o", " "]
[93.449284, "o", "-"]
[93.47541, "o", "-"]
[93.501357, "o", "\u001b"]
[93.527026, "o", "["]
[93.55281, "o", "0"]
[93.578581, "o", "m"]
[93.60458, "o", "\u001b"]
[93.631075, "o", "["]
[93.657217, "o", "3"]
[93.683239, "o", "8"]
[93.709222, "o", ";"]
[93.73525, "o", "2"]
[93.761645, "o", ";"]
[93.787546, "o", "2"]