-
Notifications
You must be signed in to change notification settings - Fork 1
/
en_partut-ud-dev.conllu
3191 lines (3035 loc) · 148 KB
/
en_partut-ud-dev.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 = en_partut-ud-2
# text = Creative Commons Corporation is not a law firm and does not provide legal services.
1 Creative Creative PROPN SP _ 3 nmod _ _
2 Commons Commons PROPN SP _ 1 flat _ _
3 Corporation corporation NOUN S Number=Sing 8 nsubj _ _
4 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _
5 not not PART PART Polarity=Neg 8 advmod _ _
6 a a DET RI Definite=Ind|Number=Sing|PronType=Art 8 det _ _
7 law law NOUN S Number=Sing 8 nmod _ _
8 firm firm NOUN S Number=Sing 0 root _ _
9 and and CCONJ CC _ 12 cc _ _
10 does do AUX VM Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 aux _ _
11 not not PART PART Polarity=Neg 12 advmod _ _
12 provide provide VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 8 conj _ _
13 legal legal ADJ A Degree=Pos 14 amod _ _
14 services service NOUN S Number=Plur 12 obj _ SpaceAfter=No
15 . . PUNCT FS _ 8 punct _ _
# sent_id = en_partut-ud-7
# text = The work (as defined below) is provided under the terms of this Creative Commons Public License ("CCPL" or "License").
1 The the DET RD Definite=Def|PronType=Art 2 det _ _
2 work work NOUN S Number=Sing 9 nsubj:pass _ _
3 ( ( PUNCT FB _ 5 punct _ SpaceAfter=No
4 as as ADP E _ 5 mark _ _
5 defined define VERB V Tense=Past|VerbForm=Part 2 acl _ _
6 below below ADV B _ 5 advmod _ SpaceAfter=No
7 ) ) PUNCT FB _ 5 punct _ _
8 is be AUX VA Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux:pass _ _
9 provided provide VERB V Tense=Past|VerbForm=Part 0 root _ _
10 under under ADP E _ 12 case _ _
11 the the DET RD Definite=Def|PronType=Art 12 det _ _
12 terms term NOUN S Number=Plur 9 obl _ _
13 of of ADP E _ 18 case _ _
14 this this DET DD Number=Sing|PronType=Dem 18 det _ _
15 Creative Creative PROPN SP _ 18 nmod _ _
16 Commons Commons PROPN SP _ 15 flat _ _
17 Public public ADJ A Degree=Pos 18 amod _ _
18 License license NOUN S Number=Sing 12 nmod _ _
19 ( ( PUNCT FB _ 21 punct _ SpaceAfter=No
20 " " PUNCT FB _ 21 punct _ SpaceAfter=No
21 CCPL CCPL PROPN SP _ 18 appos _ SpaceAfter=No
22 " " PUNCT FB _ 21 punct _ _
23 or or CCONJ CC _ 25 cc _ _
24 " " PUNCT FB _ 25 punct _ SpaceAfter=No
25 License license NOUN S Number=Sing 21 conj _ SpaceAfter=No
26 " " PUNCT FB _ 25 punct _ SpaceAfter=No
27 ) ) PUNCT FB _ 21 punct _ SpaceAfter=No
28 . . PUNCT FS _ 9 punct _ _
# sent_id = en_partut-ud-12
# text = 1. Definitions.
1 1 1 NUM N NumType=Card 3 nummod _ SpaceAfter=No
2 . . PUNCT FF _ 1 punct _ _
3 Definitions definition NOUN S Number=Plur 0 root _ SpaceAfter=No
4 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-27
# text = 4. Restrictions.
1 4 4 NUM N NumType=Card 3 nummod _ SpaceAfter=No
2 . . PUNCT FF _ 1 punct _ _
3 Restrictions restriction NOUN S Number=Plur 0 root _ SpaceAfter=No
4 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-49
# text = 7. Termination.
1 7 7 NUM N NumType=Card 3 nummod _ SpaceAfter=No
2 . . PUNCT FF _ 1 punct _ _
3 Termination termination NOUN S Number=Sing 0 root _ SpaceAfter=No
4 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-72
# text = You have requested a debate on this subject in the course of the next few days, during this part-session.
1 You you PRON PE Person=2|PronType=Prs 3 nsubj _ _
2 have have AUX VA Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 3 aux _ _
3 requested request VERB V Tense=Past|VerbForm=Part 0 root _ _
4 a a DET RI Definite=Ind|Number=Sing|PronType=Art 5 det _ _
5 debate debate NOUN S Number=Sing 3 obj _ _
6 on on ADP E _ 8 case _ _
7 this this DET DD Number=Sing|PronType=Dem 8 det _ _
8 subject subject NOUN S Number=Sing 5 nmod _ _
9 in in ADP E _ 11 case _ _
10 the the DET RD Definite=Def|PronType=Art 11 det _ _
11 course course NOUN S Number=Sing 3 obl _ _
12 of of ADP E _ 16 case _ _
13 the the DET RD Definite=Def|PronType=Art 16 det _ _
14 next next ADJ A Degree=Pos 16 amod _ _
15 few few ADJ A Degree=Pos 16 amod _ _
16 days day NOUN S Number=Plur 11 nmod _ SpaceAfter=No
17 , , PUNCT FF _ 3 punct _ _
18 during during ADP E _ 22 case _ _
19 this this DET DD Number=Sing|PronType=Dem 22 det _ _
20 part part ADJ A Degree=Pos 22 amod _ SpaceAfter=No
21 - - PUNCT FF _ 22 punct _ SpaceAfter=No
22 session session NOUN S Number=Sing 3 obl _ SpaceAfter=No
23 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-85
# text = The Cunha report on multiannual guidance programmes comes before Parliament on Thursday and contains a proposal in paragraph 6 that a form of quota penalties should be introduced for countries which fail to meet their fleet reduction targets annually.
1 The the DET RD Definite=Def|PronType=Art 3 det _ _
2 Cunha Cunha PROPN SP _ 3 nmod _ _
3 report report NOUN S Number=Sing 8 nsubj _ _
4 on on ADP E _ 7 case _ _
5 multiannual multiannual ADJ A Degree=Pos 6 amod _ _
6 guidance guidance NOUN S Number=Sing 7 nmod _ _
7 programmes programme NOUN S Number=Plur 3 nmod _ _
8 comes come VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
9 before before ADP E _ 10 case _ _
10 Parliament parliament NOUN S Number=Sing 8 obl _ _
11 on on ADP E _ 12 case _ _
12 Thursday Thursday NOUN S Number=Sing 8 obl _ _
13 and and CCONJ CC _ 14 cc _ _
14 contains contain VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 conj _ _
15 a a DET RI Definite=Ind|Number=Sing|PronType=Art 16 det _ _
16 proposal proposal NOUN S Number=Sing 14 obj _ _
17 in in ADP E _ 18 case _ _
18 paragraph paragraph NOUN S Number=Sing 14 obl _ _
19 6 6 NUM N NumType=Card 18 nummod _ _
20 that that PRON PR PronType=Rel 28 obj _ _
21 a a DET RI Definite=Ind|Number=Sing|PronType=Art 22 det _ _
22 form form NOUN S Number=Sing 28 nsubj:pass _ _
23 of of ADP E _ 25 case _ _
24 quota quota NOUN S Number=Sing 25 nmod _ _
25 penalties penalty NOUN S Number=Plur 22 nmod _ _
26 should shall AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 28 aux _ _
27 be be AUX VA VerbForm=Inf 28 aux:pass _ _
28 introduced introduce VERB V Tense=Past|VerbForm=Part 18 acl:relcl _ _
29 for for ADP E _ 30 case _ _
30 countries country NOUN S Number=Plur 28 obl _ _
31 which which PRON PR PronType=Rel 32 nsubj _ _
32 fail fail VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 30 acl:relcl _ _
33 to to PART PART _ 34 mark _ _
34 meet meet VERB V VerbForm=Inf 32 xcomp _ _
35 their their DET AP Poss=Yes|PronType=Prs 38 nmod:poss _ _
36 fleet fleet ADJ A Degree=Pos 37 amod _ _
37 reduction reduction NOUN S Number=Sing 38 nmod _ _
38 targets target NOUN S Number=Plur 34 obj _ _
39 annually annually ADV B _ 34 advmod _ SpaceAfter=No
40 . . PUNCT FS _ 8 punct _ _
# sent_id = en_partut-ud-118
# text = Mr Berenguer Fuster, we shall check all this.
1 Mr mister NOUN S Number=Sing 7 vocative _ _
2 Berenguer Berenguer PROPN SP _ 1 flat _ _
3 Fuster Fuster PROPN SP _ 1 flat _ SpaceAfter=No
4 , , PUNCT FF _ 1 punct _ _
5 we we PRON PE Number=Plur|Person=1|PronType=Prs 7 nsubj _ _
6 shall shall AUX VM Mood=Ind|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _
7 check check VERB V VerbForm=Inf 0 root _ _
8 all all PRON PE Number=Sing|Person=3|PronType=Prs 7 obj _ _
9 this this PRON PD Number=Sing|PronType=Dem 8 nmod _ SpaceAfter=No
10 . . PUNCT FS _ 7 punct _ _
# sent_id = en_partut-ud-179
# text = I should like to address one final point.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 should shall AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 3 aux _ _
3 like like VERB V VerbForm=Inf 0 root _ _
4 to to PART PART _ 5 mark _ _
5 address address VERB V VerbForm=Inf 3 xcomp _ _
6 one one NUM N NumType=Card 8 nummod _ _
7 final final ADJ A Degree=Pos 8 amod _ _
8 point point NOUN S Number=Sing 5 obj _ SpaceAfter=No
9 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-264
# text = I do realise that this is only a small step towards increased transport safety, but I would ask you to endorse this report.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 do do AUX VM Mood=Ind|Person=3|Tense=Pres|VerbForm=Fin 3 aux _ _
3 realise realize VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
4 that that SCONJ CS _ 10 mark _ _
5 this this PRON PD Number=Sing|PronType=Dem 10 nsubj _ _
6 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _
7 only only ADV B _ 10 advmod _ _
8 a a DET RI Definite=Ind|Number=Sing|PronType=Art 10 det _ _
9 small small ADJ A Degree=Pos 10 amod _ _
10 step step NOUN S Number=Sing 3 ccomp _ _
11 towards towards ADP E _ 14 case _ _
12 increased increased ADJ A Degree=Pos 13 amod _ _
13 transport transport NOUN S Number=Sing 14 nmod _ _
14 safety safety NOUN S Number=Sing 10 nmod _ SpaceAfter=No
15 , , PUNCT FF _ 19 punct _ _
16 but but CCONJ CC _ 19 cc _ _
17 I I PRON PE Number=Sing|Person=1|PronType=Prs 19 nsubj _ _
18 would will AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 19 aux _ _
19 ask ask VERB V VerbForm=Inf 10 conj _ _
20 you you PRON PE Person=2|PronType=Prs 19 obj _ _
21 to to PART PART _ 22 mark _ _
22 endorse endorse VERB V VerbForm=Inf 19 xcomp _ _
23 this this DET DD Number=Sing|PronType=Dem 24 det _ _
24 report report NOUN S Number=Sing 22 obj _ SpaceAfter=No
25 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-266
# text = I am speaking for the first time in this plenary part-session, so this is quite exciting for me, a little like first love, although that did last longer than two minutes.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 3 nsubj _ _
2 am be AUX VA Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 3 aux _ _
3 speaking speak VERB V VerbForm=Ger 0 root _ _
4 for for ADP E _ 7 case _ _
5 the the DET RD Definite=Def|PronType=Art 7 det _ _
6 first first ADJ NO Degree=Pos|NumType=Ord 7 amod _ _
7 time time NOUN S Number=Sing 3 obl _ _
8 in in ADP E _ 13 case _ _
9 this this DET DD Number=Sing|PronType=Dem 13 det _ _
10 plenary plenary ADJ A Degree=Pos 13 amod _ _
11 part part ADJ A Degree=Pos 13 amod _ SpaceAfter=No
12 - - PUNCT FF _ 13 punct _ SpaceAfter=No
13 session session NOUN S Number=Sing 3 obl _ SpaceAfter=No
14 , , PUNCT FF _ 3 punct _ _
15 so so SCONJ CS _ 19 mark _ _
16 this this PRON PD Number=Sing|PronType=Dem 19 nsubj _ _
17 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _
18 quite quite ADV B _ 19 advmod _ _
19 exciting exciting ADJ A Degree=Pos 3 advcl _ _
20 for for ADP E _ 21 case _ _
21 me i PRON PE Number=Sing|Person=1|PronType=Prs 19 obl _ SpaceAfter=No
22 , , PUNCT FF _ 19 punct _ _
23 a a DET RI Definite=Ind|Number=Sing|PronType=Art 24 det _ _
24 little little ADJ A Degree=Pos 27 nmod:unmarked _ _
25 like like ADP E _ 27 case _ _
26 first first ADJ NO Degree=Pos|NumType=Ord 27 amod _ _
27 love love NOUN S Number=Sing 19 obl _ SpaceAfter=No
28 , , PUNCT FF _ 19 punct _ _
29 although although SCONJ CS _ 32 mark _ _
30 that that PRON PD Number=Sing|PronType=Dem 32 nsubj _ _
31 did do AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 32 aux _ _
32 last last VERB V VerbForm=Inf 19 advcl _ _
33 longer long ADV B _ 32 advmod _ _
34 than than ADP E _ 36 case _ _
35 two two NUM N NumType=Card 36 nummod _ _
36 minutes minute NOUN S Number=Plur 33 obl _ SpaceAfter=No
37 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-285
# text = In many ways, the prerequisites differ from one Member State to another.
1 In in ADP E _ 3 case _ _
2 many many ADJ A Degree=Pos 3 amod _ _
3 ways way NOUN S Number=Plur 7 obl _ SpaceAfter=No
4 , , PUNCT FF _ 3 punct _ _
5 the the DET RD Definite=Def|PronType=Art 6 det _ _
6 prerequisites prerequisite NOUN S Number=Plur 7 nsubj _ _
7 differ differ VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
8 from from ADP E _ 9 case _ _
9 one one NUM N NumType=Card 7 nummod _ _
10 Member member NOUN S Number=Sing 11 compound _ _
11 State state NOUN S Number=Sing 7 obl _ _
12 to to ADP E _ 13 case _ _
13 another another DET RI Definite=Ind|Number=Sing|PronType=Art 7 obl _ SpaceAfter=No
14 . . PUNCT FS _ 7 punct _ _
# sent_id = en_partut-ud-291
# text = The reason Mr Koch produced his sound report was because the work in the CEN and within the United Nations Economic Commission was proceeding none too expeditiously.
1 The the DET RD Definite=Def|PronType=Art 2 det _ _
2 reason reason NOUN S Number=Sing 9 nsubj _ _
3 Mr mister NOUN S Number=Sing 5 nsubj _ _
4 Koch Koch PROPN SP _ 3 flat _ _
5 produced produce VERB V Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 2 acl _ _
6 his his DET AP Poss=Yes|PronType=Prs 8 nmod:poss _ _
7 sound sound ADJ A Degree=Pos 8 amod _ _
8 report report NOUN S Number=Sing 5 obj _ _
9 was be VERB V Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _
10 because because SCONJ CS _ 24 mark _ _
11 the the DET RD Definite=Def|PronType=Art 12 det _ _
12 work work NOUN S Number=Sing 24 nsubj _ _
13 in in ADP E _ 15 case _ _
14 the the DET RD Definite=Def|PronType=Art 15 det _ _
15 CEN CEN PROPN SP _ 12 nmod _ _
16 and and CCONJ CC _ 22 cc _ _
17 within within ADP E _ 22 case _ _
18 the the DET RD Definite=Def|PronType=Art 22 det _ _
19 United United PROPN SP _ 22 nmod _ _
20 Nations Nations PROPN SP _ 19 flat _ _
21 Economic economic ADJ A Degree=Pos 22 amod _ _
22 Commission commission NOUN S Number=Sing 15 conj _ _
23 was be AUX VA Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 24 aux _ _
24 proceeding proceed VERB V VerbForm=Ger 9 ccomp _ _
25 none none ADV BN PronType=Neg 26 advmod _ _
26 too too ADV B _ 27 advmod _ _
27 expeditiously expeditiously ADV B _ 24 advmod _ SpaceAfter=No
28 . . PUNCT FS _ 9 punct _ _
# sent_id = en_partut-ud-294
# text = Mr President, I would once again like to congratulate Mr Koch on his magnificent work on this other report, which in a way supplements the debate which we held in October on rail transport.
1 Mr mister NOUN S Number=Sing 8 vocative _ _
2 President president NOUN S Number=Sing 1 compound _ SpaceAfter=No
3 , , PUNCT FF _ 1 punct _ _
4 I I PRON PE Number=Sing|Person=1|PronType=Prs 8 nsubj _ _
5 would will AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 8 aux _ _
6 once once ADV B _ 8 advmod _ _
7 again again ADV B _ 6 advmod _ _
8 like like VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
9 to to PART PART _ 10 mark _ _
10 congratulate congratulate VERB V VerbForm=Inf 8 xcomp _ _
11 Mr mister NOUN S Number=Sing 10 obj _ _
12 Koch Koch PROPN SP _ 11 flat _ _
13 on on ADP E _ 16 case _ _
14 his his DET AP Poss=Yes|PronType=Prs 16 nmod:poss _ _
15 magnificent magnificent ADJ A Degree=Pos 16 amod _ _
16 work work NOUN S Number=Sing 10 obl _ _
17 on on ADP E _ 20 case _ _
18 this this DET DD Number=Sing|PronType=Dem 20 det _ _
19 other other ADJ A Degree=Pos 20 amod _ _
20 report report NOUN S Number=Sing 16 nmod _ SpaceAfter=No
21 , , PUNCT FF _ 20 punct _ _
22 which which PRON PR PronType=Rel 26 nsubj _ _
23 in in ADP E _ 25 case _ _
24 a a DET RI Definite=Ind|Number=Sing|PronType=Art 25 det _ _
25 way way NOUN S Number=Sing 26 obl _ _
26 supplements supplement VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 20 acl:relcl _ _
27 the the DET RD Definite=Def|PronType=Art 28 det _ _
28 debate debate NOUN S Number=Sing 26 obj _ _
29 which which PRON PR PronType=Rel 31 obj _ _
30 we we PRON PE Number=Plur|Person=1|PronType=Prs 31 nsubj _ _
31 held hold VERB V Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 28 acl:relcl _ _
32 in in ADP E _ 33 case _ _
33 October October PROPN SP _ 31 obl _ _
34 on on ADP E _ 36 case _ _
35 rail rail NOUN S Number=Sing 36 nmod _ _
36 transport transport NOUN S Number=Sing 28 nmod _ SpaceAfter=No
37 . . PUNCT FS _ 8 punct _ _
# sent_id = en_partut-ud-341
# text = We have to remember that rural areas represent almost four fifths of the territory of the European Union.
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 2 nsubj _ _
2 have have VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
3 to to PART PART _ 4 mark _ _
4 remember remember VERB V VerbForm=Inf 2 xcomp _ _
5 that that SCONJ CS _ 8 mark _ _
6 rural rural ADJ A Degree=Pos 7 amod _ _
7 areas area NOUN S Number=Plur 8 nsubj _ _
8 represent represent VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 4 ccomp _ _
9 almost almost ADV B _ 11 advmod _ _
10 four four NUM N NumType=Card 11 nummod _ _
11 fifths fifths NOUN S Number=Plur 8 obj _ _
12 of of ADP E _ 14 case _ _
13 the the DET RD Definite=Def|PronType=Art 14 det _ _
14 territory territory NOUN S Number=Sing 11 nmod _ _
15 of of ADP E _ 17 case _ _
16 the the DET RD Definite=Def|PronType=Art 17 det _ _
17 European European PROPN SP _ 14 nmod _ _
18 Union Union PROPN SP _ 17 flat _ SpaceAfter=No
19 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-374
# text = We are badly behind now in this matter.
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 4 nsubj _ _
2 are be AUX V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 4 cop _ _
3 badly badly ADV B _ 4 advmod _ _
4 behind behind ADV B _ 0 root _ _
5 now now ADV B _ 4 advmod _ _
6 in in ADP E _ 8 case _ _
7 this this DET DD Number=Sing|PronType=Dem 8 det _ _
8 matter matter NOUN S Number=Sing 4 obl _ SpaceAfter=No
9 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-382
# text = We oppose the excessive control the central administration of the Union and its Member States exercises and we are calling for a reduction in the bureaucracy that has taken root in the drafting and implementation of programmes.
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 2 nsubj _ _
2 oppose oppose VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
3 the the DET RD Definite=Def|PronType=Art 5 det _ _
4 excessive excessive ADJ A Degree=Pos 5 amod _ _
5 control control NOUN S Number=Sing 2 obj _ _
6 the the DET RD Definite=Def|PronType=Art 8 det _ _
7 central central ADJ A Degree=Pos 8 amod _ _
8 administration administration NOUN S Number=Sing 16 nsubj _ _
9 of of ADP E _ 11 case _ _
10 the the DET RD Definite=Def|PronType=Art 11 det _ _
11 Union Union PROPN SP _ 8 nmod _ _
12 and and CCONJ CC _ 15 cc _ _
13 its its DET AP Number=Sing|Poss=Yes|PronType=Prs 15 nmod:poss _ _
14 Member member NOUN S Number=Sing 15 compound _ _
15 States state NOUN S Number=Plur 8 conj _ _
16 exercises exercise VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 acl:relcl _ _
17 and and CCONJ CC _ 20 cc _ _
18 we we PRON PE Number=Plur|Person=1|PronType=Prs 20 nsubj _ _
19 are be AUX VA Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 20 aux _ _
20 calling call VERB V VerbForm=Ger 2 conj _ _
21 for for ADP E _ 23 case _ _
22 a a DET RI Definite=Ind|Number=Sing|PronType=Art 23 det _ _
23 reduction reduction NOUN S Number=Sing 20 obl _ _
24 in in ADP E _ 26 case _ _
25 the the DET RD Definite=Def|PronType=Art 26 det _ _
26 bureaucracy bureaucracy NOUN S Number=Sing 23 nmod _ _
27 that that PRON PR PronType=Rel 29 nsubj _ _
28 has have AUX VA Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 29 aux _ _
29 taken take VERB V Tense=Past|VerbForm=Part 23 acl:relcl _ _
30 root root NOUN S Number=Sing 29 obj _ _
31 in in ADP E _ 33 case _ _
32 the the DET RD Definite=Def|PronType=Art 33 det _ _
33 drafting drafting NOUN S Number=Sing 29 obl _ _
34 and and CCONJ CC _ 35 cc _ _
35 implementation implementation NOUN S Number=Sing 33 conj _ _
36 of of ADP E _ 37 case _ _
37 programmes programme NOUN S Number=Plur 35 nmod _ SpaceAfter=No
38 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-409
# text = The Structural Funds have played a key role in the development both of urban and rural parts of peripheral countries, mainly through the upgrading of roads, water treatment and related transport networks.
1 The the DET RD Definite=Def|PronType=Art 3 det _ _
2 Structural structural ADJ A Degree=Pos 3 amod _ _
3 Funds fund NOUN S Number=Plur 5 nsubj _ _
4 have have AUX VA Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 5 aux _ _
5 played play VERB V Tense=Past|VerbForm=Part 0 root _ _
6 a a DET RI Definite=Ind|Number=Sing|PronType=Art 8 det _ _
7 key key NOUN S Number=Sing 8 compound _ _
8 role role NOUN S Number=Sing 5 obj _ _
9 in in ADP E _ 11 case _ _
10 the the DET RD Definite=Def|PronType=Art 11 det _ _
11 development development NOUN S Number=Sing 5 obl _ _
12 both both ADV B _ 17 advmod _ _
13 of of ADP E _ 17 case _ _
14 urban urban ADJ A Degree=Pos 17 amod _ _
15 and and CCONJ CC _ 16 cc _ _
16 rural rural ADJ A Degree=Pos 14 conj _ _
17 parts part NOUN S Number=Plur 11 nmod _ _
18 of of ADP E _ 20 case _ _
19 peripheral peripheral ADJ A Degree=Pos 20 amod _ _
20 countries country NOUN S Number=Plur 17 nmod _ SpaceAfter=No
21 , , PUNCT FF _ 5 punct _ _
22 mainly mainly ADV B _ 25 advmod _ _
23 through through ADP E _ 25 case _ _
24 the the DET RD Definite=Def|PronType=Art 25 det _ _
25 upgrading upgrading NOUN S Number=Sing 5 obl _ _
26 of of ADP E _ 27 case _ _
27 roads road NOUN S Number=Plur 25 nmod _ SpaceAfter=No
28 , , PUNCT FF _ 30 punct _ _
29 water water NOUN S Number=Sing 30 obj _ _
30 treatment treatment NOUN S Number=Sing 25 conj _ _
31 and and CCONJ CC _ 34 cc _ _
32 related related ADJ A Degree=Pos 34 amod _ _
33 transport transport NOUN S Number=Sing 34 nmod _ _
34 networks network NOUN S Number=Plur 30 conj _ SpaceAfter=No
35 . . PUNCT FS _ 5 punct _ _
# sent_id = en_partut-ud-434
# text = how can we ensure that Union policy interfaces with the subsidiary national policies for regional development?
1 how how ADV B _ 4 advmod _ _
2 can can AUX VM Mood=Imp|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin 4 aux _ _
3 we we PRON PE Number=Plur|Person=1|PronType=Prs 4 nsubj _ _
4 ensure ensure VERB V VerbForm=Inf 0 root _ _
5 that that SCONJ CS _ 8 mark _ _
6 Union union ADJ A Degree=Pos 7 amod _ _
7 policy policy NOUN S Number=Sing 8 nsubj _ _
8 interfaces interface VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 ccomp _ _
9 with with ADP E _ 13 case _ _
10 the the DET RD Definite=Def|PronType=Art 13 det _ _
11 subsidiary subsidiary ADJ A Degree=Pos 13 amod _ _
12 national national ADJ A Degree=Pos 13 amod _ _
13 policies policy NOUN S Number=Plur 8 obl _ _
14 for for ADP E _ 16 case _ _
15 regional regional ADJ A Degree=Pos 16 amod _ _
16 development development NOUN S Number=Sing 13 nmod _ SpaceAfter=No
17 ? ? PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-444
# text = as far as French planning experts are concerned, for example, the most probable scenario today is that of the entrenchment of regional disparities within each country.
1 as as ADP E _ 8 mark _ _
2 far far ADV B _ 1 fixed _ _
3 as as ADP E _ 1 fixed _ _
4 French French ADJ A Degree=Pos 5 amod _ _
5 planning planning NOUN S Number=Sing 6 nmod _ _
6 experts expert NOUN S Number=Plur 8 nsubj _ _
7 are be AUX V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 8 cop _ _
8 concerned concerned ADJ A Degree=Pos 19 advcl _ SpaceAfter=No
9 , , PUNCT FF _ 8 punct _ _
10 for for ADP E _ 11 case _ _
11 example example NOUN S Number=Sing 8 obl _ SpaceAfter=No
12 , , PUNCT FF _ 11 punct _ _
13 the the DET RD Definite=Def|PronType=Art 16 det _ _
14 most most ADV B _ 15 advmod _ _
15 probable probable ADJ A Degree=Pos 16 amod _ _
16 scenario scenario NOUN S Number=Sing 19 nsubj _ _
17 today today ADV B _ 19 advmod _ _
18 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _
19 that that PRON PD Number=Sing|PronType=Dem 0 root _ _
20 of of ADP E _ 22 case _ _
21 the the DET RD Definite=Def|PronType=Art 22 det _ _
22 entrenchment entrenchment NOUN S Number=Sing 19 nmod _ _
23 of of ADP E _ 25 case _ _
24 regional regional ADJ A Degree=Pos 25 amod _ _
25 disparities disparity NOUN S Number=Plur 22 nmod _ _
26 within within ADP E _ 28 case _ _
27 each each DET DI Number=Sing|PronType=Ind 28 det _ _
28 country country NOUN S Number=Sing 25 nmod _ SpaceAfter=No
29 . . PUNCT FS _ 19 punct _ _
# sent_id = en_partut-ud-465
# text = In addition, if you choose to use Facebook from your mobile device, please note that you will be responsible for any fees associated with internet usage and/or text messaging as determined by your mobile service provider.
1 In in ADP E _ 2 case _ _
2 addition addition NOUN S Number=Sing 16 obl _ SpaceAfter=No
3 , , PUNCT FF _ 2 punct _ _
4 if if SCONJ CS _ 6 mark _ _
5 you you PRON PE Person=2|PronType=Prs 6 nsubj _ _
6 choose choose VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 16 advcl _ _
7 to to PART PART _ 8 mark _ _
8 use use VERB V VerbForm=Inf 6 xcomp _ _
9 Facebook Facebook PROPN SP _ 8 obj _ _
10 from from ADP E _ 13 case _ _
11 your you DET AP Poss=Yes|PronType=Prs 13 nmod:poss _ _
12 mobile mobile ADJ A Degree=Pos 13 amod _ _
13 device device NOUN S Number=Sing 8 obl _ SpaceAfter=No
14 , , PUNCT FF _ 6 punct _ _
15 please please ADV B _ 16 discourse _ _
16 note note VERB V Mood=Imp|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
17 that that SCONJ CS _ 21 mark _ _
18 you you PRON PE Person=2|PronType=Prs 21 nsubj _ _
19 will will AUX VM Mood=Ind|Person=3|Tense=Pres|VerbForm=Fin 21 aux _ _
20 be be AUX V VerbForm=Inf 21 cop _ _
21 responsible responsible ADJ A Degree=Pos 16 ccomp _ _
22 for for ADP E _ 24 case _ _
23 any any DET DI PronType=Ind 24 det _ _
24 fees fee NOUN S Number=Plur 21 obl _ _
25 associated associate VERB V Tense=Past|VerbForm=Part 24 acl _ _
26 with with ADP E _ 28 case _ _
27 internet internet NOUN S Number=Sing 28 nmod _ _
28 usage usage NOUN S Number=Sing 25 obl _ _
29 and and CCONJ CC _ 33 cc _ SpaceAfter=No
30 / / PUNCT FF _ 31 punct _ SpaceAfter=No
31 or or CCONJ CC _ 29 conj _ _
32 text text NOUN S Number=Sing 33 nmod _ _
33 messaging messaging NOUN S _ 28 conj _ _
34 as as SCONJ CS _ 35 mark _ _
35 determined determine VERB V Tense=Past|VerbForm=Part 21 advcl _ _
36 by by ADP E _ 40 case _ _
37 your you DET AP Poss=Yes|PronType=Prs 40 nmod:poss _ _
38 mobile mobile NOUN S Number=Sing 39 nmod _ _
39 service service NOUN S Number=Sing 40 nmod _ _
40 provider provider NOUN S Number=Sing 35 obl _ SpaceAfter=No
41 . . PUNCT FS _ 16 punct _ _
# sent_id = en_partut-ud-485
# text = To sign up for a brand new account, enter your name, birthday, gender, and email address into the form on www.facebook.com.
1 To to ADP E _ 2 mark _ _
2 sign sign VERB V VerbForm=Inf 10 advcl _ _
3 up up ADP E _ 2 compound:prt _ _
4 for for ADP E _ 8 case _ _
5 a a DET RI Definite=Ind|Number=Sing|PronType=Art 8 det _ _
6 brand brand ADV B _ 7 advmod _ _
7 new new ADJ A Degree=Pos 8 amod _ _
8 account account NOUN S Number=Sing 2 obl _ SpaceAfter=No
9 , , PUNCT FF _ 2 punct _ _
10 enter enter VERB V Mood=Imp|Person=2|Tense=Pres|VerbForm=Fin 0 root _ _
11 your you DET AP Poss=Yes|PronType=Prs 12 nmod:poss _ _
12 name name NOUN S Number=Sing 10 obj _ SpaceAfter=No
13 , , PUNCT FF _ 14 punct _ _
14 birthday birthday NOUN S Number=Sing 12 conj _ SpaceAfter=No
15 , , PUNCT FF _ 16 punct _ _
16 gender gender NOUN S Number=Sing 12 conj _ SpaceAfter=No
17 , , PUNCT FF _ 20 punct _ _
18 and and CCONJ CC _ 20 cc _ _
19 email email NOUN S Number=Sing 20 nmod _ _
20 address address NOUN S Number=Sing 12 conj _ _
21 into into ADP E _ 23 case _ _
22 the the DET RD Definite=Def|PronType=Art 23 det _ _
23 form form NOUN S Number=Sing 10 obl _ _
24 on on ADP E _ 25 case _ _
25 www.facebook.com www.facebook.com PROPN SP _ 23 nmod _ SpaceAfter=No
26 . . PUNCT FS _ 10 punct _ _
# sent_id = en_partut-ud-506
# text = Facebook Adverts.
1 Facebook Facebook PROPN SP _ 2 nmod _ _
2 Adverts advert NOUN S Number=Plur 0 root _ SpaceAfter=No
3 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-513
# text = Deepen your relationships.
1 Deepen deepen VERB V Mood=Imp|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
2 your you DET AP Poss=Yes|PronType=Prs 3 nmod:poss _ _
3 relationships relationship NOUN S Number=Plur 1 obj _ SpaceAfter=No
4 . . PUNCT FS _ 1 punct _ _
# sent_id = en_partut-ud-531
# text = 10% conversion rate from visits originating from Facebook Adverts.
1 10 10 NUM N NumType=Card 2 nummod _ SpaceAfter=No
2 % % SYM X _ 4 nmod _ _
3 conversion conversion NOUN S Number=Sing 4 nmod _ _
4 rate rate NOUN S Number=Sing 0 root _ _
5 from from ADP E _ 6 case _ _
6 visits visit NOUN S Number=Plur 4 nmod _ _
7 originating originate VERB V Number=Sing|Tense=Pres|VerbForm=Part 6 acl _ _
8 from from ADP E _ 10 case _ _
9 Facebook Facebook PROPN SP _ 10 nmod _ _
10 Adverts advert NOUN S Number=Plur 7 obl _ SpaceAfter=No
11 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-610
# text = (21) EUPs complying with the ecodesign requirements laid down in implementing measures to this Directive should bear the "CE" marking and associated information, in order to enable them to be placed on the internal market and move freely.
1 ( ( PUNCT FB _ 2 punct _ SpaceAfter=No
2 21 21 NUM N NumType=Card 19 nummod _ SpaceAfter=No
3 ) ) PUNCT FB _ 2 punct _ _
4 EUPs EUP PROPN SP _ 19 nsubj _ _
5 complying comply VERB V Number=Sing|Tense=Pres|VerbForm=Part 4 acl _ _
6 with with ADP E _ 9 case _ _
7 the the DET RD Definite=Def|PronType=Art 9 det _ _
8 ecodesign ecodesing NOUN S Number=Sing 9 nmod _ _
9 requirements requirement NOUN S Number=Plur 5 obl _ _
10 laid lay VERB V Tense=Past|VerbForm=Part 9 acl _ _
11 down down ADP E _ 10 compound:prt _ _
12 in in ADP E _ 14 case _ _
13 implementing implementing ADJ A Degree=Pos 14 amod _ _
14 measures measure NOUN S Number=Plur 10 obl _ _
15 to to ADP E _ 17 case _ _
16 this this DET DD Number=Sing|PronType=Dem 17 det _ _
17 Directive Directive NOUN S Number=Sing 14 nmod _ _
18 should shall AUX VM Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 19 aux _ _
19 bear bear VERB V VerbForm=Inf 0 root _ _
20 the the DET RD Definite=Def|PronType=Art 24 det _ _
21 " " PUNCT FB _ 22 punct _ SpaceAfter=No
22 CE CE PROPN SP _ 24 nmod _ SpaceAfter=No
23 " " PUNCT FB _ 22 punct _ _
24 marking marking NOUN S Number=Sing 19 obj _ _
25 and and CCONJ CC _ 27 cc _ _
26 associated associated ADJ A Degree=Pos 27 amod _ _
27 information information NOUN S _ 24 conj _ SpaceAfter=No
28 , , PUNCT FF _ 19 punct _ _
29 in in ADP E _ 32 mark _ _
30 order order NOUN S Number=Sing 29 fixed _ _
31 to to ADP E _ 29 fixed _ _
32 enable enable VERB V VerbForm=Inf 19 advcl _ _
33 them they PRON PE Number=Plur|Person=3|PronType=Prs 32 obj _ _
34 to to PART PART _ 36 mark _ _
35 be be AUX VA VerbForm=Inf 36 aux _ _
36 placed place VERB V Person=3|Tense=Past|VerbForm=Part 32 xcomp _ _
37 on on ADP E _ 40 case _ _
38 the the DET RD Definite=Def|PronType=Art 40 det _ _
39 internal internal ADJ A Degree=Pos 40 amod _ _
40 market market NOUN S Number=Sing 36 obl _ _
41 and and CCONJ CC _ 42 cc _ _
42 move move VERB V VerbForm=Inf 36 conj _ _
43 freely freely ADV B _ 42 advmod _ SpaceAfter=No
44 . . PUNCT FS _ 19 punct _ _
# sent_id = en_partut-ud-724
# text = and one of the workshops led to a proposal, by Member States, for a Council recommendation.
1 and and CCONJ CC _ 0 root _ _
2 one one PRON PI Number=Plur|PronType=Ind 6 nsubj _ _
3 of of ADP E _ 5 case _ _
4 the the DET RD Definite=Def|PronType=Art 5 det _ _
5 workshops workshop NOUN S Number=Plur 2 nmod _ _
6 led lead VERB V Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 1 advcl _ _
7 to to ADP E _ 9 case _ _
8 a a DET RI Definite=Ind|Number=Sing|PronType=Art 9 det _ _
9 proposal proposal NOUN S Number=Sing 6 obl _ SpaceAfter=No
10 , , PUNCT FF _ 9 punct _ _
11 by by ADP E _ 13 case _ _
12 Member member NOUN S Number=Sing 13 compound _ _
13 States state NOUN S Number=Plur 9 nmod _ SpaceAfter=No
14 , , PUNCT FF _ 9 punct _ _
15 for for ADP E _ 18 case _ _
16 a a DET RI Definite=Ind|Number=Sing|PronType=Art 18 det _ _
17 Council Council NOUN S Number=Sing 18 obj _ _
18 recommendation recommendation NOUN S Number=Sing 9 nmod _ SpaceAfter=No
19 . . PUNCT FS _ 1 punct _ _
# sent_id = en_partut-ud-739
# text = Whereas recognition of the inherent dignity and of the equal and inalienable rights of all members of the human family is the foundation of freedom, justice and peace in the world;
1 Whereas whereas SCONJ CS _ 23 mark _ _
2 recognition recognition NOUN S Number=Sing 23 nsubj _ _
3 of of ADP E _ 6 case _ _
4 the the DET RD Definite=Def|PronType=Art 6 det _ _
5 inherent inherent ADJ A Degree=Pos 6 amod _ _
6 dignity dignity NOUN S Number=Sing 2 nmod _ _
7 and and CCONJ CC _ 13 cc _ _
8 of of ADP E _ 13 case _ _
9 the the DET RD Definite=Def|PronType=Art 13 det _ _
10 equal equal ADJ A Degree=Pos 13 amod _ _
11 and and CCONJ CC _ 12 cc _ _
12 inalienable inalienable ADJ A Degree=Pos 10 conj _ _
13 rights right NOUN S Number=Plur 6 conj _ _
14 of of ADP E _ 16 case _ _
15 all all DET T PronType=Tot 16 det _ _
16 members member NOUN S Number=Plur 13 nmod _ _
17 of of ADP E _ 20 case _ _
18 the the DET RD Definite=Def|PronType=Art 20 det _ _
19 human human ADJ A Degree=Pos 20 amod _ _
20 family family NOUN S Number=Sing 16 nmod _ _
21 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 23 cop _ _
22 the the DET RD Definite=Def|PronType=Art 23 det _ _
23 foundation foundation NOUN S Number=Sing 0 root _ _
24 of of ADP E _ 25 case _ _
25 freedom freedom NOUN S Number=Sing 23 nmod _ SpaceAfter=No
26 , , PUNCT FF _ 27 punct _ _
27 justice justice NOUN S Number=Sing 25 conj _ _
28 and and CCONJ CC _ 29 cc _ _
29 peace peace NOUN S Number=Sing 25 conj _ _
30 in in ADP E _ 32 case _ _
31 the the DET RD Definite=Def|PronType=Art 32 det _ _
32 world world NOUN S Number=Sing 25 nmod _ SpaceAfter=No
33 ; ; PUNCT FC _ 23 punct _ _
# sent_id = en_partut-ud-771
# text = (1) Everyone has the right to a nationality.
1 ( ( PUNCT FB _ 2 punct _ SpaceAfter=No
2 1 1 NUM N NumType=Card 5 nummod _ SpaceAfter=No
3 ) ) PUNCT FB _ 2 punct _ _
4 Everyone everyone PRON PE Number=Sing|Person=3|PronType=Prs 5 nsubj _ _
5 has have VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
6 the the DET RD Definite=Def|PronType=Art 7 det _ _
7 right right NOUN S Number=Sing 5 obj _ _
8 to to ADP E _ 10 case _ _
9 a a DET RI Definite=Ind|Number=Sing|PronType=Art 10 det _ _
10 nationality nationality NOUN S Number=Sing 7 nmod _ SpaceAfter=No
11 . . PUNCT FS _ 5 punct _ _
# sent_id = en_partut-ud-828
# text = It's that pyramid.
1 It it PRON PE Number=Sing|Person=3|PronType=Prs 4 nsubj _ SpaceAfter=No
2 's be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _
3 that that DET DD PronType=Dem 4 det _ _
4 pyramid pyramid NOUN S Number=Sing 0 root _ SpaceAfter=No
5 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-845
# text = And what's that?
1 And and CCONJ CC _ 2 cc _ _
2 what what PRON PQ Number=Sing|PronType=Int 0 root _ SpaceAfter=No
3 's be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 cop _ _
4 that that SCONJ CS _ 2 nsubj _ SpaceAfter=No
5 ? ? PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-853
# text = That top predator, of course, is us.
1 That that DET DD Number=Sing|PronType=Dem 3 det _ _
2 top top ADJ A Degree=Pos 3 amod _ _
3 predator predator NOUN S Number=Sing 0 root _ SpaceAfter=No
4 , , PUNCT FF _ 3 punct _ _
5 of of ADV B _ 3 advmod _ _
6 course course ADV B _ 5 fixed _ SpaceAfter=No
7 , , PUNCT FF _ 3 punct _ _
8 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 cop _ _
9 us us PRON PE Number=Plur|Person=1|PronType=Prs 3 nsubj _ SpaceAfter=No
10 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-871
# text = I love a challenge, and saving the Earth is probably a good one.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 love love VERB V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _
3 a a DET RI Definite=Ind|Number=Sing|PronType=Art 4 det _ _
4 challenge challenge NOUN S Number=Sing 2 obj _ SpaceAfter=No
5 , , PUNCT FF _ 14 punct _ _
6 and and CCONJ CC _ 14 cc _ _
7 saving save VERB V VerbForm=Ger 14 csubj _ _
8 the the DET RD Definite=Def|PronType=Art 9 det _ _
9 Earth earth NOUN S Number=Sing 7 obj _ _
10 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _
11 probably probably ADV B _ 14 advmod _ _
12 a a DET RI Definite=Ind|Number=Sing|PronType=Art 14 det _ _
13 good good ADJ A Degree=Pos 14 amod _ _
14 one one PRON PE Number=Sing|Person=3|PronType=Prs 2 conj _ SpaceAfter=No
15 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-872
# text = We all know the Earth is in trouble.
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 3 nsubj _ _
2 all all PRON PI PronType=Ind 3 obl _ _
3 know know VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
4 the the DET RD Definite=Def|PronType=Art 5 det _ _
5 Earth earth NOUN S Number=Sing 8 nsubj _ _
6 is be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _
7 in in ADP E _ 8 case _ _
8 trouble trouble NOUN S Number=Sing 3 ccomp _ SpaceAfter=No
9 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-873
# text = We have now entered in the 6X:
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 4 nsubj _ _
2 have have AUX VA Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 4 aux _ _
3 now now ADV B _ 4 advmod _ _
4 entered enter VERB V Mood=Ind|Person=3|Tense=Past|VerbForm=Fin 0 root _ _
5 in in ADP E _ 8 case _ _
6 the the DET RD Definite=Def|PronType=Art 8 det _ _
7 6 6 NUM N NumType=Card 8 nummod _ SpaceAfter=No
8 X X X X _ 4 obl _ SpaceAfter=No
9 : : PUNCT FC _ 4 punct _ _
# sent_id = en_partut-ud-874
# text = the sixth major extinction on this planet.
1 the the DET RD Definite=Def|PronType=Art 4 det _ _
2 sixth sixth ADJ NO Degree=Pos|NumType=Ord 4 amod _ _
3 major major ADJ A Degree=Pos 4 amod _ _
4 extinction extinction NOUN S Number=Sing 0 root _ _
5 on on ADP E _ 7 case _ _
6 this this DET DD Number=Sing|PronType=Dem 7 det _ _
7 planet planet NOUN S Number=Sing 4 nmod _ SpaceAfter=No
8 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-875
# text = I think that vote is occurring right now.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 think think VERB V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _
3 that that SCONJ CS _ 6 mark _ _
4 vote vote NOUN S Number=Sing 6 nsubj _ _
5 is be AUX VA Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _
6 occurring occur VERB V Number=Sing|Tense=Pres|VerbForm=Part 2 ccomp _ _
7 right right ADV B _ 6 advmod _ _
8 now now ADV B _ 6 advmod _ SpaceAfter=No
9 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-876
# text = I want to present to you a suite of six mycological solutions, using fungi, and these solutions are based on mycelium.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 2 nsubj _ _
2 want want VERB V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _
3 to to PART PART _ 4 mark _ _
4 present present VERB V VerbForm=Inf 2 xcomp _ _
5 to to ADP E _ 6 case _ _
6 you you PRON PE Person=2|PronType=Prs 4 obl _ _
7 a a DET RI Definite=Ind|Number=Sing|PronType=Art 8 det _ _
8 suite suite NOUN S Number=Sing 4 obj _ _
9 of of ADP E _ 12 case _ _
10 six six NUM N NumType=Card 12 nummod _ _
11 mycological mycological ADJ A Degree=Pos 12 amod _ _
12 solutions solution NOUN S Number=Plur 8 nmod _ SpaceAfter=No
13 , , PUNCT FF _ 12 punct _ _
14 using use VERB V VerbForm=Ger 12 parataxis _ _
15 fungi fungi NOUN S Number=Plur 14 obj _ SpaceAfter=No
16 , , PUNCT FF _ 14 punct _ _
17 and and CCONJ CC _ 21 cc _ _
18 these this DET DD Number=Plur|PronType=Dem 19 det _ _
19 solutions solution NOUN S Number=Plur 21 nsubj:pass _ _
20 are be AUX VA Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 21 aux:pass _ _
21 based based VERB V Tense=Past|VerbForm=Part 12 conj _ _
22 on on ADP E _ 23 case _ _
23 mycelium mycelium NOUN S Number=Sing 21 obl _ SpaceAfter=No
24 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-877
# text = The mycelium infuses all landscapes, it holds soils together, it's extremely tenacious.
1 The the DET RD Definite=Def|PronType=Art 2 det _ _
2 mycelium mycelium NOUN S Number=Sing 3 nsubj _ _
3 infuses infuse VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
4 all all DET T PronType=Tot 5 det _ _
5 landscapes landscape NOUN S Number=Plur 3 obj _ SpaceAfter=No
6 , , PUNCT FF _ 8 punct _ _
7 it it PRON PE Number=Sing|Person=3|PronType=Prs 8 nsubj _ _
8 holds hold VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 conj _ _
9 soils soil NOUN S Number=Plur 8 obj _ _
10 together together ADV B _ 8 advmod _ SpaceAfter=No
11 , , PUNCT FF _ 15 punct _ _
12 it it PRON PE Number=Sing|Person=3|PronType=Prs 15 nsubj _ SpaceAfter=No
13 's be AUX V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 15 cop _ _
14 extremely extremely ADV B _ 15 advmod _ _
15 tenacious tenacious ADJ A Degree=Pos 8 conj _ SpaceAfter=No
16 . . PUNCT FS _ 3 punct _ _
# sent_id = en_partut-ud-878
# text = This holds up to 30,000 times its mass.
1 This this PRON PD Number=Sing|PronType=Dem 2 nsubj _ _
2 holds hold VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _
3 up up ADV B _ 8 case _ _
4 to to ADP E _ 3 fixed _ _
5 30,000 30,000 NUM N NumType=Card 6 nummod _ _
6 times time NOUN S Number=Plur 8 nmod _ _
7 its its DET AP Number=Sing|Poss=Yes|PronType=Prs 8 nmod:poss _ _
8 mass mass NOUN S Number=Sing 2 obj _ SpaceAfter=No
9 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-879
# text = They're the grand molecular disassemblers of nature - the soil magicians.
1 They they PRON PE Number=Plur|Person=3|PronType=Prs 6 nsubj _ SpaceAfter=No
2 're be AUX V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 6 cop _ _
3 the the DET RD Definite=Def|PronType=Art 6 det _ _
4 grand grand NOUN S Number=Sing 6 nmod _ _
5 molecular molecular ADJ A Degree=Pos 6 amod _ _
6 disassemblers disassemblers NOUN S Number=Plur 0 root _ _
7 of of ADP E _ 8 case _ _
8 nature nature NOUN S Number=Sing 6 nmod _ _
9 - - PUNCT FF _ 6 punct _ _
10 the the DET RD Definite=Def|PronType=Art 12 det _ _
11 soil soil NOUN S Number=Sing 12 nmod _ _
12 magicians magician NOUN S Number=Plur 6 nmod _ SpaceAfter=No
13 . . PUNCT FS _ 6 punct _ _
# sent_id = en_partut-ud-880
# text = They generate the humus soils across the landmasses of Earth.
1 They they PRON PE Number=Plur|Person=3|PronType=Prs 2 nsubj _ _
2 generate generate VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
3 the the DET RD Definite=Def|PronType=Art 5 det _ _
4 humus humus NOUN S Number=Sing 5 nmod _ _
5 soils soil NOUN S Number=Plur 2 obj _ _
6 across across ADP E _ 8 case _ _
7 the the DET RD Definite=Def|PronType=Art 8 det _ _
8 landmasses landmass NOUN S Number=Plur 2 obl _ _
9 of of ADP E _ 10 case _ _
10 Earth Earth PROPN SP _ 8 nmod _ SpaceAfter=No
11 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-881
# text = Dusty and I, we like to say, on Sunday, this is where we go to church.
1 Dusty dusty ADJ A Degree=Pos 6 dislocated _ _
2 and and CCONJ CC _ 3 cc _ _
3 I I PRON PE Number=Sing|Person=1|PronType=Prs 1 conj _ SpaceAfter=No
4 , , PUNCT FF _ 1 punct _ _
5 we we PRON PE Number=Plur|Person=1|PronType=Prs 6 nsubj _ _
6 like like VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
7 to to PART PART _ 8 mark _ _
8 say say VERB V VerbForm=Inf 6 xcomp _ SpaceAfter=No
9 , , PUNCT FF _ 8 punct _ _
10 on on ADP E _ 11 case _ _
11 Sunday Sunday PROPN SP _ 14 obl _ SpaceAfter=No
12 , , PUNCT FF _ 11 punct _ _
13 this this PRON PD Number=Sing|PronType=Dem 14 nsubj _ _
14 is be VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 parataxis _ _
15 where where SCONJ CS _ 17 mark _ _
16 we we PRON PE Number=Plur|Person=1|PronType=Prs 17 nsubj _ _
17 go go VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 14 ccomp _ _
18 to to ADP E _ 19 case _ _
19 church church NOUN S Number=Sing 17 obl _ SpaceAfter=No
20 . . PUNCT FS _ 6 punct _ _
# sent_id = en_partut-ud-882
# text = I'm in love with the old-growth forest, and I'm a patriotic American because we have those.
1 I I PRON PE Number=Sing|Person=1|PronType=Prs 4 nsubj _ SpaceAfter=No
2 'm be AUX V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 4 cop _ _
3 in in ADP E _ 4 case _ _
4 love love NOUN S Number=Sing 0 root _ _
5 with with ADP E _ 10 case _ _
6 the the DET RD Definite=Def|PronType=Art 10 det _ _
7 old old ADJ A Degree=Pos 9 amod _ SpaceAfter=No
8 - - PUNCT FF _ 9 punct _ SpaceAfter=No
9 growth growth NOUN S Number=Sing 10 nmod _ _
10 forest forest NOUN S Number=Sing 4 nmod _ SpaceAfter=No
11 , , PUNCT FF _ 17 punct _ _
12 and and CCONJ CC _ 17 cc _ _
13 I I PRON PE Number=Sing|Person=1|PronType=Prs 17 nsubj _ SpaceAfter=No
14 'm be AUX V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 17 cop _ _
15 a a DET RI Definite=Ind|Number=Sing|PronType=Art 17 det _ _
16 patriotic patriotic ADJ A Degree=Pos 17 amod _ _
17 American American ADJ A Degree=Pos 4 conj _ _
18 because because SCONJ CS _ 20 mark _ _
19 we we PRON PE Number=Plur|Person=1|PronType=Prs 20 nsubj _ _
20 have have VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 17 advcl _ _
21 those that PRON PD Number=Plur|PronType=Dem 20 obj _ SpaceAfter=No
22 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-883
# text = Most of you are familiar with Portobello mushrooms.
1 Most most ADJ A Degree=Sup 5 nsubj _ _
2 of of ADP E _ 3 case _ _
3 you you PRON PE Person=2|PronType=Prs 1 obl _ _
4 are be AUX V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 5 cop _ _
5 familiar familiar ADJ A Degree=Pos 0 root _ _
6 with with ADP E _ 8 case _ _
7 Portobello Portobello PROPN SP _ 8 nmod _ _
8 mushrooms mushroom NOUN S Number=Plur 5 obl _ SpaceAfter=No
9 . . PUNCT FS _ 5 punct _ _
# sent_id = en_partut-ud-884
# text = And frankly, I face a big obstacle.
1 And and CCONJ CC _ 5 cc _ _
2 frankly frankly ADV B _ 5 advmod _ SpaceAfter=No
3 , , PUNCT FF _ 2 punct _ _
4 I I PRON PE Number=Sing|Person=1|PronType=Prs 5 nsubj _ _
5 face face VERB V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _
6 a a DET RI Definite=Ind|Number=Sing|PronType=Art 8 det _ _
7 big big ADJ A Degree=Pos 8 amod _ _
8 obstacle obstacle NOUN S Number=Sing 5 obj _ SpaceAfter=No
9 . . PUNCT FS _ 5 punct _ _
# sent_id = en_partut-ud-885
# text = So, I hope to pierce that prejudice forever with this group.
1 So so ADV B _ 4 advmod _ SpaceAfter=No
2 , , PUNCT FF _ 1 punct _ _
3 I I PRON PE Number=Sing|Person=1|PronType=Prs 4 nsubj _ _
4 hope hope VERB V Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 0 root _ _
5 to to PART PART _ 6 mark _ _
6 pierce pierce VERB V VerbForm=Inf 4 xcomp _ _
7 that that SCONJ CS _ 8 mark _ _
8 prejudice prejudice VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 6 ccomp _ _
9 forever forever ADV B _ 6 advmod _ _
10 with with ADP E _ 12 case _ _
11 this this DET DD Number=Sing|PronType=Dem 12 det _ _
12 group group NOUN S Number=Sing 6 obl _ SpaceAfter=No
13 . . PUNCT FS _ 4 punct _ _
# sent_id = en_partut-ud-886
# text = We call it mycophobia, the irrational fear of the unknown, when it comes to fungi.
1 We we PRON PE Number=Plur|Person=1|PronType=Prs 2 nsubj _ _
2 call call VERB V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 0 root _ _
3 it it PRON PE Number=Sing|Person=3|PronType=Prs 2 obj _ _
4 mycophobia mycophobia NOUN S Number=Sing 2 xcomp _ SpaceAfter=No
5 , , PUNCT FF _ 4 punct _ _
6 the the DET RD Definite=Def|PronType=Art 8 det _ _
7 irrational irrational ADJ A Degree=Pos 8 amod _ _
8 fear fear NOUN S Number=Sing 4 appos _ _
9 of of ADP E _ 11 case _ _
10 the the DET RD Definite=Def|PronType=Art 11 det _ _
11 unknown unknown NOUN S Number=Sing 8 nmod _ SpaceAfter=No
12 , , PUNCT FF _ 2 punct _ _
13 when when SCONJ CS _ 15 mark _ _
14 it it PRON PE Number=Sing|Person=3|PronType=Prs 15 nsubj _ _
15 comes come VERB V Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 advcl _ _
16 to to PART PART _ 17 mark _ _
17 fungi fungi NOUN S Number=Plur 15 obl _ SpaceAfter=No
18 . . PUNCT FS _ 2 punct _ _
# sent_id = en_partut-ud-887
# text = Mushrooms are very fast in their growth.
1 Mushrooms mushroom NOUN S Number=Plur 4 nsubj _ _
2 are be AUX V Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin 4 cop _ _
3 very very ADV B _ 4 advmod _ _