-
Notifications
You must be signed in to change notification settings - Fork 6
/
KAD_15_Money-Wahala_MG.conllu
3636 lines (3513 loc) · 226 KB
/
KAD_15_Money-Wahala_MG.conllu
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
# sent_id = KAD_15_Money-Wahala_MG__1
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = my name na Jacob from Kaduna //
# text_en = My name is Jacob from Kaduna.
# text_ortho = My name na Jacob from Kaduna.
1 my my PRON _ Number=Sing|Person=1|Poss=Yes 2 mod:poss _ AlignBegin=1240|AlignEnd=1389|Gloss=SG.1.POSS
2 name name NOUN _ _ 3 subj _ AlignBegin=1389|AlignEnd=1600|Gloss=name
3 na na PART _ PartType=Cop 0 root _ AlignBegin=1600|AlignEnd=1800|Gloss=be
4 Jacob Jacob PROPN _ _ 3 comp:pred _ AlignBegin=1800|AlignEnd=2222|Gloss=Jacob
5 from from ADP _ _ 4 mod _ AlignBegin=2222|AlignEnd=2525|Gloss=from
6 Kaduna Kaduna PROPN _ _ 5 comp:obj _ AlignBegin=2525|AlignEnd=3020|Gloss=Kaduna
7 // // PUNCT _ _ 3 punct _ AlignBegin=3020|AlignEnd=3020|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__2
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # when I grow up wit my grandfader < # na im >+ dey take care of me //
# text_en = When I grew up with my grandfather, he was the one taking care of me.
# text_ortho = When I grow up wit my grandfader, na im dey take care of me.
1 # # PUNCT _ _ 11 punct _ AlignBegin=3020|AlignEnd=4270|Gloss=PUNCT
2 when when ADV _ PronType=Int 11 mod:periph$tempo _ AlignBegin=4314|AlignEnd=4470|Gloss=when.Q
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=4470|AlignEnd=4610|Gloss=NOM.SG.1
4 grow grow VERB _ _ 2 comp:obj _ AlignBegin=4610|AlignEnd=4840|Gloss=grow
5 up up ADP _ _ 4 compound:prt _ AlignBegin=4840|AlignEnd=5130|Gloss=up
6 wit wit ADP _ _ 4 comp:obl _ AlignBegin=5130|AlignEnd=5290|Gloss=with
7 my my PRON _ Number=Sing|Person=1|Poss=Yes 8 mod:poss _ AlignBegin=5290|AlignEnd=5556|Gloss=SG.1.POSS
8 grandfader grandfader NOUN _ _ 6 comp:obj _ AlignBegin=5556|AlignEnd=6133|Gloss=grandfather
9 < < PUNCT _ _ 2 punct _ AlignBegin=6133|AlignEnd=6280|Gloss=PUNCT
10 # # PUNCT _ _ 2 punct _ AlignBegin=6280|AlignEnd=8680|Gloss=PUNCT
11 na na PART _ PartType=Cop 0 root _ AlignBegin=8680|AlignEnd=8860|Gloss=be
12 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 11 comp:pred _ AlignBegin=8860|AlignEnd=9040|Gloss=NOM.SG.3
13 >+ >+ PUNCT _ _ 14 punct _ AlignBegin=9040|AlignEnd=9040|Gloss=PUNCT
14 dey dey AUX _ Aspect=Imp 11 comp:cleft _ AlignBegin=9040|AlignEnd=9224|Gloss=IPFV
15 take take VERB _ _ 14 comp:aux _ AlignBegin=9224|AlignEnd=9410|Gloss=take
16 care care NOUN _ _ 15 comp:obj@lvc _ AlignBegin=9410|AlignEnd=9570|Gloss=care
17 of of ADP _ _ 15 comp:obl _ AlignBegin=9570|AlignEnd=9770|Gloss=of
18 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 17 comp:obj _ AlignBegin=9770|AlignEnd=10060|Gloss=ACC.SG.1
19 // // PUNCT _ _ 11 punct _ AlignBegin=10060|AlignEnd=10060|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__3
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # my parents dey for Lagos //
# text_en = My parents are in Lagos.
# text_ortho = My parents dey for Lagos.
1 # # PUNCT _ _ 4 punct _ AlignBegin=10060|AlignEnd=11420|Gloss=PUNCT
2 my my PRON _ Number=Sing|Person=1|Poss=Yes 3 mod:poss _ AlignBegin=11420|AlignEnd=11657|Gloss=SG.1.POSS
3 parents parent NOUN _ Number=Plur 4 subj _ AlignBegin=11657|AlignEnd=12110|Gloss=parent.PL
4 dey dey VERB _ VerbType=Cop 0 root _ AlignBegin=12110|AlignEnd=12410|Gloss=be
5 for for ADP _ _ 4 comp:pred _ AlignBegin=12410|AlignEnd=12600|Gloss=for
6 Lagos Lagos PROPN _ _ 5 comp:obj _ AlignBegin=12600|AlignEnd=13029|Gloss=Lagos
7 // // PUNCT _ _ 4 punct _ AlignBegin=13029|AlignEnd=13029|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__4
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # na dere >+ I dey stay //
# text_en = That's where I stayed.
# text_ortho = Na dere I dey stay.
1 # # PUNCT _ _ 2 punct _ AlignBegin=13029|AlignEnd=13940|Gloss=PUNCT
2 na na PART _ PartType=Cop 0 root _ AlignBegin=13940|AlignEnd=14113|Gloss=be
3 dere dere ADV _ _ 2 comp:pred _ AlignBegin=14113|AlignEnd=14245|Gloss=there
4 >+ >+ PUNCT _ _ 6 punct _ AlignBegin=14245|AlignEnd=14245|Gloss=PUNCT
5 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 6 subj _ AlignBegin=14245|AlignEnd=14368|Gloss=NOM.SG.1
6 dey dey AUX _ Aspect=Imp 2 comp:cleft _ AlignBegin=14368|AlignEnd=14510|Gloss=IPFV
7 stay stay VERB _ _ 6 comp:aux _ AlignBegin=14510|AlignEnd=14845|Gloss=stay
8 // // PUNCT _ _ 2 punct _ AlignBegin=14821|AlignEnd=14920|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__5
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # de carry me come # Kagoro //
# text_en = They brought me to Kagoro.
# text_ortho = De carry me come Kagoro.
1 # # PUNCT _ _ 3 punct _ AlignBegin=14920|AlignEnd=15090|Gloss=PUNCT
2 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 3 subj _ AlignBegin=15090|AlignEnd=15250|Gloss=NOM.PL.3
3 carry carry VERB _ _ 0 root _ AlignBegin=15250|AlignEnd=15496|Gloss=carry
4 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 3 comp:obj _ AlignBegin=15496|AlignEnd=15677|Gloss=ACC.SG.1
5 come come VERB _ _ 3 compound:svc _ AlignBegin=15677|AlignEnd=15990|Gloss=come
6 # # PUNCT _ _ 7 punct _ AlignBegin=16000|AlignEnd=16420|Gloss=PUNCT
7 Kagoro Kagoro PROPN _ _ 5 comp:obj _ AlignBegin=16420|AlignEnd=16860|Gloss=Kagoro
8 // // PUNCT _ _ 3 punct _ AlignBegin=16860|AlignEnd=16860|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__6
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and I was dere # //= grow up //
# text_en = And I grew up there.
# text_ortho = And I was dere, grow up.
1 # # PUNCT _ _ 4 punct _ AlignBegin=16860|AlignEnd=17820|Gloss=PUNCT
2 and and CCONJ _ _ 4 discourse _ AlignBegin=17820|AlignEnd=17988|Gloss=and
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=17988|AlignEnd=18139|Gloss=NOM.SG.1
4 was be VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin|VerbType=Cop 0 root _ AlignBegin=18139|AlignEnd=18320|Gloss=be.IND.SG.1.PST.FIN
5 dere dere ADV _ _ 4 comp:pred _ AlignBegin=18320|AlignEnd=18700|Gloss=there
6 # # PUNCT _ _ 8 punct _ AlignBegin=18700|AlignEnd=19780|Gloss=PUNCT
7 //= //= PUNCT _ _ 8 punct _ AlignBegin=18700|AlignEnd=19780|Gloss=PUNCT
8 grow grow VERB _ _ 4 parataxis:conj _ AlignBegin=19780|AlignEnd=20100|Gloss=grow
9 up up ADP _ _ 8 compound:prt _ AlignBegin=20100|AlignEnd=20320|Gloss=up
10 // // PUNCT _ _ 4 punct _ AlignBegin=20320|AlignEnd=20320|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__7
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # im put me for secondary school //= im put me for primary school //
# text_en = He enrolled me in a secondary school... he enrolled me in a primary school.
# text_ortho = Im put me for secondary school, im put me for primary school.
1 # # PUNCT _ _ 3 punct _ AlignBegin=20320|AlignEnd=21210|Gloss=PUNCT
2 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=21232|AlignEnd=21401|Gloss=NOM.SG.3
3 put put VERB _ _ 0 root _ AlignBegin=21401|AlignEnd=21610|Gloss=put
4 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 3 comp:obj _ AlignBegin=21610|AlignEnd=22046|Gloss=ACC.SG.1
5 for for ADP _ _ 3 comp:obl _ AlignBegin=22046|AlignEnd=22290|Gloss=for
6 secondary secondary ADJ _ _ 7 mod _ AlignBegin=22290|AlignEnd=22818|Gloss=secondary
7 school school NOUN _ _ 5 comp:obj _ AlignBegin=22818|AlignEnd=23160|Gloss=school
8 //= //= PUNCT _ _ 10 punct _ AlignBegin=23160|AlignEnd=23160|Gloss=PUNCT
9 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 10 subj _ AlignBegin=23160|AlignEnd=23231|Gloss=NOM.SG.3
10 put put VERB _ _ 3 parataxis:conj _ AlignBegin=23231|AlignEnd=23373|Gloss=put
11 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 10 comp:obj _ AlignBegin=23373|AlignEnd=23504|Gloss=ACC.SG.1
12 for for ADP _ _ 10 comp:obl _ AlignBegin=23504|AlignEnd=23640|Gloss=for
13 primary primary ADJ _ _ 14 mod _ AlignBegin=23640|AlignEnd=24088|Gloss=primary
14 school school NOUN _ _ 12 comp:obj _ AlignBegin=24088|AlignEnd=24397|Gloss=school
15 // // PUNCT _ _ 3 punct _ AlignBegin=24397|AlignEnd=24397|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__8
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = all di schools //
# text_en = All the schools.
# text_ortho = All di schools.
1 all all DET _ _ 3 det _ AlignBegin=24397|AlignEnd=24625|Gloss=all
2 di di DET _ Definite=Def|PronType=Art 3 det _ AlignBegin=24625|AlignEnd=24744|Gloss=DEF.ART
3 schools school NOUN _ Number=Plur 0 root _ AlignBegin=24744|AlignEnd=25130|Gloss=school.PL
4 // // PUNCT _ _ 3 punct _ AlignBegin=25130|AlignEnd=25130|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__9
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and I was very happy with im //
# text_en = And I was very happy with him.
# text_ortho = And I was very happy with im.
1 # # PUNCT _ _ 4 punct _ AlignBegin=25130|AlignEnd=27980|Gloss=PUNCT
2 and and CCONJ _ _ 4 discourse _ AlignBegin=27980|AlignEnd=28114|Gloss=and|Lang=en
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=28114|AlignEnd=28264|Gloss=NOM.SG.1|Lang=en
4 was be VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin 0 root _ AlignBegin=28264|AlignEnd=28422|Gloss=be.IND.SG.1.PST.FIN|Lang=en
5 very very ADV _ _ 6 mod _ AlignBegin=28422|AlignEnd=28653|Gloss=very|Lang=en
6 happy happy ADJ _ _ 4 comp:pred _ AlignBegin=28653|AlignEnd=28956|Gloss=happy|Lang=en
7 with wit ADP _ _ 6 mod _ AlignBegin=28956|AlignEnd=29136|Gloss=with|Lang=en
8 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=29136|AlignEnd=29450|Gloss=NOM.SG.3|Lang=en
9 // // PUNCT _ _ 4 punct _ AlignBegin=29450|AlignEnd=29450|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__10
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # wey < everyting wey I dey do # na im >+ dey do am for me //
# text_en = So much that he supports me in everything I do.
# text_ortho = Wey, everyting wey I dey do na im dey do am for me.
1 # # PUNCT _ _ 10 punct _ AlignBegin=29450|AlignEnd=29560|Gloss=PUNCT
2 wey when SCONJ _ _ 10 discourse _ AlignBegin=29594|AlignEnd=30050|Gloss=when
3 < < PUNCT _ _ 2 punct _ AlignBegin=30050|AlignEnd=30050|Gloss=PUNCT
4 everyting everyting PRON _ _ 10 dislocated _ AlignBegin=30050|AlignEnd=30581|Gloss=everything
5 wey wey SCONJ _ _ 4 mod@relcl _ AlignBegin=30581|AlignEnd=30920|Gloss=REL
6 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 7 subj _ AlignBegin=30920|AlignEnd=31067|Gloss=NOM.SG.1
7 dey dey AUX _ Aspect=Imp 5 comp:obj _ AlignBegin=31067|AlignEnd=31240|Gloss=IPFV
8 do do VERB _ _ 7 comp:aux _ AlignBegin=31240|AlignEnd=31520|Gloss=do
9 # # PUNCT _ _ 4 punct _ AlignBegin=31520|AlignEnd=31610|Gloss=PUNCT
10 na na PART _ PartType=Cop 0 root _ AlignBegin=31619|AlignEnd=31721|Gloss=be
11 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 10 comp:pred _ AlignBegin=31721|AlignEnd=31820|Gloss=NOM.SG.3
12 >+ >+ PUNCT _ _ 13 punct _ AlignBegin=31803|AlignEnd=31815|Gloss=PUNCT
13 dey dey AUX _ Aspect=Imp 10 comp:cleft _ AlignBegin=31820|AlignEnd=31940|Gloss=IPFV
14 do do VERB _ _ 13 comp:aux _ AlignBegin=31940|AlignEnd=32049|Gloss=do
15 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 14 comp:obj _ AlignBegin=32049|AlignEnd=32150|Gloss=ACC.SG.3
16 for for ADP _ _ 14 comp:obl _ AlignBegin=32150|AlignEnd=32299|Gloss=for
17 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 16 comp:obj _ AlignBegin=32299|AlignEnd=32479|Gloss=ACC.SG.1
18 // // PUNCT _ _ 10 punct _ AlignBegin=32480|AlignEnd=32480|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__11
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and { when e || # when } I grow up < # when I about to marry < # { e was || # e pronounce } a wife for me //+ # which I don't know //
# text_en = And when he... when I grew up, when I was about to get married, he was... he announced the name of a woman I don't know as my wife to be.
# text_ortho = And when e, when I grow up, when I about to marry, e was, e pronounce a wife for me, which I don't know.
1 # # PUNCT _ _ 24 punct _ AlignBegin=32480|AlignEnd=33660|Gloss=PUNCT
2 and and CCONJ _ _ 24 discourse _ AlignBegin=33660|AlignEnd=33850|Gloss=and
3 { { PUNCT _ _ 4 punct _ AlignBegin=33850|AlignEnd=33850|Gloss=PUNCT
4 when when ADV _ _ 24 mod:periph _ AlignBegin=33850|AlignEnd=34147|Gloss=when.Q
5 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 4 unk@scrap _ AlignBegin=34147|AlignEnd=34300|Gloss=NOM.SG.3
6 || || PUNCT _ _ 8 punct _ AlignBegin=34300|AlignEnd=34300|Gloss=PUNCT
7 # # PUNCT _ _ 8 punct _ AlignBegin=34300|AlignEnd=35140|Gloss=PUNCT
8 when when ADV _ PronType=Int 4 conj:dicto _ AlignBegin=35140|AlignEnd=35260|Gloss=when.Q
9 } } PUNCT _ _ 4 punct _ AlignBegin=35260|AlignEnd=35407|Gloss=PUNCT
10 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 11 subj _ AlignBegin=35260|AlignEnd=35437|Gloss=NOM.SG.1
11 grow grow VERB _ _ 8 comp:obj _ AlignBegin=35437|AlignEnd=35660|Gloss=grow
12 up up ADP _ _ 11 compound:prt _ AlignBegin=35660|AlignEnd=35900|Gloss=up
13 < < PUNCT _ _ 4 punct _ AlignBegin=35900|AlignEnd=35921|Gloss=PUNCT
14 # # PUNCT _ _ 4 punct _ AlignBegin=35900|AlignEnd=36700|Gloss=PUNCT
15 when when ADV _ _ 24 mod:periph _ AlignBegin=36700|AlignEnd=36810|Gloss=when.Q
16 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 17 subj _ AlignBegin=36810|AlignEnd=36937|Gloss=NOM.SG.1
17 about about ADP _ _ 15 comp:obj _ AlignBegin=36937|AlignEnd=37180|Gloss=about
18 to to ADP _ _ 17 comp:obj _ AlignBegin=37180|AlignEnd=37280|Gloss=to
19 marry marry VERB _ _ 18 comp:obj _ AlignBegin=37280|AlignEnd=37660|Gloss=marry
20 < < PUNCT _ _ 15 punct _ AlignBegin=37660|AlignEnd=37660|Gloss=PUNCT
21 # # PUNCT _ _ 15 punct _ AlignBegin=37660|AlignEnd=38420|Gloss=PUNCT
22 { { PUNCT _ _ 24 punct _ AlignBegin=38349|AlignEnd=38420|Gloss=PUNCT
23 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 24 subj _ AlignBegin=38379|AlignEnd=38594|Gloss=NOM.SG.3
24 was be VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin|VerbType=Cop 0 root _ AlignBegin=38594|AlignEnd=38990|Gloss=be.IND.SG.1.PST.FIN
25 || || PUNCT _ _ 28 punct _ AlignBegin=38990|AlignEnd=38990|Gloss=PUNCT
26 # # PUNCT _ _ 28 punct _ AlignBegin=38990|AlignEnd=39440|Gloss=PUNCT
27 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 28 subj _ AlignBegin=39440|AlignEnd=39589|Gloss=NOM.SG.3
28 pronounce pronounce VERB _ _ 24 conj:dicto _ AlignBegin=39589|AlignEnd=40128|Gloss=pronounce
29 } } PUNCT _ _ 24 punct _ AlignBegin=40128|AlignEnd=40128|Gloss=PUNCT
30 a a DET _ Definite=Ind|PronType=Art 31 det _ AlignBegin=40128|AlignEnd=40208|Gloss=INDF.ART
31 wife wife NOUN _ _ 28 comp:obj _ AlignBegin=40208|AlignEnd=40500|Gloss=wife
32 for for ADP _ _ 28 comp:obl _ AlignBegin=40500|AlignEnd=40686|Gloss=for
33 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 32 comp:obj _ AlignBegin=40686|AlignEnd=40900|Gloss=ACC.SG.1
34 //+ //+ PUNCT _ _ 36 punct _ AlignBegin=40900|AlignEnd=41580|Gloss=PUNCT
35 # # PUNCT _ _ 36 punct _ AlignBegin=40900|AlignEnd=41580|Gloss=PUNCT
36 which which DET _ PronType=Int 31 mod@relcl _ AlignBegin=41662|AlignEnd=41880|Gloss=which
37 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 38 subj _ AlignBegin=41880|AlignEnd=42040|Gloss=NOM.SG.1
38 do do AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 36 mod@relcl _ AlignBegin=42040|AlignEnd=42180|Gloss=do.IND.PRS.FIN|Lang=en|SpaceAfter=No
39 n't not PART _ Polarity=Neg 38 mod _ AlignBegin=42180|AlignEnd=42250|Gloss=NEG|Lang=en
40 know know VERB _ _ 38 comp:aux _ AlignBegin=42250|AlignEnd=42420|Gloss=know
41 // // PUNCT _ _ 24 punct _ AlignBegin=42420|AlignEnd=42420|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__12
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and di time reach wey be sey # ( God don say dis di time wey my grandfader talk am ) # di wife came //
# text_en = And at the time put forth by God, the wife came, as foretold by my grandfather.
# text_ortho = And di time reach wey be sey (God don say dis di time wey my grandfader talk am) di wife came.
1 # # PUNCT _ _ 5 punct _ AlignBegin=42420|AlignEnd=45380|Gloss=PUNCT
2 and and CCONJ _ _ 5 discourse _ AlignBegin=45380|AlignEnd=45520|Gloss=and
3 di di DET _ Definite=Def|PronType=Art 4 det _ AlignBegin=45520|AlignEnd=45646|Gloss=DEF.ART
4 time time NOUN _ _ 5 subj _ AlignBegin=45646|AlignEnd=45900|Gloss=time
5 reach reach VERB _ _ 0 root _ AlignBegin=45900|AlignEnd=46290|Gloss=reach
6 wey wey SCONJ _ ExtPos=SCONJ 4 mod@relcl _ AlignBegin=46290|AlignEnd=46500|Gloss=REL|Idiom=Yes
7 be be VERB _ PartType=Cop 6 comp:obj _ AlignBegin=46500|AlignEnd=46611|Gloss=be|InIdiom=Yes
8 sey sey SCONJ _ _ 7 comp:pred _ AlignBegin=46611|AlignEnd=47020|Gloss=COMP|InIdiom=Yes
9 # # PUNCT _ _ 12 punct _ AlignBegin=47020|AlignEnd=47480|Gloss=PUNCT
10 ( ( PUNCT _ _ 12 punct _ AlignBegin=47020|AlignEnd=47480|Gloss=PUNCT
11 God God PROPN _ _ 12 subj _ AlignBegin=47480|AlignEnd=47793|Gloss=God
12 don don AUX _ Aspect=Perf 6 parataxis:parenth _ AlignBegin=47793|AlignEnd=48028|Gloss=PRF
13 say say VERB _ _ 12 comp:aux _ AlignBegin=48028|AlignEnd=48367|Gloss=say
14 dis dis DET _ Number=Sing|PronType=Dem 16 det _ AlignBegin=48367|AlignEnd=48570|Gloss=SG.DEM
15 di di DET _ Definite=Def|PronType=Art 16 det _ AlignBegin=48570|AlignEnd=48708|Gloss=DEF.ART
16 time time NOUN _ _ 13 comp:obj _ AlignBegin=48708|AlignEnd=48893|Gloss=time
17 wey wey SCONJ _ _ 16 mod@relcl _ AlignBegin=48893|AlignEnd=49286|Gloss=REL
18 my my PRON _ Number=Sing|Person=1|Poss=Yes 19 mod:poss _ AlignBegin=49286|AlignEnd=49554|Gloss=SG.1.POSS
19 grandfader grandfader NOUN _ _ 20 subj _ AlignBegin=49554|AlignEnd=50070|Gloss=grandfather
20 talk talk VERB _ _ 17 comp:obj _ AlignBegin=50070|AlignEnd=50260|Gloss=talk
21 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 20 comp:obj _ AlignBegin=50260|AlignEnd=50360|Gloss=ACC.SG.3
22 ) ) PUNCT _ _ 12 punct _ AlignBegin=50360|AlignEnd=50360|Gloss=PUNCT
23 # # PUNCT _ _ 26 punct _ AlignBegin=50360|AlignEnd=53261|Gloss=PUNCT
24 di di DET _ Definite=Def|PronType=Art 25 det _ AlignBegin=53260|AlignEnd=53395|Gloss=DEF.ART
25 wife wife NOUN _ _ 26 subj _ AlignBegin=53395|AlignEnd=53640|Gloss=wife
26 came come VERB _ Tense=Past|VerbForm=Fin 6 comp:obj _ AlignBegin=53640|AlignEnd=53900|Gloss=come.PST.FIN
27 // // PUNCT _ _ 5 punct _ AlignBegin=53900|AlignEnd=53900|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__13
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and di way # I marry dat time < no be di so >+ { de || # de } dey do nowadays //
# text_en = And the way I got married at that time is not the... same as they do nowadays.
# text_ortho = And di way I marry dat time, no be di so de, de dey do nowadays.
1 # # PUNCT _ _ 11 punct _ AlignBegin=53900|AlignEnd=54860|Gloss=PUNCT
2 and and CCONJ _ _ 11 discourse _ AlignBegin=54860|AlignEnd=55010|Gloss=and
3 di di DET _ Definite=Def|PronType=Art 4 det _ AlignBegin=55010|AlignEnd=55161|Gloss=DEF.ART
4 way way NOUN _ _ 11 subj _ AlignBegin=55161|AlignEnd=55460|Gloss=way
5 # # PUNCT _ _ 7 punct _ AlignBegin=55460|AlignEnd=55740|Gloss=PUNCT
6 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 7 subj _ AlignBegin=55740|AlignEnd=55850|Gloss=NOM.SG.1
7 marry marry VERB _ _ 4 mod@relcl _ AlignBegin=55850|AlignEnd=56167|Gloss=marry
8 dat dat DET _ Number=Sing 9 det _ AlignBegin=56167|AlignEnd=56340|Gloss=SG.DEM
9 time time NOUN _ _ 7 comp:obj _ AlignBegin=56340|AlignEnd=56570|Gloss=time
10 < < PUNCT _ _ 4 punct _ AlignBegin=56570|AlignEnd=56570|Gloss=PUNCT
11 no no AUX _ Polarity=Neg 0 root _ AlignBegin=56570|AlignEnd=56660|Gloss=NEG
12 be be VERB _ PartType=Cop 11 comp:aux _ AlignBegin=56660|AlignEnd=56780|Gloss=be
13 di di DET _ Definite=Def|PronType=Art 14 unk@scrap _ AlignBegin=56780|AlignEnd=56900|Gloss=DEF.ART
14 so so ADV _ _ 12 comp:pred _ AlignBegin=56900|AlignEnd=57284|Gloss=so
15 >+ >+ PUNCT _ _ 22 punct _ AlignBegin=57284|AlignEnd=57284|Gloss=PUNCT
16 { { PUNCT _ _ 17 punct _ AlignBegin=57254|AlignEnd=57284|Gloss=PUNCT
17 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 22 subj _ AlignBegin=57284|AlignEnd=57622|Gloss=NOM.PL.3
18 || || PUNCT _ _ 20 punct _ AlignBegin=57530|AlignEnd=57650|Gloss=PUNCT
19 # # PUNCT _ _ 20 punct _ AlignBegin=57530|AlignEnd=57650|Gloss=PUNCT
20 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 17 conj:dicto _ AlignBegin=57622|AlignEnd=57848|Gloss=NOM.PL.3
21 } } PUNCT _ _ 17 punct _ AlignBegin=57838|AlignEnd=57865|Gloss=PUNCT
22 dey dey AUX _ Aspect=Imp 12 comp:cleft _ AlignBegin=57848|AlignEnd=57948|Gloss=IPFV
23 do do VERB _ _ 22 comp:aux _ AlignBegin=57948|AlignEnd=58144|Gloss=do
24 nowadays nowadays ADV _ _ 23 mod _ AlignBegin=58144|AlignEnd=58845|Gloss=nowadays
25 // // PUNCT _ _ 11 punct _ AlignBegin=58910|AlignEnd=58960|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__14
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # now < na { plenty |r plenty } money >+ de dey give //
# text_en = Now, they give so much money.
# text_ortho = Now, na plenty, plenty money de dey give.
1 # # PUNCT _ _ 4 punct _ AlignBegin=58960|AlignEnd=59480|Gloss=PUNCT
2 now now ADV _ _ 4 mod:periph _ AlignBegin=59480|AlignEnd=59705|Gloss=now
3 < < PUNCT _ _ 2 punct _ AlignBegin=59705|AlignEnd=59705|Gloss=PUNCT
4 na na PART _ PartType=Cop 0 root _ AlignBegin=59705|AlignEnd=59871|Gloss=be
5 { { PUNCT _ _ 6 punct _ AlignBegin=59871|AlignEnd=59871|Gloss=PUNCT
6 plenty plenty ADJ _ _ 10 mod _ AlignBegin=59871|AlignEnd=60224|Gloss=plenty
7 |r |r PUNCT _ _ 8 punct _ AlignBegin=60224|AlignEnd=60224|Gloss=PUNCT
8 plenty plenty ADJ _ _ 6 compound:redup _ AlignBegin=60224|AlignEnd=60541|Gloss=plenty
9 } } PUNCT _ _ 6 punct _ AlignBegin=60541|AlignEnd=60541|Gloss=PUNCT
10 money money NOUN _ _ 4 comp:pred _ AlignBegin=60541|AlignEnd=60954|Gloss=money
11 >+ >+ PUNCT _ _ 13 punct _ AlignBegin=60954|AlignEnd=61102|Gloss=PUNCT
12 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 13 subj _ AlignBegin=60954|AlignEnd=61102|Gloss=NOM.PL.3
13 dey dey AUX _ Aspect=Imp 4 comp:cleft _ AlignBegin=61102|AlignEnd=61230|Gloss=IPFV
14 give give VERB _ _ 13 comp:aux _ AlignBegin=61230|AlignEnd=61440|Gloss=give
15 // // PUNCT _ _ 4 punct _ AlignBegin=61440|AlignEnd=61440|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__15
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # dat time < me < na two # thousand naira >+ I give # as bride price //
# text_en = At that time, myself, I gave a bride price of two thousand naira.
# text_ortho = Dat time, me, na two thousand naira I give as bride price.
1 # # PUNCT _ _ 7 punct _ AlignBegin=61440|AlignEnd=62320|Gloss=PUNCT
2 dat dat DET _ Number=Sing 3 det _ AlignBegin=62334|AlignEnd=62508|Gloss=SG.DEM
3 time time NOUN _ _ 7 mod:periph _ AlignBegin=62508|AlignEnd=62750|Gloss=time
4 < < PUNCT _ _ 3 punct _ AlignBegin=62750|AlignEnd=62750|Gloss=PUNCT
5 me me PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 7 dislocated _ AlignBegin=62750|AlignEnd=62921|Gloss=NOM.SG.1
6 < < PUNCT _ _ 5 punct _ AlignBegin=62921|AlignEnd=62921|Gloss=PUNCT
7 na na PART _ PartType=Cop 0 root _ AlignBegin=62921|AlignEnd=63106|Gloss=be
8 two two NUM _ NumType=Card 11 det:num _ AlignBegin=63106|AlignEnd=63340|Gloss=two.CARD
9 # # PUNCT _ _ 10 punct _ AlignBegin=63280|AlignEnd=63340|Gloss=PUNCT
10 thousand thousand NUM _ NumType=Card 8 flat _ AlignBegin=63340|AlignEnd=63620|Gloss=thousand.CARD
11 naira naira NOUN _ _ 7 comp:pred _ AlignBegin=63620|AlignEnd=63861|Gloss=naira
12 >+ >+ PUNCT _ _ 14 punct _ AlignBegin=63861|AlignEnd=63889|Gloss=PUNCT
13 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 14 subj _ AlignBegin=63861|AlignEnd=63990|Gloss=NOM.SG.1
14 give give VERB _ _ 7 comp:cleft _ AlignBegin=63990|AlignEnd=64200|Gloss=give
15 # # PUNCT _ _ 16 punct _ AlignBegin=64200|AlignEnd=64520|Gloss=PUNCT
16 as as ADP _ _ 14 comp:obl _ AlignBegin=64519|AlignEnd=64680|Gloss=as
17 bride bride NOUN _ _ 18 compound _ AlignBegin=64680|AlignEnd=64920|Gloss=bride
18 price price NOUN _ _ 16 comp:obj _ AlignBegin=64920|AlignEnd=65280|Gloss=price
19 // // PUNCT _ _ 7 punct _ AlignBegin=65280|AlignEnd=65280|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__16
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # even de collect am say # [ de { go || were } very happy ] //
# text_en = In fact, they collected it saying they will... were very happy.
# text_ortho = Even de collect am say de go, were very happy.
1 # # PUNCT _ _ 4 punct _ AlignBegin=65280|AlignEnd=66140|Gloss=PUNCT
2 even even ADV _ _ 4 mod:periph _ AlignBegin=66140|AlignEnd=66380|Gloss=even
3 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 4 subj _ AlignBegin=66380|AlignEnd=66484|Gloss=NOM.PL.3
4 collect collect VERB _ _ 0 root _ AlignBegin=66484|AlignEnd=66770|Gloss=collect
5 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 4 comp:obj _ AlignBegin=66770|AlignEnd=66884|Gloss=ACC.SG.3
6 say say VERB _ _ 4 compound:svc _ AlignBegin=66884|AlignEnd=67210|Gloss=say
7 # # PUNCT _ _ 11 punct _ AlignBegin=67210|AlignEnd=67340|Gloss=PUNCT
8 [ [ PUNCT _ _ 11 punct _ AlignBegin=67340|AlignEnd=67373|Gloss=PUNCT
9 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 11 subj _ AlignBegin=67373|AlignEnd=67559|Gloss=NOM.PL.3
10 { { PUNCT _ _ 11 punct _ AlignBegin=67559|AlignEnd=67559|Gloss=PUNCT
11 go go AUX _ Aspect=Prosp 6 parataxis:obj$utter _ AlignBegin=67559|AlignEnd=67720|Gloss=PROSP
12 || || PUNCT _ _ 13 punct _ AlignBegin=67720|AlignEnd=67720|Gloss=PUNCT
13 were be VERB _ Mood=Ind|Tense=Past|VerbForm=Fin|VerbType=Cop 11 conj:dicto _ AlignBegin=67720|AlignEnd=67902|Gloss=be.IND.PST.FIN
14 } } PUNCT _ _ 11 punct _ AlignBegin=67902|AlignEnd=67902|Gloss=PUNCT
15 very very ADV _ _ 16 mod _ AlignBegin=67902|AlignEnd=68153|Gloss=very
16 happy happy ADJ _ _ 13 comp:pred _ AlignBegin=68153|AlignEnd=68458|Gloss=happy
17 ] ] PUNCT _ _ 11 punct _ AlignBegin=68458|AlignEnd=68480|Gloss=PUNCT
18 // // PUNCT _ _ 4 punct _ AlignBegin=68458|AlignEnd=68480|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__17
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # but now < # if you no bring { goat |c # twenty bags of eh cement |c # eh # twenty bags of eh # { salt |c # rice |c # everyting } } !//
# text_en = But nowadays, if you don't bring a goat, twenty bags of uh... cement, uh... twenty bags of uh... salt, rice, everything!
# text_ortho = But now, if you no bring goat, twenty bags of eh cement, eh twenty bags of eh salt, rice, everyting!
1 # # PUNCT _ _ 6 punct _ AlignBegin=68480|AlignEnd=69440|Gloss=PUNCT
2 but but CCONJ _ _ 6 discourse _ AlignBegin=69433|AlignEnd=69566|Gloss=but
3 now now ADV _ _ 6 mod:periph _ AlignBegin=69566|AlignEnd=69920|Gloss=now
4 < < PUNCT _ _ 3 punct _ AlignBegin=69920|AlignEnd=69920|Gloss=PUNCT
5 # # PUNCT _ _ 3 punct _ AlignBegin=69920|AlignEnd=70300|Gloss=PUNCT
6 if if SCONJ _ _ 0 root _ AlignBegin=70300|AlignEnd=70390|Gloss=if
7 you you PRON _ Case=Nom|Person=2|PronType=Prs 8 subj _ AlignBegin=70390|AlignEnd=70466|Gloss=NOM.2
8 no no AUX _ Polarity=Neg 6 comp:obj _ AlignBegin=70466|AlignEnd=70610|Gloss=NEG
9 bring bring VERB _ _ 8 comp:aux _ AlignBegin=70610|AlignEnd=70861|Gloss=bring
10 { { PUNCT _ _ 11 punct _ AlignBegin=70861|AlignEnd=70861|Gloss=PUNCT
11 goat goat NOUN _ _ 9 comp:obj _ AlignBegin=70861|AlignEnd=71060|Gloss=goat
12 |c |c PUNCT _ _ 15 punct _ AlignBegin=71060|AlignEnd=71119|Gloss=PUNCT
13 # # PUNCT _ _ 15 punct _ AlignBegin=71060|AlignEnd=71540|Gloss=PUNCT
14 twenty twenty NUM _ NumType=Card 15 det:num _ AlignBegin=71540|AlignEnd=71883|Gloss=twenty.CARD
15 bags bag NOUN _ Number=Plur 11 conj:coord _ AlignBegin=71883|AlignEnd=72160|Gloss=bag.PL
16 of of ADP _ _ 15 mod _ AlignBegin=72160|AlignEnd=72349|Gloss=of
17 eh eh INTJ _ _ 18 discourse _ AlignBegin=72349|AlignEnd=72651|Gloss=eh
18 cement cement NOUN _ _ 16 comp:obj _ AlignBegin=72651|AlignEnd=73000|Gloss=cement
19 |c |c PUNCT _ _ 24 punct _ AlignBegin=73000|AlignEnd=73081|Gloss=PUNCT
20 # # PUNCT _ _ 21 punct _ AlignBegin=73000|AlignEnd=73320|Gloss=PUNCT
21 eh eh INTJ _ _ 24 discourse _ AlignBegin=73320|AlignEnd=73540|Gloss=eh
22 # # PUNCT _ _ 21 punct _ AlignBegin=73560|AlignEnd=73840|Gloss=PUNCT
23 twenty twenty NUM _ NumType=Card 24 det:num _ AlignBegin=73808|AlignEnd=74090|Gloss=twenty.CARD
24 bags bag NOUN _ Number=Plur 15 conj:coord _ AlignBegin=74090|AlignEnd=74390|Gloss=bag.PL
25 of of ADP _ _ 24 mod _ AlignBegin=74390|AlignEnd=74564|Gloss=of
26 eh eh INTJ _ _ 29 discourse _ AlignBegin=74564|AlignEnd=75160|Gloss=eh
27 # # PUNCT _ _ 29 punct _ AlignBegin=75160|AlignEnd=75325|Gloss=PUNCT
28 { { PUNCT _ _ 29 punct _ AlignBegin=75160|AlignEnd=75325|Gloss=PUNCT
29 salt salt NOUN _ _ 25 comp:obj _ AlignBegin=75345|AlignEnd=75765|Gloss=salt
30 |c |c PUNCT _ _ 32 punct _ AlignBegin=75765|AlignEnd=75765|Gloss=PUNCT
31 # # PUNCT _ _ 32 punct _ AlignBegin=75765|AlignEnd=76620|Gloss=PUNCT
32 rice rice NOUN _ _ 29 conj:coord _ AlignBegin=76620|AlignEnd=77245|Gloss=rice
33 |c |c PUNCT _ _ 35 punct _ AlignBegin=77170|AlignEnd=77245|Gloss=PUNCT
34 # # PUNCT _ _ 35 punct _ AlignBegin=77170|AlignEnd=77900|Gloss=PUNCT
35 everyting everyting PRON _ _ 32 conj:coord _ AlignBegin=77900|AlignEnd=78440|Gloss=everything
36 } } PUNCT _ _ 29 punct _ AlignBegin=78440|AlignEnd=78440|Gloss=PUNCT
37 } } PUNCT _ _ 11 punct _ AlignBegin=78410|AlignEnd=78440|Gloss=PUNCT
38 !// !// PUNCT _ _ 6 punct _ AlignBegin=78410|AlignEnd=78440|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__18
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = wit donkey sef >+ de say [ de may bring //] !//
# text_en = Even with a donkey, they'll say to bring one.
# text_ortho = Wit donkey sef de say de may bring!
1 wit wit ADP _ _ 0 root _ AlignBegin=78440|AlignEnd=78600|Gloss=with
2 donkey donkey ADJ _ _ 1 comp:obj _ AlignBegin=78600|AlignEnd=78921|Gloss=donkey
3 sef sef PART _ PartType=Disc 2 mod:emph _ AlignBegin=78921|AlignEnd=79222|Gloss=FOC
4 >+ >+ PUNCT _ _ 6 punct _ AlignBegin=78921|AlignEnd=79192|Gloss=PUNCT
5 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 6 subj _ AlignBegin=79222|AlignEnd=79354|Gloss=NOM.PL.3
6 say say VERB _ _ 1 comp:cleft _ AlignBegin=79354|AlignEnd=79507|Gloss=say
7 [ [ PUNCT _ _ 9 punct _ AlignBegin=79507|AlignEnd=79507|Gloss=PUNCT
8 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 9 subj _ AlignBegin=79507|AlignEnd=79610|Gloss=NOM.PL.3
9 may may AUX _ _ 6 parataxis:obj$utter _ AlignBegin=79610|AlignEnd=79776|Gloss=may
10 bring bring VERB _ _ 9 comp:aux _ AlignBegin=79776|AlignEnd=80020|Gloss=bring
11 //] //] PUNCT _ _ 9 punct _ AlignBegin=80020|AlignEnd=80020|Gloss=PUNCT
12 !// !// PUNCT _ _ 1 punct _ AlignBegin=79990|AlignEnd=80020|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__19
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # wit duck !//
# text_en = With a duck!
# text_ortho = Wit duck!
1 # # PUNCT _ _ 2 punct _ AlignBegin=80020|AlignEnd=80429|Gloss=PUNCT
2 wit wit ADP _ _ 0 root _ AlignBegin=80436|AlignEnd=80592|Gloss=with
3 duck duck NOUN _ _ 2 comp:obj _ AlignBegin=80592|AlignEnd=80890|Gloss=duck
4 !// !// PUNCT _ _ 2 punct _ AlignBegin=80890|AlignEnd=80890|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__20
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # see how di world be !//
# text_en = Look how the world is!
# text_ortho = See how di world be!
1 # # PUNCT _ _ 2 punct _ AlignBegin=80890|AlignEnd=82180|Gloss=PUNCT
2 see see VERB _ _ 0 root _ AlignBegin=82103|AlignEnd=82306|Gloss=see
3 how how ADV _ PronType=Int 2 comp:obj _ AlignBegin=82306|AlignEnd=82460|Gloss=how.Q
4 di di DET _ Definite=Def|PronType=Art 5 det _ AlignBegin=82460|AlignEnd=82629|Gloss=DEF.ART
5 world world NOUN _ _ 6 subj _ AlignBegin=82629|AlignEnd=82888|Gloss=world
6 be be VERB _ PartType=Cop 3 mod@relcl _ AlignBegin=82888|AlignEnd=83100|Gloss=be
7 !// !// PUNCT _ _ 2 punct _ AlignBegin=83100|AlignEnd=83100|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__21
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # na so >+ we go carry everyting go ?//
# text_en = Is that how things will go on?
# text_ortho = Na so we go carry everyting go?
1 # # PUNCT _ _ 2 punct _ AlignBegin=83100|AlignEnd=83920|Gloss=PUNCT
2 na na PART _ PartType=Cop 0 root _ AlignBegin=83901|AlignEnd=84007|Gloss=be
3 so so ADV _ _ 2 comp:pred _ AlignBegin=84007|AlignEnd=84185|Gloss=so
4 >+ >+ PUNCT _ _ 6 punct _ AlignBegin=84185|AlignEnd=84185|Gloss=PUNCT
5 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 6 subj _ AlignBegin=84185|AlignEnd=84280|Gloss=NOM.PL.1
6 go go AUX _ Aspect=Prosp 2 comp:cleft _ AlignBegin=84280|AlignEnd=84360|Gloss=PROSP
7 carry carry VERB _ _ 6 comp:aux _ AlignBegin=84360|AlignEnd=84570|Gloss=carry
8 everyting everyting PRON _ _ 7 comp:obj _ AlignBegin=84570|AlignEnd=84988|Gloss=everything
9 go go VERB _ _ 7 compound:svc _ AlignBegin=84988|AlignEnd=85160|Gloss=go
10 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=85160|AlignEnd=85160|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__22
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # how { di gene~ || generation } go be ?//
# text_en = How will the next gene... generation be?
# text_ortho = How di gene-... generation go be?
1 # # PUNCT _ _ 2 punct _ AlignBegin=85160|AlignEnd=85800|Gloss=PUNCT
2 how how ADV _ PronType=Int 0 root _ AlignBegin=85800|AlignEnd=86079|Gloss=how.Q
3 { { PUNCT _ _ 5 punct _ AlignBegin=86079|AlignEnd=86079|Gloss=PUNCT
4 di di DET _ Definite=Def|PronType=Art 5 det _ AlignBegin=86079|AlignEnd=86230|Gloss=DEF.ART
5 gene~ X X _ _ 9 subj _ AlignBegin=86230|AlignEnd=86560|Gloss=X
6 || || PUNCT _ _ 7 punct _ AlignBegin=86560|AlignEnd=86560|Gloss=PUNCT
7 generation generation NOUN _ _ 5 conj:coord _ AlignBegin=86560|AlignEnd=86980|Gloss=generation
8 } } PUNCT _ _ 5 punct _ AlignBegin=86980|AlignEnd=86980|Gloss=PUNCT
9 go go AUX _ Aspect=Prosp 2 comp:cleft _ AlignBegin=86980|AlignEnd=87110|Gloss=PROSP
10 be be VERB _ PartType=Cop 9 comp:aux _ AlignBegin=87110|AlignEnd=87340|Gloss=be
11 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=87340|AlignEnd=87340|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__23
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # maybe de go say [ meh de build house for dem # parents ] //
# text_en = Maybe they will be asked to build houses for their parents.
# text_ortho = Maybe de go say meh de build house for dem parents.
1 # # PUNCT _ _ 4 punct _ AlignBegin=87340|AlignEnd=87920|Gloss=PUNCT
2 maybe maybe ADV _ _ 4 mod:periph _ AlignBegin=87920|AlignEnd=88097|Gloss=maybe
3 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 4 subj _ AlignBegin=88097|AlignEnd=88229|Gloss=NOM.PL.3
4 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=88229|AlignEnd=88332|Gloss=PROSP
5 say say VERB _ _ 4 comp:aux _ AlignBegin=88332|AlignEnd=88473|Gloss=say
6 [ [ PUNCT _ _ 7 punct _ AlignBegin=88473|AlignEnd=88473|Gloss=PUNCT
7 meh make AUX _ Mood=Opt 5 parataxis:obj$utter _ AlignBegin=88473|AlignEnd=88630|Gloss=SBJV
8 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 9 subj _ AlignBegin=88630|AlignEnd=88778|Gloss=NOM.PL.3
9 build build VERB _ _ 7 comp:aux _ AlignBegin=88778|AlignEnd=88960|Gloss=build
10 house house NOUN _ _ 9 comp:obj _ AlignBegin=88960|AlignEnd=89191|Gloss=house
11 for for ADP _ _ 9 comp:obl _ AlignBegin=89191|AlignEnd=89319|Gloss=for
12 dem dem PRON _ Number=Plur|Person=3|Poss=Yes 14 mod:poss _ AlignBegin=89319|AlignEnd=89560|Gloss=PL.3.POSS
13 # # PUNCT _ _ 12 punct _ AlignBegin=89560|AlignEnd=90175|Gloss=PUNCT
14 parents parent NOUN _ Number=Plur 11 comp:obj _ AlignBegin=90175|AlignEnd=90655|Gloss=parent.PL
15 ] ] PUNCT _ _ 7 punct _ AlignBegin=90655|AlignEnd=90655|Gloss=PUNCT
16 // // PUNCT _ _ 4 punct _ AlignBegin=90625|AlignEnd=90655|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__24
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # we pray { dat God will help us # in dis generation |c dat # tings # will come better } //
# text_en = We pray for God to help us in this generation, for things to get better.
# text_ortho = We pray dat God will help us in dis generation, dat tings will come better.
1 # # PUNCT _ _ 3 punct _ AlignBegin=90655|AlignEnd=91560|Gloss=PUNCT
2 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 3 subj _ AlignBegin=91560|AlignEnd=91717|Gloss=NOM.PL.1|Lang=en
3 pray pray VERB _ _ 0 root _ AlignBegin=91717|AlignEnd=91907|Gloss=pray|Lang=en
4 { { PUNCT _ _ 5 punct _ AlignBegin=91717|AlignEnd=91877|Gloss=PUNCT
5 dat dat SCONJ _ _ 3 comp:obj _ AlignBegin=91907|AlignEnd=92060|Gloss=COMP|Lang=en
6 God God PROPN _ _ 7 subj _ AlignBegin=92060|AlignEnd=92370|Gloss=God|Lang=en
7 will will AUX _ VerbForm=Fin 5 comp:obj _ AlignBegin=92370|AlignEnd=92540|Gloss=FUT|Lang=en
8 help help VERB _ _ 7 comp:aux _ AlignBegin=92540|AlignEnd=92800|Gloss=help|Lang=en
9 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 8 comp:obj _ AlignBegin=92800|AlignEnd=93127|Gloss=ACC.PL.1|Lang=en
10 # # PUNCT _ _ 11 punct _ AlignBegin=93060|AlignEnd=93800|Gloss=PUNCT
11 in in ADP _ _ 8 mod _ AlignBegin=93800|AlignEnd=93901|Gloss=in|Lang=en
12 dis dis DET _ Number=Sing|PronType=Dem 13 det _ AlignBegin=93901|AlignEnd=94050|Gloss=SG.DEM|Lang=en
13 generation generation NOUN _ _ 11 comp:obj _ AlignBegin=94050|AlignEnd=94667|Gloss=generation|Lang=en
14 |c |c PUNCT _ _ 15 punct _ AlignBegin=94667|AlignEnd=94840|Gloss=PUNCT
15 dat dat SCONJ _ _ 5 conj:coord _ AlignBegin=94667|AlignEnd=94840|Gloss=COMP|Lang=en
16 # # PUNCT _ _ 19 punct _ AlignBegin=94840|AlignEnd=95280|Gloss=PUNCT
17 tings tings NOUN _ Number=Plur 19 subj _ AlignBegin=95250|AlignEnd=95705|Gloss=thing.PL|Lang=en
18 # # PUNCT _ _ 17 punct _ AlignBegin=95670|AlignEnd=95920|Gloss=PUNCT
19 will will AUX _ VerbForm=Fin 15 comp:obj _ AlignBegin=95979|AlignEnd=96120|Gloss=FUT|Lang=en
20 come come VERB _ _ 19 comp:aux _ AlignBegin=96120|AlignEnd=96320|Gloss=come|Lang=en
21 better beta ADJ _ Degree=Cmp 20 comp:pred _ AlignBegin=96320|AlignEnd=96620|Gloss=good.CMPR|Lang=en
22 } } PUNCT _ _ 5 punct _ AlignBegin=96620|AlignEnd=96655|Gloss=PUNCT
23 // // PUNCT _ _ 3 punct _ AlignBegin=96620|AlignEnd=96620|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__25
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and nowadays < # even women now < # maybe no be # men >+ dey go look for dem //
# text_en = And nowadays, even the women, maybe the men are not the ones looking for them.
# text_ortho = And nowadays, even women now, maybe no be men dey go look for dem.
1 # # PUNCT _ _ 12 punct _ AlignBegin=96620|AlignEnd=98600|Gloss=PUNCT
2 and and CCONJ _ _ 12 discourse _ AlignBegin=98600|AlignEnd=98810|Gloss=and
3 nowadays nowadays ADV _ _ 12 mod:periph _ AlignBegin=98810|AlignEnd=99569|Gloss=nowadays
4 < < PUNCT _ _ 3 punct _ AlignBegin=99500|AlignEnd=99569|Gloss=PUNCT
5 # # PUNCT _ _ 3 punct _ AlignBegin=99500|AlignEnd=100000|Gloss=PUNCT
6 even even ADV _ _ 7 mod _ AlignBegin=100000|AlignEnd=100299|Gloss=even
7 women woman NOUN _ Number=Plur 12 dislocated _ AlignBegin=100299|AlignEnd=100620|Gloss=woman.PL
8 now now ADV _ _ 7 mod:emph _ AlignBegin=100620|AlignEnd=100920|Gloss=now
9 < < PUNCT _ _ 7 punct _ AlignBegin=100920|AlignEnd=100920|Gloss=PUNCT
10 # # PUNCT _ _ 7 punct _ AlignBegin=100920|AlignEnd=101600|Gloss=PUNCT
11 maybe maybe ADV _ _ 12 mod:periph _ AlignBegin=101600|AlignEnd=101891|Gloss=maybe
12 no no AUX _ Polarity=Neg 0 root _ AlignBegin=101891|AlignEnd=102148|Gloss=NEG
13 be be VERB _ PartType=Cop 12 comp:aux _ AlignBegin=102148|AlignEnd=102740|Gloss=be
14 # # PUNCT _ _ 15 punct _ AlignBegin=102740|AlignEnd=103400|Gloss=PUNCT
15 men man NOUN _ Number=Plur 13 comp:pred _ AlignBegin=103400|AlignEnd=103676|Gloss=man.PL
16 >+ >+ PUNCT _ _ 17 punct _ AlignBegin=103676|AlignEnd=103676|Gloss=PUNCT
17 dey dey AUX _ Aspect=Imp 13 comp:cleft _ AlignBegin=103676|AlignEnd=103800|Gloss=IPFV
18 go go VERB _ _ 17 comp:aux _ AlignBegin=103800|AlignEnd=103959|Gloss=go
19 look look VERB _ _ 18 compound:svc$purp _ AlignBegin=103959|AlignEnd=104100|Gloss=look
20 for for ADP _ _ 19 comp:obl _ AlignBegin=104100|AlignEnd=104284|Gloss=for
21 dem dem PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 20 comp:obj _ AlignBegin=104284|AlignEnd=104460|Gloss=ACC.PL.3
22 // // PUNCT _ _ 12 punct _ AlignBegin=104460|AlignEnd=104460|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__26
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # na women >+ de go look for { wom~ || mow~ || man } now //
# text_en = Women are the ones looking for wom-... mow-... men, nowadays.
# text_ortho = Na women de go look for wom-... mow-... man now.
1 # # PUNCT _ _ 2 punct _ AlignBegin=104460|AlignEnd=106100|Gloss=PUNCT
2 na na PART _ PartType=Cop 0 root _ AlignBegin=106100|AlignEnd=106260|Gloss=be
3 women woman NOUN _ Number=Plur 2 comp:pred _ AlignBegin=106260|AlignEnd=106560|Gloss=woman.PL
4 >+ >+ PUNCT _ _ 6 punct _ AlignBegin=106560|AlignEnd=106560|Gloss=PUNCT
5 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 6 subj _ AlignBegin=106560|AlignEnd=106690|Gloss=NOM.PL.3
6 go go VERB _ _ 2 comp:cleft _ AlignBegin=106690|AlignEnd=106860|Gloss=go
7 look look VERB _ _ 6 compound:svc$purp _ AlignBegin=106860|AlignEnd=107050|Gloss=look
8 for for ADP _ _ 7 comp:obl _ AlignBegin=107050|AlignEnd=107250|Gloss=for
9 { { PUNCT _ _ 10 punct _ AlignBegin=107250|AlignEnd=107250|Gloss=PUNCT
10 wom~ X X _ _ 8 comp:obj _ AlignBegin=107250|AlignEnd=107520|Gloss=X
11 || || PUNCT _ _ 12 punct _ AlignBegin=107520|AlignEnd=107520|Gloss=PUNCT
12 mow~ X X _ _ 10 conj:dicto _ AlignBegin=107520|AlignEnd=107981|Gloss=X
13 || || PUNCT _ _ 14 punct _ AlignBegin=107981|AlignEnd=107981|Gloss=PUNCT
14 man man NOUN _ _ 12 conj:dicto _ AlignBegin=107981|AlignEnd=108240|Gloss=man
15 } } PUNCT _ _ 10 punct _ AlignBegin=108240|AlignEnd=108240|Gloss=PUNCT
16 now now ADV _ _ 7 mod _ AlignBegin=108240|AlignEnd=108460|Gloss=now
17 // // PUNCT _ _ 2 punct _ AlignBegin=108460|AlignEnd=108460|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__27
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # de wan marry by force //
# text_en = They want to get married by force.
# text_ortho = De wan marry by force.
1 # # PUNCT _ _ 3 punct _ AlignBegin=108460|AlignEnd=109520|Gloss=PUNCT
2 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 3 subj _ AlignBegin=109520|AlignEnd=109631|Gloss=NOM.PL.3
3 wan want VERB _ _ 0 root _ AlignBegin=109631|AlignEnd=109786|Gloss=want
4 marry marry VERB _ _ 3 comp:obj$desire _ AlignBegin=109786|AlignEnd=110070|Gloss=marry|Subject=Raising
5 by by ADP _ _ 4 mod _ AlignBegin=110070|AlignEnd=110230|Gloss=by
6 force force NOUN _ _ 5 comp:obj _ AlignBegin=110230|AlignEnd=110650|Gloss=force
7 // // PUNCT _ _ 3 punct _ AlignBegin=110650|AlignEnd=110650|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__28
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # I pray dat God will help us |c # for us to search oursef # to see better ting in life |c # for God to continue { to be wit us |c # and guide us } //
# text_en = I pray that God will help us look within ourselves so we'll see better things in life; for God to continue to be with us, and guide us.
# text_ortho = I pray dat God will help us, for us to search oursef to see better ting in life, for God to continue to be wit us, and guide us.
1 # # PUNCT _ _ 3 punct _ AlignBegin=110650|AlignEnd=112570|Gloss=PUNCT
2 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 3 subj _ AlignBegin=112570|AlignEnd=112684|Gloss=NOM.SG.1|Lang=en
3 pray pray VERB _ _ 0 root _ AlignBegin=112684|AlignEnd=112910|Gloss=pray|Lang=en
4 dat dat SCONJ _ _ 3 comp:obj _ AlignBegin=112910|AlignEnd=113070|Gloss=COMP|Lang=en
5 God God PROPN _ _ 6 subj _ AlignBegin=113070|AlignEnd=113340|Gloss=God|Lang=en
6 will will AUX _ VerbForm=Fin 4 comp:obj _ AlignBegin=113340|AlignEnd=113461|Gloss=FUT|Lang=en
7 help help VERB _ _ 6 comp:aux _ AlignBegin=113461|AlignEnd=113690|Gloss=help|Lang=en
8 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 7 comp:obj _ AlignBegin=113690|AlignEnd=113920|Gloss=ACC.PL.1|Lang=en
9 |c |c PUNCT _ _ 11 punct _ AlignBegin=113920|AlignEnd=114320|Gloss=PUNCT
10 # # PUNCT _ _ 11 punct _ AlignBegin=113920|AlignEnd=114320|Gloss=PUNCT
11 for for ADP _ _ 4 conj:coord _ AlignBegin=114285|AlignEnd=114430|Gloss=for|Lang=en
12 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 11 comp:obj _ AlignBegin=114430|AlignEnd=114619|Gloss=ACC.PL.1|Lang=en
13 to to ADP _ _ 11 comp:obl _ AlignBegin=114619|AlignEnd=114733|Gloss=to|Lang=en|Subject=Raising
14 search search VERB _ _ 13 comp:obj _ AlignBegin=114733|AlignEnd=115181|Gloss=search|Lang=en
15 oursef oursef PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs|Reflex=Yes 14 comp:obj _ AlignBegin=115181|AlignEnd=115660|Gloss=ACC.PL.1.REFL|Lang=en
16 # # PUNCT _ _ 17 punct _ AlignBegin=115660|AlignEnd=116040|Gloss=PUNCT
17 to to ADP _ _ 13 conj:coord _ AlignBegin=116029|AlignEnd=116110|Gloss=to|Lang=en
18 see see VERB _ _ 17 comp:obj _ AlignBegin=116110|AlignEnd=116320|Gloss=see|Lang=en
19 better beta ADJ _ Degree=Cmp 20 mod _ AlignBegin=116320|AlignEnd=116629|Gloss=good.CMPR|Lang=en
20 ting ting NOUN _ _ 18 comp:obj _ AlignBegin=116629|AlignEnd=116860|Gloss=thing|Lang=en
21 in in ADP _ _ 18 comp:obl _ AlignBegin=116860|AlignEnd=117034|Gloss=in|Lang=en
22 life life NOUN _ _ 21 comp:obj _ AlignBegin=117034|AlignEnd=117280|Gloss=life|Lang=en
23 |c |c PUNCT _ _ 25 punct _ AlignBegin=117280|AlignEnd=117378|Gloss=PUNCT
24 # # PUNCT _ _ 25 punct _ AlignBegin=117280|AlignEnd=118020|Gloss=PUNCT
25 for for ADP _ _ 11 conj:coord _ AlignBegin=117974|AlignEnd=118129|Gloss=for|Lang=en
26 God God PROPN _ _ 25 comp:obj _ AlignBegin=118129|AlignEnd=118340|Gloss=God|Lang=en
27 to to ADP _ _ 25 comp:obl _ AlignBegin=118340|AlignEnd=118577|Gloss=to|Lang=en|Subject=Raising
28 continue continue VERB _ _ 27 comp:obj _ AlignBegin=118577|AlignEnd=118951|Gloss=continue|Lang=en
29 { { PUNCT _ _ 30 punct _ AlignBegin=118951|AlignEnd=119086|Gloss=PUNCT
30 to to ADP _ _ 28 comp:obl _ AlignBegin=118951|AlignEnd=119116|Gloss=to|Lang=en
31 be be VERB _ _ 30 comp:obj _ AlignBegin=119116|AlignEnd=119352|Gloss=be|Lang=en
32 wit wit ADP _ _ 31 comp:pred _ AlignBegin=119352|AlignEnd=119560|Gloss=with|Lang=en
33 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 32 comp:obj _ AlignBegin=119560|AlignEnd=119770|Gloss=ACC.PL.1|Lang=en
34 |c |c PUNCT _ _ 37 punct _ AlignBegin=119770|AlignEnd=119770|Gloss=PUNCT
35 # # PUNCT _ _ 37 punct _ AlignBegin=119770|AlignEnd=120140|Gloss=PUNCT
36 and and CCONJ _ _ 37 cc _ AlignBegin=120140|AlignEnd=120280|Gloss=and|Lang=en
37 guide guide VERB _ _ 30 conj:coord _ AlignBegin=120280|AlignEnd=120560|Gloss=guide|Lang=en
38 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 37 comp:obj _ AlignBegin=120560|AlignEnd=120900|Gloss=ACC.PL.1|Lang=en
39 } } PUNCT _ _ 30 punct _ AlignBegin=120900|AlignEnd=120938|Gloss=PUNCT
40 // // PUNCT _ _ 3 punct _ AlignBegin=120900|AlignEnd=120900|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__29
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # and anoder ting again < # women don't compose deirsef //= # de didn't compose deirsef //
# text_en = And another thing is women don't compose themselves... they don't compose themselves.
# text_ortho = And anoder ting again, women don't compose deirsef, de didn't compose deirsef.
1 # # PUNCT _ _ 9 punct _ AlignBegin=120900|AlignEnd=122000|Gloss=PUNCT
2 and and CCONJ _ _ 9 discourse _ AlignBegin=122000|AlignEnd=122140|Gloss=and|Lang=en
3 anoder anoder DET _ _ 4 det _ AlignBegin=122140|AlignEnd=122530|Gloss=another|Lang=en
4 ting ting NOUN _ _ 9 parataxis:discourse _ AlignBegin=122530|AlignEnd=122710|Gloss=thing|Lang=en
5 again again ADV _ _ 4 mod _ AlignBegin=122710|AlignEnd=123100|Gloss=again|Lang=en
6 < < PUNCT _ _ 4 punct _ AlignBegin=123100|AlignEnd=123100|Gloss=PUNCT
7 # # PUNCT _ _ 4 punct _ AlignBegin=123100|AlignEnd=124260|Gloss=PUNCT
8 women woman NOUN _ Number=Plur 9 subj _ AlignBegin=124260|AlignEnd=124560|Gloss=woman.PL|Lang=en
9 do do AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=124560|AlignEnd=124685|Gloss=do.IND.PRS.FIN|Lang=en|SpaceAfter=No
10 n't not PART _ Polarity=Neg 9 mod _ AlignBegin=124685|AlignEnd=124790|Gloss=NEG|Lang=en
11 compose compose VERB _ _ 9 comp:aux _ AlignBegin=124790|AlignEnd=125200|Gloss=compose|Lang=en
12 deirsef demsef PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 11 comp:obj _ AlignBegin=125200|AlignEnd=125691|Gloss=ACC.PL.3.REFL|Lang=en
13 //= //= PUNCT _ _ 16 punct _ AlignBegin=125600|AlignEnd=125691|Gloss=PUNCT
14 # # PUNCT _ _ 16 punct _ AlignBegin=125600|AlignEnd=127020|Gloss=PUNCT
15 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 16 subj _ AlignBegin=127020|AlignEnd=127153|Gloss=NOM.PL.3|Lang=en
16 did do AUX _ Mood=Ind|Tense=Past 9 parataxis:conj _ AlignBegin=127153|AlignEnd=127278|Gloss=do.PST|Lang=en|SpaceAfter=No
17 n't not PART _ Polarity=Neg 16 mod _ AlignBegin=127278|AlignEnd=127396|Gloss=NEG|Lang=en
18 compose compose VERB _ _ 16 comp:aux _ AlignBegin=127396|AlignEnd=127772|Gloss=compose|Lang=en
19 deirsef demsef PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 18 comp:obj _ AlignBegin=127772|AlignEnd=128187|Gloss=ACC.PL.3.REFL|Lang=en
20 // // PUNCT _ _ 9 punct _ AlignBegin=128188|AlignEnd=128188|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__30
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # de don't compose deirsef at all //
# text_en = They don't compose themselves at all.
# text_ortho = De don't compose deirsef at all.
1 # # PUNCT _ _ 3 punct _ AlignBegin=128188|AlignEnd=128420|Gloss=PUNCT
2 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 3 subj _ AlignBegin=128402|AlignEnd=128490|Gloss=NOM.PL.3|Lang=en
3 do do AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=128490|AlignEnd=128562|Gloss=do.IND.PRS.FIN|Lang=en|SpaceAfter=No
4 n't not PART _ Polarity=Neg 3 mod _ AlignBegin=128562|AlignEnd=128650|Gloss=NEG|Lang=en
5 compose compose VERB _ _ 3 comp:aux _ AlignBegin=128650|AlignEnd=129100|Gloss=compose|Lang=en
6 deirsef demsef PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 5 comp:obj _ AlignBegin=129100|AlignEnd=129470|Gloss=ACC.PL.3.REFL|Lang=en
7 at at ADP _ ExtPos=ADV 5 mod _ AlignBegin=129470|AlignEnd=129710|Gloss=at|Idiom=Yes|Lang=en
8 all all PRON _ _ 7 comp:obj _ AlignBegin=129710|AlignEnd=130120|Gloss=all|InIdiom=Yes|Lang=en
9 // // PUNCT _ _ 3 punct _ AlignBegin=130120|AlignEnd=130120|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__31
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # if de { compose deirsef |c # dress fine |c # look # very fine } < # na dere >+ men &//
# text_en = If they compose themselves, dress well, look very beautiful, from there, men...
# text_ortho = If de compose deirsef, dress fine, look very fine, na dere men...
1 # # PUNCT _ _ 20 punct _ AlignBegin=130120|AlignEnd=130800|Gloss=PUNCT
2 if if SCONJ _ _ 20 mod:periph$cond _ AlignBegin=130800|AlignEnd=130910|Gloss=if
3 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 5 subj _ AlignBegin=130910|AlignEnd=131060|Gloss=NOM.PL.3
4 { { PUNCT _ _ 5 punct _ AlignBegin=131060|AlignEnd=131060|Gloss=PUNCT
5 compose compose VERB _ _ 2 comp:obj _ AlignBegin=131060|AlignEnd=131460|Gloss=compose
6 deirsef demsef PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 5 comp:obj _ AlignBegin=131460|AlignEnd=131938|Gloss=ACC.PL.3.REFL
7 |c |c PUNCT _ _ 9 punct _ AlignBegin=131880|AlignEnd=131938|Gloss=PUNCT
8 # # PUNCT _ _ 9 punct _ AlignBegin=131880|AlignEnd=132680|Gloss=PUNCT
9 dress dress VERB _ _ 5 conj:coord _ AlignBegin=132680|AlignEnd=132996|Gloss=dress
10 fine fine ADJ _ _ 9 mod _ AlignBegin=132996|AlignEnd=133380|Gloss=fine
11 |c |c PUNCT _ _ 13 punct _ AlignBegin=133380|AlignEnd=133380|Gloss=PUNCT
12 # # PUNCT _ _ 13 punct _ AlignBegin=133380|AlignEnd=134260|Gloss=PUNCT
13 look look VERB _ _ 9 conj:coord _ AlignBegin=134260|AlignEnd=134565|Gloss=look
14 # # PUNCT _ _ 16 punct _ AlignBegin=134540|AlignEnd=134960|Gloss=PUNCT
15 very very ADV _ _ 16 mod _ AlignBegin=134960|AlignEnd=135200|Gloss=very
16 fine fine ADJ _ _ 13 mod _ AlignBegin=135200|AlignEnd=135540|Gloss=fine
17 } } PUNCT _ _ 5 punct _ AlignBegin=135540|AlignEnd=135540|Gloss=PUNCT
18 < < PUNCT _ _ 2 punct _ AlignBegin=135510|AlignEnd=135540|Gloss=PUNCT
19 # # PUNCT _ _ 2 punct _ AlignBegin=135540|AlignEnd=136040|Gloss=PUNCT
20 na na PART _ PartType=Cop 0 root _ AlignBegin=136040|AlignEnd=136228|Gloss=be
21 dere dere ADV _ _ 20 comp:pred _ AlignBegin=136228|AlignEnd=136634|Gloss=there
22 >+ >+ PUNCT _ _ 20 punct _ AlignBegin=136634|AlignEnd=136634|Gloss=PUNCT
23 men man NOUN _ Number=Plur 20 comp:cleft@scrap _ AlignBegin=136634|AlignEnd=137020|Gloss=man.PL
24 &// &// PUNCT _ _ 20 punct _ AlignBegin=137020|AlignEnd=137020|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__32
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # when we go come back |c # and see dem |c and say [ de wan marry dem ] //
# text_en = When we come back and see them, and say we want to marry them.
# text_ortho = When we go come back, and see dem, and say de wan marry dem.
1 # # PUNCT _ _ 4 punct _ AlignBegin=137020|AlignEnd=137620|Gloss=PUNCT
2 when when ADV _ _ 4 discourse _ AlignBegin=137620|AlignEnd=137730|Gloss=when.Q
3 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 4 subj _ AlignBegin=137730|AlignEnd=137818|Gloss=NOM.PL.1
4 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=137818|AlignEnd=137868|Gloss=PROSP
5 come come VERB _ _ 4 comp:aux _ AlignBegin=137868|AlignEnd=138133|Gloss=come
6 back back ADV _ _ 5 compound:prt _ AlignBegin=138133|AlignEnd=138300|Gloss=back
7 |c |c PUNCT _ _ 10 punct _ AlignBegin=138133|AlignEnd=138270|Gloss=PUNCT
8 # # PUNCT _ _ 10 punct _ AlignBegin=138270|AlignEnd=138300|Gloss=PUNCT
9 and and CCONJ _ _ 10 cc _ AlignBegin=138660|AlignEnd=138790|Gloss=PUNCT
10 see see VERB _ _ 5 conj:coord _ AlignBegin=138790|AlignEnd=139006|Gloss=see
11 dem dem PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 10 comp:obj _ AlignBegin=139006|AlignEnd=139300|Gloss=ACC.PL.3
12 |c |c PUNCT _ _ 14 punct _ AlignBegin=139006|AlignEnd=139270|Gloss=PUNCT
13 and and CCONJ _ _ 14 cc _ AlignBegin=139300|AlignEnd=139440|Gloss=and
14 say say VERB _ _ 10 conj:coord _ AlignBegin=139440|AlignEnd=139609|Gloss=say
15 [ [ PUNCT _ _ 17 punct _ AlignBegin=139609|AlignEnd=139609|Gloss=PUNCT
16 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 17 subj _ AlignBegin=139609|AlignEnd=139718|Gloss=NOM.PL.3
17 wan want VERB _ _ 14 parataxis:obj$utter _ AlignBegin=139718|AlignEnd=139860|Gloss=want
18 marry marry VERB _ _ 17 comp:obj$desire _ AlignBegin=139860|AlignEnd=140128|Gloss=want|Subject=Raising
19 dem dem PRON _ Case=Acc|Number=Plur|Person=3|PronType=Prs 18 comp:obj _ AlignBegin=140128|AlignEnd=140280|Gloss=ACC.PL.3
20 ] ] PUNCT _ _ 17 punct _ AlignBegin=140280|AlignEnd=140280|Gloss=PUNCT
21 // // PUNCT _ _ 4 punct _ AlignBegin=140280|AlignEnd=140280|Gloss=PUNCT
# sent_id = KAD_15_Money-Wahala_MG__33
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/KAD_15_Money-Wahala_MG.mp3
# speaker_age = 46-60
# speaker_birthplace = Lagos
# speaker_education = Secondary
# speaker_id = Sp194
# speaker_naija_competency = Moderate
# speaker_primary_other_language = Kagoro
# speaker_residence = Kaduna
# speaker_sex = M
# text = # but we have different tradition //
# text_en = But we have different traditions.
# text_ortho = But we have different tradition.
1 # # PUNCT _ _ 4 punct _ AlignBegin=140280|AlignEnd=141480|Gloss=PUNCT
2 but but CCONJ _ _ 4 discourse _ AlignBegin=141480|AlignEnd=141580|Gloss=but
3 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 4 subj _ AlignBegin=141580|AlignEnd=141737|Gloss=NOM.PL.1
4 have have VERB _ _ 0 root _ AlignBegin=141737|AlignEnd=142040|Gloss=have
5 different different ADJ _ _ 6 mod _ AlignBegin=142040|AlignEnd=142501|Gloss=different
6 tradition tradition NOUN _ _ 4 comp:obj _ AlignBegin=142501|AlignEnd=143020|Gloss=tradition
7 // // PUNCT _ _ 4 punct _ AlignBegin=143020|AlignEnd=143020|Gloss=PUNCT