-
Notifications
You must be signed in to change notification settings - Fork 4
/
ParisStories_2022_chienGourmand.conllu
1252 lines (1183 loc) · 92.5 KB
/
ParisStories_2022_chienGourmand.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
# global.columns = ID FORM LEMMA UPOS XPOS FEATS HEAD DEPREL DEPS MISC
# sent_id = ParisStories_2022_7_chienGourmand__1
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = bah ouais, ça fait un moment.
1 bah bah INTJ _ _ 5 discourse _ AlignBegin=0|AlignEnd=271
2 ouais ouais INTJ _ _ 5 discourse _ AlignBegin=271|AlignEnd=542|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=542|AlignEnd=542
4 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 5 subj _ AlignBegin=542|AlignEnd=813
5 fait faire VERB _ Gender=Masc|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=813|AlignEnd=1083
6 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 7 det _ AlignBegin=1083|AlignEnd=1354
7 moment moment NOUN _ Gender=Masc|Number=Sing 5 comp:obj _ AlignBegin=1354|AlignEnd=1625|SpaceAfter=No
8 . . PUNCT _ _ 5 punct _ AlignBegin=1625|AlignEnd=1625
# sent_id = ParisStories_2022_7_chienGourmand__2
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = mais en fait, depuis qu'il est né, déjà au moment où, où on est allé le chercher, en fait, donc, c'était avec ma mère, on voulait absolument adopter un chien.
1 mais mais CCONJ _ _ 36 cc _ AlignBegin=1625|AlignEnd=1764
2 en en ADP _ _ 36 discourse _ AlignBegin=1764|AlignEnd=1904
3 fait fait NOUN _ Gender=Masc|Number=Sing 2 comp:obj _ AlignBegin=1904|AlignEnd=2043|SpaceAfter=No
4 , , PUNCT _ _ 2 punct _ AlignBegin=2043|AlignEnd=2043
5 depuis depuis ADP _ _ 36 mod _ AlignBegin=2043|AlignEnd=2183
6 qu' que SCONJ _ _ 5 comp:obj _ AlignBegin=2183|AlignEnd=2322|SpaceAfter=No
7 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 subj _ AlignBegin=2322|AlignEnd=2461
8 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 comp:obj _ AlignBegin=2461|AlignEnd=2601
9 né naître VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 8 comp:aux@tense _ AlignBegin=2601|AlignEnd=2740|SpaceAfter=No
10 , , PUNCT _ _ 5 punct _ AlignBegin=2740|AlignEnd=2740
11 déjà déjà ADV _ _ 12 mod _ AlignBegin=2887|AlignEnd=3131
12-13 au _ _ _ _ _ _ _ _
12 à à ADP _ _ 5 conj:dicto _ AlignBegin=3131|AlignEnd=3375|wordform=au
13 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 14 det _ _
14 moment moment NOUN _ Gender=Masc|Number=Sing 12 comp:obj _ AlignBegin=3375|AlignEnd=3619
15 où où PRON _ PronType=Rel 19 mod _ AlignBegin=3619|AlignEnd=3863|SpaceAfter=No
16 , , PUNCT _ _ 17 punct _ AlignBegin=3863|AlignEnd=3863
17 où où PRON _ PronType=Rel 15 conj:dicto _ AlignBegin=3863|AlignEnd=4107
18 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 19 subj _ AlignBegin=4107|AlignEnd=4351
19 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 mod@relcl _ AlignBegin=4351|AlignEnd=4595
20 allé aller VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 19 comp:aux@tense _ AlignBegin=4595|AlignEnd=4839
21 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 22 comp:obj _ AlignBegin=4839|AlignEnd=5083
22 chercher chercher VERB _ VerbForm=Inf 20 comp:obj _ AlignBegin=5083|AlignEnd=5327|SpaceAfter=No|Subject=SubjRaising
23 , , PUNCT _ _ 19 punct _ AlignBegin=5327|AlignEnd=5327
24 en en ADP _ _ 30 discourse _ AlignBegin=5327|AlignEnd=5430
25 fait fait NOUN _ Gender=Masc|Number=Sing 24 comp:obj _ AlignBegin=5430|AlignEnd=5532|SpaceAfter=No
26 , , PUNCT _ _ 27 punct _ AlignBegin=5532|AlignEnd=5532
27 donc donc ADV _ _ 30 discourse _ AlignBegin=5532|AlignEnd=5635|SpaceAfter=No
28 , , PUNCT _ _ 27 punct _ AlignBegin=5635|AlignEnd=5635
29 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 30 subj _ AlignBegin=5635|AlignEnd=5738|SpaceAfter=No
30 était être VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 19 parataxis:parenth _ AlignBegin=5738|AlignEnd=5840
31 avec avec ADP _ _ 30 comp:pred _ AlignBegin=5840|AlignEnd=5943
32 ma son DET _ Gender=Fem|Number=Sing|Number[psor]=Sing|Person[psor]=1|Poss=Yes|PronType=Prs 33 det _ AlignBegin=5943|AlignEnd=6045
33 mère mère NOUN _ Gender=Fem|Number=Sing 31 comp:obj _ AlignBegin=6045|AlignEnd=6148|SpaceAfter=No
34 , , PUNCT _ _ 5 punct _ AlignBegin=6148|AlignEnd=6148
35 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 36 subj _ AlignBegin=6148|AlignEnd=6323
36 voulait vouloir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 0 root _ AlignBegin=6323|AlignEnd=6499
37 absolument absolument ADV _ _ 36 mod _ AlignBegin=6499|AlignEnd=6674
38 adopter adopter VERB _ VerbForm=Inf 36 comp:obj _ AlignBegin=6674|AlignEnd=6849|Subject=SubjRaising
39 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 40 det _ AlignBegin=6849|AlignEnd=7025
40 chien chien NOUN _ Gender=Masc|Number=Sing 38 comp:obj _ AlignBegin=7025|AlignEnd=7200|SpaceAfter=No
41 . . PUNCT _ _ 36 punct _ AlignBegin=7200|AlignEnd=7200
# sent_id = ParisStories_2022_7_chienGourmand__3
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = du coup, on est allé au, euh, au chenil pour l'adopter, enfin, pour le chercher.
1-2 du _ _ _ _ _ _ _ _
1 de de ADP _ _ 6 discourse _ AlignBegin=8122|AlignEnd=8273|wordform=du
2 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 3 det _ _
3 coup coup NOUN _ Gender=Masc|Number=Sing 1 comp:obj _ AlignBegin=8273|AlignEnd=8425|SpaceAfter=No
4 , , PUNCT _ _ 1 punct _ AlignBegin=8425|AlignEnd=8425
5 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 6 subj _ AlignBegin=8425|AlignEnd=8576
6 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=8576|AlignEnd=8728
7 allé aller VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 6 comp:aux@tense _ AlignBegin=8728|AlignEnd=8879
8 au au ADP _ _ 7 comp:obl _ AlignBegin=8879|AlignEnd=9031|SpaceAfter=No
9 , , PUNCT _ _ 12 punct _ AlignBegin=9031|AlignEnd=9031
10 euh euh INTJ _ _ 12 discourse _ AlignBegin=9031|AlignEnd=9182|SpaceAfter=No
11 , , PUNCT _ _ 10 punct _ AlignBegin=9182|AlignEnd=9182
12-13 au _ _ _ _ _ _ _ _
12 à à ADP _ _ 8 conj:dicto _ AlignBegin=9182|AlignEnd=9334|wordform=au
13 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 14 det _ _
14 chenil chenil NOUN _ Gender=Masc|Number=Sing 12 comp:obj _ AlignBegin=9334|AlignEnd=9485
15 pour pour ADP _ _ 6 mod _ AlignBegin=9981|AlignEnd=10155
16 l' lui PRON _ Number=Sing|Person=3|PronType=Prs 17 comp:obj _ AlignBegin=10155|AlignEnd=10328|SpaceAfter=No
17 adopter adopter VERB _ VerbForm=Inf 15 comp:obj _ AlignBegin=10328|AlignEnd=10502|SpaceAfter=No|Subject=NoRaising
18 , , PUNCT _ _ 21 punct _ AlignBegin=10502|AlignEnd=10502
19 enfin enfin ADV _ ExtPos=INTJ 21 discourse _ AlignBegin=10968|AlignEnd=11213|SpaceAfter=No
20 , , PUNCT _ _ 19 punct _ AlignBegin=11213|AlignEnd=11213
21 pour pour ADP _ _ 15 conj:dicto _ AlignBegin=11213|AlignEnd=11458
22 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 23 comp:obj _ AlignBegin=11458|AlignEnd=11702
23 chercher chercher VERB _ VerbForm=Inf 21 comp:obj _ AlignBegin=11702|AlignEnd=11947|SpaceAfter=No|Subject=NoRaising
24 . . PUNCT _ _ 6 punct _ AlignBegin=11947|AlignEnd=11947
# sent_id = ParisStories_2022_7_chienGourmand__4
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et donc là, il y avait plein de petits chiots.
1 et et CCONJ _ _ 7 cc _ AlignBegin=11947|AlignEnd=12132
2 donc donc ADV _ _ 7 discourse _ AlignBegin=12132|AlignEnd=12316
3 là là ADV _ _ 7 mod _ AlignBegin=12316|AlignEnd=12501|SpaceAfter=No
4 , , PUNCT _ _ 3 punct _ AlignBegin=12501|AlignEnd=12501
5 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 7 subj@expl _ AlignBegin=12501|AlignEnd=12686
6 y y PRON _ Person=3|PronType=Prs 7 comp@expl _ AlignBegin=12686|AlignEnd=12871
7 avait avoir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 0 root _ AlignBegin=12871|AlignEnd=13055
8 plein plein ADV _ _ 7 comp:obj _ AlignBegin=13055|AlignEnd=13240
9 de de ADP _ _ 8 comp:obl _ AlignBegin=13240|AlignEnd=13425
10 petits petit ADJ _ Gender=Masc|Number=Plur 11 mod _ AlignBegin=13425|AlignEnd=13609
11 chiots chiot NOUN _ Gender=Masc|Number=Plur 9 comp:obj _ AlignBegin=13609|AlignEnd=13794|SpaceAfter=No
12 . . PUNCT _ _ 7 punct _ AlignBegin=13794|AlignEnd=13794
# sent_id = ParisStories_2022_7_chienGourmand__5
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et on savait pas euh, bah, lequel, euh, on choisit, on, euh, choisir, du coup.
1 et et CCONJ _ _ 3 cc _ AlignBegin=14339|AlignEnd=14580
2 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 3 subj _ AlignBegin=14580|AlignEnd=14820
3 savait savoir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 0 root _ AlignBegin=14820|AlignEnd=15061
4 pas pas ADV _ _ 3 mod _ AlignBegin=15061|AlignEnd=15301
5 euh euh INTJ _ _ 9 discourse _ AlignBegin=15301|AlignEnd=15542|SpaceAfter=No
6 , , PUNCT _ _ 5 punct _ AlignBegin=15542|AlignEnd=15542
7 bah bah INTJ _ _ 9 discourse _ AlignBegin=15851|AlignEnd=16044|SpaceAfter=No
8 , , PUNCT _ _ 9 punct _ AlignBegin=16044|AlignEnd=16044
9 lequel lequel PRON _ Gender=Masc|Number=Sing|PronType=Rel 3 comp:obj _ AlignBegin=16044|AlignEnd=16238|SpaceAfter=No
10 , , PUNCT _ _ 14 punct _ AlignBegin=16238|AlignEnd=16238
11 euh euh INTJ _ _ 14 discourse _ AlignBegin=16238|AlignEnd=16431|SpaceAfter=No
12 , , PUNCT _ _ 11 punct _ AlignBegin=16431|AlignEnd=16431
13 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 14 subj _ AlignBegin=16431|AlignEnd=16625
14 choisit choisir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 comp:obj _ AlignBegin=16625|AlignEnd=16818|SpaceAfter=No
15 , , PUNCT _ _ 20 punct _ AlignBegin=16818|AlignEnd=16818
16 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 20 subj _ AlignBegin=16818|AlignEnd=17011|SpaceAfter=No
17 , , PUNCT _ _ 16 punct _ AlignBegin=17011|AlignEnd=17011
18 euh euh INTJ _ _ 16 discourse _ AlignBegin=17011|AlignEnd=17205|SpaceAfter=No
19 , , PUNCT _ _ 18 punct _ AlignBegin=17205|AlignEnd=17205
20 choisir choisir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 conj:dicto _ AlignBegin=17205|AlignEnd=17398|SpaceAfter=No|Subject=Raising
21 , , PUNCT _ _ 22 punct _ AlignBegin=17398|AlignEnd=17398
22-23 du _ _ _ _ _ _ _ _
22 de de ADP _ _ 20 discourse _ AlignBegin=17398|AlignEnd=17592|wordform=du
23 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 24 det _ _
24 coup coup NOUN _ Gender=Masc|Number=Sing 22 comp:obj _ AlignBegin=17592|AlignEnd=17785|SpaceAfter=No
25 . . PUNCT _ _ 3 punct _ AlignBegin=17785|AlignEnd=17785
# sent_id = ParisStories_2022_7_chienGourmand__6
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et euh, donc du coup, on en a pris chacun un dans nos bras.
1 et et CCONJ _ _ 11 cc _ AlignBegin=18355|AlignEnd=18540
2 euh euh INTJ _ _ 1 discourse _ AlignBegin=18540|AlignEnd=18724|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=18724|AlignEnd=18724
4 donc donc ADV _ _ 11 cc _ AlignBegin=18724|AlignEnd=18909
5-6 du _ _ _ _ _ _ _ _
5 de de ADP _ _ 11 discourse _ AlignBegin=18909|AlignEnd=19093|wordform=du
6 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 7 det _ _
7 coup coup NOUN _ Gender=Masc|Number=Sing 5 comp:obj _ AlignBegin=19093|AlignEnd=19278|SpaceAfter=No
8 , , PUNCT _ _ 5 punct _ AlignBegin=19278|AlignEnd=19278
9 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 11 subj _ AlignBegin=19278|AlignEnd=19462
10 en en PRON _ Person=3|PronType=Prs 12 comp:obl _ AlignBegin=19462|AlignEnd=19647
11 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=19647|AlignEnd=19831
12 pris prendre VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 11 comp:aux@tense _ AlignBegin=19831|AlignEnd=20016
13 chacun chacun PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 12 mod _ AlignBegin=20016|AlignEnd=20165
14 un un PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 12 comp:obj _ AlignBegin=20165|AlignEnd=20314
15 dans dans ADP _ _ 12 mod _ AlignBegin=20314|AlignEnd=20462
16 nos son DET _ Number=Plur|Number[psor]=Plur|Person[psor]=1|Poss=Yes|PronType=Prs 17 det _ AlignBegin=20462|AlignEnd=20611
17 bras bras NOUN _ Gender=Masc|Number=Plur 15 comp:obj _ AlignBegin=20611|AlignEnd=20760|SpaceAfter=No
18 . . PUNCT _ _ 11 punct _ AlignBegin=20760|AlignEnd=20760
# sent_id = ParisStories_2022_7_chienGourmand__7
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et on l'a choisi parce que il m'a fait pipi dessus.
1 et et CCONJ _ _ 4 cc _ AlignBegin=21045|AlignEnd=21203
2 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 4 subj _ AlignBegin=21203|AlignEnd=21360
3 l' lui PRON _ Number=Sing|Person=3|PronType=Prs 5 comp:obj _ AlignBegin=21360|AlignEnd=21518|SpaceAfter=No
4 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=21518|AlignEnd=21675
5 choisi choisir VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 4 comp:aux@tense _ AlignBegin=21675|AlignEnd=21833
6 parce parce ADV _ ExtPos=SCONJ 4 mod _ AlignBegin=21833|AlignEnd=21990|Idiom=Yes
7 que que SCONJ _ _ 6 unk _ AlignBegin=21990|AlignEnd=22148|InIdiom=Yes
8 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 10 subj _ AlignBegin=22658|AlignEnd=22815
9 m' moi PRON _ Number=Sing|Person=1|PronType=Prs 11 comp:obl _ AlignBegin=22815|AlignEnd=22972|SpaceAfter=No
10 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 comp:obj _ AlignBegin=22972|AlignEnd=23129
11 fait faire VERB _ Gender=Masc|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 comp:aux@tense _ AlignBegin=23129|AlignEnd=23286
12 pipi pipi NOUN _ Gender=Masc|Number=Sing 11 comp:obj _ AlignBegin=23286|AlignEnd=23443
13 dessus dessus ADV _ _ 11 mod _ AlignBegin=23443|AlignEnd=23600|SpaceAfter=No
14 . . PUNCT _ _ 4 punct _ AlignBegin=23600|AlignEnd=23600
# sent_id = ParisStories_2022_7_chienGourmand__8
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et donc on s'est dit si il nous, il fait pipi dessus, c'est qu'il tient à moi, tu vois.
1 et et CCONJ _ _ 5 cc _ AlignBegin=24591|AlignEnd=24742
2 donc donc ADV _ _ 5 cc _ AlignBegin=24742|AlignEnd=24893
3 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 5 subj _ AlignBegin=24893|AlignEnd=25044
4 s' soi PRON _ Person=3|PronType=Prs 6 comp:obl _ AlignBegin=25044|AlignEnd=25194|SpaceAfter=No
5 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=25194|AlignEnd=25345
6 dit dire VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 comp:aux@tense _ AlignBegin=25345|AlignEnd=25496
7 si si SCONJ _ _ 17 mod _ AlignBegin=26822|AlignEnd=26981
8 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 12 subj _ AlignBegin=26981|AlignEnd=27140
9 nous nous PRON _ Number=Plur|Person=1|PronType=Prs 12 comp:obl _ AlignBegin=27140|AlignEnd=27299|SpaceAfter=No
10 , , PUNCT _ _ 11 punct _ AlignBegin=27299|AlignEnd=27299
11 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 conj:dicto _ AlignBegin=27299|AlignEnd=27458
12 fait faire VERB _ Gender=Masc|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 comp:obj _ AlignBegin=27458|AlignEnd=27617
13 pipi pipi NOUN _ Gender=Masc|Number=Sing 12 comp:obj _ AlignBegin=27617|AlignEnd=27777
14 dessus dessus ADV _ _ 12 mod _ AlignBegin=27777|AlignEnd=27936|SpaceAfter=No
15 , , PUNCT _ _ 17 punct _ AlignBegin=27936|AlignEnd=27936
16 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 17 subj _ AlignBegin=27936|AlignEnd=28095|SpaceAfter=No
17 est être VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 comp:obj _ AlignBegin=28095|AlignEnd=28254|Reported=Yes
18 qu' que SCONJ _ _ 17 comp:pred _ AlignBegin=28254|AlignEnd=28413|SpaceAfter=No
19 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 20 subj _ AlignBegin=28413|AlignEnd=28572
20 tient tienir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 18 comp:obj _ AlignBegin=28572|AlignEnd=28731
21 à à ADP _ _ 20 comp:obl _ AlignBegin=29041|AlignEnd=29041
22 moi moi PRON _ Number=Sing|Person=1|PronType=Prs 21 comp:obj _ AlignBegin=29041|AlignEnd=29339|SpaceAfter=No
23 , , PUNCT _ _ 22 punct _ AlignBegin=29339|AlignEnd=29339
24 tu toi PRON _ Number=Sing|Person=2|PronType=Prs 25 subj _ AlignBegin=29339|AlignEnd=29463
25 vois voir VERB _ Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 17 discourse _ AlignBegin=29463|AlignEnd=29587|SpaceAfter=No
26 . . PUNCT _ _ 5 punct _ AlignBegin=29587|AlignEnd=29587
# sent_id = ParisStories_2022_7_chienGourmand__9
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = c'est qu'il s'est attaché et tout.
1 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 2 subj _ AlignBegin=29587|AlignEnd=29711|SpaceAfter=No
2 est être VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=29711|AlignEnd=29835
3 qu' que SCONJ _ _ 2 comp:pred _ AlignBegin=29835|AlignEnd=29959|SpaceAfter=No
4 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 subj _ AlignBegin=29959|AlignEnd=30082
5 s' soi PRON _ Person=3|PronType=Prs 7 comp:obj _ AlignBegin=30082|AlignEnd=30206|SpaceAfter=No
6 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 comp:obj _ AlignBegin=30206|AlignEnd=30330
7 attaché attacher VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 6 comp:aux@tense _ AlignBegin=30330|AlignEnd=30454
8 et et CCONJ _ _ 9 cc _ AlignBegin=30454|AlignEnd=30578
9 tout tout ADV _ _ 7 conj:coord _ AlignBegin=30578|AlignEnd=30702|SpaceAfter=No
10 . . PUNCT _ _ 2 punct _ AlignBegin=30702|AlignEnd=30702
# sent_id = ParisStories_2022_7_chienGourmand__10
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et euh, du coup, on l'a choisi.
1 et et CCONJ _ _ 10 cc _ AlignBegin=31161|AlignEnd=31302
2 euh euh INTJ _ _ 1 discourse _ AlignBegin=31302|AlignEnd=31443|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=31443|AlignEnd=31443
4-5 du _ _ _ _ _ _ _ _
4 de de ADP _ _ 10 discourse _ AlignBegin=31443|AlignEnd=31584|wordform=du
5 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 6 det _ _
6 coup coup NOUN _ Gender=Masc|Number=Sing 4 comp:obj _ AlignBegin=31584|AlignEnd=31725|SpaceAfter=No
7 , , PUNCT _ _ 4 punct _ AlignBegin=31725|AlignEnd=31725
8 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 10 subj _ AlignBegin=31725|AlignEnd=31866
9 l' lui PRON _ Number=Sing|Person=3|PronType=Prs 11 comp:obj _ AlignBegin=31866|AlignEnd=32007|SpaceAfter=No
10 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=32007|AlignEnd=32148
11 choisi choisir VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 10 comp:aux@tense _ AlignBegin=32148|AlignEnd=32289|SpaceAfter=No
12 . . PUNCT _ _ 10 punct _ AlignBegin=32289|AlignEnd=32289
# sent_id = ParisStories_2022_7_chienGourmand__11
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = on l'a ramené à la maison et tout.
1 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 3 subj _ AlignBegin=32289|AlignEnd=32430
2 l' lui PRON _ Number=Sing|Person=3|PronType=Prs 4 comp:obj _ AlignBegin=32430|AlignEnd=32571|SpaceAfter=No
3 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=32571|AlignEnd=32712
4 ramené ramener VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 3 comp:aux@tense _ AlignBegin=32712|AlignEnd=32853
5 à à ADP _ _ 4 comp:obl _ AlignBegin=32853|AlignEnd=32853
6 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 7 det _ AlignBegin=32853|AlignEnd=32994
7 maison maison NOUN _ Gender=Fem|Number=Sing 5 comp:obj _ AlignBegin=32994|AlignEnd=33135
8 et et CCONJ _ _ 9 cc _ AlignBegin=33135|AlignEnd=33276
9 tout tout ADV _ _ 4 conj:coord _ AlignBegin=33276|AlignEnd=33417|SpaceAfter=No
10 . . PUNCT _ _ 3 punct _ AlignBegin=33417|AlignEnd=33417
# sent_id = ParisStories_2022_7_chienGourmand__12
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et puis, de ce temps-là, il est à la maison.
1 et et CCONJ _ ExtPos=CCONJ 10 cc _ AlignBegin=34527|AlignEnd=34660|Idiom=Yes
2 puis puis CCONJ _ _ 1 unk _ AlignBegin=34660|AlignEnd=34792|InIdiom=Yes|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=34792|AlignEnd=34792
4 de de ADP _ _ 10 mod _ AlignBegin=34792|AlignEnd=34925
5 ce ce DET _ Gender=Masc|Number=Sing|PronType=Dem 6 det _ AlignBegin=34925|AlignEnd=35058
6 temps temps NOUN _ Gender=Masc|Number=Sing 4 comp:obj _ AlignBegin=35058|AlignEnd=35191|SpaceAfter=No
7 -là là ADV _ _ 6 mod _ AlignBegin=35191|AlignEnd=35323|SpaceAfter=No
8 , , PUNCT _ _ 4 punct _ AlignBegin=35323|AlignEnd=35323
9 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 10 subj _ AlignBegin=35323|AlignEnd=35456
10 est être VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=35456|AlignEnd=35589
11 à à ADP _ _ 10 comp:obl _ AlignBegin=35589|AlignEnd=35589
12 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 13 det _ AlignBegin=35589|AlignEnd=35721
13 maison maison NOUN _ Gender=Fem|Number=Sing 11 comp:obj _ AlignBegin=35721|AlignEnd=35854|SpaceAfter=No
14 . . PUNCT _ _ 10 punct _ AlignBegin=35854|AlignEnd=35854
# sent_id = ParisStories_2022_7_chienGourmand__13
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = euh, il a même vécu le déménagement avec nous.
1 euh euh INTJ _ _ 4 discourse _ AlignBegin=36213|AlignEnd=36399|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=36399|AlignEnd=36399
3 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 subj _ AlignBegin=36399|AlignEnd=36585
4 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=36585|AlignEnd=36771
5 même même ADV _ _ 4 mod _ AlignBegin=36771|AlignEnd=36957
6 vécu vivre VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 4 comp:aux@tense _ AlignBegin=36957|AlignEnd=37142
7 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 8 det _ AlignBegin=37142|AlignEnd=37328
8 déménagement déménagement NOUN _ Gender=Masc|Number=Sing 6 comp:obj _ AlignBegin=37328|AlignEnd=37514
9 avec avec ADP _ _ 4 mod _ AlignBegin=37514|AlignEnd=37700
10 nous nous PRON _ Number=Plur|Person=1|PronType=Prs 9 comp:obj _ AlignBegin=37700|AlignEnd=37886|SpaceAfter=No
11 . . PUNCT _ _ 4 punct _ AlignBegin=37886|AlignEnd=37886
# sent_id = ParisStories_2022_7_chienGourmand__14
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = parce qu'on a déménagé entre temps, tu sais, tu te rappelles ?
1 parce parce ADV _ ExtPos=SCONJ 0 root _ AlignBegin=38110|AlignEnd=38244|Idiom=Yes
2 qu' que SCONJ _ _ 1 unk _ AlignBegin=38244|AlignEnd=38379|InIdiom=Yes|SpaceAfter=No
3 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 4 subj _ AlignBegin=38379|AlignEnd=38513
4 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 comp:obj _ AlignBegin=38513|AlignEnd=38647
5 déménagé déménager VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 4 comp:aux@tense _ AlignBegin=38647|AlignEnd=38781
6 entre entre ADP _ _ 5 mod _ AlignBegin=38781|AlignEnd=38916
7 temps temps NOUN _ Gender=Masc|Number=Sing 6 comp:obj _ AlignBegin=38916|AlignEnd=39050|SpaceAfter=No
8 , , PUNCT _ _ 4 punct _ AlignBegin=39050|AlignEnd=39050
9 tu toi PRON _ Number=Sing|Person=2|PronType=Prs 10 subj _ AlignBegin=39050|AlignEnd=39184
10 sais savoir VERB _ Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 14 discourse _ AlignBegin=39184|AlignEnd=39318|SpaceAfter=No
11 , , PUNCT _ _ 10 punct _ AlignBegin=39318|AlignEnd=39318
12 tu toi PRON _ Number=Sing|Person=2|PronType=Prs 14 subj _ AlignBegin=39318|AlignEnd=39453
13 te toi PRON _ Number=Sing|Person=2|PronType=Prs|Reflex=Yes 14 comp:obj _ AlignBegin=39453|AlignEnd=39587
14 rappelles rappeller VERB _ Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 4 discourse _ AlignBegin=39587|AlignEnd=39721
15 ? ? PUNCT _ _ 1 punct _ AlignBegin=39721|AlignEnd=39721
# sent_id = ParisStories_2022_7_chienGourmand__15
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et donc, du coup, il a vécu le déménagement.
1 et et CCONJ _ _ 9 cc _ AlignBegin=40204|AlignEnd=40354
2 donc donc ADV _ _ 9 mod _ AlignBegin=40354|AlignEnd=40504|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=40504|AlignEnd=40504
4-5 du _ _ _ _ _ _ _ _
4 de de ADP _ _ 9 discourse _ AlignBegin=40504|AlignEnd=40654|wordform=du
5 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 6 det _ _
6 coup coup NOUN _ Gender=Masc|Number=Sing 4 comp:obj _ AlignBegin=40654|AlignEnd=40804|SpaceAfter=No
7 , , PUNCT _ _ 4 punct _ AlignBegin=40804|AlignEnd=40804
8 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 subj _ AlignBegin=40804|AlignEnd=40955
9 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=40955|AlignEnd=41105
10 vécu vivre VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 9 comp:aux@tense _ AlignBegin=41105|AlignEnd=41255
11 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 12 det _ AlignBegin=41255|AlignEnd=41405
12 déménagement déménagement NOUN _ Gender=Masc|Number=Sing 10 comp:obj _ AlignBegin=41405|AlignEnd=41555|SpaceAfter=No
13 . . PUNCT _ _ 9 punct _ AlignBegin=41555|AlignEnd=41555
# sent_id = ParisStories_2022_7_chienGourmand__16
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et bon, euh maintenant, il est un peu vieux.
1 et et CCONJ _ _ 8 cc _ AlignBegin=42027|AlignEnd=42238
2 bon bon INTJ _ _ 8 discourse _ AlignBegin=42238|AlignEnd=42448|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=42448|AlignEnd=42448
4 euh euh INTJ _ _ 8 discourse _ AlignBegin=42622|AlignEnd=42778
5 maintenant maintenant ADV _ _ 8 mod _ AlignBegin=42778|AlignEnd=42933|SpaceAfter=No
6 , , PUNCT _ _ 5 punct _ AlignBegin=42933|AlignEnd=42933
7 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 subj _ AlignBegin=42933|AlignEnd=43089
8 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=43089|AlignEnd=43245
9 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 10 det _ AlignBegin=43245|AlignEnd=43401
10 peu peu NOUN _ Gender=Masc|Number=Sing 11 mod _ AlignBegin=43401|AlignEnd=43556
11 vieux vieux ADJ _ _ 8 comp:pred _ AlignBegin=43556|AlignEnd=43712|SpaceAfter=No
12 . . PUNCT _ _ 8 punct _ AlignBegin=43712|AlignEnd=43712
# sent_id = ParisStories_2022_7_chienGourmand__17
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = hum, parce qu'il a un peu de mal à avancer.
1 hum hum INTJ _ _ 6 discourse _ AlignBegin=44337|AlignEnd=44617|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=44617|AlignEnd=44617
3 parce parce ADV _ ExtPos=SCONJ 0 root _ AlignBegin=44617|AlignEnd=44897|Idiom=Yes
4 qu' que SCONJ _ _ 3 unk _ AlignBegin=44897|AlignEnd=45178|InIdiom=Yes|SpaceAfter=No
5 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 subj _ AlignBegin=45178|AlignEnd=45458
6 a avoir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 comp:obj _ AlignBegin=45458|AlignEnd=45738
7 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 8 det _ AlignBegin=45738|AlignEnd=46018
8 peu peu NOUN _ Gender=Masc|Number=Sing 6 comp:obj _ AlignBegin=46018|AlignEnd=46298
9 de de ADP _ _ 8 udep _ AlignBegin=46298|AlignEnd=46579
10 mal mal NOUN _ Gender=Masc|Number=Sing 9 comp:obj _ AlignBegin=46579|AlignEnd=46859
11 à à ADP _ _ 10 comp:obl _ AlignBegin=46859|AlignEnd=46859
12 avancer avancer VERB _ VerbForm=Inf 11 comp:obj _ AlignBegin=46859|AlignEnd=47139|SpaceAfter=No|Subject=SubjRaising
13 . . PUNCT _ _ 3 punct _ AlignBegin=47139|AlignEnd=47139
# sent_id = ParisStories_2022_7_chienGourmand__18
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = genre, il a un peu d'arthrose.
1 genre genre NOUN _ ExtPos=INTJ 4 discourse _ AlignBegin=47139|AlignEnd=47288|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=47288|AlignEnd=47288
3 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 subj _ AlignBegin=47288|AlignEnd=47436
4 a avoir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=47436|AlignEnd=47585
5 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 6 det _ AlignBegin=47585|AlignEnd=47734
6 peu peu NOUN _ Gender=Masc|Number=Sing 4 comp:obj _ AlignBegin=47734|AlignEnd=47883
7 d' de ADP _ _ 6 udep _ AlignBegin=47883|AlignEnd=48031|SpaceAfter=No
8 arthrose arthrose NOUN _ Gender=Fem|Number=Sing 7 comp:obj _ AlignBegin=48031|AlignEnd=48180|SpaceAfter=No
9 . . PUNCT _ _ 4 punct _ AlignBegin=48180|AlignEnd=48180
# sent_id = ParisStories_2022_7_chienGourmand__19
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = il boite et tout.
1 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs|Shared=No 2 subj _ AlignBegin=48180|AlignEnd=48329
2 boite boiter VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=48329|AlignEnd=48478
3 et et CCONJ _ _ 4 cc _ AlignBegin=48478|AlignEnd=48626
4 tout tout ADV _ _ 2 conj:coord _ AlignBegin=48626|AlignEnd=48775|SpaceAfter=No
5 . . PUNCT _ _ 2 punct _ AlignBegin=48775|AlignEnd=48775
# sent_id = ParisStories_2022_7_chienGourmand__20
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = mais c'est toujours un amour et tout.
1 mais mais CCONJ _ _ 3 cc _ AlignBegin=49209|AlignEnd=49443
2 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 3 subj _ AlignBegin=49443|AlignEnd=49677|SpaceAfter=No
3 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=49677|AlignEnd=49911
4 toujours toujours ADV _ _ 3 mod _ AlignBegin=49911|AlignEnd=50145
5 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art|Shared=No 6 det _ AlignBegin=50145|AlignEnd=50380
6 amour amour NOUN _ Gender=Masc|Number=Sing 3 comp:pred _ AlignBegin=50380|AlignEnd=50614
7 et et CCONJ _ _ 8 cc _ AlignBegin=50614|AlignEnd=50848
8 tout tout PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 6 conj:coord _ AlignBegin=50848|AlignEnd=51082|SpaceAfter=No
9 . . PUNCT _ _ 3 punct _ AlignBegin=51082|AlignEnd=51082
# sent_id = ParisStories_2022_7_chienGourmand__21
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et, et, on fait des jeux ensemble.
1 et et CCONJ _ _ 6 cc _ AlignBegin=51082|AlignEnd=51316|SpaceAfter=No
2 , , PUNCT _ _ 3 punct _ AlignBegin=51316|AlignEnd=51316
3 et et CCONJ _ _ 1 conj:dicto _ AlignBegin=51497|AlignEnd=51625|SpaceAfter=No
4 , , PUNCT _ _ 3 punct _ AlignBegin=51625|AlignEnd=51625
5 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 6 subj _ AlignBegin=51625|AlignEnd=51753
6 fait faire VERB _ Gender=Masc|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=51753|AlignEnd=51882
7 des un DET _ Definite=Ind|Number=Plur|PronType=Art 8 det _ AlignBegin=51882|AlignEnd=52010
8 jeux jeu NOUN _ Gender=Masc|Number=Plur 6 comp:obl _ AlignBegin=52010|AlignEnd=52138
9 ensemble ensemble ADV _ _ 6 mod _ AlignBegin=52138|AlignEnd=52266|SpaceAfter=No
10 . . PUNCT _ _ 6 punct _ AlignBegin=52266|AlignEnd=52266
# sent_id = ParisStories_2022_7_chienGourmand__22
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et mh, je vais le promener.
1 et et CCONJ _ _ 5 cc _ AlignBegin=53344|AlignEnd=53617
2 mh mh INTJ _ _ 5 discourse _ AlignBegin=53617|AlignEnd=53890|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=53890|AlignEnd=53890
4 je moi PRON _ Number=Sing|Person=1|PronType=Prs 5 subj _ AlignBegin=53890|AlignEnd=54163
5 vais aller VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=54163|AlignEnd=54435
6 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 7 comp:obj _ AlignBegin=54435|AlignEnd=54708
7 promener promener VERB _ VerbForm=Inf 5 comp:obj _ AlignBegin=54708|AlignEnd=54981|SpaceAfter=No|Subject=SubjRaising
8 . . PUNCT _ _ 5 punct _ AlignBegin=54981|AlignEnd=54981
# sent_id = ParisStories_2022_7_chienGourmand__23
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = enfin, à chaque fois que je reviens parce que, bon …
1 enfin enfin ADV _ ExtPos=INTJ 5 discourse _ AlignBegin=54981|AlignEnd=55124|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=55124|AlignEnd=55124
3 à à ADP _ _ 0 root _ AlignBegin=55124|AlignEnd=55124
4 chaque chaque DET _ Number=Sing|PronType=Ind 5 det _ AlignBegin=55124|AlignEnd=55267
5 fois fois NOUN _ Gender=Fem|Number=Sing 3 comp:obj _ AlignBegin=55267|AlignEnd=55411
6 que que SCONJ _ _ 5 mod _ AlignBegin=55411|AlignEnd=55554
7 je moi PRON _ Number=Sing|Person=1|PronType=Prs 8 subj _ AlignBegin=55554|AlignEnd=55697
8 reviens revieir VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 6 comp:obj _ AlignBegin=55697|AlignEnd=55840
9 parce parce ADV _ ExtPos=SCONJ 5 mod _ AlignBegin=55840|AlignEnd=55984|Idiom=Yes
10 que que SCONJ _ _ 9 unk _ AlignBegin=55984|AlignEnd=56127|InIdiom=Yes|SpaceAfter=No
11 , , PUNCT _ _ 12 punct _ AlignBegin=56127|AlignEnd=56127
12 bon bon INTJ _ _ 8 discourse _ AlignBegin=56127|AlignEnd=56270
13 … … PUNCT _ _ 3 punct _ AlignBegin=56270|AlignEnd=56270
# sent_id = ParisStories_2022_7_chienGourmand__24
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = à, à, normalement …
1 à à ADP _ _ 0 root _ AlignBegin=56691|AlignEnd=56691|SpaceAfter=No
2 , , PUNCT _ _ 3 punct _ AlignBegin=56691|AlignEnd=56691
3 à à ADP _ _ 1 conj:dicto _ AlignBegin=56691|AlignEnd=56691|SpaceAfter=No
4 , , PUNCT _ _ 5 punct _ AlignBegin=56691|AlignEnd=56691
5 normalement normalement ADV _ _ 3 conj:dicto _ AlignBegin=56691|AlignEnd=57584
6 … … PUNCT _ _ 1 punct _ AlignBegin=57584|AlignEnd=57584
# sent_id = ParisStories_2022_7_chienGourmand__25
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc moi, je m'occupe beaucoup beaucoup de lui, parce que je l'aime beaucoup.
1 donc donc ADV _ _ 6 mod _ AlignBegin=57695|AlignEnd=57833
2 moi moi PRON _ Number=Sing|Person=1|PronType=Prs 6 dislocated _ AlignBegin=57833|AlignEnd=57971|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=57971|AlignEnd=57971
4 je moi PRON _ Number=Sing|Person=1|PronType=Prs 6 subj _ AlignBegin=57971|AlignEnd=58108
5 m' moi PRON _ Number=Sing|Person=1|PronType=Prs 6 comp@expl _ AlignBegin=58108|AlignEnd=58246|SpaceAfter=No
6 occupe occuper VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=58246|AlignEnd=58384
7 beaucoup beaucoup ADV _ _ 6 mod _ AlignBegin=58384|AlignEnd=58522
8 beaucoup beaucoup ADV _ _ 7 conj:coord _ AlignBegin=58522|AlignEnd=58659
9 de de ADP _ _ 6 comp:obl _ AlignBegin=58659|AlignEnd=58797
10 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 comp:obj _ AlignBegin=58797|AlignEnd=58935|SpaceAfter=No
11 , , PUNCT _ _ 12 punct _ AlignBegin=58935|AlignEnd=58935
12 parce parce ADV _ ExtPos=SCONJ 6 mod _ AlignBegin=58935|AlignEnd=59034|Idiom=Yes
13 que que SCONJ _ _ 12 unk _ AlignBegin=59034|AlignEnd=59133|InIdiom=Yes
14 je moi PRON _ Number=Sing|Person=1|PronType=Prs 16 subj _ AlignBegin=59133|AlignEnd=59233
15 l' lui PRON _ Number=Sing|Person=3|PronType=Prs 16 comp:obj _ AlignBegin=59233|AlignEnd=59332|SpaceAfter=No
16 aime aimer VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 12 comp:obj _ AlignBegin=59332|AlignEnd=59431
17 beaucoup beaucoup ADV _ _ 16 mod _ AlignBegin=59431|AlignEnd=59530|SpaceAfter=No
18 . . PUNCT _ _ 6 punct _ AlignBegin=59530|AlignEnd=59530
# sent_id = ParisStories_2022_7_chienGourmand__26
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et donc, je le fais même rentrer dans la maison.
1 et et CCONJ _ _ 6 cc _ AlignBegin=60484|AlignEnd=60615
2 donc donc ADV _ _ 6 mod _ AlignBegin=60615|AlignEnd=60745|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=60745|AlignEnd=60745
4 je moi PRON _ Number=Sing|Person=1|PronType=Prs 6 subj@caus _ AlignBegin=61067|AlignEnd=61234
5 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 comp:obj@agent _ AlignBegin=61234|AlignEnd=61402
6 fais faire AUX _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=61402|AlignEnd=61569
7 même même ADV _ _ 6 mod _ AlignBegin=61569|AlignEnd=61737
8 rentrer rentrer VERB _ VerbForm=Inf 6 comp:aux@caus _ AlignBegin=61737|AlignEnd=61904|Subject=ObjRaising
9 dans dans ADP _ _ 8 comp:obl _ AlignBegin=61904|AlignEnd=62071
10 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 11 det _ AlignBegin=62071|AlignEnd=62239
11 maison maison NOUN _ Gender=Fem|Number=Sing 9 comp:obj _ AlignBegin=62239|AlignEnd=62406|SpaceAfter=No
12 . . PUNCT _ _ 6 punct _ AlignBegin=62406|AlignEnd=62406
# sent_id = ParisStories_2022_7_chienGourmand__27
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = mais ça, bon, faut le dire à personne.
1 mais mais CCONJ _ _ 6 cc _ AlignBegin=62667|AlignEnd=62903
2 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 6 dislocated _ AlignBegin=63200|AlignEnd=63380|SpaceAfter=No
3 , , PUNCT _ _ 4 punct _ AlignBegin=63380|AlignEnd=63380
4 bon bon INTJ _ _ 2 discourse _ AlignBegin=63380|AlignEnd=63560|SpaceAfter=No
5 , , PUNCT _ _ 2 punct _ AlignBegin=63560|AlignEnd=63560
6 faut falloir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=63857|AlignEnd=64059
7 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 comp:obj _ AlignBegin=64059|AlignEnd=64260
8 dire dire VERB _ VerbForm=Inf 6 comp:obj _ AlignBegin=64260|AlignEnd=64462|Subject=NoRaising
9 à à ADP _ _ 8 comp:obl _ AlignBegin=64462|AlignEnd=64462
10 personne personne PRON _ _ 9 comp:obj _ AlignBegin=64462|AlignEnd=64663|SpaceAfter=No
11 . . PUNCT _ _ 6 punct _ AlignBegin=64663|AlignEnd=64663
# sent_id = ParisStories_2022_7_chienGourmand__28
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = je le fais rentrer dans la maison.
1 je moi PRON _ Number=Sing|Person=1|PronType=Prs 3 subj@caus _ AlignBegin=64663|AlignEnd=64828
2 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 comp:obj@agent _ AlignBegin=64828|AlignEnd=64992
3 fais faire AUX _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=64992|AlignEnd=65157
4 rentrer rentrer VERB _ VerbForm=Inf 3 comp:aux@caus _ AlignBegin=65157|AlignEnd=65322|Subject=ObjRaising
5 dans dans ADP _ _ 4 comp:obl _ AlignBegin=65322|AlignEnd=65487
6 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 7 det _ AlignBegin=65487|AlignEnd=65651
7 maison maison NOUN _ Gender=Fem|Number=Sing 5 comp:obj _ AlignBegin=65651|AlignEnd=65816|SpaceAfter=No
8 . . PUNCT _ _ 3 punct _ AlignBegin=65816|AlignEnd=65816
# sent_id = ParisStories_2022_7_chienGourmand__29
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = mon père, il veut pas trop.
1 mon son DET _ Number=Sing|Number[psor]=Sing|Person[psor]=1|Poss=Yes|PronType=Prs 2 det _ AlignBegin=66299|AlignEnd=66429
2 père père NOUN _ Gender=Masc|Number=Sing 5 dislocated _ AlignBegin=66429|AlignEnd=66559|SpaceAfter=No
3 , , PUNCT _ _ 2 punct _ AlignBegin=66559|AlignEnd=66559
4 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 subj _ AlignBegin=66559|AlignEnd=66690
5 veut vouloir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=66690|AlignEnd=66820
6 pas pas ADV _ _ 7 mod _ AlignBegin=66820|AlignEnd=66950
7 trop trop ADV _ _ 5 mod _ AlignBegin=66950|AlignEnd=67080|SpaceAfter=No
8 . . PUNCT _ _ 5 punct _ AlignBegin=67080|AlignEnd=67080
# sent_id = ParisStories_2022_7_chienGourmand__30
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc je le fais quand mon père est pas là.
1 donc donc ADV _ _ 4 mod _ AlignBegin=67080|AlignEnd=67154
2 je moi PRON _ Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=67154|AlignEnd=67229
3 le lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 comp:obj _ AlignBegin=67229|AlignEnd=67303
4 fais faire VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=67303|AlignEnd=67378
5 quand quand SCONJ _ _ 4 mod _ AlignBegin=67378|AlignEnd=67452
6 mon son DET _ Number=Sing|Number[psor]=Sing|Person[psor]=1|Poss=Yes|PronType=Prs 7 det _ AlignBegin=67452|AlignEnd=67526
7 père père NOUN _ Gender=Masc|Number=Sing 8 subj _ AlignBegin=67526|AlignEnd=67601
8 est être VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 comp:obj _ AlignBegin=67601|AlignEnd=67675
9 pas pas ADV _ _ 8 mod _ AlignBegin=67675|AlignEnd=67750
10 là là ADV _ _ 8 comp:pred _ AlignBegin=67750|AlignEnd=67824|SpaceAfter=No
11 . . PUNCT _ _ 4 punct _ AlignBegin=67824|AlignEnd=67824
# sent_id = ParisStories_2022_7_chienGourmand__31
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et donc, sinon, il adore jouer.
1 et et CCONJ _ _ 7 cc _ AlignBegin=68580|AlignEnd=68789
2 donc donc ADV _ _ 7 mod _ AlignBegin=68789|AlignEnd=68997|SpaceAfter=No
3 , , PUNCT _ _ 4 punct _ AlignBegin=68997|AlignEnd=68997
4 sinon sinon ADV _ _ 2 conj:dicto _ AlignBegin=68997|AlignEnd=69206|SpaceAfter=No
5 , , PUNCT _ _ 2 punct _ AlignBegin=69206|AlignEnd=69206
6 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 7 subj _ AlignBegin=69206|AlignEnd=69415
7 adore adorer VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=69415|AlignEnd=69623
8 jouer jouer VERB _ VerbForm=Inf 7 comp:obj _ AlignBegin=69623|AlignEnd=69832|SpaceAfter=No|Subject=SubjRaising
9 . . PUNCT _ _ 7 punct _ AlignBegin=69832|AlignEnd=69832
# sent_id = ParisStories_2022_7_chienGourmand__32
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et il est très très glouton.
1 et et CCONJ _ _ 3 cc _ AlignBegin=70588|AlignEnd=70826
2 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=70826|AlignEnd=71063
3 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=71063|AlignEnd=71301
4 très très ADV _ _ 6 mod _ AlignBegin=71301|AlignEnd=71538
5 très très ADV _ _ 4 conj:coord _ AlignBegin=71538|AlignEnd=71776
6 glouton glouton ADJ _ _ 3 comp:pred _ AlignBegin=71776|AlignEnd=72013|SpaceAfter=No
7 . . PUNCT _ _ 3 punct _ AlignBegin=72013|AlignEnd=72013
# sent_id = ParisStories_2022_7_chienGourmand__33
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = alors, c'est assez drôle, parce que dès que tu lui mets à manger, il gobe tout !
1 alors alors ADV _ _ 4 mod _ AlignBegin=72447|AlignEnd=72591|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=72591|AlignEnd=72591
3 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 4 subj _ AlignBegin=72591|AlignEnd=72735|SpaceAfter=No
4 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=72735|AlignEnd=72878
5 assez assez ADV _ _ 6 mod _ AlignBegin=72878|AlignEnd=73022
6 drôle drôle ADJ _ _ 4 comp:pred _ AlignBegin=73022|AlignEnd=73166|SpaceAfter=No
7 , , PUNCT _ _ 8 punct _ AlignBegin=73166|AlignEnd=73166
8 parce parce ADV _ ExtPos=SCONJ 4 mod _ AlignBegin=73166|AlignEnd=73312|Idiom=Yes
9 que que SCONJ _ _ 8 unk _ AlignBegin=73312|AlignEnd=73457|InIdiom=Yes
10 dès dès ADP _ _ 19 mod _ AlignBegin=73457|AlignEnd=73603
11 que que SCONJ _ _ 10 comp:obj _ AlignBegin=73603|AlignEnd=73749
12 tu toi PRON _ Number=Sing|Person=2|PronType=Prs 14 subj _ AlignBegin=73749|AlignEnd=73894
13 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 14 comp:obl _ AlignBegin=73894|AlignEnd=74040
14 mets mettre VERB _ Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 11 comp:obj _ AlignBegin=74040|AlignEnd=74185
15 à à ADP _ _ 14 comp:obl _ AlignBegin=74185|AlignEnd=74185
16 manger manger VERB _ VerbForm=Inf 15 comp:obj _ AlignBegin=74185|AlignEnd=74331|SpaceAfter=No|Subject=NoRaising
17 , , PUNCT _ _ 10 punct _ AlignBegin=74331|AlignEnd=74331
18 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 19 subj _ AlignBegin=74728|AlignEnd=74955
19 gobe gober VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 comp:obj _ AlignBegin=74955|AlignEnd=75182
20 tout tout PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 19 comp:obj _ AlignBegin=75182|AlignEnd=75409
21 ! ! PUNCT _ _ 4 punct _ AlignBegin=75409|AlignEnd=75409
# sent_id = ParisStories_2022_7_chienGourmand__34
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = la dernière fois, je lui ai donné une pomme à manger.
1 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 3 det _ AlignBegin=75831|AlignEnd=75951
2 dernière dernier ADJ _ _ 3 mod _ AlignBegin=75951|AlignEnd=76072
3 fois fois NOUN _ Gender=Fem|Number=Sing 7 mod _ AlignBegin=76072|AlignEnd=76192|SpaceAfter=No
4 , , PUNCT _ _ 3 punct _ AlignBegin=76192|AlignEnd=76192
5 je moi PRON _ Number=Sing|Person=1|PronType=Prs 7 subj _ AlignBegin=76192|AlignEnd=76313
6 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 comp:obl _ AlignBegin=76313|AlignEnd=76433
7 ai avoir AUX _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=76433|AlignEnd=76554
8 donné donner VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 7 comp:aux@tense _ AlignBegin=76554|AlignEnd=76674
9 une un DET _ Definite=Ind|Gender=Fem|Number=Sing|PronType=Art 10 det _ AlignBegin=76674|AlignEnd=76955
10 pomme pomme NOUN _ Gender=Fem|Number=Sing 8 comp:obj _ AlignBegin=76955|AlignEnd=77236
11 à à ADP _ _ 10 udep _ AlignBegin=77236|AlignEnd=77236
12 manger manger VERB _ VerbForm=Inf 11 comp:obj _ AlignBegin=77236|AlignEnd=77517|SpaceAfter=No|Subject=ObjRaising
13 . . PUNCT _ _ 7 punct _ AlignBegin=77517|AlignEnd=77517
# sent_id = ParisStories_2022_7_chienGourmand__35
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et bah, il a mangé toute la pomme.
1 et et CCONJ _ _ 5 cc _ AlignBegin=78310|AlignEnd=78456
2 bah bah INTJ _ _ 1 discourse _ AlignBegin=78456|AlignEnd=78601|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=78601|AlignEnd=78601
4 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 subj _ AlignBegin=78601|AlignEnd=78747
5 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=78747|AlignEnd=78893
6 mangé manger VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 5 comp:aux@tense _ AlignBegin=78893|AlignEnd=79038
7 toute tout ADJ _ _ 9 mod _ AlignBegin=79038|AlignEnd=79184
8 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 9 det _ AlignBegin=79184|AlignEnd=79329
9 pomme pomme NOUN _ Gender=Fem|Number=Sing 6 comp:obj _ AlignBegin=79329|AlignEnd=79475|SpaceAfter=No
10 . . PUNCT _ _ 5 punct _ AlignBegin=79475|AlignEnd=79475
# sent_id = ParisStories_2022_7_chienGourmand__36
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et une pêche, on a essayé de lui faire manger une pêche.
1 et et CCONJ _ _ 6 cc _ AlignBegin=80715|AlignEnd=80880
2 une un DET _ Definite=Ind|Gender=Fem|Number=Sing|PronType=Art 3 det _ AlignBegin=80880|AlignEnd=81045
3 pêche pêche NOUN _ Gender=Fem|Number=Sing 6 dislocated _ AlignBegin=81045|AlignEnd=81210|SpaceAfter=No
4 , , PUNCT _ _ 3 punct _ AlignBegin=81210|AlignEnd=81210
5 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 6 subj _ AlignBegin=81210|AlignEnd=81337
6 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=81337|AlignEnd=81464
7 essayé essayer VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 6 comp:aux@tense _ AlignBegin=81464|AlignEnd=81590
8 de de ADP _ _ 7 comp:obl _ AlignBegin=81590|AlignEnd=81717
9 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 11 comp:obl@agent _ AlignBegin=81717|AlignEnd=81844
10 faire faire AUX _ VerbForm=Inf 8 comp:obj _ AlignBegin=81844|AlignEnd=81971|Subject=SubjRaising
11 manger manger VERB _ VerbForm=Inf 10 comp:aux@caus _ AlignBegin=81971|AlignEnd=82097|Subject=ObjRaising
12 une un DET _ Definite=Ind|Gender=Fem|Number=Sing|PronType=Art 13 det _ AlignBegin=82097|AlignEnd=82224
13 pêche pêche NOUN _ Gender=Fem|Number=Sing 11 comp:obj _ AlignBegin=82224|AlignEnd=82351|SpaceAfter=No
14 . . PUNCT _ _ 6 punct _ AlignBegin=82351|AlignEnd=82351
# sent_id = ParisStories_2022_7_chienGourmand__37
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = il a adoré la pêche.
1 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 subj _ AlignBegin=82723|AlignEnd=82904
2 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=82904|AlignEnd=83085
3 adoré adorer VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 2 comp:aux@tense _ AlignBegin=83085|AlignEnd=83266
4 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 5 det _ AlignBegin=83266|AlignEnd=83447
5 pêche pêche NOUN _ Gender=Fem|Number=Sing 3 comp:obj _ AlignBegin=83447|AlignEnd=83628|SpaceAfter=No
6 . . PUNCT _ _ 2 punct _ AlignBegin=83628|AlignEnd=83628
# sent_id = ParisStories_2022_7_chienGourmand__38
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = sauf qu'il faut faire très attention, je savais pas.
1 sauf sauf ADP _ _ 0 root _ AlignBegin=84229|AlignEnd=84364
2 qu' que SCONJ _ _ 1 unk _ AlignBegin=84364|AlignEnd=84499|SpaceAfter=No
3 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 subj _ AlignBegin=84499|AlignEnd=84634
4 faut falloir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 comp:obj _ AlignBegin=84634|AlignEnd=84769
5 faire faire VERB _ VerbForm=Inf 4 comp:obj _ AlignBegin=84769|AlignEnd=84905|Subject=SubjRaising
6 très très ADV _ _ 7 mod _ AlignBegin=84905|AlignEnd=85040
7 attention attention NOUN _ Gender=Fem|Number=Sing 5 comp:obj@lvc _ AlignBegin=85040|AlignEnd=85175|SpaceAfter=No
8 , , PUNCT _ _ 10 punct _ AlignBegin=85175|AlignEnd=85175
9 je moi PRON _ Number=Sing|Person=1|PronType=Prs 10 subj _ AlignBegin=85175|AlignEnd=85310
10 savais savoir VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Imp|VerbForm=Fin 4 discourse _ AlignBegin=85310|AlignEnd=85445
11 pas pas ADV _ _ 10 mod _ AlignBegin=85445|AlignEnd=85580|SpaceAfter=No
12 . . PUNCT _ _ 1 punct _ AlignBegin=85580|AlignEnd=85580
# sent_id = ParisStories_2022_7_chienGourmand__39
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = dans une pêche, le noyau, c'est de la, du cyanure, du, du, ouais, du cyanure.
1 dans dans ADP _ _ 9 mod _ AlignBegin=85853|AlignEnd=86031
2 une un DET _ Definite=Ind|Gender=Fem|Number=Sing|PronType=Art 3 det _ AlignBegin=86031|AlignEnd=86208
3 pêche pêche NOUN _ Gender=Fem|Number=Sing 1 comp:obj _ AlignBegin=86208|AlignEnd=86386|SpaceAfter=No
4 , , PUNCT _ _ 1 punct _ AlignBegin=86386|AlignEnd=86386
5 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 6 det _ AlignBegin=86845|AlignEnd=87019
6 noyau noyau NOUN _ Gender=Masc|Number=Sing 9 dislocated _ AlignBegin=87019|AlignEnd=87192|SpaceAfter=No
7 , , PUNCT _ _ 6 punct _ AlignBegin=87192|AlignEnd=87192
8 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 9 subj _ AlignBegin=87192|AlignEnd=87366|SpaceAfter=No
9 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=87366|AlignEnd=87539
10 de de ADP _ ExtPos=DET|Shared=No 14 det _ AlignBegin=87539|AlignEnd=87713|Idiom=Yes
11 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 10 unk _ AlignBegin=87713|AlignEnd=87886|InIdiom=Yes|SpaceAfter=No
12 , , PUNCT _ _ 13 punct _ AlignBegin=87886|AlignEnd=87886
13 du du DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 10 conj:dicto _ AlignBegin=87886|AlignEnd=88060
14 cyanure cyanure NOUN _ Gender=Masc|Number=Sing 9 comp:pred _ AlignBegin=88060|AlignEnd=88233|SpaceAfter=No
15 , , PUNCT _ _ 16 punct _ AlignBegin=88233|AlignEnd=88233
16 du du DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 23 det _ AlignBegin=88493|AlignEnd=88657|SpaceAfter=No
17 , , PUNCT _ _ 18 punct _ AlignBegin=88657|AlignEnd=88657
18 du du DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 16 conj:dicto _ AlignBegin=88657|AlignEnd=88821|SpaceAfter=No
19 , , PUNCT _ _ 20 punct _ AlignBegin=88821|AlignEnd=88821
20 ouais ouais INTJ _ _ 18 discourse _ AlignBegin=88821|AlignEnd=88985|SpaceAfter=No
21 , , PUNCT _ _ 22 punct _ AlignBegin=88985|AlignEnd=88985
22 du du DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 18 conj:dicto _ AlignBegin=88985|AlignEnd=89149
23 cyanure cyanure NOUN _ Gender=Masc|Number=Sing 14 conj:dicto _ AlignBegin=89149|AlignEnd=89312|SpaceAfter=No
24 . . PUNCT _ _ 9 punct _ AlignBegin=89312|AlignEnd=89312
# sent_id = ParisStories_2022_7_chienGourmand__40
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = c'est du poison.
1 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 2 subj _ AlignBegin=89312|AlignEnd=89476|SpaceAfter=No
2 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=89476|AlignEnd=89640
3 du du DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 4 det _ AlignBegin=89640|AlignEnd=89804
4 poison poison NOUN _ Gender=Masc|Number=Sing 2 comp:pred _ AlignBegin=89804|AlignEnd=89968|SpaceAfter=No
5 . . PUNCT _ _ 2 punct _ AlignBegin=89968|AlignEnd=89968
# sent_id = ParisStories_2022_7_chienGourmand__41
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc il faut surtout pas qu'il mange le noyau de la pêche.
1 donc donc ADV _ _ 3 mod _ AlignBegin=90142|AlignEnd=90306
2 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=90306|AlignEnd=90469
3 faut falloir VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=90469|AlignEnd=90633
4 surtout surtout ADV _ _ 3 mod _ AlignBegin=90633|AlignEnd=90796
5 pas pas ADV _ _ 3 mod _ AlignBegin=90796|AlignEnd=90960
6 qu' que SCONJ _ _ 3 comp:obj _ AlignBegin=90960|AlignEnd=91093|SpaceAfter=No
7 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 8 subj _ AlignBegin=91093|AlignEnd=91227
8 mange manger VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 comp:obj _ AlignBegin=91227|AlignEnd=91360
9 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 10 det _ AlignBegin=91360|AlignEnd=91493
10 noyau noyau NOUN _ Gender=Masc|Number=Sing 8 comp:obj _ AlignBegin=91493|AlignEnd=91626
11 de de ADP _ _ 10 udep _ AlignBegin=91626|AlignEnd=91760
12 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 13 det _ AlignBegin=91760|AlignEnd=91893
13 pêche pêche NOUN _ Gender=Fem|Number=Sing 11 comp:obj _ AlignBegin=91893|AlignEnd=92026|SpaceAfter=No
14 . . PUNCT _ _ 3 punct _ AlignBegin=92026|AlignEnd=92026
# sent_id = ParisStories_2022_7_chienGourmand__42
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc, du coup, avec ma mère on s'est amusée.
1 donc donc ADV _ _ 12 mod _ AlignBegin=92348|AlignEnd=92476|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=92476|AlignEnd=92476
3-4 du _ _ _ _ _ _ _ _
3 de de ADP _ _ 12 discourse _ AlignBegin=92476|AlignEnd=92604|wordform=du
4 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 5 det _ _
5 coup coup NOUN _ Gender=Masc|Number=Sing 3 comp:obj _ AlignBegin=92604|AlignEnd=92733|SpaceAfter=No
6 , , PUNCT _ _ 3 punct _ AlignBegin=92733|AlignEnd=92733
7 avec avec ADP _ _ 12 mod _ AlignBegin=92733|AlignEnd=92861
8 ma son DET _ Gender=Fem|Number=Sing|Number[psor]=Sing|Person[psor]=1|Poss=Yes|PronType=Prs 9 det _ AlignBegin=92861|AlignEnd=92989
9 mère mère NOUN _ Gender=Fem|Number=Sing 7 comp:obj _ AlignBegin=92989|AlignEnd=93117
10 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 12 subj _ AlignBegin=93117|AlignEnd=93252
11 s' soi PRON _ Person=3|PronType=Prs 13 comp:obj _ AlignBegin=93252|AlignEnd=93387|SpaceAfter=No
12 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=93387|AlignEnd=93522
13 amusée amuser VERB _ Gender=Fem|Number=Sing|Tense=Past|VerbForm=Part 12 comp:aux@tense _ AlignBegin=93522|AlignEnd=93657|SpaceAfter=No
14 . . PUNCT _ _ 12 punct _ AlignBegin=93657|AlignEnd=93657
# sent_id = ParisStories_2022_7_chienGourmand__43
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = on lui a épluché la pêche.
1 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 3 subj _ AlignBegin=93657|AlignEnd=93793
2 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 comp:obl _ AlignBegin=93793|AlignEnd=93928
3 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=93928|AlignEnd=94063
4 épluché éplucher VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 3 comp:aux@tense _ AlignBegin=94063|AlignEnd=94198
5 la le DET _ Definite=Def|Gender=Fem|Number=Sing|PronType=Art 6 det _ AlignBegin=94198|AlignEnd=94333
6 pêche pêche NOUN _ Gender=Fem|Number=Sing 4 comp:obj _ AlignBegin=94333|AlignEnd=94468|SpaceAfter=No
7 . . PUNCT _ _ 3 punct _ AlignBegin=94468|AlignEnd=94468
# sent_id = ParisStories_2022_7_chienGourmand__44
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et on lui a donné des petits quartiers de pêche comme à un petit humain et tout.
1 et et CCONJ _ _ 4 cc _ AlignBegin=94803|AlignEnd=94946
2 on on PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Ind 4 subj _ AlignBegin=94946|AlignEnd=95090
3 lui lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 comp:obl _ AlignBegin=95090|AlignEnd=95233
4 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=95233|AlignEnd=95376
5 donné donner VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 4 comp:aux@tense _ AlignBegin=95376|AlignEnd=95520
6 des un DET _ Definite=Ind|Number=Plur|PronType=Art 8 det _ AlignBegin=95520|AlignEnd=95663
7 petits petit ADJ _ Gender=Masc|Number=Plur 8 mod _ AlignBegin=95663|AlignEnd=95806
8 quartiers quartier NOUN _ Gender=Masc|Number=Plur 5 comp:obj _ AlignBegin=95806|AlignEnd=95949
9 de de ADP _ _ 8 udep _ AlignBegin=95949|AlignEnd=96093
10 pêche pêche NOUN _ Gender=Fem|Number=Sing 9 comp:obj _ AlignBegin=96093|AlignEnd=96236
11 comme comme ADP _ _ 5 mod _ AlignBegin=96236|AlignEnd=96469
12 à à ADP _ _ 11 comp:obj _ AlignBegin=96469|AlignEnd=96469
13 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art|Shared=No 15 det _ AlignBegin=96469|AlignEnd=96703
14 petit petit ADJ _ _ 15 mod _ AlignBegin=96703|AlignEnd=96936
15 humain humain NOUN _ Gender=Masc|Number=Sing 12 comp:obj _ AlignBegin=96936|AlignEnd=97169
16 et et CCONJ _ _ 17 cc _ AlignBegin=97169|AlignEnd=97403
17 tout tout ADV _ _ 15 conj:coord _ AlignBegin=97403|AlignEnd=97636|SpaceAfter=No
18 . . PUNCT _ _ 4 punct _ AlignBegin=97636|AlignEnd=97636
# sent_id = ParisStories_2022_7_chienGourmand__45
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = c'était trop mignon.
1 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 2 subj _ AlignBegin=97636|AlignEnd=97788|SpaceAfter=No
2 était être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 0 root _ AlignBegin=97788|AlignEnd=97940
3 trop trop ADV _ _ 4 mod _ AlignBegin=97940|AlignEnd=98092
4 mignon mignon ADJ _ Gender=Masc|Number=Sing 2 comp:pred _ AlignBegin=98092|AlignEnd=98244|SpaceAfter=No
5 . . PUNCT _ _ 2 punct _ AlignBegin=98244|AlignEnd=98244
# sent_id = ParisStories_2022_7_chienGourmand__46
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et il adore les fruits.
1 et et CCONJ _ _ 3 cc _ AlignBegin=99074|AlignEnd=99265
2 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=99265|AlignEnd=99456
3 adore adorer VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=99456|AlignEnd=99647
4 les le DET _ Definite=Def|Number=Plur|PronType=Art 5 det _ AlignBegin=99647|AlignEnd=99838
5 fruits fruit NOUN _ Gender=Masc|Number=Plur 3 comp:obj _ AlignBegin=99838|AlignEnd=100029|SpaceAfter=No
6 . . PUNCT _ _ 3 punct _ AlignBegin=100029|AlignEnd=100029
# sent_id = ParisStories_2022_7_chienGourmand__47
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc bon, ça, c'est quand même bien.
1 donc donc ADV _ _ 7 mod _ AlignBegin=100177|AlignEnd=100332
2 bon bon INTJ _ _ 1 discourse _ AlignBegin=100332|AlignEnd=100487|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=100487|AlignEnd=100487
4 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 7 dislocated _ AlignBegin=100487|AlignEnd=100642|SpaceAfter=No
5 , , PUNCT _ _ 4 punct _ AlignBegin=100642|AlignEnd=100642
6 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 7 subj _ AlignBegin=100642|AlignEnd=100797|SpaceAfter=No
7 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=100797|AlignEnd=100952
8 quand quand SCONJ _ ExtPos=ADV 7 mod _ AlignBegin=100952|AlignEnd=101107|Idiom=Yes
9 même même ADV _ _ 8 unk _ AlignBegin=101107|AlignEnd=101262|InIdiom=Yes
10 bien bien ADV _ _ 7 comp:pred _ AlignBegin=101262|AlignEnd=101417|SpaceAfter=No
11 . . PUNCT _ _ 7 punct _ AlignBegin=101417|AlignEnd=101417
# sent_id = ParisStories_2022_7_chienGourmand__48
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = et voilà.
1 et et CCONJ _ _ 2 cc _ AlignBegin=102272|AlignEnd=102619
2 voilà voilà VERB _ _ 0 root _ AlignBegin=102619|AlignEnd=102966|SpaceAfter=No
3 . . PUNCT _ _ 2 punct _ AlignBegin=102966|AlignEnd=102966
# sent_id = ParisStories_2022_7_chienGourmand__49
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L2
# text = et bah dis donc !
1 et et CCONJ _ _ 3 cc _ AlignBegin=104566|AlignEnd=104792
2 bah bah INTJ _ _ 3 discourse _ AlignBegin=104792|AlignEnd=105019
3 dis dire VERB _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=105019|AlignEnd=105245
4 donc donc ADP _ _ 3 unk _ AlignBegin=105245|AlignEnd=105471
5 ! ! PUNCT _ _ 3 punct _ AlignBegin=105471|AlignEnd=105471
# sent_id = ParisStories_2022_7_chienGourmand__50
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L2
# text = donc si j'ai bien compris, tu as choisi un chien parce qu'il t'a pissé dessus.
1 donc donc ADV _ _ 9 mod _ AlignBegin=105992|AlignEnd=106172
2 si si SCONJ _ _ 9 mod _ AlignBegin=106172|AlignEnd=106352
3 j' moi PRON _ Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=106352|AlignEnd=106531|SpaceAfter=No
4 ai avoir AUX _ Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 2 comp:obj _ AlignBegin=106531|AlignEnd=106711
5 bien bien ADV _ _ 4 mod _ AlignBegin=106711|AlignEnd=106891
6 compris comprendre VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 4 comp:aux@tense _ AlignBegin=106891|AlignEnd=107071|SpaceAfter=No
7 , , PUNCT _ _ 2 punct _ AlignBegin=107071|AlignEnd=107071
8 tu toi PRON _ Number=Sing|Person=2|PronType=Prs 9 subj _ AlignBegin=107071|AlignEnd=107250
9 as avoir AUX _ Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=107250|AlignEnd=107430
10 choisi choisir VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 9 comp:aux@tense _ AlignBegin=107430|AlignEnd=107647
11 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 12 det _ AlignBegin=107647|AlignEnd=107864
12 chien chien NOUN _ Gender=Masc|Number=Sing 10 comp:obj _ AlignBegin=107864|AlignEnd=108081
13 parce parce ADV _ ExtPos=SCONJ 9 mod _ AlignBegin=108081|AlignEnd=108298|Idiom=Yes
14 qu' que SCONJ _ _ 13 unk _ AlignBegin=108298|AlignEnd=108515|InIdiom=Yes|SpaceAfter=No
15 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 17 subj _ AlignBegin=108515|AlignEnd=108731
16 t' toi PRON _ Number=Sing|Person=2|PronType=Prs 18 comp:obj _ AlignBegin=108731|AlignEnd=108948|SpaceAfter=No
17 a avoir AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 comp:obj _ AlignBegin=108948|AlignEnd=109165
18 pissé pisser VERB _ Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part 17 comp:aux@tense _ AlignBegin=109165|AlignEnd=109382
19 dessus dessus ADV _ _ 18 mod _ AlignBegin=109382|AlignEnd=109599|SpaceAfter=No
20 . . PUNCT _ _ 9 punct _ AlignBegin=109599|AlignEnd=109599
# sent_id = ParisStories_2022_7_chienGourmand__51
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L2
# text = et puis, il bouffe n'importe quoi.
1 et et CCONJ _ ExtPos=CCONJ 5 cc _ AlignBegin=110640|AlignEnd=110893|Idiom=Yes
2 puis puis CCONJ _ _ 1 unk _ AlignBegin=110893|AlignEnd=111147|InIdiom=Yes|SpaceAfter=No
3 , , PUNCT _ _ 1 punct _ AlignBegin=111147|AlignEnd=111147
4 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 subj _ AlignBegin=111147|AlignEnd=111400
5 bouffe bouffer VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=111400|AlignEnd=111653
6 n' ne ADV _ _ 5 mod _ AlignBegin=111653|AlignEnd=111906|SpaceAfter=No
7 importe importer VERB _ _ 5 comp:obj _ AlignBegin=111906|AlignEnd=112160
8 quoi quoi PRON _ _ 7 comp:obj _ AlignBegin=112160|AlignEnd=112413|SpaceAfter=No
9 . . PUNCT _ _ 5 punct _ AlignBegin=112413|AlignEnd=112413
# sent_id = ParisStories_2022_7_chienGourmand__52
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = c'est ça.
1 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 2 subj _ AlignBegin=113119|AlignEnd=113254|SpaceAfter=No
2 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=113254|AlignEnd=113390
3 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 2 comp:pred _ AlignBegin=113390|AlignEnd=113525|SpaceAfter=No
4 . . PUNCT _ _ 2 punct _ AlignBegin=113525|AlignEnd=113525
# sent_id = ParisStories_2022_7_chienGourmand__53
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = bah, c'est un chien en fait, euh.
1 bah bah INTJ _ _ 4 discourse _ AlignBegin=113525|AlignEnd=113660|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=113660|AlignEnd=113660
3 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 4 subj _ AlignBegin=113660|AlignEnd=113795|SpaceAfter=No
4 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=113795|AlignEnd=113931
5 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 6 det _ AlignBegin=113931|AlignEnd=114066
6 chien chien NOUN _ Gender=Masc|Number=Sing 4 comp:pred _ AlignBegin=114066|AlignEnd=114201
7 en en ADP _ _ 4 discourse _ AlignBegin=114201|AlignEnd=114336
8 fait fait NOUN _ Gender=Masc|Number=Sing 7 comp:obj _ AlignBegin=114336|AlignEnd=114472|SpaceAfter=No
9 , , PUNCT _ _ 10 punct _ AlignBegin=114472|AlignEnd=114472
10 euh euh INTJ _ _ 4 discourse _ AlignBegin=114472|AlignEnd=114607|SpaceAfter=No
11 . . PUNCT _ _ 4 punct _ AlignBegin=114607|AlignEnd=114607
# sent_id = ParisStories_2022_7_chienGourmand__54
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = donc, du coup, un chien, c'est, c'est beaucoup d'amour.
1 donc donc ADV _ _ 11 mod _ AlignBegin=114607|AlignEnd=114773|SpaceAfter=No
2 , , PUNCT _ _ 1 punct _ AlignBegin=114773|AlignEnd=114773
3-4 du _ _ _ _ _ _ _ _
3 de de ADP _ _ 11 discourse _ AlignBegin=114773|AlignEnd=114940|wordform=du
4 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 5 det _ _
5 coup coup NOUN _ Gender=Masc|Number=Sing 3 comp:obj _ AlignBegin=114940|AlignEnd=115106|SpaceAfter=No
6 , , PUNCT _ _ 3 punct _ AlignBegin=115106|AlignEnd=115106
7 un un DET _ Definite=Ind|Gender=Masc|Number=Sing|PronType=Art 8 det _ AlignBegin=115106|AlignEnd=115273
8 chien chien NOUN _ Gender=Masc|Number=Sing 11 dislocated _ AlignBegin=115273|AlignEnd=115439|SpaceAfter=No
9 , , PUNCT _ _ 8 punct _ AlignBegin=115439|AlignEnd=115439
10 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 11 subj _ AlignBegin=115439|AlignEnd=115606|SpaceAfter=No
11 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=115606|AlignEnd=115772|SpaceAfter=No
12 , , PUNCT _ _ 14 punct _ AlignBegin=115772|AlignEnd=115772
13 c' ce PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 14 subj _ AlignBegin=116057|AlignEnd=116186|SpaceAfter=No
14 est être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 conj:dicto _ AlignBegin=116186|AlignEnd=116315
15 beaucoup beaucoup ADV _ _ 14 comp:pred _ AlignBegin=116315|AlignEnd=116444
16 d' de ADP _ _ 15 comp:obl _ AlignBegin=116444|AlignEnd=116573|SpaceAfter=No
17 amour amour NOUN _ Gender=Masc|Number=Sing 16 comp:obj _ AlignBegin=116573|AlignEnd=116702|SpaceAfter=No
18 . . PUNCT _ _ 11 punct _ AlignBegin=116702|AlignEnd=116702
# sent_id = ParisStories_2022_7_chienGourmand__55
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = ça t'apporte beaucoup d'amour.
1 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 3 subj _ AlignBegin=116702|AlignEnd=116855
2 t' toi PRON _ Number=Sing|Person=2|PronType=Prs 3 comp:obj _ AlignBegin=116855|AlignEnd=117008|SpaceAfter=No
3 apporte apporter VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=117008|AlignEnd=117161
4 beaucoup beaucoup ADV _ _ 3 comp:obj _ AlignBegin=117161|AlignEnd=117313
5 d' de ADP _ _ 4 comp:obl _ AlignBegin=117313|AlignEnd=117466|SpaceAfter=No
6 amour amour NOUN _ Gender=Masc|Number=Sing 5 comp:obj _ AlignBegin=117466|AlignEnd=117619|SpaceAfter=No
7 . . PUNCT _ _ 3 punct _ AlignBegin=117619|AlignEnd=117619
# sent_id = ParisStories_2022_7_chienGourmand__56
# sound_url = https://api.nakala.fr/data/10.34847/nkl.bf05evl1/4eeef466a61c255a03921a4d234ae810647ba3f1
# speaker = L1
# text = au début, ça fait beaucoup de conneries, parce qu'au tout début, quand il était tout petit, et bah, il mangeait nos chaussures.
1-2 au _ _ _ _ _ _ _ _
1 à à ADP _ _ 6 mod _ AlignBegin=117731|AlignEnd=117862|wordform=au
2 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 3 det _ _
3 début début NOUN _ Gender=Masc|Number=Sing 1 comp:obj _ AlignBegin=117862|AlignEnd=117993|SpaceAfter=No
4 , , PUNCT _ _ 1 punct _ AlignBegin=117993|AlignEnd=117993
5 ça ça PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Dem 6 subj _ AlignBegin=117993|AlignEnd=118124
6 fait faire VERB _ Gender=Masc|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ AlignBegin=118124|AlignEnd=118255
7 beaucoup beaucoup ADV _ _ 6 comp:obj _ AlignBegin=118255|AlignEnd=118386
8 de de ADP _ _ 7 comp:obl _ AlignBegin=118386|AlignEnd=118517
9 conneries connerie NOUN _ Gender=Fem|Number=Plur 8 comp:obj _ AlignBegin=118517|AlignEnd=118648|SpaceAfter=No
10 , , PUNCT _ _ 11 punct _ AlignBegin=118648|AlignEnd=118648
11 parce parce ADV _ ExtPos=SCONJ 6 mod _ AlignBegin=118809|AlignEnd=118935|Idiom=Yes
12 qu' que SCONJ _ _ 11 unk _ AlignBegin=118935|AlignEnd=119062|InIdiom=Yes|SpaceAfter=No
13-14 au _ _ _ _ _ _ _ _
13 à à ADP _ _ 28 mod _ AlignBegin=119062|AlignEnd=119188|wordform=au
14 le le DET _ Definite=Def|Gender=Masc|Number=Sing|PronType=Art 16 det _ _
15 tout tout ADJ _ _ 16 mod _ AlignBegin=119188|AlignEnd=119315
16 début début NOUN _ Gender=Masc|Number=Sing 13 comp:obj _ AlignBegin=119315|AlignEnd=119441|SpaceAfter=No
17 , , PUNCT _ _ 13 punct _ AlignBegin=119441|AlignEnd=119441
18 quand quand SCONJ _ _ 28 mod _ AlignBegin=119441|AlignEnd=119617
19 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 20 subj _ AlignBegin=119617|AlignEnd=119793
20 était être AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 18 comp:obj _ AlignBegin=119793|AlignEnd=119969
21 tout tout ADV _ _ 22 mod _ AlignBegin=119969|AlignEnd=120145
22 petit petit ADJ _ _ 20 comp:pred _ AlignBegin=120145|AlignEnd=120321|SpaceAfter=No
23 , , PUNCT _ _ 24 punct _ AlignBegin=120321|AlignEnd=120321
24 et et CCONJ _ _ 18 cc _ AlignBegin=120705|AlignEnd=120903
25 bah bah INTJ _ _ 18 discourse _ AlignBegin=120903|AlignEnd=121102|SpaceAfter=No
26 , , PUNCT _ _ 18 punct _ AlignBegin=121102|AlignEnd=121102
27 il lui PRON _ Gender=Masc|Number=Sing|Person=3|PronType=Prs 28 subj _ AlignBegin=121102|AlignEnd=121300
28 mangeait manger VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin 11 comp:obj _ AlignBegin=121300|AlignEnd=121498
29 nos son DET _ Number=Plur|Number[psor]=Plur|Person[psor]=1|Poss=Yes|PronType=Prs 30 det _ AlignBegin=121498|AlignEnd=121697
30 chaussures chaussure NOUN _ Gender=Fem|Number=Plur 28 comp:obj _ AlignBegin=121697|AlignEnd=121895|SpaceAfter=No