-
Notifications
You must be signed in to change notification settings - Fork 0
/
sms_dependency_test.txt
2094 lines (2094 loc) · 710 KB
/
sms_dependency_test.txt
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
nn(i-2, Yes-1) nsubj(going-4, i-2) aux(going-4, am-3) root(ROOT-0, going-4) prep(going-4, from-5) pobj(from-5, school-6) ccomp(going-4, have-7) dobj(have-7, class-8) mark(meet-13, till-9) nsubj(meet-13, 5-10) aux(meet-13, can-11) advmod(meet-13, u-12) advcl(have-7, meet-13) dobj(meet-13, me-14) prep(meet-13, at-15) nn(fac-17, law-16) pobj(at-15, fac-17) nsubj(have-19, i-18) xsubj(fetch-21, i-18) dep(meet-13, have-19) aux(fetch-21, to-20) xcomp(have-19, fetch-21) poss(mum-23, my-22) dobj(fetch-21, mum-23) prep(fetch-21, at-24) num(pm-26, 930-25) pobj(at-24, pm-26) mark(have-29, so-27) nsubj(have-29, we-28) advcl(fetch-21, have-29) advmod(lot-32, quite-30) det(lot-32, a-31) dobj(have-29, lot-32) prep(lot-32, of-33) pobj(of-33, time-34)
aux(rush-10, can-1) nn(tape-3, u-2) nsubj(rush-10, tape-3) det(match-5, the-4) dep(tape-3, match-5) prep(match-5, for-6) pobj(for-6, me-7) dep(match-5, i\u2019ll-9) root(ROOT-0, rush-10) prt(rush-10, over-11) advmod(after-13, straight-12) prep(rush-10, after-13) det(dinner-15, the-14) pobj(after-13, dinner-15)
advmod(people-3, Too-1) amod(people-3, many-2) nsubj(are-9, people-3) prep(people-3, at-4) poss(house-6, my-5) pobj(at-4, house-6) poss(relatives-8, my-7) dep(house-6, relatives-8) root(ROOT-0, are-9) advmod(are-9, here-10) advmod(well-12, as-11) mwe(well-12, as-11) advmod(are-9, well-12) prep(well-12, besides-13) det(people-16, the-14) nn(people-16, china-15) pobj(besides-13, people-16)
dobj(spoken-4, Yea-1) dep(liao-7, Yea-1) nsubj(spoken-4, I-2) aux(spoken-4, have-3) rcmod(Yea-1, spoken-4) prep(spoken-4, to-5) pobj(to-5, him-6) dep(upset-12, liao-7) advmod(upset-12, Indeed-9) nsubjpass(upset-12, he-10) auxpass(upset-12, is-11) root(ROOT-0, upset-12) prep(upset-12, over-13) nn(..-15, dat-14) pobj(over-13, ..-15)
root(ROOT-0, Haha-1) nsubj(want-4, I-3) xsubj(see-6, I-3) dep(Haha-1, want-4) aux(see-6, to-5) xcomp(want-4, see-6) nn(macdonalds-9, E-8) dep(Haha-1, macdonalds-9) advmod(cheaper-11, here-10) amod(macdonalds-9, cheaper-11) nn(yum-14, Yum-13) dep(Haha-1, yum-14)
nsubj(y-25, I\u2019m-1) vmod(I\u2019m-1, going-2) prt(going-2, down-3) advmod(going-2, now-4) pobj(now-4, liao\u002c-5) prep(now-4, with-6) poss(fren-8, my-7) pobj(with-6, fren-8) dep(going-2, Erm-10) dep(Erm-10, got-12) num(one-14, 64mb-13) dobj(got-12, one-14) nsubj(is-17, 94-16) parataxis(y-25, is-17) det(cheapest-19, the-18) dep(is-22, cheapest-19) prep(cheapest-19, around-20) pobj(around-20, liao-21) ccomp(is-17, is-22) nsubj(is-22, it-23) root(ROOT-0, y-25) neg(y-25, not-26) advmod(later-28, i-27) advmod(go-29, later-28) dep(y-25, go-29) dep(go-29, around-30) dep(go-29, find-31) det(more-33, some-32) dobj(find-31, more-33)
amod(ok-2, Ya\u002c-1) root(ROOT-0, ok-2) prep(ok-2, for-3) pobj(for-3, me-4) nsubj(let-8, Erm-6) aux(let-8, can-7) dep(ok-2, let-8) nsubj(know-10, me-9) ccomp(let-8, know-10) det(details-12, the-11) dobj(know-10, details-12) prep(details-12, like-13) det(timing-16, the-14) amod(timing-16, level\u002c-15) pobj(like-13, timing-16) prep(timing-16, for-17) pobj(for-17, tuition\u002c-18) prep(tuition\u002c-18, per-19) amod(btw\u002c-29, wk-20) advmod(many-22, how-21) dep(pay-24, many-22) nsubj(pay-24, times\u002c-23) ccomp(wk-20, pay-24) amod(location-27, wise-25) nn(location-27, n-26) dobj(pay-24, location-27) pobj(per-19, btw\u002c-29) det(student-31, the-30) nsubj(ur-33, student-31) cop(ur-33, is-32) rcmod(btw\u002c-29, ur-33)
nsubj(told-2, He-1) root(ROOT-0, told-2) nn(i\u2019m-4, u-3) dobj(told-2, i\u2019m-4) vmod(i\u2019m-4, considering-5) nn(mah-7, liao-6) dobj(considering-5, mah-7) dobj(v-13, mah-7) nsubj(v-13, I-9) num(i-11, duno\u002c-10) npadvmod(not-12, i-11) neg(v-13, not-12) rcmod(mah-7, v-13) acomp(v-13, interested-14) prep(interested-14, in-15) dep(show-17, e-16) pobj(in-15, show-17) nn(dont-20, n-18) nn(dont-20, i-19) nsubj(wan-21, dont-20) ccomp(show-17, wan-21) dep(wan-21, go-22) prt(go-22, out-23) prep(go-22, on-24) det(weekend-26, both-25) pobj(on-24, weekend-26) appos(show-17, Sunday-28) dep(interested-14, we-29) vmod(considering-5, meeting-30) num(w-33, 4-31) nn(w-33, lunch-32) dobj(meeting-30, w-33) dep(rest-35, e-34) dep(w-33, rest-35) dep(meet-40, right-36) aux(meet-40, Ok-38) nsubj(meet-40, we-39) dep(i-50, meet-40) num(shop-44, 5-41) nn(shop-44, orchard-42) nn(shop-44, shop-43) dobj(meet-40, shop-44) dep(meet-40, eat-45) dobj(eat-45, dinner-46) advmod(prob-49, Most-48) amod(i-50, prob-49) dep(b-51, i-50) dep(meeting-30, b-51) prep(told-2, at-52) nn(Little-54, John-53) pobj(at-52, Little-54) prep(told-2, at-55) pobj(at-55, 4.30-56)
aux(free-4, Will-1) nsubj(free-4, you-2) cop(free-4, be-3) dep(Blah-35, free-4) prep(free-4, on-5) nn(night-7, sunday-6) pobj(on-5, night-7) nsubj(met-11, I-9) advmod(met-11, just-10) dep(free-4, met-11) dep(free-4, sebastian-12) nsubj(suggest-15, We-14) rcmod(sebastian-12, suggest-15) det(gathering-19, a-16) amod(gathering-19, small-17) nn(gathering-19, class-18) dobj(suggest-15, gathering-19) prep(suggest-15, at-20) det(studio-22, the-21) pobj(at-20, studio-22) dep(free-4, Play-24) dobj(Play-24, cards-25) dep(Play-24, gamble-27) det(bit-29, a-28) dobj(gamble-27, bit-29) nn(Blah-34, ....-30) nn(Blah-34, Chit-31) nn(Blah-34, chat-32) nn(Blah-34, ....-33) dep(Blah-35, Blah-34) dep(make-41, Blah-35) nn(guys-39, Hope-37) nn(guys-39, you-38) nsubj(make-41, guys-39) aux(make-41, can-40) root(ROOT-0, make-41) dobj(make-41, it-42)
amod(u-2, tom\u002c-1) nsubj(think-3, u-2) root(ROOT-0, think-3) nsubj(house-8, it-4) cop(house-8, is-5) det(house-8, a-6) nn(house-8, relative\u2019s-7) ccomp(think-3, house-8) cc(house-8, or-9) conj(house-8, restauratn-10)
amod(jules\u002c-2, hey-1) nsubj(free-6, jules\u002c-2) aux(free-6, will-3) advmod(free-6, u-4) cop(free-6, be-5) root(ROOT-0, free-6) prep(free-6, for-7) pobj(for-7, soccer-8) prep(free-6, on-9) nn(braddel-13, sunday-10) nn(braddel-13, bishan-12) pobj(on-9, braddel-13)
root(ROOT-0, Eh-1) advmod(leh-3, sorry-2) amod(Eh-1, leh-3) nsubj(din-6, I-5) dep(Eh-1, din-6) dobj(din-6, c-7) amod(msg-9, ur-8) dep(c-7, msg-9) neg(sad-12, Not-11) dep(msg-9, sad-12) dep(lar-14, already-13) dep(watching-17, lar-14) nsubj(watching-17, Me-16) ccomp(sad-12, watching-17) dobj(watching-17, tv-18) dep(msg-9, now-19) xcomp(din-6, U-21) advmod(U-21, still-22) prep(U-21, in-23) pobj(in-23, office-24)
advmod(told-4, Hmmm\u002c-1) poss(fren-3, my-2) nsubj(told-4, fren-3) root(ROOT-0, told-4) dobj(told-4, me-5) nsubj(dunno-8, I-7) parataxis(told-4, dunno-8) amod(plan-11, wat\u2019s-9) nn(plan-11, e-10) dobj(dunno-8, plan-11) nn(time-14, Wat-13) nsubj(tuition-17, time-14) cop(tuition-17, is-15) nn(tuition-17, ur-16) parataxis(told-4, tuition-17)
nn(life\u002ci-5, Dear-1) amod(life\u002ci-5, sis\u002cpls-2) num(life\u002ci-5, pray4my-3) amod(life\u002ci-5, spritual-4) nsubj(feel-6, life\u002ci-5) root(ROOT-0, feel-6) poss(bcom-11, its-7) amod(bcom-11, getg-8) advmod(dry\u002ci-10, more-9) amod(bcom-11, dry\u002ci-10) dobj(feel-6, bcom-11) advmod(self-centred-13, more-12) amod(bcom-11, self-centred-13) advmod(of-15, instead-14) prep(bcom-11, of-15) amod(messy-19, christ-centred\u002cdaily-16) amod(messy-19, life\u2019s-17) nn(messy-19, vv-18) pobj(of-15, messy-19)
dep(lor-4, Then-1) amod(lor-4, u-2) nn(lor-4, drive-3) root(ROOT-0, lor-4)
dep(lor-5, Nothing-1) prep(Nothing-1, but-2) pobj(but-2, v-3) amod(lor-5, weird-4) dep(Got-7, lor-5) dep(wait-23, Got-7) det(guy-9, another-8) nsubj(sit-11, guy-9) aux(sit-11, can-10) ccomp(Got-7, sit-11) ccomp(sit-11, w-12) dobj(w-12, us-13) advmod(w-12, then-14) nsubj(go-16, he-15) ccomp(sit-11, go-16) xcomp(go-16, squeeze-17) amod(table-20, w-18) amod(table-20, other-19) dobj(squeeze-17, table-20) nsubj(wait-23, Cant-22) root(ROOT-0, wait-23) mark(do-26, till-24) nsubj(do-26, he-25) advcl(wait-23, do-26) dobj(do-26, something-27) advmod(do-26, then-28) nsubj(react-30, i-29) dep(do-26, react-30) dobj(react-30, mah-31) aux(stop-34, Must-33) parataxis(wait-23, stop-34) dobj(stop-34, him-35) advmod(stop-34, first-36)
advmod(u-2, Then-1) root(ROOT-0, u-2) xcomp(u-2, get-3) dobj(get-3, ur-4) advmod(intimate-6, most-5) amod(w-8, intimate-6) nn(w-8, photo-7) nsubj(u-2, w-8) nsubj(put-11, him-9) advmod(put-11, then-10) rcmod(w-8, put-11) poss(face-13, my-12) dobj(put-11, face-13) prep(face-13, on-14) pobj(on-14, urs-15) advmod(put-11, then-16) dep(put-11, send-17) iobj(send-17, 2-18) dobj(send-17, me-19) dep(w-8, :D-21)
nsubj(tot-2, I-1) root(ROOT-0, tot-2) dobj(tot-2, it\u2019s-3) poss(mate-6, my-4) nn(mate-6, group-5) dep(tot-2, mate-6) nn(reply-11, Lucky-8) nn(reply-11, i-9) nn(reply-11, havent-10) dep(mate-6, reply-11) nn(time-14, Wat-13) nsubj(do-15, time-14) dep(mate-6, do-15) nsubj(need-17, ü-16) xsubj(leave-19, ü-16) ccomp(do-15, need-17) aux(leave-19, to-18) xcomp(need-17, leave-19)
nn(starts-3, yo-1) nn(starts-3, school-2) nsubj(meet-5, starts-3) aux(meet-5, must-4) root(ROOT-0, meet-5) prep(meet-5, for-6) nn(k-8, lunch-7) pobj(for-6, k-8)
root(ROOT-0, i-1) xcomp(i-1, meet-2) dobj(meet-2, u-3) prep(meet-2, at-4) det(canteen-7, the-5) nn(canteen-7, sci-6) pobj(at-4, canteen-7) prep(meet-2, after-8) poss(tutorial-10, my-9) pobj(after-8, tutorial-10) prep(tutorial-10, at-11) amod(??-14, 1pm-12) nn(??-14, k-13) pobj(at-11, ??-14)
nsubj(reached-2, I\u2019ve-1) root(ROOT-0, reached-2) nn(liao-7, home-3) nn(liao-7, n-4) nn(liao-7, i-5) nn(liao-7, bathe-6) dobj(reached-2, liao-7) nsubj(call-11, U-9) aux(call-11, can-10) parataxis(reached-2, call-11) dobj(call-11, me-12) advmod(call-11, now-13)
nsubj(sorry-7, I\u2019ve-1) advmod(sorry-7, just-2) dep(sorry-7, got-3) dep(sorry-7, back-4) dep(back-4, So-6) root(ROOT-0, sorry-7) nsubj(forgot-9, I-8) ccomp(sorry-7, forgot-9) poss(promise-11, my-10) dobj(forgot-9, promise-11) prep(forgot-9, to-12) pobj(to-12, u-13) ref(u-13, What-15) nsubj(talking-17, What-15) advmod(talking-17, about-16) rcmod(u-13, talking-17) tmod(talking-17, tomorrow-18)
root(ROOT-0, Fine-1) rcmod(Fine-1, w-2) dobj(w-2, me-3) cc(fri-6, But-5) dep(i-34, fri-6) nsubj(go\u002c-8, we-7) xcomp(fri-6, go\u002c-8) nsubj(say-10, they-9) ccomp(go\u002c-8, say-10) cop(i-34, is-11) det(thats-15, a-12) amod(thats-15, long-13) nn(thats-15, queue-14) nsubj(i-34, thats-15) advmod(didnt-18, why-16) nsubj(didnt-18, we-17) rcmod(thats-15, didnt-18) dep(didnt-18, go-19) nsubj(need-22, U-21) parataxis(didnt-18, need-22) dep(book-25, e-23) punct(book-25, flash-24) dep(need-22, book-25) mark(remind-30, If-27) nn(wan\u002c-29, u-28) nsubj(remind-30, wan\u002c-29) dep(didnt-18, remind-30) iobj(remind-30, me-31) dobj(remind-30, tonight-32) advmod(i-34, then-33) dep(Fine-1, i-34) dep(i-34, bring-35) dobj(bring-35, tomw-36)
root(ROOT-0, Glad-1) aux(hear-3, to-2) dep(Glad-1, hear-3) nsubj(coping-6, you-4) aux(coping-6, are-5) ccomp(hear-3, coping-6) dep(coping-6, fine-7) prep(go-16, in-8) pobj(in-8, uni-9) amod(interview-13, So\u002c-11) nn(interview-13, wat-12) dep(uni-9, interview-13) aux(go-16, did-14) nsubj(go-16, you-15) dep(fine-7, go-16) prep(go-16, to-17) advmod(go-22, How-19) aux(go-22, did-20) nsubj(go-22, it-21) dep(hear-3, go-22)
nn(......-2, Erm-1) nsubj(xD-7, ......-2) det(one-5, the-3) amod(one-5, fuji-4) dep(......-2, one-5) cop(xD-7, is-6) root(ROOT-0, xD-7) dep(xD-7, one-8) mark(remember-12, if-9) amod(din-11, i-10) nsubj(remember-12, din-11) advcl(xD-7, remember-12) advmod(remember-12, wrongly-13) nsubj(got-16, you-15) parataxis(xD-7, got-16) det(lobang-18, any-17) dobj(got-16, lobang-18)
dep(ard-2, Maybe-1) dep(stop-7, ard-2) num(ard-2, 6-3) aux(stop-7, Think-5) nsubj(stop-7, i-6) dep(..-20, stop-7) dobj(stop-7, wk-8) prep(stop-7, at-9) pobj(at-9, 5-10) advmod(go-12, then-11) dep(stop-7, go-12) prt(go-12, down-13) aux(..-20, should-14) cop(..-20, be-15) quantmod(6-17, around-16) num(..-20, 6-17) nn(..-20, liao-18) nn(..-20, lor-19) root(ROOT-0, ..-20)
nn(hee-2, Hee-1) root(ROOT-0, hee-2) amod(thanks-7, <-4) amod(thanks-7, *\u2019-\u2019*-5) amod(thanks-7, >-6) dep(hee-2, thanks-7) dep(thanks-7, thanks-8) dep(hee-2, Hope-10) dobj(Hope-10, it\u2019s-11) advmod(relevant-13, all-12) amod(it\u2019s-11, relevant-13) parataxis(Hope-10, Take-15) amod(re-18, c-16) nn(re-18, ??-17) dobj(Take-15, re-18) cc(Take-15, and-19) conj(Take-15, see-20) dobj(see-20, you-21) prep(see-20, on-22) pobj(on-22, Sunday-23) dep()-28, c-25) num(\u002c-27, \""-26) npadvmod()-28, \u002c-27) dep(hee-2, )-28)
advmod(mean-5, Why-1) dep(Why-1, sad-2) nsubj(mean-5, I-4) dep(got-12, mean-5) dobj(mean-5, wat-6) nsubj(tell-8, he-7) rcmod(wat-6, tell-8) dobj(tell-8, u-9) nsubj(got-12, He-11) root(ROOT-0, got-12) amod(abt-14, grumble-13) dobj(got-12, abt-14) dobj(hee-16, abt-14) nsubj(hee-16, me-15) rcmod(abt-14, hee-16) nsubj(busy-19, I-18) parataxis(got-12, busy-19) xcomp(got-12, busy-19) dep(busy-19, lah\u002c-20) cc(got-12, but-21) conj(got-12, wanted-22) num(clothes-26, 2-23) amod(clothes-26, buy-24) nn(clothes-26, wk-25) dobj(wanted-22, clothes-26) cc(wanted-22, but-27) advmod(go-29, now-28) conj(wanted-22, go-29) prt(go-29, out-30) dobj(go-29, w-31) nsubj(i-33, him-32) rcmod(w-31, i-33) advmod(i-33, also-34) nn(shop-36, cant-35) dobj(i-33, shop-36)
nsubj(give-2, Ã-1) root(ROOT-0, give-2) iobj(give-2, me-3) det(time-5, some-4) dobj(give-2, time-5) aux(walk-7, to-6) vmod(time-5, walk-7) advmod(walk-7, there-8)
nn(lunch\u002c-2, Today-1) nsubj(split-14, lunch\u002c-2) dep(eat-6, e-3) amod(team-5, whole-4) nsubj(eat-6, team-5) advcl(split-14, eat-6) advmod(eat-6, together-7) prep(eat-6, at-8) amod(shop\u002c-11, e-9) nn(shop\u002c-11, coffee-10) pobj(at-8, shop\u002c-11) advmod(eat-6, then-12) nsubj(split-14, we-13) root(ROOT-0, split-14) num(end-17, 3-15) amod(end-17, tables\u002c-16) dobj(split-14, end-17) nsubj(n-19, me-18) rcmod(end-17, n-19) dobj(n-19, him-20) advmod(at-22, only-21) prep(n-19, at-22) pobj(at-22, 1-23) nn(C-26, table-24) nsubj(i-28, C-26) advmod(i-28, now-27) dep(split-14, i-28) nsubj(keep-31, hv-29) num(hv-29, 2-30) ccomp(i-28, keep-31) nsubj(occupy-33, myself-32) ccomp(keep-31, occupy-33) prep(occupy-33, by-34) nn(u-36, msg-35) pobj(by-34, u-36)
advmod(think-3, Sorry-1) nsubj(think-3, I-2) root(ROOT-0, think-3) nsubj(cannot\u002c-5, tonight-4) xcomp(think-3, cannot\u002c-5) cc(think-3, and-6) nsubj(not-8, I-7) conj(think-3, not-8) xcomp(not-8, feeling-9) advmod(feeling-9, well-10) prep(feeling-9, after-11) poss(rest-13, my-12) pobj(after-11, rest-13)
nsubj(bringing-2, Yup-1) root(ROOT-0, bringing-2) dobj(bringing-2, clothes-3) parataxis(bringing-2, Bring-5) iobj(Bring-5, light-6) num(lor-8, one-7) dobj(Bring-5, lor-8) nsubj(wearing-11, Yar-10) dep(lor-8, wearing-11) dobj(wearing-11, shorts-12)
root(ROOT-0, Hey-1) nn(cant-4, Xuhui-3) nsubj(make-5, cant-4) dep(Hey-1, make-5) dobj(make-5, it-6) tmod(make-5, today-7) dep(Hey-1, So-9) advmod(change-14, how-10) nsubj(change-14, Shall-12) dep(Shall-12, we-13) dep(So-9, change-14) tmod(change-14, day-15) cc(change-14, or-16) conj(change-14, continue-17)
dep(i-2, actually-1) dep(gonna-23, i-2) nn(time-8, tink-3) nn(time-8, chunyan-4) nn(time-8, canot-5) nn(time-8, cfm-6) nn(time-8, wad-7) nsubj(i-2, time-8) aux(go-10, to-9) dep(i-2, go-10) dep(i-2, cos-11) dobj(cos-11, she-12) nn(hand-14, gotta-13) nsubj(sat-17, hand-14) prep(hand-14, in-15) pobj(in-15, assgt-16) dep(cos-11, sat-17) dobj(sat-17, afternoon-18) nn(gonna-23, btw-20) nn(gonna-23, wad-21) amod(gonna-23, areu-22) dep(do-24, gonna-23) root(ROOT-0, do-24) advmod(early-26, so-25) advmod(do-24, early-26) prep(do-24, in-27) pobj(in-27, orchard-28)
dep(go-4, Hey-1) nsubj(go-4, I\u2019ll-3) xsubj(lect-7, I\u2019ll-3) root(ROOT-0, go-4) aux(lect-7, to-5) dep(lect-7, e-6) xcomp(go-4, lect-7) dobj(lect-7, w-8) xcomp(lect-7, suying-9) amod(k-11, first-10) dobj(suying-9, k-11) amod(go-14, We\u2019ll-13) dep(k-11, go-14) cc(go-14, and-15) nn(seats-17, book-16) conj(go-14, seats-17) nsubj(dun-20, I-19) rcmod(k-11, dun-20) ccomp(dun-20, have-21) nn(oredi-23, lab-22) dobj(have-21, oredi-23)
nn(..-2, haha-1) nsubj(try-3, ..-2) root(ROOT-0, try-3) det(more-5, some-4) dobj(try-3, more-5)
aux(buy-7, Me-1) nn(go-6, n-2) nn(go-6, ron-3) nn(go-6, meeting-4) num(go-6, 2-5) nsubj(buy-7, go-6) root(ROOT-0, buy-7) nn(U-10, something-8) nsubj(wan-11, U-10) ccomp(buy-7, wan-11) xcomp(wan-11, join-12) dobj(join-12, us-13)
neg(bad\u002cbeen-2, Not-1) dep(slacking-3, bad\u002cbeen-2) dep(..-10, slacking-3) cc(slacking-3, and-4) conj(slacking-3, doing-5) dobj(slacking-3, lotsa-6) amod(lotsa-6, sleeping-7) nn(..-10, hee-9) root(ROOT-0, ..-10) advmod(go-18, how-11) prep(how-11, bout-12) pobj(bout-12, you-13) discourse(go-18, Oh-15) amod(wanna-17, anyway\u002c-16) nsubj(go-18, wanna-17) dep(..-10, go-18) xcomp(go-18, blading-19) prt(blading-19, together-20) det(girl-23, some-21) nn(girl-23, day-22) dobj(blading-19, girl-23)
root(ROOT-0, Ya-1) nn(exam-4, Eng-3) dep(Ya-1, exam-4) prep(exam-4, on-5) pobj(on-5, e-6) num(e-6, 14-7) dep(exam-4, lor-8) cc(have-14, But-10) nn(dun-12, eng-11) nsubj(have-14, dun-12) xsubj(prepare-16, dun-12) advmod(have-14, really-13) dep(lor-8, have-14) aux(prepare-16, to-15) xcomp(have-14, prepare-16) dobj(prepare-16, lor-17) nsubj(wan-20, I-19) xsubj(get-22, I-19) parataxis(have-14, wan-20) aux(get-22, to-21) xcomp(wan-20, get-22) amod(date-24, earlier-23) dobj(get-22, date-24) cc(lor-8, but-25) advmod(no-28, so-26) advmod(no-28, fast-27) conj(lor-8, no-28) advmod(slots\u002c-30, more-29) conj(lor-8, slots\u002c-30) advmod(horrible-32, so-31) amod(exam-4, horrible-32)
nsubj(wanted-2, I-1) xsubj(ask-4, I-1) root(ROOT-0, wanted-2) aux(ask-4, to-3) xcomp(wanted-2, ask-4) dobj(ask-4, ü-5) aux(wait-7, to-6) xcomp(ask-4, wait-7) dobj(wait-7, 4-8) dobj(finish-11, 4-8) nsubj(finish-11, me-9) aux(finish-11, to-10) vmod(4-8, finish-11) nn(Cos-14, lect-12) nsubj(finishes-17, Cos-14) poss(finishes-17, my-15) nn(finishes-17, lect-16) xcomp(finish-11, finishes-17) prep(finish-11, in-18) det(hour-20, an-19) pobj(in-18, hour-20) advmod(wait-7, anyway-21)
nsubj(m-2, I-1) root(ROOT-0, m-2) prep(m-2, in-3) pobj(in-3, singapore-4) prep(m-2, on-5) poss(way-7, my-6) pobj(on-5, way-7) aux(buy-11, to-8) advmod(east-10, far-9) advmod(buy-11, east-10) vmod(way-7, buy-11) det(thing-13, the-12) dobj(buy-11, thing-13) advmod(buy-11, loh-14)
dep(ok-2, Oh-1) root(ROOT-0, ok-2) nn(price-7, Got-4) nn(price-7, check-5) nn(price-7, e-6) dep(ok-2, price-7) dep(ok-2, Wat-9) poss(like-11, its-10) dep(Wat-9, like-11)
nsubj(go-8, You-1) vmod(You-1, having-2) discourse(wanna-7, dinner-3) dep(dinner-3, with-4) pobj(with-4, parents-5) dobj(having-2, wanna-7) root(ROOT-0, go-8) dobj(go-8, parkway-9) prep(go-8, for-10) pobj(for-10, dinner-11)
nsubj(go-5, Huh-1) cc(Huh-1, but-2) conj(Huh-1, i-3) advmod(go-5, cant-4) root(ROOT-0, go-5) num(house-8, 2-6) nn(house-8, ur-7) nsubj(handed-10, house-8) dep(handed-10, empty-9) xcomp(go-5, handed-10) advmod(handed-10, right-11)
root(ROOT-0, Ya-1) nsubj(wans-4, She-3) dep(Ya-1, wans-4) cc(now-7, But-6) dep(Ya-1, now-7) mark(arrange-13, so-8) amod(dunno-10, late-9) nsubj(arrange-13, dunno-10) advmod(arrange-13, still-11) aux(arrange-13, can-12) dep(now-7, arrange-13) num(anot-16, 4-14) nn(anot-16, tmr-15) dobj(arrange-13, anot-16)
nsubj(purchased-2, Albero-1) root(ROOT-0, purchased-2) nn(H-7, P-3) nn(H-7, $260k-4) nn(H-7, Ng-5) nn(H-7, T-6) dobj(purchased-2, H-7) prep(H-7, from-8) num(drop-10, B90-9) pobj(from-8, drop-10) prep(drop-10, to-11) nn(Fri-13, B74-12) pobj(to-11, Fri-13) rcmod(Fri-13, carry-14) dep(carry-14, 52.5-15) num(yrs-19, 1-17) amod(yrs-19, whole-18) dep(52.5-15, yrs-19) aux(win-22, can-20) neg(win-22, not-21) rcmod(yrs-19, win-22) dep(52.5-15, wet-24) advmod(won-26, ever-25) vmod(wet-24, won-26) dobj(won-26, 1600-27) xcomp(purchased-2, hoping-29) nsubj(rec-33, newspaper-30) aux(rec-33, do-31) neg(rec-33, not-32) ccomp(hoping-29, rec-33)
root(ROOT-0, Eh-1) dobj(wai-3, Eh-1) nsubj(wai-3, hon-2) rcmod(Eh-1, wai-3) advmod(wai-3, here-4) dep(Eh-1, Take-6) dobj(Take-6, note-7) prep(note-7, of-8) poss(lout-12, my-9) nn(lout-12, number-10) nn(lout-12, u-11) pobj(of-8, lout-12)
root(ROOT-0, Hey-1) xcomp(Hey-1, meet-2) dobj(meet-2, me-3) prep(meet-2, at-4) nn(fac-6, law-5) pobj(at-4, fac-6) prep(meet-2, about-7) num(can-9, 5-8) pobj(about-7, can-9)
nsubj(received-3, I-1) aux(received-3, have-2) root(ROOT-0, received-3) dobj(received-3, it-4) iobj(received-3, it-4) dep(it-4, thanks-6)
nsubj(want-2, I-1) root(ROOT-0, want-2) dobj(want-2, 2-3) rcmod(2-3, eat-4) dobj(eat-4, you-5) nn(hua-9, tiao-6) cc(tiao-6, &-7) conj(tiao-6, dou-8) dep(eat-4, hua-9) amod(cannot-12, Aiya\u002c-11) nsubj(come-13, cannot-12) rcmod(hua-9, come-13) nsubj(eat-16, Geylang-14) aux(eat-16, must-15) ccomp(come-13, eat-16) amod(stuff-19, spicy-17) amod(stuff-19, Muslim-18) dobj(eat-16, stuff-19) nn(yum-24, Curry\u002c-21) nn(yum-24, otak\u002c-22) nn(yum-24, yum-23) dep(hua-9, yum-24) nn(Geylang-29, Geylang-26) nn(Geylang-29, sepak-27) nn(Geylang-29, tu-28) dep(hua-9, Geylang-29) nsubj(love-32, I-31) dep(want-2, love-32) dobj(love-32, Geylang-33)
nsubj(leaving-2, I\u2019m-1) root(ROOT-0, leaving-2) prep(leaving-2, on-3) det(plane-6, an-4) nn(plane-6, SIA-5) pobj(on-3, plane-6) dep(find-30, Dunno-8) advmod(be-11, when-9) nsubj(be-11, I\u2019ll-10) rcmod(Dunno-8, be-11) advmod(be-11, back-12) advmod(be-11, again-13) nn(sad-16, Damn-15) dep(Dunno-8, sad-16) nsubj(miss-19, Will-18) rcmod(sad-16, miss-19) dobj(miss-19, all-20) prep(all-20, of-21) pobj(of-21, you-22) dep(Dunno-8, Cheers-24) cc(Cheers-24, and-25) nn(care-27, take-26) conj(Cheers-24, care-27) nsubj(find-30, I\u2019ll-29) parataxis(leaving-2, find-30) dobj(find-30, you-31) advmod(back-34, when-32) nsubj(back-34, I\u2019m-33) advcl(find-30, back-34)
nn(lar-2, Bishan-1) nsubj(nearer-3, lar-2) root(ROOT-0, nearer-3) det(need-6, No-5) nsubj(buy-7, need-6) ccomp(nearer-3, buy-7) parataxis(nearer-3, buy-7) advmod(early-9, so-8) advmod(buy-7, early-9) advmod(buy-12, cos-10) mark(buy-12, if-11) dep(early-9, buy-12) advmod(buy-12, now-13) amod(park-16, i-14) nn(park-16, gotta-15) dobj(buy-12, park-16) poss(car-18, my-17) dobj(buy-7, car-18)
nsubj(help-3, xuan-1) aux(help-3, can-2) root(ROOT-0, help-3) nsubj(buy-5, me-4) ccomp(help-3, buy-5) dobj(buy-5, eggs-6) cc(eggs-6, and-7) nn(juice-9, orange-8) conj(eggs-6, juice-9)
root(ROOT-0, Hey-1) nn(ah-3, fen-2) dobj(Hey-1, ah-3) advmod(u-7, So-5) advmod(u-7, when-6) dep(ah-3, u-7) advmod(u-7, free-8) aux(meet-10, to-9) xcomp(u-7, meet-10) prt(meet-10, up-11) dobj(meet-10, leh-12)
nsubj(u-2, R-1) root(ROOT-0, u-2) advmod(u-2, still-3) dobj(u-2, working-4) advmod(u-2, now-5)
root(ROOT-0, well-1) dep(well-1, sounds-3) acomp(sounds-3, fine-4) nsubj(watch-9, i-6) aux(watch-9, have-7) neg(watch-9, not-8) parataxis(sounds-3, watch-9) det(movie-11, a-10) dobj(watch-9, movie-11) prep(movie-11, for-12) det(time-14, some-13) pobj(for-12, time-14) advmod(watch-9, now-15) parataxis(sounds-3, time-17) aux(catch-19, to-18) xcomp(time-17, catch-19) det(break-21, a-20) dobj(catch-19, break-21)
root(ROOT-0, thanx-1) prep(thanx-1, for-2) det(discs-4, the-3) pobj(for-2, discs-4) advmod(happy-7, very-6) amod(discs-4, happy-7)
nn(i-2, den-1) nsubj(one-7, i-2) aux(one-7, must-3) cop(one-7, be-4) det(one-7, the-5) amod(one-7, onli-6) root(ROOT-0, one-7) vmod(one-7, flooding-8) dobj(flooding-8, your-9) prep(flooding-8, with-10) pobj(with-10, smses-11)
root(ROOT-0, Ã-1) advmod(Ã-1, all-2) dep(Ã-1, write-3) cc(write-3, or-4) conj(write-3, wat-5) dobj(write-3, ..-6)
cc(students-9, but-1) nsubj(students-9, some-2) prep(some-2, of-3) poss(friends-5, our-4) pobj(of-3, friends-5) cop(students-9, are-6) neg(students-9, not-7) nn(students-9, uni-8) root(ROOT-0, students-9) advmod(have-12, so-10) nsubj(have-12, they\u2019ll-11) xsubj(pay-14, they\u2019ll-11) dep(students-9, have-12) aux(pay-14, to-13) xcomp(have-12, pay-14)
root(ROOT-0, yeah-1) dobj(think-3, yeah-1) nsubj(think-3, i-2) rcmod(yeah-1, think-3) xcomp(think-3, it\u2019s-4) det(idea-7, a-5) amod(idea-7, good-6) dobj(it\u2019s-4, idea-7) mark(see-11, so-9) nsubj(see-11, i-10) dep(yeah-1, see-11) dobj(see-11, ya-12) advmod(see-11, tml-13)
nsubj(kept-2, I-1) root(ROOT-0, kept-2) prep(kept-2, on-3) pcomp(on-3, trying-4) aux(use-6, to-5) xcomp(trying-4, use-6) det(that\u2019s-10, the-7) nn(that\u2019s-10, card-8) nn(that\u2019s-10, ..-9) dobj(use-6, that\u2019s-10) advmod(took-13, why-11) nsubj(took-13, it-12) advcl(use-6, took-13) dobj(took-13, me-14) advmod(long-16, so-15) advmod(took-13, long-16) prep(long-16, to-17) nn(jie-21, reply-18) nn(jie-21, Jie-20) pobj(to-17, jie-21)
prep(told-5, like-1) amod(ppl-4, kent-2) nn(ppl-4, ridge-3) pobj(like-1, ppl-4) root(ROOT-0, told-5) dobj(told-5, me-6) amod(ppl-8, many-7) nsubj(apply-9, ppl-8) dep(told-5, apply-9) dobj(apply-9, it-10) cc(apply-9, but-12) nsubj(got-15, i-13) advmod(got-15, also-14) conj(apply-9, got-15) dobj(got-15, one-16) det(time-18, that-17) nsubj(told-5, time-18)
det(man-3, Wah-1) amod(man-3, lucky-2) nsubj(save-7, man-3) advmod(save-7, Then-5) aux(save-7, can-6) root(ROOT-0, save-7) dobj(save-7, money-8) dep(money-8, Hee-10)
root(ROOT-0, You-1) dep(You-1, eaten-2) nsubj(hungry-7, I-4) cop(hungry-7, am-5) advmod(hungry-7, so-6) rcmod(eaten-2, hungry-7) cc(meeting-10, But-9) dep(eaten-2, meeting-10) advmod(meeting-10, now-11) cc(worse-17, And-13) poss(acne-15, my-14) nsubj(worse-17, acne-15) dep(worse-17, got-16) dep(You-1, worse-17)
nsubj(hope-2, I-1) root(ROOT-0, hope-2) advmod(give-6, just-3) advmod(give-6, now-4) nsubj(give-6, didnt-5) ccomp(hope-2, give-6) iobj(give-6, u-7) det(shock-10, a-8) amod(shock-10, huge-9) dobj(give-6, shock-10) amod(happy-13, Very-12) amod(dat-14, happy-13) dep(shock-10, dat-14) nsubj(give-16, u-15) rcmod(shock-10, give-16) iobj(give-16, me-17) det(chance-19, a-18) dobj(give-16, chance-19) dep(chance-19, Have-21) det(nite-24, an-22) amod(nite-24, early-23) dep(Have-21, nite-24) nn(:-)-26, ..-25) dep(Have-21, :-)-26)
dep(u-4, So-1) num(time-3, wat-2) nsubj(u-4, time-3) root(ROOT-0, u-4) xcomp(u-4, coming-5) prep(coming-5, to-6) pobj(to-6, school-7)
nsubj(wan-2, Ã-1) root(ROOT-0, wan-2) prep(wan-2, to-3) pobj(to-3, cycle-4)
root(ROOT-0, Wat-1) discourse(Wat-1, uniform-2) prep(Wat-1, In-4) advmod(get-6, where-5) pcomp(In-4, get-6)
det(song\u2019s-2, The-1) dep(bad-4, song\u2019s-2) neg(bad-4, not-3) root(ROOT-0, bad-4)
dep(crazy-3, r-1) nn(crazy-3, u-2) dep(cheat-7, crazy-3) nn(canot-6, u-5) nsubj(cheat-7, canot-6) root(ROOT-0, cheat-7) prep(cheat-7, until-8) pcomp(until-8, like-9) nn(?!-12, tat-10) nn(?!-12, wat-11) pobj(like-9, ?!-12)
nsubj(forms-9, Hmmm-1) dep(Hmmm-1, Okie-3) amod(handin-6, i\u2019m-5) dep(Hmmm-1, handin-6) prep(Hmmm-1, in-7) dep(in-7, e-8) root(ROOT-0, forms-9) advmod(forms-9, too-10) advmod(forms-9, so-12) prep(go-18, after-13) poss(den-16, our-14) nn(den-16, test-15) pobj(after-13, den-16) nsubj(go-18, we-17) ccomp(forms-9, go-18) parataxis(forms-9, go-18) cc(go-18, and-19) conj(go-18, meet-20) nn(lor-22, em-21) dobj(go-18, lor-22)
root(ROOT-0, Hmmm-1) nsubj(meet-4, Cant-3) dep(Hmmm-1, meet-4) advmod(meet-4, early-5) dep(Hmmm-1, So-7) amod(cya-10, i\u2019ll-8) amod(cya-10, juz-9) dep(So-7, cya-10) prep(cya-10, at-11) num(:)-14, three-12) amod(:)-14, ....-13) pobj(at-11, :)-14)
root(ROOT-0, Yup-1) advmod(more-3, no-2) dobj(Yup-1, more-3) advmod(Yup-1, already-4) number(4-7, Thanx-6) num(n-9, 4-7) nn(n-9, printing-8) nsubj(handing-10, n-9) parataxis(Yup-1, handing-10) dobj(handing-10, it-11) prt(handing-10, up-12)
nn(I\u2019m-3, No-1) root(ROOT-0, I\u2019m-3) rcmod(I\u2019m-3, using-4) poss(line-7, my-5) nn(line-7, brunei-6) dobj(using-4, line-7) dep(I\u2019m-3, Going-9) prep(Going-9, to-10) cc(line-14, but-11) poss(line-14, my-12) amod(line-14, singtel-13) pobj(to-10, line-14) dobj(suppose-17, line-14) nsubj(suppose-17, Was-16) xsubj(terminate-19, Was-16) rcmod(line-14, suppose-17) aux(terminate-19, to-18) xcomp(suppose-17, terminate-19) det(day-21, the-20) dobj(terminate-19, day-21) nsubj(left-23, i-22) rcmod(day-21, left-23) prep(left-23, but-24) pobj(but-24, dunno-25) advmod(not-29, why-26) mark(not-29, till-27) dep(not-29, now-28) advcl(left-23, not-29) advmod(terminate-19, yet-30)
root(ROOT-0, Yup-1) dobj(Yup-1, i-2) vmod(i-2, driving-3) advmod(driving-3, in-4) poss(n-11, Its-6) num(bucks-8, 2-7) amod(n-11, bucks-8) det(person-10, a-9) dep(bucks-8, person-10) dep(i-2, n-11) prep(n-11, per-12) pobj(per-12, car-13) nsubj(bk-17, I-15) aux(bk-17, have-16) rcmod(i-2, bk-17) det(rm-20, a-18) nn(rm-20, hotel-19) dobj(bk-17, rm-20) prep(bk-17, at-21) nn(sentosa-23, rasa-22) pobj(at-21, sentosa-23)
dep(happy-7, Yup-1) dep(Yup-1, She-3) aux(happy-7, must-4) cop(happy-7, be-5) advmod(happy-7, so-6) root(ROOT-0, happy-7) advmod(happy-7, now-8) nn(Ã-10, ..-9) nsubj(happy-7, Ã-10)
root(ROOT-0, Yup-1) nsubj(planning-3, we-2) dep(Yup-1, planning-3) prep(planning-3, for-4) det(bbq-6, a-5) pobj(for-4, bbq-6) cc(planning-3, But-8) advmod(waiting-10, still-9) conj(planning-3, waiting-10) prep(waiting-10, for-11) pobj(for-11, other-12) aux(confirm-14, to-13) xcomp(waiting-10, confirm-14)
nsubj(got-2, I-1) root(ROOT-0, got-2) prep(got-2, to-3) amod(type-7, video-4) nn(type-7, tape-5) nn(type-7, pple-6) pobj(to-3, type-7) prep(to-3, in-8) nn(lor-10, message-9) dep(in-8, lor-10) dep(lor-10, U-12) advmod(free-14, so-13) amod(U-12, free-14) nsubj(help-17, wan-15) num(wan-15, 2-16) ccomp(free-14, help-17) dobj(help-17, me-18) dep(lor-10, Hee-20) nn(noe-24, Cos-22) nn(noe-24, i-23) nsubj(u-25, noe-24) dep(Hee-20, u-25) nsubj(watch-28, wan-26) num(wan-26, 2-27) ccomp(u-25, watch-28) amod(affairs-30, infernal-29) dobj(watch-28, affairs-30) advmod(watch-28, so-31) dep(watch-28, ask-32) dobj(ask-32, u-33) advmod(ask-32, along-34) xcomp(got-2, Asking-36) amod(oso-38, shuhui-37) dobj(Asking-36, oso-38)
advmod(how-2, hi\u002c-1) advmod(is-3, how-2) root(ROOT-0, is-3) poss(mother-5, your-4) nsubj(is-3, mother-5) cc(mother-5, and-6) det(hope-9, the-7) amod(hope-9, operation\u002c-8) conj(mother-5, hope-9) dep(hope-9, all-10) dep(is-3, is-11) advmod(is-11, well-12) dep(is-11, pls-14) dep(is-3, send-15) poss(regards-17, my-16) dobj(send-15, regards-17)
discourse(wif-2, Nope-1) root(ROOT-0, wif-2) poss(lor-5, my-3) nn(lor-5, sis-4) dobj(wif-2, lor-5) nsubj(bathing-8, Aft-7) parataxis(wif-2, bathing-8) poss(dog-10, my-9) dobj(bathing-8, dog-10) advmod(bathing-8, then-11) nsubj(bathe-14, i-12) aux(bathe-14, can-13) dep(bathing-8, bathe-14) nsubj(going-19, Looks-16) prep(Looks-16, like-17) pobj(like-17, it\u2019s-18) parataxis(bathe-14, going-19) num(rain-21, 2-20) dobj(going-19, rain-21) advmod(going-19, soon-22)
nsubj(time-14, I-1) cop(time-14, be-2) advmod(time-14, there-3) dep(1230-5, ard-4) dep(told-11, 1230-5) nn(haven-10, Ryan\u002cron-7) nn(haven-10, n-8) nn(haven-10, shuhui-9) nsubj(told-11, haven-10) dep(there-3, told-11) dobj(told-11, me-12) poss(time-14, their-13) root(ROOT-0, time-14)
discourse(ah-4, Yeah-1) nsubj(ah-4, Onz-3) root(ROOT-0, ah-4) advmod(go-10, Later-6) nsubj(go-10, i-7) advmod(prob-9, most-8) amod(i-7, prob-9) parataxis(ah-4, go-10) xcomp(go-10, buy-11) dobj(buy-11, tic-12) mark(can-15, if-13) nsubj(can-15, i-14) advcl(buy-11, can-15) nsubj(get-19, Else-17) aux(get-19, might-18) parataxis(ah-4, get-19) dobj(get-19, someone-20) prep(someone-20, to-21) nn(online-23, book-22) pobj(to-21, online-23) dep(online-23, Cya-25)
nsubj(ask-2, Jos-1) root(ROOT-0, ask-2) mark(meet-6, if-3) amod(wana-5, u-4) nsubj(meet-6, wana-5) advcl(ask-2, meet-6) prt(meet-6, up-7)
dobj(says-2, Who-1) nsubj(says-2, Who-1) root(ROOT-0, says-2) nsubj(sleeping-4, i\u2019m-3) dep(says-2, sleeping-4) prep(sleeping-4, on-5) amod(bed-9, ur-6) nn(bed-9, king-7) nn(bed-9, size-8) pobj(on-5, bed-9) nn(home-12, Reach-11) parataxis(sleeping-4, home-12) advmod(home-12, already-13)
advmod(heavy-2, How-1) dep(is-3, heavy-2) root(ROOT-0, is-3) poss(stuff-5, my-4) nsubj(is-3, stuff-5)
advmod(i-2, Sorry-1) root(ROOT-0, i-2) advmod(i-2, now-3) prep(i-2, then-4) dep(msg-7, c-5) nn(msg-7, ur-6) dep(then-4, msg-7) nsubj(lor-10, Yar-9) parataxis(i-2, lor-10) advmod(poor-12, so-11) amod(thing-13, poor-12) dobj(lor-10, thing-13) cc(lor-10, But-15) quantmod(one-18, only-16) number(one-18, 4-17) num(night-19, one-18) conj(lor-10, night-19) nn(u\u2019ll-22, Tmr-21) nsubj(have-23, u\u2019ll-22) dep(night-19, have-23) det(room-27, a-24) nn(room-27, brand-25) amod(room-27, new-26) dobj(have-23, room-27) num(sleep-29, 2-28) nsubj(i-2, sleep-29) prep(sleep-29, in-30)
aux(say-2, must-1) root(ROOT-0, say-2) nsubj(say-2, thanks-3) prep(thanks-3, to-4) poss(fren-6, my-5) pobj(to-4, fren-6) ref(thanks-3, who-7) nsubj(recommended-9, who-7) aux(recommended-9, had-8) rcmod(thanks-3, recommended-9) det(show-11, this-10) dobj(recommended-9, show-11) prep(recommended-9, to-12) pobj(to-12, me-13)
advmod(buy-5, Wow-1) nsubj(buy-5, they-2) advmod(buy-5, really-3) aux(buy-5, can-4) root(ROOT-0, buy-5)
advmod(sleeping-7, Morning\u002c-1) nsubj(sleeping-7, I-2) cop(sleeping-7, am-3) prep(sleeping-7, in-4) pobj(in-4, bus-5) advmod(sleeping-7, still-6) root(ROOT-0, sleeping-7)
nn(u-2, Eh-1) nsubj(remember-3, u-2) root(ROOT-0, remember-3) advmod(make-17, how-4) num(spell-6, 2-5) dep(how-4, spell-6) poss(name-8, his-7) dep(spell-6, name-8) nn(i-11, Yes-10) nsubj(did-12, i-11) dep(name-8, did-12) nsubj(make-17, He-14) aux(make-17, v-15) advmod(make-17, naughty-16) ccomp(remember-3, make-17) mark(v-20, until-18) nsubj(v-20, i-19) advcl(make-17, v-20) acomp(v-20, wet-21)
root(ROOT-0, Yup-1) dobj(Yup-1, i\u2019m-2) advmod(Yup-1, still-3) xcomp(Yup-1, having-4) nn(wif-6, coffee-5) nsubj(frens-8, wif-6) poss(frens-8, my-7) xcomp(having-4, frens-8) poss(fren-11, My-10) nsubj(drove-12, fren-11) parataxis(Yup-1, drove-12) nsubj(give-14, she\u2019ll-13) ccomp(drove-12, give-14) iobj(give-14, me-15) det(lift-17, a-16) dobj(give-14, lift-17)
dep(hee-3, -j-2) root(ROOT-0, hee-3) dep(hee-3, Looks-5) mark(go-8, like-6) aux(go-8, must-7) dep(Looks-5, go-8) punct(Looks-5, improve-9) dep(Looks-5, Chinese-10) nsubj(jia-14, -j-13) dep(Chinese-10, jia-14) dobj(jia-14, you-15) prep(jia-14, for-16) pobj(for-16, this-17) dep(Looks-5, ->-20)
advmod(loh-4, up-1) num(u-3, 2-2) pobj(up-1, u-3) root(ROOT-0, loh-4) amod(play-8, u-6) amod(play-8, wanna-7) nsubj(can-12, play-8) prep(play-8, in-9) pobj(in-9, sch-10) advmod(can-12, also-11) dep(loh-4, can-12) nsubj(book-16, i-14) aux(book-16, can-15) parataxis(can-12, book-16) dobj(book-16, court-17) num(court-17, 4-18) nsubj(loh-4, us-19)
nn(i-3, cannot-1) nsubj(dont-4, i-3) root(ROOT-0, dont-4) xcomp(dont-4, have-5) dobj(have-5, it-6) prep(have-5, with-7) pobj(with-7, me-8) advmod(have-5, now-9)
nn(lah\u002c-3, Better-1) neg(lah\u002c-3, not-2) root(ROOT-0, lah\u002c-3) nsubj(use-9, he-4) prep(use-9, not-5) poss(cant-8, my-6) amod(cant-8, bf\u002c-7) pobj(not-5, cant-8) rcmod(lah\u002c-3, use-9) dobj(use-9, him-10) prep(use-9, like-11) pobj(like-11, t-12) dep(lah\u002c-3, Haha\u002c-14) dobj(yest-18, Haha\u002c-14) nn(abt-17, i-15) nn(abt-17, forget-16) nsubj(yest-18, abt-17) rcmod(Haha\u002c-14, yest-18) advmod(yest-18, already-19) amod(anything-22, Why\u002c-21) dep(lah\u002c-3, anything-22) dobj(got-25, anything-22) amod(t-24, special-23) nsubj(got-25, t-24) rcmod(anything-22, got-25) nsubj(tell-27, 2-26) ccomp(got-25, tell-27) iobj(tell-27, me-28) nn(U-30, ??-29) dobj(tell-27, U-30) advmod(not-32, all-31) neg(meeting-33, not-32) vmod(U-30, meeting-33) tmod(meeting-33, today-34)
root(ROOT-0, B4-1) dobj(answer-3, B4-1) nsubj(answer-3, I-2) rcmod(B4-1, answer-3) amod(can\u2019t-6, that\u002c-4) nn(can\u2019t-6, I-5) nsubj(remember-7, can\u2019t-6) ccomp(answer-3, remember-7) advmod(met-10, where-8) nsubj(met-10, I\u2019ve-9) advcl(remember-7, met-10) dobj(met-10, u-11) advmod(met-10, before-12) dep(B4-1, Care-14) aux(refresh-16, to-15) vmod(Care-14, refresh-16) poss(memory-18, my-17) dobj(refresh-16, memory-18) dep(B4-1, Sorry\u002c-20) nsubj(have-22, I-21) rcmod(Sorry\u002c-20, have-22) amod(memory-25, short-23) nn(memory-25, term-24) dobj(have-22, memory-25)
nsubj(come-2, I-1) root(ROOT-0, come-2) amod(someone-4, le-3) dobj(come-2, someone-4) amod(someone-4, seating-5) prep(come-2, beside-6) nsubj(:(-11, me-7) cop(:(-11, is-8) advmod(dirty-10, too-9) amod(:(-11, dirty-10) pcomp(beside-6, :(-11)
nsubj(bless-3, God-1) aux(bless-3, may-2) root(ROOT-0, bless-3) dobj(bless-3, you-4) prep(bless-3, with-5) det(happiness-8, all-6) amod(happiness-8, the-7) pobj(with-5, happiness-8)
nsubj(stuck-2, I\u2019m-1) root(ROOT-0, stuck-2) prep(stuck-2, in-3) nn(middle-5, da-4) pobj(in-3, middle-5) prep(middle-5, of-6) nn(row-8, da-7) pobj(of-6, row-8) prep(stuck-2, on-9) nn(side-13, da-10) amod(side-13, right-11) nn(side-13, hand-12) pobj(on-9, side-13) prep(side-13, of-14) nn(lt-16, da-15) pobj(of-14, lt-16)
amod(cant-3, hi-1) amod(cant-3, kate\u002c-2) nsubj(get-4, cant-3) root(ROOT-0, get-4) nsubj(call-9, u-5) xsubj(tell-14, u-5) aux(call-9, can-7) advmod(call-9, u-8) ccomp(get-4, call-9) cc(call-9, or-10) conj(call-9, sms-11) dobj(call-9, me-12) aux(tell-14, to-13) xcomp(call-9, tell-14) dobj(tell-14, me-15) mark(sing-24, if-16) nn(r-18, u-17) nsubj(sing-24, r-18) advmod(meeting-20, still-19) vmod(r-18, meeting-20) dobj(meeting-20, me-21) prep(meeting-20, at-22) pobj(at-22, plaza-23) dep(tell-14, sing-24) dep(sing-24, Thanks-26)
det(reason-3, No-1) amod(reason-3, particular-2) nsubj(got-8, reason-3) xsubj(rush-14, reason-3) amod(reason-3, lor\u002c-4) advmod(lor\u002c-4, anyway-5) amod(day-7, tt-6) tmod(lor\u002c-4, day-7) root(ROOT-0, got-8) amod(wan-12, somethin-9) amod(wan-12, on\u002c-10) nn(wan-12, dun-11) dobj(got-8, wan-12) aux(rush-14, to-13) xcomp(got-8, rush-14) nn(oso-16, abt-15) dobj(rush-14, oso-16)
advcl(felt-27, Oh-1) amod(din-5, Okie\u002c-3) nn(din-5, u-4) nsubj(tell-6, din-5) dep(Oh-1, tell-6) nsubj(bd-10, me-7) amod(bd-10, it\u2019s-8) nn(bd-10, ur-9) xcomp(tell-6, bd-10) nn(i-13, Ya\u002c-12) nsubj(went-14, i-13) conj(tell-6, went-14) prep(went-14, out-15) pobj(out-15, w-16) dobj(went-14, her-17) cc(tell-6, but-18) nsubj(realized-21, i-19) advmod(realized-21, only-20) conj(tell-6, realized-21) prep(realized-21, on-22) amod(day-24, e-23) pobj(on-22, day-24) nsubj(Oh-1, itself-25) nsubj(felt-27, lor\u002c-26) root(ROOT-0, felt-27) amod(abt-29, bad-28) nsubj(it-30, abt-29) xcomp(felt-27, it-30)
root(ROOT-0, Haha-1) dep(Haha-1, dont-3) cop(angry-5, be-4) dep(dont-3, angry-5) prep(angry-5, with-6) dep(with-6, yourself-7) dep(yourself-7, Take-9) dobj(Take-9, it-10) prep(Take-9, as-11) det(practice-13, a-12) pobj(as-11, practice-13) prep(practice-13, for-14) det(thing-17, the-15) amod(thing-17, real-16) pobj(for-14, thing-17) dep(with-6, =)-19)
advmod(settle-2, Just-1) root(ROOT-0, settle-2) prt(settle-2, down-3) mark(come-6, after-4) nsubj(come-6, they-5) advcl(settle-2, come-6) advmod(come-6, back-7) prep(back-7, from-8) pobj(from-8, airport-9) amod(lot-12, Bought-11) dep(airport-9, lot-12) prep(lot-12, of-13) pobj(of-13, things-14) num(trolley-17, One-16) npadvmod(there-18, trolley-17) advmod(from-8, there-18) nsubj(settle-2, den-19) num(trolleys-21, 3-20) npadvmod(back-22, trolleys-21) advmod(den-19, back-22)
nsubj(said-2, eileen-1) root(ROOT-0, said-2) advmod(said-2, maybe-3) nsubj(mit-5, we-4) ccomp(said-2, mit-5) prt(mit-5, up-6) dobj(mit-5, n-7) dep(mit-5, go-8) xcomp(go-8, buy-9) dobj(buy-9, 2gether-10)
root(ROOT-0, Hmmm-1) dep(Hmmm-1, I\u2019ll-3) dep(free-5, b-4) dep(So-14, free-5) prep(free-5, at-6) pobj(at-6, 3-7) dep(3-7, Meet-9) prep(Meet-9, at-10) nn(time-12, tis-11) pobj(at-10, time-12) dep(Hmmm-1, So-14) nsubj(goin-16, we-15) ccomp(So-14, goin-16) num(dinner-18, 4-17) dobj(goin-16, dinner-18) cc(dinner-18, or-19) nn(....-21, wat-20) conj(dinner-18, ....-21)
nn(dun-2, U-1) nsubj(say-3, dun-2) root(ROOT-0, say-3) mark(hor-6, so-4) amod(hor-6, early-5) advcl(say-3, hor-6) nn(c-9, U-8) dep(hor-6, c-9) dep(hor-6, already-10) advmod(say-12, then-11) dep(hor-6, say-12)
amod(i\u2019m-2, Anyway-1) root(ROOT-0, i\u2019m-2) vmod(i\u2019m-2, going-3) vmod(going-3, shopping-4) prep(shopping-4, on-5) poss(own-7, my-6) pobj(on-5, own-7) advmod(i\u2019m-2, now-8) dep(i\u2019m-2, Cos-10) dobj(done-14, Cos-10) poss(sis-12, my-11) nsubj(done-14, sis-12) neg(sis-12, not-13) rcmod(Cos-10, done-14) advmod(done-14, yet-15) nn(liao-20, Dun-17) nn(liao-20, disturb-18) nn(liao-20, u-19) dep(i\u2019m-2, liao-20)
nsubj(buy-5, xy-1) dep(xy-1, Need-3) num(Need-3, 2-4) root(ROOT-0, buy-5) dobj(buy-5, clothes-6) iobj(buy-5, clothes-6) num(clothes-6, 4-7) poss(wedding-10, my-8) nn(wedding-10, cousin-9) dep(clothes-6, wedding-10) det(sunday-12, this-11) tmod(buy-5, sunday-12) num(sunday-12, lah-13) parataxis(buy-5, haiz-15)
nn(T610-2, Ericsson-1) root(ROOT-0, T610-2) nn(u-5, Haha-4) nsubj(decide-6, u-5) xsubj(get-8, u-5) dep(T610-2, decide-6) aux(get-8, to-7) xcomp(decide-6, get-8) dobj(get-8, one-9) advmod(get-8, too-10)
dep(hear-6, Haha-1) nn(ü-4, Hope-3) nsubj(hear-6, ü-4) aux(hear-6, can-5) root(ROOT-0, hear-6) det(sound-9, the-7) nn(sound-9, receipt-8) dobj(hear-6, sound-9) nn(luck-12, Gd-11) dep(sound-9, luck-12)
nn(time-2, Wat-1) nsubj(want-4, time-2) num(time-2, u-3) root(ROOT-0, want-4) nsubj(come-7, me-5) aux(come-7, to-6) xcomp(want-4, come-7) prt(come-7, over-8)
nsubj(interested-4, Hey\u002c-1) cop(interested-4, are-2) dep(interested-4, in-3) root(ROOT-0, interested-4) prep(interested-4, in-5) nn(bowling-7, IFG-6) pobj(in-5, bowling-7)
nn(leh-2, Dunno-1) nsubj(..-3, leh-2) root(ROOT-0, ..-3) dobj(think-6, What-4) nsubj(think-6, you-5) ccomp(..-3, think-6)
det(time-2, What-1) dep(is-3, time-2) root(ROOT-0, is-3) amod(tmr-6, ur-4) nn(tmr-6, flight-5) nsubj(is-3, tmr-6)
nsubj(interested-2, Not-1) root(ROOT-0, interested-2) prep(interested-2, in-3) det(job-6, the-4) nn(job-6, security-5) pobj(in-3, job-6)
nsubj(ok-2, Yup-1) root(ROOT-0, ok-2) nsubj(noe\u002c-5, I-4) dep(ok-2, noe\u002c-5) acomp(noe\u002c-5, surprised-6) nsubj(remember-9, u-7) advmod(remember-9, still-8) ccomp(surprised-6, remember-9) nsubj(sleep-12, U-11) parataxis(noe\u002c-5, sleep-12) advmod(too-14, early-13) advmod(sleep-12, too-14)
det(doesn\u2019t-5, A-1) amod(doesn\u2019t-5, bigger-2) nn(doesn\u2019t-5, size-3) nn(doesn\u2019t-5, bed-4) nsubj(mean-6, doesn\u2019t-5) root(ROOT-0, mean-6) nsubj(break-9, it-7) amod(break-9, wont-8) xcomp(mean-6, break-9)
advmod(going-2, Still-1) root(ROOT-0, going-2) prep(going-2, to-3) amod(coast-5, east-4) pobj(to-3, coast-5)
nsubj(e-5, I-1) aux(e-5, may-2) neg(e-5, not-3) dep(e-5, b-4) root(ROOT-0, e-5) amod(r-9, perfect-6) nn(r-9, fren-7) nn(r-9, u-8) dobj(e-5, r-9) xcomp(e-5, looking-10) amod(nite-28, 4\u002c-11) neg(4\u002c-11, not-12) advmod(i\u2019m-21, even-13) det(best-15, the-14) nsubj(i\u2019m-21, best-15) prep(best-15, among-16) pobj(among-16, em-17) dep(but-19, all-18) advmod(i\u2019m-21, but-19) advmod(i\u2019m-21, surely-20) dep(4\u002c-11, i\u2019m-21) det(fren-23, a-22) dobj(i\u2019m-21, fren-23) ref(fren-23, who-24) nsubj(cares-25, who-24) rcmod(fren-23, cares-25) amod(nite-28, Good-27) dobj(looking-10, nite-28)
nn(i\u2019ll-5, U-1) nn(i\u2019ll-5, cant-2) nn(i\u2019ll-5, pressure-3) nn(i\u2019ll-5, me\u002c-4) nsubj(make-6, i\u2019ll-5) root(ROOT-0, make-6) amod(hee-9, u-7) amod(hee-9, fat-8) dobj(make-6, hee-9) discourse(say-15, OK-11) nn(dun-14, lar-12) nn(dun-14, i-13) nsubj(say-15, dun-14) parataxis(make-6, say-15) nsubj(let-17, anything-16) ccomp(say-15, let-17) poss(cook-20, my-18) nn(cook-20, dad-19) dobj(let-17, cook-20) advmod(much-22, as-21) advmod(let-17, much-22) mark(likes-25, as-23) nsubj(likes-25, he-24) ccomp(much-22, likes-25)
root(ROOT-0, take-1) dobj(take-1, care-2)
advmod(going-7, Hey-1) dep(Hey-1, so-2) nsubj(sat-4, this-3) ccomp(so-2, sat-4) aux(going-7, are-5) nsubj(going-7, we-6) root(ROOT-0, going-7) prep(going-7, for-8) det(pilates-11, the-9) nn(pilates-11, intro-10) pobj(for-8, pilates-11) advmod(going-7, only-12) cc(kickboxing-16, Or-14) det(kickboxing-16, the-15) dep(going-7, kickboxing-16) advmod(kickboxing-16, too-17)
dep(forgot-10, Got-1) dep(Got-1, c-2) dep(Got-1, I-4) amod(I-4, lazy-5) prep(lazy-5, to-6) pobj(to-6, type-7) nsubj(forgot-10, I-9) root(ROOT-0, forgot-10) dobj(forgot-10, ü-11) prep(forgot-10, in-12) pobj(in-12, lect-13) nsubj(saw-16, I-15) parataxis(forgot-10, saw-16) det(pouch-18, a-17) dobj(saw-16, pouch-18) cc(saw-16, but-19) conj(saw-16, like-20) neg(like-20, not-21) dep(nice-23, v-22) dep(like-20, nice-23)
nn(liao-4, Ok-1) nn(liao-4, show-2) nn(liao-4, end-3) root(ROOT-0, liao-4) nn(Faster-8, Bedtime-6) nsubj(go-9, Faster-8) dep(liao-4, go-9) amod(u-11, slp\u002c-10) nsubj(have-12, u-11) xsubj(wake-14, u-11) ccomp(go-9, have-12) aux(wake-14, to-13) xcomp(have-12, wake-14) prt(wake-14, up-15) amod(tml-17, early-16) dobj(wake-14, tml-17) nsubj(call-20, Morn-19) ccomp(tml-17, call-20) prep(call-20, at-21) num(ok-23, 7.55-22) pobj(at-21, ok-23)
poss(house-2, My-1) nsubj(e-4, house-2) advmod(e-4, here-3) root(ROOT-0, e-4) advmod(e-4, sky-5) advmod(dark-7, quite-6) amod(liao-8, dark-7) dobj(e-4, liao-8) mark(got-13, If-10) csubj(got-13, raining-11) advmod(raining-11, then-12) advcl(run-17, got-13) dobj(got-13, excuse-14) neg(2-16, not-15) nsubj(run-17, 2-16) parataxis(e-4, run-17) advmod(run-17, already-18) dobj(run-17, rite-19) dep(rite-19, Hee-21)
prep(whr-8, by-1) nn(way\u002c-3, e-2) pobj(by-1, way\u002c-3) punct(whr-8, sat-4) nn(whr-8, wat-5) nn(whr-8, time-6) nn(whr-8, n-7) root(ROOT-0, whr-8)
nsubj(thk-2, I-1) root(ROOT-0, thk-2) num(shd-4, 50-3) nsubjpass(ok-6, shd-4) auxpass(ok-6, be-5) ccomp(thk-2, ok-6) nsubj(said-8, he-7) ccomp(ok-6, said-8) dep(leave-15, plus-9) prep(plus-9, minus-10) num(..-12, 10-11) pobj(minus-10, ..-12) aux(leave-15, Did-13) nsubj(leave-15, ü-14) dep(said-8, leave-15) det(line-17, a-16) dobj(leave-15, line-17) prep(leave-15, in-18) pcomp(in-18, between-19) pobj(between-19, paragraphs-20)
nn(I-4, Watch-1) nn(I-4, lor-2) nsubj(saw-5, I-4) advcl(need-19, saw-5) det(thk-11, a-6) amod(thk-11, few-7) nn(thk-11, swatch-8) num(thk-11, one-9) nn(thk-11, i-10) dobj(saw-5, thk-11) advmod(ok-13, quite-12) amod(thk-11, ok-13) nn(116-16, Ard-15) nsubj(need-19, 116-16) cc(116-16, but-17) conj(116-16, i-18) root(ROOT-0, need-19) amod(leh-22, 2nd-20) nn(leh-22, opinion-21) dobj(need-19, leh-22)
nsubj(work-3, I-1) advmod(work-3, only-2) root(ROOT-0, work-3) prep(work-3, from-4) pobj(from-4, mon-5) prep(work-3, to-6) nn(leh-12, thurs-7) cc(thurs-7, but-8) conj(thurs-7, Sat-9) nn(leh-12, i-10) nn(leh-12, cant-11) pobj(to-6, leh-12) nn(liao-15, Booked-14) dep(leh-12, liao-15) det(day-19, Which-17) amod(day-19, other-18) dep(leh-12, day-19) advmod(free-21, u-20) amod(leh-12, free-21)
amod(wana-3, Hey-1) nn(wana-3, u-2) nsubj(meet-4, wana-3) root(ROOT-0, meet-4) prep(meet-4, at-5) nn(den-7, someplace-6) pobj(at-5, den-7) ccomp(meet-4, go-8) xcomp(go-8, look-9) dobj(look-9, 4-10) dep(classroom-12, e-11) dep(Mayb-14, classroom-12) dep(4-10, Mayb-14) prep(look-9, at-15) amod(canteen-17, e-16) pobj(at-15, canteen-17) cc(canteen-17, or-18) conj(canteen-17, somethg-19)
advmod(hear-4, long-1) dep(hear-4, time-2) dep(hear-4, never-3) advmod(happen-8, hear-4) prep(hear-4, from-5) pobj(from-5, you-6) nsubj(happen-8, what-7) root(ROOT-0, happen-8)
dep(reach-5, Ok-1) nsubj(reach-5, I-3) aux(reach-5, am-4) csubj(see-8, reach-5) dobj(reach-5, office-6) root(ROOT-0, see-8) dobj(see-8, you-9) tmod(see-8, tomorrow-10) cc(see-8, and-11) conj(see-8, cal-12) iobj(cal-12, you-13) dobj(cal-12, tonight-14)
nsubj(go-6, Oic-1) advmod(go-6, Then-3) advmod(quickly-5, better-4) advmod(go-6, quickly-5) root(ROOT-0, go-6) nn(n-8, bathe-7) dobj(go-6, n-8) dep(go-6, settle-9) prt(settle-9, down-10)
nn(mit-3, Ya-1) nn(mit-3, let\u2019s-2) root(ROOT-0, mit-3) nn(time-6, Wad-5) dep(mit-3, time-6) vmod(time-6, gd-7) prep(gd-7, for-8) pobj(for-8, you-9) nn(gng-12, Leon-11) dep(mit-3, gng-12) advmod(gng-12, later-13) prep(later-13, by-14) pobj(by-14, himself-15)
dep(sure-2, Not-1) dep(leh-3, sure-2) dep(pass-6, leh-3) advmod(pass-6, just-5) root(ROOT-0, pass-6) prep(pass-6, to-7) pobj(to-7, me-8) dep(pass-6, first-9)
det(need-2, No-1) nsubj(..-8, need-2) aux(buy-4, to-3) vmod(need-2, buy-4) dobj(buy-4, lunch-5) prep(buy-4, for-6) pobj(for-6, me-7) root(ROOT-0, ..-8) nsubj(eat-10, I-9) ccomp(..-8, eat-10) nn(..-13, maggi-11) nn(..-13, mee-12) dobj(eat-10, ..-13)
nsubj(i-4, Ok-1) advmod(i-4, then-2) advmod(i-4, later-3) root(ROOT-0, i-4) nn(u-6, msg-5) dobj(i-4, u-6) advmod(am-9, where-7) nsubj(am-9, i-8) advcl(i-4, am-9)
poss(dear\u002ccongrats-2, My-1) root(ROOT-0, dear\u002ccongrats-2) dep(dear\u002ccongrats-2, U-4) dep(dear\u002ccongrats-2, also-5) dep(dear\u002ccongrats-2, sleep-6) dobj(sleep-6, la-7) amod(u-13, Good-9) nn(u-13, night-10) nn(u-13, ..-11) nn(u-13, Love-12) dep(la-7, u-13)
nsubj(tell-3, U-1) aux(tell-3, got-2) root(ROOT-0, tell-3) dobj(tell-3, them-4) dep(them-4, not-5) advmod(loud-7, so-6) dep(not-5, loud-7) advmod(do-10, so-9) dep(tell-3, do-10) prep(do-10, until-11) nn(time-13, wat-12) pobj(until-11, time-13)
nn(nvr-2, U-1) nsubj(check-3, nvr-2) root(ROOT-0, check-3) nn(ah-6, ur-4) nn(ah-6, email-5) dobj(check-3, ah-6) nn(u-9, Details-8) nsubj(have-10, u-9) xsubj(ask-12, u-9) dep(ah-6, have-10) aux(ask-12, to-11) xcomp(have-10, ask-12) dobj(ask-12, cindy-13) nsubj(meetin-16, We-15) parataxis(have-10, meetin-16) prep(meetin-16, at-17) pobj(at-17, 12-18)
root(ROOT-0, u-1) amod(tml-3, free-2) dobj(u-1, tml-3) aux(write-5, to-4) xcomp(u-1, write-5) det(intro-7, the-6) dobj(write-5, intro-7)
num(bathing\u002cwonder-3, Hee\u002cjuz-1) amod(bathing\u002cwonder-3, finished-2) root(ROOT-0, bathing\u002cwonder-3) mark(oh-16, whether-4) dep(zzz-7, u-5) aux(zzz-7, can-6) dep(oh-16, zzz-7) dep(zzz-7, hope-9) nn(la\u002cneed2wake-11, can-10) dobj(hope-9, la\u002cneed2wake-11) prt(hope-9, up-12) advmod(early-14, so-13) advmod(hope-9, early-14) dep(bathing\u002cwonder-3, oh-16) amod(itchy-18, no\u002cskin-17) dobj(oh-16, itchy-18) advmod(oh-16, again-19) dep(cream-22, e-21) dep(useful-25, cream-22) prep(cream-22, from-23) pobj(from-23, doc-24) dep(u-28, useful-25) amod(u-28, poor-27) dep(bathing\u002cwonder-3, u-28) dep(bathing\u002cwonder-3, <-30)
discourse(tommy-2, Wow-1) root(ROOT-0, tommy-2) mark(invented-5, if-3) nsubj(invented-5, you-4) advcl(tommy-2, invented-5) mark(give-23, that-6) nsubj(give-23, message\u002c-7) advmod(lot-10, quite-8) det(lot-10, a-9) npadvmod(of-11, lot-10) prep(message\u002c-7, of-11) pobj(of-11, number-12) vmod(number-12, crunching-13) amod(..-16, yah\u002c-14) nn(..-16, haha-15) dobj(crunching-13, ..-16) advmod(crunching-13, anyway-17) advmod(crunching-13, thanks-18) prep(thanks-18, for-19) det(i\u2019ll-22, the-20) amod(i\u2019ll-22, blessings-21) pobj(for-19, i\u2019ll-22) ccomp(invented-5, give-23) iobj(give-23, you-24) det(hug-26, a-25) dobj(give-23, hug-26) advmod(meet-29, when-27) nsubj(meet-29, we-28) advcl(give-23, meet-29) prep(meet-29, on-30) nn(k-32, friday-31) pobj(on-30, k-32)
root(ROOT-0, Call-1) dobj(Call-1, me-2) advmod(done-5, when-3) nsubj(done-5, u\u2019re-4) advcl(Call-1, done-5)
nsubj(..-2, Okie-1) root(ROOT-0, ..-2) advmod(..-2, Now-3) advmod(..-2, still-4) xcomp(..-2, doing-5) amod(min-7, last-6) dobj(doing-5, min-7) nn(:-(-10, revision-8) dep(doing-5, :-(-10)
root(ROOT-0, come-1) prep(come-1, on-2) pobj(on-2, don\u2019t-3) ccomp(come-1, be-4) prep(be-4, like-5) pobj(like-5, that-6)
nsubj(leaving-3, We-1) neg(leaving-3, not-2) root(ROOT-0, leaving-3) dep(lor-7, yet-4) nn(lor-7, Ok-6) dobj(leaving-3, lor-7) iobj(leaving-3, lor-7) dobj(go-10, lor-7) advmod(go-10, then-8) nsubj(go-10, we-9) rcmod(lor-7, go-10) advmod(eat-13, elsewhere-11) advmod(eat-13, n-12) dep(go-10, eat-13) nn(thk-16, U-15) dep(lor-7, thk-16)
nsubj(Call-6, I\u2019m-1) prep(I\u2019m-1, in-2) det(movie-4, a-3) pobj(in-2, movie-4) root(ROOT-0, Call-6) iobj(Call-6, me-7) num(wat-9, 4-8) dobj(Call-6, wat-9)
dobj(feeling-23, Thanks-1) prep(Thanks-1, for-2) pobj(for-2, you-3) dep(you-3, mother-4) amod(piah-8, s-6) nn(piah-8, poh-7) dep(mother-4, piah-8) dep(mother-4, yummy-10) advmod(nice-12, very-11) amod(yummy-10, nice-12) nsubj(have-15, You-14) rcmod(you-3, have-15) dobj(have-15, one-16) advmod(since-18, too-17) advmod(have-15, since-18) prep(have-15, with-19) pobj(with-19, me-20) aux(feeling-23, are-21) nsubj(feeling-23, you-22) root(ROOT-0, feeling-23) advmod(feeling-23, well-24)
nn(damn-2, Ya-1) nsubj(needs-7, damn-2) xsubj(fired-10, damn-2) cc(damn-2, and-3) det(woman-6, that-4) amod(woman-6, stupid-5) conj(damn-2, woman-6) root(ROOT-0, needs-7) aux(fired-10, to-8) auxpass(fired-10, get-9) xcomp(needs-7, fired-10)
poss(area-2, My-1) nsubj(seem-3, area-2) root(ROOT-0, seem-3) nn(i-8, ok-4) nn(i-8, mah-5) nn(i-8, Ok-7) nsubj(got-9, i-8) xsubj(go-11, i-8) ccomp(seem-3, got-9) aux(go-11, to-10) xcomp(got-9, go-11) prt(go-11, out-12) num(u-16, liao\u002c-13) amod(u-16, i-14) nn(u-16, call-15) dobj(go-11, u-16) prep(go-11, at-17) nn(..-20, nite-18) nn(..-20, k-19) pobj(at-17, ..-20)
root(ROOT-0, Yo-1) nsubj(send-4, Wanna-3) rcmod(Yo-1, send-4) dobj(send-4, yixin-5) prt(send-4, off-6) prep(send-4, at-7) amod(tmr-10, e-8) nn(tmr-10, airport-9) pobj(at-7, tmr-10) prep(tmr-10, at-11) num(sth-13, 12-12) pobj(at-11, sth-13) dep(Yo-1, I-15) nsubj(hv-26, tot-16) prep(tot-16, of-17) pcomp(of-17, getting-18) det(pple-21, some-19) amod(pple-21, 2g-20) dobj(getting-18, pple-21) aux(go-23, to-22) xcomp(getting-18, go-23) advmod(go-23, then-24) aux(hv-26, can-25) rcmod(I-15, hv-26) amod(gathering-29, mini-27) amod(gathering-29, 2g-28) dobj(hv-26, gathering-29) dep(Yo-1, Mayb-31) prep(Mayb-31, with-32) amod(yuan-37, cheney\u002c-33) amod(yuan-37, andy-34) nn(yuan-37, n-35) nn(yuan-37, jun-36) pobj(with-32, yuan-37)
root(ROOT-0, u-1) dep(tomorrow-3, free-2) dep(go-6, tomorrow-3) nsubj(go-6, wanna-5) dep(u-1, go-6) dobj(go-6, movies-7)
nsubj(think-2, i-1) root(ROOT-0, think-2) nsubj(like-5, she-3) aux(like-5, should-4) ccomp(think-2, like-5) dobj(like-5, it-6) advmod(like-5, ba-7) nsubj(remembered-10, i-9) parataxis(think-2, remembered-10) nsubj(said-13, she-11) advmod(said-13, onced-12) ccomp(remembered-10, said-13) advmod(saw-17, so-14) advmod(saw-17, when-15) nsubj(saw-17, we-16) advcl(said-13, saw-17) dobj(saw-17, it-18)
nsubj(like-2, I-1) root(ROOT-0, like-2) nn(mango-6, dis-3) nn(mango-6, sweater-4) nn(mango-6, fr-5) dobj(like-2, mango-6) cc(like-2, but-7) dep(more-9, no-8) advmod(irritating-14, more-9) poss(size-11, my-10) nsubj(irritating-14, size-11) advmod(irritating-14, already-12) advmod(irritating-14, so-13) conj(like-2, irritating-14)
aux(drop-9, E-1) nsubj(drop-9, price-2) prep(price-2, of-3) nn(cd-7, e-4) nn(cd-7, discount-5) amod(cd-7, old-6) pobj(of-3, cd-7) advmod(drop-9, now-8) root(ROOT-0, drop-9) num(onwards-12, 2-10) num(onwards-12, 0.88-11) dobj(drop-9, onwards-12) dep(onwards-12, leh-13) amod(thing-16, Poor-15) dep(leh-13, thing-16) nn(MRT-19, Now-18) dep(leh-13, MRT-19) advmod(pple-22, so-20) advmod(pple-22, many-21) amod(MRT-19, pple-22) dep(drop-9, Tell-24) dobj(Tell-24, me-25) nsubj(u-27, what-26) dep(Tell-24, u-27) xcomp(u-27, thinking-28) advmod(now-30, just-29) cc(drop-9, now-30) conj(drop-9, leh-31) dep(drop-9, Please-33)
nn(i-2, hahaha-1) nsubj(increased-3, i-2) root(ROOT-0, increased-3) prep(increased-3, by-4) pobj(by-4, 0.05-5) advmod(do-12, instead-6) mark(do-12, if-8) advmod(din-11, only-9) num(din-11, i-10) nsubj(do-12, din-11) advcl(increased-3, do-12) advmod(badly-14, too-13) advmod(do-12, badly-14) prep(do-12, for-15) pobj(for-15, 3214-16)
dep(get-3, how-1) aux(get-3, to-2) root(ROOT-0, get-3) prep(get-3, to-4) amod(chalet-6, yr-5) pobj(to-4, chalet-6) prep(get-3, from-7) pobj(from-7, orchard-8)
nsubj(come-2, wanna-1) xsubj(watch-7, wanna-1) root(ROOT-0, come-2) prep(come-2, to-3) poss(place-5, my-4) pobj(to-3, place-5) aux(watch-7, to-6) xcomp(come-2, watch-7) amod(goals-9, legod\u2019s-8) dobj(watch-7, goals-9)
amod(gona-3, Ya\u002c-1) amod(gona-3, it\u2019s-2) root(ROOT-0, gona-3) dep(u-7, b-4) amod(u-7, tough-5) number(tough-5, 4-6) dep(gona-3, u-7) amod(it\u2019s-10, Yeah\u002c-9) dep(gona-3, it\u2019s-10) poss(choice-13, my-11) amod(choice-13, first-12) dep(it\u2019s-10, choice-13) nn(y-16, Dunno-15) dep(it\u2019s-10, y-16) nn(oso-20, i-17) nn(oso-20, chose-18) nn(oso-20, tt-19) dep(y-16, oso-20)
nsubj(enjoy-17, Finished-1) dep(Finished-1, worked-2) prep(worked-2, on-4) poss(way-6, my-5) nsubj(going-7, way-6) pcomp(on-4, going-7) advmod(going-7, back-8) advmod(hungry-11, very-10) amod(leh-15, hungry-11) cc(hungry-11, and-12) advmod(tired-14, very-13) conj(hungry-11, tired-14) dep(worked-2, leh-15) root(ROOT-0, enjoy-17) poss(dinner-19, your-18) dobj(enjoy-17, dinner-19)
dep(got-5, so-1) nsubj(want-3, you-2) ccomp(so-1, want-3) root(ROOT-0, got-5) amod(alex-7, you\u002c-6) nsubj(got-5, alex-7) cc(alex-7, and-8) conj(alex-7, me-9)
nsubj(tahan-7, Haha-1) amod(dunno-5, Sounds-3) amod(dunno-5, crazy\u002c-4) dep(Haha-1, dunno-5) aux(tahan-7, can-6) root(ROOT-0, tahan-7) dobj(tahan-7, anot-8)
root(ROOT-0, Izit-1) nsubj(went-4, I-3) ccomp(Izit-1, went-4) parataxis(Izit-1, went-4) dep(went-4, e-5) dobj(went-4, shop-6) dobj(bought-8, shop-6) nsubj(bought-8, we-7) rcmod(shop-6, bought-8) cc(Izit-1, and-9) conj(Izit-1, look-10) amod(bucks-14, rite\u002c-11) nn(bucks-14, it\u2019s-12) num(bucks-14, 59-13) dobj(look-10, bucks-14)
dep(open-7, oh-1) dobj(oh-1, ya-2) nn(open-7, Got-4) nn(open-7, hip-5) nn(open-7, hop-6) dep(thinking-12, open-7) nn(i-10, Haha-9) nsubj(thinking-12, i-10) aux(thinking-12, was-11) root(ROOT-0, thinking-12) aux(go-14, can-13) ccomp(thinking-12, go-14) prep(go-14, for-15) pobj(for-15, jazz-16) advmod(zoom-18, then-17) vmod(jazz-16, zoom-18) aux(cine-20, to-19) xcomp(zoom-18, cine-20) dep(tonight-23, Actually-22) dep(cine-20, tonight-23) amod(leh-26, i\u2019m-24) amod(leh-26, free-25) dobj(go-14, leh-26) cc(there\u2019s-29, And-28) parataxis(thinking-12, there\u2019s-29) det(lesson-32, a-30) nn(lesson-32, kb-31) iobj(there\u2019s-29, lesson-32) dobj(there\u2019s-29, tonight-33)
amod(brother-2, Big-1) nsubj(call-3, brother-2) root(ROOT-0, call-3) cc(call-3, and-4) conj(call-3, ask-5) dobj(call-3, ah-6) dep(call-3, hui-7) prt(hui-7, out-8) amod(week-10, next-9) tmod(hui-7, week-10)
dep(right\u002c-2, ya-1) nsubj(right-7, right\u002c-2) nsubj(right-7, this-3) cop(right-7, is-4) neg(right-7, not-5) advmod(right-7, morally-6) root(ROOT-0, right-7)
root(ROOT-0, Yupz-1) nsubj(Help-8, Kaiez\u002c-3) dep(Help-8, i\u2019ll-4) dep(Help-8, b-5) nn(..-7, goin-6) nsubj(Help-8, ..-7) parataxis(Yupz-1, Help-8) xcomp(Yupz-1, Help-8) nsubj(tell-10, me-9) ccomp(Help-8, tell-10) dobj(tell-10, jo-11) nn(dun-15, Cos-13) nn(dun-15, i-14) nsubj(have-16, dun-15) dep(Help-8, have-16) dobj(have-16, her-17) dep(her-17, no-18)
amod(morning-2, good-1) dep(honey-3, morning-2) dep(give-5, honey-3) root(ROOT-0, give-5) dobj(give-5, u-6) det(morning-8, a-7) dep(u-6, morning-8) advmod(woke-12, kiss-9) nsubj(woke-12, I-11) dep(u-6, woke-12) prt(woke-12, up-13) cc(woke-12, and-14) aux(thinking-16, was-15) conj(woke-12, thinking-16) prep(thinking-16, of-17) pobj(of-17, you-18) advmod(give-5, too-19)
root(ROOT-0, Hey-1) nn(dun-6, Ur-3) nn(dun-6, food-4) nn(dun-6, sci-5) nsubj(have-7, dun-6) xsubj(bid-9, dun-6) dep(Hey-1, have-7) aux(bid-9, to-8) xcomp(have-7, bid-9) num(rite\u002cit\u2019s-12, 4-10) nn(rite\u002cit\u2019s-12, modules-11) dobj(bid-9, rite\u002cit\u2019s-12) prep(bid-9, given-13) pcomp(given-13, to-14) nn(chose-19, u-15) nn(chose-19, Cos-17) nn(chose-19, i-18) pobj(to-14, chose-19) dobj(den-23, chose-19) nn(sci\u002c-22, comp-20) nn(sci\u002c-22, life-21) nsubj(den-23, sci\u002c-22) rcmod(chose-19, den-23) det(modules-25, some-24) nsubj(same-26, modules-25) xcomp(den-23, same-26) prep(bid-9, as-27) pobj(as-27, u\u002c-28) dep(bid-9, c-29) mark(go-32, if-30) aux(go-32, can-31) advcl(have-7, go-32) dobj(go-32, lect-33) advmod(go-32, together-34) parataxis(have-7, :)-36)
advmod(know-4, how-1) aux(know-4, can-2) nsubj(know-4, i-3) root(ROOT-0, know-4)
root(ROOT-0, u-1) acomp(u-1, interested-2) prep(interested-2, in-3) pcomp(in-3, coming-4)
csubj(cos-10, Yong-1) nsubj(try-6, I-2) aux(try-6, might-3) neg(try-6, not-4) advmod(try-6, wana-5) ccomp(Yong-1, try-6) prep(try-6, for-7) amod(auditions-9, Blast-8) pobj(for-7, auditions-9) root(ROOT-0, cos-10) nsubj(blast-14, I-11) amod(blast-14, don\u2019t-12) nn(blast-14, suit-13) xcomp(cos-10, blast-14) cc(cos-10, and-15) nsubj(wanna-17, I-16) conj(cos-10, wanna-17) acomp(wanna-17, conc-18) prep(conc-18, on-19) pobj(on-19, studies-20) cc(cos-10, But-22) nn(shld-25, pls-23) nn(shld-25, u-24) nsubj(give-26, shld-25) conj(cos-10, give-26) iobj(give-26, it-27) det(w/o-30, a-28) nn(w/o-30, try-29) dobj(give-26, w/o-30) amod(dun-32, me\u002c-31) nsubj(miss-33, dun-32) rcmod(w/o-30, miss-33) iobj(miss-33, ur-34) amod(chance-36, final-35) dobj(miss-33, chance-36)
det(time-3, Which-1) amod(time-3, lect-2) nsubj(u-4, time-3) dep(dunno-9, u-4) dobj(u-4, bid-5) num(bid-5, 4-6) nsubj(dunno-9, I-8) root(ROOT-0, dunno-9) mark(take-18, if-10) amod(i-16, shld-11) nn(i-16, take-12) nn(i-16, gem-13) nn(i-16, tis-14) nn(i-16, sem\u002c-15) nsubj(take-18, i-16) aux(take-18, might-17) advcl(dunno-9, take-18) amod(leh-21, lor\u002c-19) nn(leh-21, u-20) dobj(take-18, leh-21)
amod(dat\u002c-4, I\u2019m-1) amod(dat\u002c-4, okay-2) nn(dat\u002c-4, wif-3) nsubj(want-8, dat\u002c-4) prep(dat\u002c-4, as-5) amod(u-7, long-6) pobj(as-5, u-7) root(ROOT-0, want-8) nsubj(liao-11, me-9) aux(liao-11, can-10) ccomp(want-8, liao-11)
nsubj(say-2, Ron-1) root(ROOT-0, say-2) amod(leh-4, fri-3) dep(say-2, leh-4) punct(leh-4, N-6) nsubj(said-8, he-7) dep(leh-4, said-8) amod(cant-12, ding-9) nn(cant-12, tai-10) nn(cant-12, feng-11) nsubj(make-13, cant-12) ccomp(said-8, make-13) dobj(make-13, reservations-14) cc(say-2, But-16) nsubj(said-18, he-17) conj(say-2, said-18) ccomp(said-18, wait-19) dobj(wait-19, lor-20)
dep(come-7, Me-1) det(la-4, no-2) nn(la-4, problem-3) nsubj(Me-1, la-4) nsubj(come-7, You-6) root(ROOT-0, come-7) prep(come-7, to-8) pobj(to-8, science-9)
root(ROOT-0, Oh-1) cc(went-6, but-3) nn(i-5, yest-4) nsubj(went-6, i-5) dep(Oh-1, went-6) prt(went-6, out-7) nsubj(meet-10, Cant-9) parataxis(went-6, meet-10) nn(lor\u002c-16, u-11) nn(lor\u002c-16, oso-12) num(lor\u002c-16, ..-13) nn(lor\u002c-16, Nxt-14) nn(lor\u002c-16, time-15) nsubj(got-18, lor\u002c-16) advmod(got-18, still-17) ccomp(meet-10, got-18) nn(..-21, lotsa-19) nn(..-21, time-20) dobj(got-18, ..-21)
root(ROOT-0, Hey-1) dep(Hey-1, I\u2019ll-3) dep(at-5, b-4) dep(Hey-1, at-5) dep(corner-7, e-6) dep(e-10, corner-7) num(corner-7, lor\u002c-8) neg(e-10, not-9) dep(fren-21, e-10) dobj(e-10, middle-11) advmod(dun-14, So-13) parataxis(e-10, dun-14) dep(la-16, worry-15) dobj(dun-14, la-16) nn(fren-21, Din-18) nn(fren-21, c-19) nn(fren-21, ur-20) pobj(at-5, fren-21) advmod(fren-21, though-22)
aux(going-3, are-1) nsubj(going-3, you-2) root(ROOT-0, going-3) prep(going-3, for-4) det(gathering-6, the-5) nn(??-7, gathering-6) pobj(for-4, ??-7)
poss(m-4, My-1) amod(m-4, dear\u002c-2) nn(m-4, i-3) nsubj(Add-13, m-4) vmod(m-4, going-5) aux(lit-7, to-6) xcomp(going-5, lit-7) advmod(are-10, How-9) ccomp(lit-7, are-10) parataxis(lit-7, are-10) nsubj(are-10, u-11) root(ROOT-0, Add-13) dobj(Add-13, oil-14) prep(Add-13, for-15) poss(lecture-17, your-16) pobj(for-15, lecture-17)
nsubj(change-4, now-1) advmod(change-4, still-2) aux(change-4, can-3) root(ROOT-0, change-4)
aux(tell-3, Can-1) nsubj(tell-3, you-2) xsubj(practice-7, you-2) root(ROOT-0, tell-3) dobj(tell-3, me-4) advmod(practice-7, how-5) aux(practice-7, to-6) xcomp(tell-3, practice-7) num(mudita-10, Metta\u002c-8) amod(mudita-10, karuna\u002c-9) dobj(practice-7, mudita-10) cc(mudita-10, and-11) conj(mudita-10, mindfulness-12) prep(practice-7, in-13) amod(life-15, daily-14) pobj(in-13, life-15)
num(seatin-2, I\u2019m-1) root(ROOT-0, seatin-2) prep(seatin-2, at-3) dep(side-6, e-4) amod(side-6, right-5) dep(front-9, side-6) advmod(front-9, Quite-8) dep(at-3, front-9) dep(front-9, Shld-11) dep(find-15, b-12) advmod(find-15, ez-13) aux(find-15, to-14) dep(Shld-11, find-15) nn(reachin-18, U-17) dep(seatin-2, reachin-18)
dep(meet-8, Ok-1) advmod(Ok-1, then-2) nsubj(Ok-1, we-3) dep(Ok-1, cancel-4) dobj(cancel-4, lor-5) nsubj(meet-8, We-7) root(ROOT-0, meet-8) det(time-10, another-9) nsubj(w-11, time-10) ccomp(meet-8, w-11) amod(ppl-13, more-12) dobj(w-11, ppl-13)
dep(have-8, Thanks-1) prep(Thanks-1, for-2) det(info-4, the-3) pobj(for-2, info-4) aux(have-8, Do-6) nsubj(have-8, you-7) root(ROOT-0, have-8) det(books-11, some-9) nn(books-11, reference-10) dobj(have-8, books-11) mark(refer-15, that-12) nsubj(refer-15, I-13) aux(refer-15, can-14) ccomp(have-8, refer-15) prep(refer-15, to-16) prep(refer-15, for-17) amod(details-19, more-18) pobj(for-17, details-19)
root(ROOT-0, Hey-1) amod(movie-4, Tmr\u2019s-3) dep(Hey-1, movie-4) advmod(on-6, still-5) rcmod(movie-4, on-6)
dep(show-5, Waiting-1) dobj(Waiting-1, 4-2) poss(tv-4, my-3) nsubj(show-5, tv-4) root(ROOT-0, show-5) num(lor-8, 2-6) nn(lor-8, start-7) dobj(show-5, lor-8) nsubj(leh-11, U-10) parataxis(show-5, leh-11) advmod(leh-11, still-12) dep(leh-11, busy-13) dep(busy-13, doing-14) nn(report-16, ur-15) dobj(doing-14, report-16)
nsubj(poly-2, Which-1) root(ROOT-0, poly-2) dep(goin-4, she-3) dep(poly-2, goin-4) prep(goin-4, to-5) cc(goin-4, But-7) nn(stayin-9, u-8) nsubj(mah-22, stayin-9) prep(stayin-9, in-10) pobj(in-10, hostel-11) advmod(half-13, so-12) advmod(mah-22, half-13) dep(b-18, e-14) nn(u-16, time-15) nsubj(b-18, u-16) aux(b-18, will-17) dep(half-13, b-18) advmod(away-21, so-19) advmod(away-21, far-20) advmod(b-18, away-21) conj(goin-4, mah-22) amod(wana-25, Haha\u002c-24) dobj(mah-22, wana-25) parataxis(mah-22, wana-25) dep(wana-25, c-26) advmod(look-30, how-27) poss(bf-29, her-28) nsubj(look-30, bf-29) ccomp(poly-2, look-30) dobj(look-30, lk-31)
amod(i\u2019m-3, Hi-1) amod(i\u2019m-3, shan\u002c-2) root(ROOT-0, i\u2019m-3) dobj(make-7, i\u2019m-3) nn(can\u2019t-6, sorry-4) nn(can\u2019t-6, i-5) nsubj(make-7, can\u2019t-6) rcmod(i\u2019m-3, make-7) nsubj(tmr-9, it-8) xcomp(make-7, tmr-9) vmod(tmr-9, Going-11) aux(do-13, to-12) xcomp(Going-11, do-13) poss(afternoon-17, my-14) nn(afternoon-17, hair-15) nn(afternoon-17, tmr-16) dobj(do-13, afternoon-17) dep(i\u2019m-3, See-19) nsubj(tmr-21, you-20) rcmod(See-19, tmr-21) tmod(tmr-21, night-22) prep(tmr-21, for-23) nn(okie-25, dinner-24) pobj(for-23, okie-25) nn(Luck-28, Good-27) dep(i\u2019m-3, Luck-28)
discourse(n-6, Good-1) dep(Good-1, luck-2) num(ur-4, 4-3) nsubj(n-6, ur-4) advmod(n-6, first-5) dep(enjoy-20, n-6) amod(paper-8, last-7) dobj(n-6, paper-8) dobj(go-16, paper-8) amod(jus-11, (^\u002c^)-10) dep(paper-8, jus-11) amod(hours-14, few-12) amod(hours-14, more-13) nsubj(go-16, hours-14) dep(hours-14, 2-15) rcmod(paper-8, go-16) advmod(go-16, then-17) nsubj(enjoy-20, u-18) aux(enjoy-20, can-19) root(ROOT-0, enjoy-20) advmod(enjoy-20, already-21)
nsubj(going-2, I-1) xsubj(meet-4, I-1) root(ROOT-0, going-2) aux(meet-4, to-3) xcomp(going-2, meet-4) dobj(meet-4, xyan-5) mark(pei-9, for-6) nsubj(pei-9, dinner\u002c-7) advmod(pei-9, just-8) advcl(meet-4, pei-9) nsubj(eat-11, her-10) ccomp(pei-9, eat-11) amod(..-14, only-12) nn(..-14, k-13) dobj(eat-11, ..-14)
dep(go-3, really-1) nn(go-3, cannot-2) dep(time-6, go-3) amod(time-6, long-5) dep(meet-8, time-6) neg(meet-8, never-7) root(ROOT-0, meet-8) dobj(meet-8, u-9) advmod(....-11, already-10) vmod(u-9, ....-11) dobj(....-11, :(-12)
nsubj(got-2, Jenny-1) root(ROOT-0, got-2) det(rrom-4, a-3) dobj(got-2, rrom-4) prep(rrom-4, at-5) nn(I\u2019m-8, kr-6) pobj(at-5, I\u2019m-8) vmod(I\u2019m-8, sleeping-9) prep(sleeping-9, in-10) poss(room-12, her-11) pobj(in-10, room-12) dobj(sleeping-9, tonight-13) dep(rrom-4, Haha-15) mark(sleep-22, If-17) nsubj(sleep-22, i\u2019m-18) prep(i\u2019m-18, in-19) nn(wont-21, hall-20) pobj(in-19, wont-21) advcl(got-2, sleep-22) advmod(early-24, so-23) amod(lah-25, early-24) dobj(sleep-22, lah-25)
nsubj(reach-2, Pls-1) root(ROOT-0, reach-2) advmod(reach-2, here-3) nn(..-5, asap-4) dobj(reach-2, ..-5) dobj(going-8, ..-5) nsubj(going-8, we-6) aux(going-8, are-7) rcmod(..-5, going-8) prt(going-8, off-9) advmod(going-8, soon-10) advmod(going-8, ..-11)
nsubj(I\u2019m-8, Aiyo-1) poss(lesson-4, Her-3) dep(Aiyo-1, lesson-4) advmod(early-6, so-5) amod(lesson-4, early-6) root(ROOT-0, I\u2019m-8) advmod(I\u2019m-8, still-9) amod(haha-11, sleepin\u002c-10) dobj(I\u2019m-8, haha-11) amod(u-14, Okie\u002c-13) nsubj(go-15, u-14) parataxis(I\u2019m-8, go-15) nn(den-18, home-16) nn(den-18, liao-17) nsubj(confirm-19, den-18) ccomp(go-15, confirm-19) dobj(confirm-19, w-20) nsubj(lor-22, me-21) dep(confirm-19, lor-22)
num(ur-2, oh\u002c-1) npadvmod(no-3, ur-2) advmod(is-4, no-3) root(ROOT-0, is-4) advmod(is-4, on-5) dep(got-9, e-6) nn(i-8, leaflet-7) nsubj(got-9, i-8) dep(is-4, got-9) prep(got-9, from-10) amod(fair-13, e-11) amod(fair-13, matric-12) pobj(from-10, fair-13)
nsubj(call-13, Wake-1) advmod(already-3, up-2) advmod(On-5, already-3) rcmod(Wake-1, On-5) poss(way-7, my-6) pobj(On-5, way-7) dep(I-10, there-8) dep(Wake-1, I-10) aux(call-13, did-11) neg(call-13, not-12) root(ROOT-0, call-13) dobj(call-13, them-14) mark(overslept-17, because-15) nsubj(overslept-17, i-16) advcl(call-13, overslept-17)
discourse(said-4, Oh-1) poss(fren-3, my-2) nsubj(said-4, fren-3) advcl(b-10, said-4) ccomp(said-4, go-5) advmod(go-5, earlier-6) pobj(earlier-6, cos-7) expl(b-10, there-8) aux(b-10, will-9) root(ROOT-0, b-10) det(queue-13, a-11) amod(queue-13, long-12) dobj(b-10, queue-13) nsubj(b-10, queue-13)
poss(m-6, My-1) amod(m-6, dear\u002c-2) amod(m-6, good-3) amod(m-6, afternoon\u002c-4) amod(m-6, i-5) nsubj(happy-18, m-6) vmod(m-6, going-7) aux(eat-9, to-8) xcomp(going-7, eat-9) advmod(eat-9, then-10) ccomp(eat-9, take-11) dobj(take-11, bus-12) prep(take-11, to-13) amod(i-15, school\u002c-14) pobj(to-13, i-15) cop(happy-18, m-16) advmod(happy-18, very-17) root(ROOT-0, happy-18) mark(see-22, that-19) nsubj(see-22, i-20) aux(see-22, can-21) ccomp(happy-18, see-22) iobj(see-22, u-23) dobj(see-22, tonight-24)
det(length-2, The-1) nsubj(same-5, length-2) cop(same-5, is-3) advmod(same-5, e-4) dep(wan-28, same-5) cc(same-5, but-6) dep(top-8, e-7) dep(n-10, top-8) amod(n-10, shorter-9) dep(got-12, n-10) punct(got-12, i-11) dep(thk-18, got-12) det(fringe-14, a-13) dobj(got-12, fringe-14) advmod(got-12, now-15) nsubj(thk-18, I-17) conj(same-5, thk-18) dobj(thk-18, i\u2019m-19) dep(thk-18, not-20) amod(liao-22, going-21) dep(not-20, liao-22) advmod(lazy-25, Too-24) dep(not-20, lazy-25) nsubj(wan-28, Dun-27) root(ROOT-0, wan-28) num(u-31, 2-29) amod(u-31, distract-30) dobj(wan-28, u-31) advmod(wan-28, also-32)
root(ROOT-0, want-1) advmod(manyt-3, so-2) amod(ppl-4, manyt-3) dobj(want-1, ppl-4) aux(notice-6, to-5) xcomp(want-1, notice-6) dobj(notice-6, her-7) prep(notice-6, for-8) pobj(for-8, what-9)
dep(see-4, Oh-1) nsubj(see-4, I-3) root(ROOT-0, see-4) cc(see-4, So-6) advmod(meet-9, when-7) nsubj(meet-9, we-8) advcl(look-13, meet-9) cc(look-13, Or-11) nsubj(look-13, you-12) conj(see-4, look-13) prep(look-13, for-14) pobj(for-14, me-15) prep(look-13, at-16) pobj(at-16, ea-17) cc(look-13, and-18) nsubj(go-20, we-19) conj(look-13, go-20) advmod(go-20, together-21)
root(ROOT-0, Sorry-1) nsubj(make-4, cant-3) dep(Sorry-1, make-4) dobj(make-4, it-5) tmod(make-4, today-6)
nsubj(send-2, sony-1) xsubj(steal-5, sony-1) root(ROOT-0, send-2) dobj(send-2, spy-3) aux(steal-5, to-4) xcomp(send-2, steal-5) prep(steal-5, from-6) pobj(from-6, you-7)
dep(borrow-4, hey-1) aux(borrow-4, can-2) nsubj(borrow-4, i-3) root(ROOT-0, borrow-4) det(book-7, the-5) nn(book-7, text-6) dobj(borrow-4, book-7) prep(borrow-4, from-8) pobj(from-8, u-9) dep(borrow-4, i-11) advmod(i-11, wan-12) prep(i-11, to-13) pobj(to-13, zap-14) aux(meet-18, can-16) nsubj(meet-18, i-17) dep(zap-14, meet-18) amod(tonight-20, u-19) dobj(meet-18, tonight-20) advmod(u-24, where-22) aux(u-24, will-23) advcl(i-11, u-24) dep(u-24, b-25)
root(ROOT-0, Book-1) dep(lesson-3, which-2) advcl(msg-7, lesson-3) advmod(msg-7, then-5) nsubj(msg-7, you-6) dep(Book-1, msg-7) dobj(msg-7, me-8) nsubj(call-12, I-10) aux(call-12, will-11) conj(msg-7, call-12) prt(call-12, up-13) prep(call-12, after-14) pobj(after-14, work-15) cc(msg-7, or-16) dep(PX3748-28, sth-17) nsubj(going-20, I\u2019m-19) xsubj(get-22, I\u2019m-19) dep(sth-17, going-20) aux(get-22, to-21) xcomp(going-20, get-22) dobj(get-22, specs-23) poss(membership-26, My-25) nsubj(PX3748-28, membership-26) cop(PX3748-28, is-27) conj(msg-7, PX3748-28)
dep(think-5, Haha-1) nsubj(think-5, I-3) advmod(think-5, also-4) root(ROOT-0, think-5) advmod(think-5, so-6) nsubj(keep-9, I-8) ccomp(think-5, keep-9) parataxis(think-5, keep-9) dobj(keep-9, some-10) prep(some-10, of-11) amod(leafs-13, e-12) pobj(of-11, leafs-13) prep(keep-9, for-14) pobj(for-14, u-15)
root(ROOT-0, Wishing-1) nsubj(Year-7, you-2) det(Year-7, a-3) amod(Year-7, blessed-4) amod(Year-7, Chinese-5) nn(Year-7, New-6) xcomp(Wishing-1, Year-7) prep(Wishing-1, to-8) pobj(to-8, you-9) cc(you-9, and-10) poss(family-12, your-11) conj(you-9, family-12)
discourse(drop-10, hi-1) npadvmod(with-7, dan-2) dep(dan-2, need-4) poss(help-6, your-5) dobj(need-4, help-6) dep(hi-1, with-7) pobj(with-7, 3240-8) root(ROOT-0, drop-10) dep(msg-13, me-11) det(msg-13, a-12) dobj(drop-10, msg-13) advmod(free-17, when-14) nsubj(free-17, you-15) cop(free-17, are-16) advcl(drop-10, free-17)
nn(NICE-5, Free-1) nn(NICE-5, temple-2) nn(NICE-5, food\u002c-3) nn(NICE-5, NICE-4) root(ROOT-0, NICE-5) amod(hARI-8, aNYWAY\u002c-7) dep(NICE-5, hARI-8) vmod(NICE-5, RAYA-9) xcomp(RAYA-9, coming-10) prep(coming-10, soon-11) dep(soon-11, leh-12) dep(leh-12, Geylang-14) advmod(got-16, here-15) vmod(Geylang-14, got-16) nn(BAZAAR-19, HARI-17) nn(BAZAAR-19, RAYA-18) dobj(got-16, BAZAAR-19) cc(BAZAAR-19, &-20) advmod(on-22, so-21) conj(BAZAAR-19, on-22) dep(leh-12, hee-24) dep(Geylang-31, later-26) nn(Geylang-31, da-27) nn(Geylang-31, bAO-28) nn(Geylang-31, dinner-29) nn(Geylang-31, fr-30) dep(NICE-35, Geylang-31) amod(NICE-35, Mmm-33) dep(NICE-5, NICE-35)
nn(good\u002c-4, ok-1) nn(good\u002c-4, tats-3) nsubj(cya-5, good\u002c-4) root(ROOT-0, cya-5) advmod(cya-5, then-6) dep(cya-5, babe-7)
amod(lor-2, yeah-1) root(ROOT-0, lor-2) prep(lor-2, like-4) pobj(like-4, it-5) det(lot-7, a-6) dep(it-5, lot-7)
nn(i-3, okie-1) nsubj(need-4, i-3) xsubj(find-6, i-3) root(ROOT-0, need-4) aux(find-6, to-5) xcomp(need-4, find-6) det(readings-8, some-7) dobj(find-6, readings-8) vmod(readings-8, (-9) advmod((-9, again-10) advmod(first-13, )-12) amod(readings-8, first-13)
nsubj(sorrie-2, hmmm-1) root(ROOT-0, sorrie-2) iobj(sorrie-2, I-3) amod(juz-6, can\u2019t-4) nn(juz-6, cfm-5) dobj(sorrie-2, juz-6) prep(juz-6, as-7) pobj(as-7, yet-8) amod(rite-13, it\u2019s-10) amod(rite-13, free-11) nn(rite-13, entry-12) dep(juz-6, rite-13)
dep(give-19, Hey-1) prep(Hey-1, remember-2) det(girl-4, the-3) pobj(remember-2, girl-4) ref(girl-4, who-5) nsubj(talking-7, who-5) aux(talking-7, was-6) rcmod(girl-4, talking-7) prep(talking-7, with-8) pobj(with-8, us-9) prep(talking-7, after-10) det(lecture-13, the-11) amod(lecture-13, first-12) pobj(after-10, lecture-13) prep(lecture-13, of-14) pobj(of-14, 4252-15) aux(give-19, Can-17) nsubj(give-19, you-18) root(ROOT-0, give-19) iobj(give-19, me-20) poss(name-22, her-21) dobj(give-19, name-22) cc(name-22, and-23) nn(number-25, contact-24) conj(name-22, number-25)
root(ROOT-0, Huh-1) nsubj(cannot-5, 6-3) advmod(cannot-5, also-4) dep(Huh-1, cannot-5) punct(Huh-1, Then-7) advmod(how-9, only-8) dep(mistakes-11, how-9) amod(mistakes-11, many-10) dep(Huh-1, mistakes-11)
nsubj(wan-2, you-1) root(ROOT-0, wan-2) det(one-5, the-3) amod(one-5, black-4) dobj(wan-2, one-5) cc(one-5, or-6) num(one-8, white-7) conj(one-5, one-8)
amod(lor-2, ya-1) root(ROOT-0, lor-2) prep(lor-2, as-4) poss(friends-6, my-5) nsubj(doing-7, friends-6) pcomp(as-4, doing-7) nn(job-9, agency-8) dobj(doing-7, job-9) advmod(many-11, then-10) nsubj(got-14, many-11) prep(many-11, of-12) pobj(of-12, them-13) rcmod(job-9, got-14) amod(tutor-16, more-15) dobj(got-14, tutor-16) prep(tutor-16, than-17) pobj(than-17, student-18)
nsubj(think-2, i-1) root(ROOT-0, think-2) det(need-4, no-3) nsubj(lah-5, need-4) ccomp(think-2, lah-5) nn(i-7, ..-6) nsubj(go-8, i-7) ccomp(lah-5, go-8) advmod(go-8, borrows-9) prep(go-8, from-10) pobj(from-10, steve-11)
root(ROOT-0, Owe-1) dep($19-3, me-2) dep(Owe-1, $19-3) nsubj(Btw-15, Cloth-5) cop(Btw-15, is-6) nn(Btw-15, 9-7) cc(9-7, and-8) nsubjpass(estimated-11, costume-9) auxpass(estimated-11, is-10) conj(9-7, estimated-11) prep(estimated-11, at-12) pobj(at-12, 10-13) parataxis($19-3, Btw-15) nsubj(owe-17, we-16) parataxis($19-3, owe-17) iobj(owe-17, James-18) dobj(owe-17, $-19) quantmod(studiow-21, for-20) num($-19, studiow-21) amod(too\u002c-23, rental-22) nsubj(dat-24, too\u002c-23) parataxis($19-3, dat-24) dobj(dat-24, one-25) dobj(collect-27, one-25) nsubj(collect-27, he-26) rcmod(one-25, collect-27) prep(collect-27, from-28) pobj(from-28, us-29) advmod(collect-27, separately-30)
nsubj(ah-4, I-1) cop(ah-4, am-2) nn(ah-4, company-3) root(ROOT-0, ah-4) vmod(ah-4, boa-5) aux(check-7, to-6) xcomp(boa-5, check-7) prt(check-7, up-8) dobj(doing-12, what-9) aux(doing-12, are-10) nsubj(doing-12, you-11) ccomp(check-7, doing-12) advmod(boa-5, still-14) prep(boa-5, in-15) poss(dreaming-17, your-16) pobj(in-15, dreaming-17)
nn(dunno-4, wah-1) nn(dunno-4, liao-2) nn(dunno-4, i-3) nsubj(death-26, dunno-4) advmod(bother-7, why-5) nsubj(bother-7, you-6) xsubj(include-9, you-6) advcl(death-26, bother-7) aux(include-9, to-8) xcomp(bother-7, include-9) dobj(include-9, him-10) prep(include-9, in-11) poss(group-13, our-12) pobj(in-11, group-13) advmod(likes-17, when-14) det(one-16, no-15) nsubj(likes-17, one-16) advcl(include-9, likes-17) dobj(likes-17, him-18) amod(arghhhhhhhhh-20, !!-19) dep(likes-17, arghhhhhhhhh-20) nsubj(death-26, you-22) aux(death-26, will-23) cop(death-26, be-24) det(death-26, the-25) root(ROOT-0, death-26) prep(death-26, of-27) pobj(of-27, me-28)
nsubj(sitting-3, we-1) aux(sitting-3, are-2) root(ROOT-0, sitting-3) prep(sitting-3, near-4) det(door-7, the-5) amod(door-7, back-6) pobj(near-4, door-7) dobj(come-10, door-7) expl(come-10, there-8) advmod(come-10, ..-9) rcmod(door-7, come-10) dep(come-10, find-11) nsubj(hor-13, us-12) ccomp(find-11, hor-13)
root(ROOT-0, Ok-1) dep(me-4, Then-3) dep(wait-5, me-4) dep(enj-13, wait-5) prt(wait-5, up-6) prep(wait-5, for-7) pobj(for-7, u-8) dep(wait-5, kk-10) dobj(kk-10, dnr-11) dep(Ok-1, enj-13) det(show-15, the-14) dobj(enj-13, show-15) nsubj(Ok-1, Bedtime-17) advmod(show-19, when-18) dep(Ok-1, show-19) dobj(show-19, end-20)
det(part-3, Finish-1) nn(part-3, e-2) nsubj(dat-4, part-3) root(ROOT-0, dat-4) nn(yest-7, i-5) nn(yest-7, missed-6) dobj(dat-4, yest-7) dobj(want-12, yest-7) nn(U-10, liao-8) nsubj(want-12, U-10) advmod(want-12, still-11) rcmod(yest-7, want-12) nsubj(go-14, 2-13) ccomp(want-12, go-14) prt(go-14, out-15)
poss(i-3, My-1) amod(i-3, dear\u002c-2) nsubj(finished-5, i-3) aux(finished-5, have-4) root(ROOT-0, finished-5) xcomp(finished-5, meeting-6) advmod(meeting-6, too-7) advmod(going-10, Now-9) parataxis(finished-5, going-10) prep(going-10, to-11) pobj(to-11, nuh-12)
advmod(smsing-2, Nothing\u002c-1) root(ROOT-0, smsing-2) nn(u-14, u-3) nn(u-14, n-4) nn(u-14, xy-5) nn(u-14, lor-6) nn(u-14, Sorry-8) nn(u-14, lor-9) nn(u-14, da-10) nn(u-14, guys-11) nn(u-14, neva-12) nn(u-14, c-13) dobj(smsing-2, u-14) prep(u-14, in-15) pobj(in-15, person-16) cc(smsing-2, but-17) nsubj(know-21, they-18) dep(of-20, sort-19) advmod(know-21, of-20) conj(smsing-2, know-21) nn(lor-23, u-22) dobj(know-21, lor-23) dep(smsing-2, So-25) nn(wan-27, u-26) nsubj(meet-29, wan-27) num(wan-27, 2-28) ccomp(smsing-2, meet-29) parataxis(smsing-2, meet-29) nsubj(xy-31, them-30) ccomp(meet-29, xy-31) ccomp(xy-31, ask-32) dobj(ask-32, me-33) nsubj(bring-35, 2-34) dep(ask-32, bring-35) dobj(bring-35, u-36) prep(bring-35, along-37) pobj(along-37, 4-38) poss(meeting-41, our-39) amod(meeting-41, next-40) dep(ask-32, meeting-41)
amod(night-2, last-1) dep(called-4, night-2) nsubj(called-4, I-3) root(ROOT-0, called-4) acomp(called-4, you\u002c-5) cc(called-4, but-6) nsubj(switch-8, you-7) conj(called-4, switch-8) prt(switch-8, off-9) dobj(switch-8, fon-10)
root(ROOT-0, Yeah-1) aux(read-28, can-3) nn(half-5, pig-4) nsubj(read-28, half-5) det(hr-7, an-6) npadvmod(more-8, hr-7) advmod(half-5, more-8) dep(half-5, tmr-9) nn(wah\u002cwork-11, :p-10) dobj(tmr-9, wah\u002cwork-11) mark(take-14, till-12) nsubj(take-14, 3am\u002cbetter-13) advcl(tmr-9, take-14) dobj(take-14, care-15) prep(care-15, of-16) amod(health-19, ??-17) nn(health-19, r-18) pobj(of-16, health-19) dep(take-14, ah-20) mark(zzz-25, so-22) amod(cant-24, ??-23) nsubj(zzz-25, cant-24) dep(ah-20, zzz-25) advmod(zzz-25, now-26) dep(Yeah-1, read-28) det(text-31, some-29) amod(text-31, fiction\u002cor-30) dobj(read-28, text-31) nsubj(zzz-34, bk\u002csure-32) aux(zzz-34, can-33) rcmod(text-31, zzz-34) dobj(zzz-34, :p-35)
root(ROOT-0, Haha\u002cjuz-1) dep(tot-16, now-2) advmod(beside\u002c-13, when-3) nn(m-6, msg-5) nsubj(beside\u002c-13, m-6) prep(m-6, via-8) amod(ta-11, intranet\u002cmy-9) nn(ta-11, lab-10) pobj(via-8, ta-11) cop(beside\u002c-13, was-12) dep(now-2, beside\u002c-13) nsubj(tot-16, he-15) ccomp(Haha\u002cjuz-1, tot-16) nsubj(discuss-18, i-17) ccomp(tot-16, discuss-18) nn(?...-21, ans-19) nn(?...-21, w-20) dobj(discuss-18, ?...-21) cc(discuss-18, but-22) conj(discuss-18, doesnt-23) nn(vv-27, matter-24) nn(vv-27, cos-25) nn(vv-27, he\u2019s-26) nsubj(nice-28, vv-27) xcomp(doesnt-23, nice-28) nn(??-31, h-30) nsubj(teach-34, ??-31) amod(time-33, \u002cnext-32) nsubj(teach-34, time-33) parataxis(tot-16, teach-34) amod(how2use-37, m-35) dep(Haha\u002cjuz-1, how2use-37)
nsubj(ü-2, R-1) root(ROOT-0, ü-2) nsubj(going-4, all-3) dep(ü-2, going-4) prep(going-4, for-5) nn(tmr-8, bio-6) nn(tmr-8, lecture-7) pobj(for-5, tmr-8) amod(tmr-8, Got-10) det(rite-14, no-11) advmod(assignments-13, more-12) amod(rite-14, assignments-13) dep(tmr-8, rite-14)
dep(pray-34, Now-1) prep(Now-1, at-2) nn(Serai-4, Geylang-3) pobj(at-2, Serai-4) vmod(Serai-4, crossing-6) det(\u2019bridge\u2019\u002c-8, the-7) nsubj(getting-9, \u2019bridge\u2019\u002c-8) vmod(crossing-6, getting-9) dep(reminds-12, e-10) nsubj(reminds-12, \u2019chop\u2019-11) dep(Now-1, reminds-12) dobj(reminds-12, me-13) prep(reminds-12, of-14) poss(days-18, my-15) amod(days-18, primary-16) nn(days-18, school-17) pobj(of-14, days-18) dep(pray-34, Used-20) dep(is-27, 2-21) mark(is-27, like-22) nsubj(is-27, it-23) cc(it-23, &-24) advmod(here-26, moreover-25) conj(it-23, here-26) ccomp(Used-20, is-27) prep(is-27, near-28) poss(school-30, my-29) pobj(near-28, school-30) punct(pray-34, U-32) det(pray-34, no-33) root(ROOT-0, pray-34)
nsubj(Den-6, Oh-1) nn(lor-4, Ok-3) dep(Oh-1, lor-4) root(ROOT-0, Den-6) advmod(make-10, when-7) nsubj(make-10, she-8) aux(make-10, can-9) advcl(is-16, make-10) dobj(make-10, it-11) amod(qet-15, Oh\u002c-13) amod(qet-15, e-14) nsubj(is-16, qet-15) ccomp(Den-6, is-16) prep(is-16, on-17) amod(izit-19, wed-18) pobj(on-17, izit-19)
amod(duno-2, i-1) nsubj(got-11, duno-2) advmod(long-4, how-3) advmod(lasts.im-6, long-4) nsubj(lasts.im-6, it-5) rcmod(duno-2, lasts.im-6) xcomp(lasts.im-6, going-7) dobj(going-7, coz-8) amod(evening-10, later-9) tmod(lasts.im-6, evening-10) root(ROOT-0, got-11) dobj(got-11, dance-12)
aux(u-2, Can-1) dep(me-4, u-2) dep(u-2, call-3) dep(am-7, me-4) nsubj(am-7, I-6) root(ROOT-0, am-7) prep(am-7, out-8) pcomp(out-8, of-9) pobj(of-9, credit-10)
prep(have-5, As-1) det(punishment-3, a-2) pobj(As-1, punishment-3) nsubj(have-5, you-4) xsubj(go-7, you-4) root(ROOT-0, have-5) aux(go-7, to-6) xcomp(have-5, go-7) cc(go-7, and-8) conj(go-7, check-9) det(answer-11, the-10) dobj(check-9, answer-11) prep(answer-11, on-12) det(topic-14, the-13) pobj(on-12, topic-14)
amod(u-2, Wish-1) nsubj(bring-18, u-2) amod(family-5, n-3) nn(family-5, ur-4) dep(u-2, family-5) det(health-11, a-6) amod(health-11, prosperous-7) amod(health-11, new-8) amod(health-11, year\u002c-9) amod(health-11, good-10) dep(family-5, health-11) cc(family-5, and-12) advmod(family-5, also-13) conj(family-5, also-13) aux(bring-18, may-14) dep(yr-17, e-15) nn(yr-17, monkey-16) dep(bring-18, yr-17) root(ROOT-0, bring-18) iobj(bring-18, us-19) amod(romance-21, good-20) dobj(bring-18, romance-21)
nsubj(late-3, Ill-1) cop(late-3, be-2) dep(reach-6, late-3) nsubj(reach-6, U-5) root(ROOT-0, reach-6) advmod(already-8, where-7) dep(reach-6, already-8)
nsubj(paid-3, I-1) aux(paid-3, have-2) root(ROOT-0, paid-3) cc(paid-3, and-4) conj(paid-3, sent-5) dobj(paid-3, receipt-6) prep(paid-3, to-7) pobj(to-7, you-8)
nsubj(feeling-4, I-1) aux(feeling-4, am-2) neg(feeling-4, not-3) root(ROOT-0, feeling-4) advmod(feeling-4, well-5)
root(ROOT-0, Hey-1) aux(going-5, are-3) nsubj(going-5, you-4) xsubj(quit-7, you-4) dep(Hey-1, going-5) aux(quit-7, to-6) xcomp(going-5, quit-7) advmod(quit-7, soon-8) dep(going-5, Xuhui-10) cc(Xuhui-10, and-11) amod(working-13, i-12) conj(Xuhui-10, working-13) prep(Xuhui-10, till-14) pobj(till-14, end-15) dep(going-5, of-16) det(month-18, the-17) pobj(of-16, month-18)
nn(lor\u002c-2, Anything-1) nsubj(u-4, lor\u002c-2) advmod(u-4, once-3) root(ROOT-0, u-4) acomp(u-4, ready-5) nn(u-7, den-6) nsubj(come-8, u-7) ccomp(ready-5, come-8) advmod(come-8, lah-9)
nsubj(want-2, you-1) xsubj(go-4, you-1) root(ROOT-0, want-2) aux(go-4, to-3) xcomp(want-2, go-4) nn(house-6, jo-5) dobj(go-4, house-6) dep(house-6, later-7) prep(go-4, after-9) pobj(after-9, eleven-10)
amod($1000\u002c-2, ard-1) root(ROOT-0, $1000\u002c-2) num(times-4, 2-3) dep(wk-6, times-4) det(wk-6, a-5) dep(confirm-10, wk-6) nsubj(confirm-10, they-8) advmod(confirm-10, already-9) dep($1000\u002c-2, confirm-10)
amod(workin-2, u-1) root(ROOT-0, workin-2) advmod(right-4, now-3) amod(workin-2, right-4)
amod(dear-3, Happy-1) nn(dear-3, birthday-2) root(ROOT-0, dear-3) dep(dear-3, May-5) nsubj(mature-9, you-6) cop(mature-9, be-7) advmod(mature-9, more-8) rcmod(May-5, mature-9) prep(mature-9, as-10) nn(passes-12, time-11) pobj(as-10, passes-12) dep(dear-3, May-14) nsubj(enjoy-16, you-15) rcmod(May-14, enjoy-16) amod(joy-18, abundant-17) dobj(enjoy-16, joy-18) cc(joy-18, and-19) conj(joy-18, happiness-20) dep(dear-3, -)-22)
root(ROOT-0, Or-1) amod(u-3, else-2) dep(Or-1, u-3) aux(come-5, can-4) rcmod(u-3, come-5) aux(icq-7, to-6) xcomp(come-5, icq-7) advmod(icq-7, then-8) nsubj(discuss-10, we-9) ccomp(come-5, discuss-10) advmod(discuss-10, again-11) prep(discuss-10, for-12) det(time-15, the-13) amod(time-15, last-14) pobj(for-12, time-15) prep(time-15, for-16) det(project-18, the-17) pobj(for-16, project-18) dep(edit-21, Then-20) dep(Ok-30, edit-21) det(product-24, the-22) amod(product-24, final-23) dobj(edit-21, product-24) advmod(file-27, print\u002c-26) dep(edit-21, file-27) dobj(file-27, it-28) dep(u-3, Ok-30)
root(ROOT-0, So-1) nn(n-4, wat-2) nn(n-4, time-3) dep(So-1, n-4) advmod(meet-8, where-5) nn(wan-7, u-6) nsubj(meet-8, wan-7) rcmod(n-4, meet-8) dobj(meet-8, me-9)
nn(Might-3, Hmmm-1) nn(Might-3, ....-2) nsubj(recognize-4, Might-3) root(ROOT-0, recognize-4) dobj(recognize-4, her-5) mark(happen-8, if-6) nsubj(happen-8, i-7) xsubj(c-10, i-7) advcl(recognize-4, happen-8) aux(c-10, to-9) xcomp(happen-8, c-10) dobj(c-10, her-11) nsubj(wont-20, Wow\u002c-13) prep(Wow\u002c-13, on-14) amod(ah\u002c-18, e-15) nn(ah\u002c-18, bus-16) nn(ah\u002c-18, oredi-17) pobj(on-14, ah\u002c-18) dep(wont-20, sure-19) parataxis(happen-8, wont-20) xcomp(happen-8, wont-20) amod(one-22, late-21) dobj(wont-20, one-22)
nsubj(heard-2, i-1) root(ROOT-0, heard-2) prep(heard-2, from-3) poss(frens-5, my-4) pobj(from-3, frens-5) mark(show-13, that-6) nsubj(show-13, love-7) advmod(show-13, actually-8) cop(show-13, is-9) det(show-13, a-10) advmod(gd-12, pretty-11) amod(show-13, gd-12) ccomp(heard-2, show-13) nsubj(want-16, u-15) xsubj(watch-18, u-15) dep(show-13, want-16) aux(watch-18, to-17) xcomp(want-16, watch-18) dobj(watch-18, it-19)
advmod(dun-2, Really-1) root(ROOT-0, dun-2) xcomp(dun-2, bluff-3) dobj(bluff-3, me-4) dep(bluff-3, leh-5) nsubj(sleep-8, U-7) dep(leh-5, sleep-8) advmod(too-10, early-9) advmod(sleep-8, too-10) nsubj(dun-2, Nite-12)
nsubj(go-15, Yup-1) advmod(e-11, How-3) nsubj(e-11, He-5) advmod(e-11, later-6) dep(later-6, meeting-7) poss(friends-9, his-8) dobj(meeting-7, friends-9) advmod(meeting-7, then-10) dep(Yup-1, e-11) dobj(e-11, 2-12) prep(2-12, of-13) pobj(of-13, us-14) root(ROOT-0, go-15) advmod(go-15, elsewhere-16) advmod(go-15, lor-17)
root(ROOT-0, probably-1) dep(same-3, the-2) dep(probably-1, same-3)
dobj(taking-6, what-1) amod(what-1, modules-2) aux(taking-6, will-3) nsubj(taking-6, u-4) aux(taking-6, be-5) dep(take-11, taking-6) det(semester-8, this-7) dobj(taking-6, semester-8) nsubj(take-11, wanna-10) root(ROOT-0, take-11) dobj(take-11, 4264-12) advmod(take-11, together-13)
det(thing-2, hope-1) nsubj(fine-5, thing-2) aux(fine-5, will-3) cop(fine-5, be-4) root(ROOT-0, fine-5)
nsubj(need-2, I-1) xsubj(have-4, I-1) root(ROOT-0, need-2) aux(have-4, to-3) xcomp(need-2, have-4) poss(stats-6, my-5) nsubj(notes-7, stats-6) ccomp(have-4, notes-7) advmod(u-12, back-8) advmod(u-12, When-10) nsubj(u-12, r-11) advcl(notes-7, u-12) acomp(u-12, free-13) aux(mit-15, to-14) xcomp(free-13, mit-15) prt(mit-15, up-16)
advcl(cz-10, u-1) dep(u-1, tried-2) nsubj(u-1, it-3) amod(time-6, wat-5) nsubj(cz-10, time-6) dep(tok-8, e-7) dep(time-6, tok-8) root(ROOT-0, cz-10) amod(amelia-13, i-11) nn(amelia-13, meetin-12) dobj(cz-10, amelia-13)
nsubj(said-7, Ya-1) parataxis(said-7, Morn-3) poss(sis-6, My-5) nsubj(said-7, sis-6) root(ROOT-0, said-7) nsubj(have-13, it\u2019s-8) xsubj(check-15, it\u2019s-8) prep(it\u2019s-8, on-9) amod(haha\u002c-12, e-10) amod(haha\u002c-12, mountain\u002c-11) pobj(on-9, haha\u002c-12) ccomp(said-7, have-13) aux(check-15, to-14) xcomp(have-13, check-15) nn(liao-17, map-16) dobj(check-15, liao-17)
advmod(need-4, Then-1) nn(u-3, wat-2) nsubj(need-4, u-3) root(ROOT-0, need-4) num(cant-9, 2-5) amod(cant-9, bathe-6) amod(cant-9, ur-7) nn(cant-9, dog-8) dobj(need-4, cant-9) dep(cant-9, come-10) advmod(come-10, up-11) cc(come-10, or-12) conj(come-10, must-13) advmod(need-4, later-14)
nsubj(ask-2, U-1) root(ROOT-0, ask-2) dobj(ask-2, ghenglai-3) cc(ghenglai-3, and-4) conj(ghenglai-3, yongzhong-5) mark(want-8, whether-6) nsubj(want-8, they-7) xsubj(come-10, they-7) ccomp(ask-2, want-8) aux(come-10, to-9) xcomp(want-8, come-10) cc(not-12, or-11) dep(come-10, not-12) dep(not-12, lor-13)
root(ROOT-0, Thu-1) ccomp(Thu-1, meet-2) prep(meet-2, at-3) nn(plaza-6, cafe-4) nn(plaza-6, cartel-5) pobj(at-3, plaza-6) dep(plaza-6, sing-7) prep(sing-7, at-8) pobj(at-8, 7pm-9) det(prob-12, Any-11) dep(meet-2, prob-12)
nn(i-2, Hey-1) nsubj(late-7, i-2) aux(late-7, will-3) cop(late-7, be-4) advmod(late-7, really-5) advmod(late-7, pretty-6) root(ROOT-0, late-7) nsubj(want-10, You-9) xsubj(go-12, You-9) parataxis(late-7, want-10) aux(go-12, to-11) xcomp(want-10, go-12) prep(go-12, for-13) det(lesson-15, the-14) pobj(for-13, lesson-15) dep(lesson-15, first-16) nsubj(join-20, I-18) aux(join-20, will-19) dep(first-16, join-20) dobj(join-20, you-21) dobj(go-12, I\u2019m-23) advmod(reaching-25, only-24) vmod(I\u2019m-23, reaching-25) nn(mrt-27, tp-26) dobj(reaching-25, mrt-27)
root(ROOT-0, wah-1) prep(wah-1, like-3) det(man-7, that-4) neg(man-7, not-5) amod(man-7, fair-6) pobj(like-3, man-7)
nsubj(meet-18, hi\u002c-1) det(book-3, the-2) nsubjpass(called-5, book-3) auxpass(called-5, is-4) rcmod(hi\u002c-1, called-5) xcomp(called-5, marketing-6) mark(selling-12, by-7) nn(i-10, kerin-8) nsubj(selling-12, i-10) aux(selling-12, am-11) advcl(marketing-6, selling-12) det(book-14, the-13) dobj(selling-12, book-14) prep(selling-12, at-15) pobj(at-15, $24\u002c-16) aux(meet-18, can-17) root(ROOT-0, meet-18) dobj(meet-18, u-19) prep(meet-18, on-20) pobj(on-20, monday-21)
root(ROOT-0, Im-1) prep(Im-1, in-2) amod(waitin-5, senai-3) nn(waitin-5, airport-4) pobj(in-2, waitin-5) mark(bring-11, for-6) poss(crew\u002cthen-10, my-7) amod(crew\u002cthen-10, dads-8) nn(crew\u002cthen-10, russian-9) nsubj(bring-11, crew\u002cthen-10) advcl(Im-1, bring-11) advmod(bring-11, then-12) mark(make-16, for-13) nsubj(make-16, dinner\u002chope-14) aux(make-16, can-15) advcl(bring-11, make-16) dobj(make-16, it-17) advmod(for-19, back-18) prep(make-16, for-19) poss(baby-21, my-20) pobj(for-19, baby-21)
root(ROOT-0, ok-1) amod(chat-4, ok-2) amod(chat-4, can\u2019t-3) dobj(ok-1, chat-4) vmod(chat-4, going-5) prep(going-5, for-6) pobj(for-6, lect-7)
advmod(please-3, Please-1) root(ROOT-0, please-3) xcomp(please-3, help-4) dobj(help-4, me-5) advmod(put-8, Already-7) dep(please-3, put-8) prt(put-8, in-9) advmod(effort-12, so-10) amod(effort-12, much-11) dobj(put-8, effort-12) cc(effort-12, &-13) advmod(effort-12, now-14) conj(effort-12, now-14) conj(effort-12, u-15) dep(put-8, want-16) num(qi-19, 2-17) nn(qi-19, fang-18) dobj(want-16, qi-19) dep(put-8, I-21) nsubj(let-23, won\u2019t-22) rcmod(I-21, let-23) nsubj(do-25, u-24) ccomp(let-23, do-25) advmod(do-25, so-26) dep(please-3, Please-28)
advmod(sure-2, Ok-1) ccomp(let-5, sure-2) nsubj(let-5, U-4) root(ROOT-0, let-5) nsubj(know-7, me-6) ccomp(let-5, know-7) advmod(lor-12, where-8) nn(lor-12, n-9) nn(lor-12, wat-10) nn(lor-12, time-11) advcl(know-7, lor-12)
nn(thanks-3, Ha-1) nn(thanks-3, ha-2) nsubj(lost-6, thanks-3) cc(thanks-3, and-4) conj(thanks-3, coz-5) dep(lost-11, lost-6) poss(phone-9, my-7) nn(phone-9, hand-8) dobj(lost-6, phone-9) advmod(lost-6, thus-10) root(ROOT-0, lost-11) predet(number-15, all-12) det(number-15, the-13) nn(number-15, contact-14) dobj(lost-11, number-15) dep(lost-11, carry-16) prt(carry-16, on-17) prep(carry-16, with-18) pobj(with-18, you-19) nn(:)-21, exams-20) nsubj(lost-11, :)-21)
aux(meet-6, Do-1) nsubj(meet-6, ü-2) advmod(meet-6, all-3) num(2-5, wan-4) pobj(all-3, 2-5) root(ROOT-0, meet-6) prt(meet-6, up-7) dobj(meet-6, n-8) dep(meet-6, combine-9) predet(parts-12, all-10) det(parts-12, the-11) nsubj(going-20, parts-12) amod(rest-16, How\u2019s-14) nn(rest-16, da-15) dep(parts-12, rest-16) prep(parts-12, of-17) nn(project-19, da-18) pobj(of-17, project-19) dep(combine-9, going-20)
mark(go-3, If-1) nsubj(go-3, we-2) advcl(need-22, go-3) xcomp(go-3, buy-4) dobj(buy-4, tickets-5) iobj(buy-4, tickets-5) advmod(tickets-5, too-6) advmod(tickets-5, late-7) amod(one-12, sure-8) ccomp(sure-8, get-9) amod(seats-11, bad-10) dobj(get-9, seats-11) dep(tickets-5, one-12) advmod(be-17, When-14) aux(be-17, can-15) nsubj(be-17, you-16) dep(tickets-5, be-17) prep(be-17, at-18) pobj(at-18, jp-19) nsubj(need-22, I-21) root(ROOT-0, need-22) det(time-24, some-23) dobj(need-22, time-24) prep(need-22, to-25) pobj(to-25, bath-26) mark(go-30, before-27) nsubj(go-30, I-28) aux(go-30, can-29) advcl(need-22, go-30) prt(go-30, out-31)
nsubj(great-16, Thanks-1) prep(Thanks-1, for-2) dep(steph-5, e-3) nn(steph-5, dinner-4) dep(food-8, steph-5) nn(food-8, E-7) dep(for-2, food-8) cop(co-13, is-9) amod(co-13, nice-10) nn(co-13, n-11) nn(co-13, e-12) rcmod(food-8, co-13) cop(great-16, is-15) root(ROOT-0, great-16) advmod(great-16, too-17) advmod(in-20, As-19) prep(great-16, in-20) poss(side-22, my-21) pobj(in-20, side-22) prep(side-22, of-23) nn(la-26, e-24) nn(la-26, table-25) pobj(of-23, la-26) dep(la-26, Hee-28)
nsubj(going-2, I\u2019m-1) xsubj(buy-5, I\u2019m-1) root(ROOT-0, going-2) prt(going-2, out-3) aux(buy-5, to-4) xcomp(going-2, buy-5) amod(ar-8, mum\u2019s-6) amod(ar-8, present-7) dobj(buy-5, ar-8)
nsubj(say-7, I-1) nn(u-3, tot-2) nsubj(say-7, u-3) prep(u-3, outside-4) nn(darren-6, cos-5) pobj(outside-4, darren-6) root(ROOT-0, say-7) nsubj(come-9, u-8) ccomp(say-7, come-9) dep(went-20, shopping-10) dep(went-20, Of-12) pobj(Of-12, course-13) dep(wat-16, we-14) amod(wat-16, nice-15) dep(went-20, wat-16) nsubj(went-20, We-18) advmod(went-20, jus-19) dep(come-9, went-20) nn(lim-22, sim-21) nsubj(look-23, lim-22) ccomp(went-20, look-23) prep(look-23, at-24) amod(player-26, mp3-25) pobj(at-24, player-26)
root(ROOT-0, K-1) nn(book-4, Must-3) dep(K-1, book-4) dep(huh-7, a-5) neg(huh-7, not-6) dep(going-10, huh-7) advmod(going-10, so-9) dep(book-4, going-10) prep(going-10, for-11) pobj(for-11, yoga-12) amod(yoga-12, basic-13) prep(going-10, on-14) pobj(on-14, sunday-15)
nn(i-2, Ya\u002c-1) nsubj(understand-4, i-2) aux(understand-4, can-3) root(ROOT-0, understand-4) dep(too\u002c-13, Most-6) prep(Most-6, of-7) poss(tutors-9, my-8) pobj(of-7, tutors-9) dep(too\u002c-13, r-10) amod(too\u002c-13, frm-11) nn(too\u002c-13, china-12) dep(depend-26, too\u002c-13) dep(r-18, really-14) amod(r-18, cant-15) nn(r-18, catch-16) nn(r-18, wat-17) dobj(tryin-20, r-18) dep(depend-26, r-18) nsubj(tryin-20, they-19) xsubj(say-22, they-19) rcmod(r-18, tryin-20) aux(say-22, to-21) xcomp(tryin-20, say-22) nn(beta-25, Thk-24) nsubj(depend-26, beta-25) dep(understand-4, depend-26) prep(depend-26, on-27) pobj(on-27, myself-28) nn(c-31, Din-30) nsubj(u-32, c-31) parataxis(depend-26, u-32) prep(u-32, during-33) pobj(during-33, lect-34)
dep(eat-18, How-1) dep(How-1, come-2) dep(come-2, u-3) advmod(come-2, so-4) dep(come-2, pig-5) dep(come-2, Go-7) amod(weather-10, lor\u002c-8) nn(weather-10, tdy-9) dobj(Go-7, weather-10) neg(bad-12, not-11) amod(weather-10, bad-12) prep(weather-10, plus-13) nn(holiday-15, tmr-14) pobj(plus-13, holiday-15) nsubj(eat-18, U-17) root(ROOT-0, eat-18) amod(lah-22, ur-19) nn(lah-22, lunch-20) amod(lah-22, first-21) dobj(eat-18, lah-22)
nn(cant-2, i-1) nsubj(make-3, cant-2) root(ROOT-0, make-3) dobj(make-3, it-4) prep(make-3, on-5) pobj(on-5, tuesday-6) parataxis(make-3, how-8)
amod(mei-2, Hey-1) root(ROOT-0, mei-2) nn(rite-7, U-4) amod(rite-7, goin-5) nn(rite-7, tmr-6) dep(mei-2, rite-7) aux(got-11, Have-9) nsubj(got-11, u-10) dep(mei-2, got-11) nn(jos-14, anythin-12) num(jos-14, 4-13) dobj(got-11, jos-14)
num(..-2, Aiyo-1) npadvmod(So-3, ..-2) advmod(go-9, So-3) dep(go-9, bad-4) dep(go-9, Then-6) dep(Then-6, u-7) aux(go-9, got-8) root(ROOT-0, go-9) dep(anot-12, e-10) punct(anot-12, interview-11) dep(go-9, anot-12) mark(ah-19, As-14) cop(ah-19, is-15) amod(ah-19, it\u2019s-16) advmod(wulu-18, very-17) amod(ah-19, wulu-18) dep(go-9, ah-19)
root(ROOT-0, please-1) xcomp(please-1, meet-2) dobj(meet-2, me-3) prep(meet-2, outside-4) pobj(outside-4, lt27-5) aux(get-7, to-6) xcomp(meet-2, get-7) poss(stuff-9, your-8) dobj(get-7, stuff-9)
advmod(high-2, Somewhere-1) dep(one-5, high-2) det(one-5, No-4) dep(take-12, one-5) advmod(v-7, here-6) vmod(one-5, v-7) nsubj(take-12, gd\u002c-9) aux(take-12, can-10) advmod(take-12, really-11) advcl(go-19, take-12) det(rest-15, a-13) amod(rest-15, peaceful-14) dobj(take-12, rest-15) nsubj(go-19, I-17) aux(go-19, will-18) root(ROOT-0, go-19) advmod(go-19, back-20) pobj(back-20, 2-21) advmod(came-24, where-22) nsubj(came-24, I-23) dep(back-20, came-24) dobj(go-19, Bye-26)
amod(u-2, Hey-1) nsubj(call-3, u-2) root(ROOT-0, call-3) nsubj(huh-5, me-4) ccomp(call-3, huh-5) npadvmod(up-8, Wat\u2019s-7) advmod(huh-5, up-8)
nsubj(did-3, I-1) advmod(did-3, only-2) root(ROOT-0, did-3) dobj(did-3, once\u002c-4) dep(proj-6, e-5) dep(once\u002c-4, proj-6) nsubj(did-8, we-7) ccomp(proj-6, did-8) amod(gd-13, together\u002c-9) advmod(not-11, so-10) neg(v-12, not-11) amod(gd-13, v-12) dobj(did-8, gd-13) prep(did-8, at-14) pobj(at-14, it-15) advmod(did-8, also-16) xcomp(did-3, Borrow-18) det(books-20, some-19) dobj(Borrow-18, books-20) cc(books-20, or-21) conj(books-20, search-22) prep(books-20, online-23) num(help-25, 4-24) dep(online-23, help-25)
nn(u-3, Same-1) dep(u-3, to-2) root(ROOT-0, u-3)
root(ROOT-0, Da-1) dobj(Da-1, one-2) prep(Da-1, at-3) pobj(at-3, cine-4) cc(Da-1, But-6) nsubj(dunno-8, i-7) conj(Da-1, dunno-8) mark(wan-11, whether-9) nsubj(wan-11, i-10) xsubj(sign-13, i-10) ccomp(dunno-8, wan-11) aux(sign-13, to-12) xcomp(wan-11, sign-13) prt(sign-13, up-14) det(not-16, a-15) dobj(sign-13, not-16) dep(not-16, Dunno-18) mark(got-21, if-19) nsubj(got-21, they-20) advcl(sign-13, got-21) num(mth-23, one-22) dobj(got-21, mth-23) advmod(got-21, only-24) nsubj(scared-27, I-26) parataxis(Da-1, scared-27) num(wun-29, i-28) nsubj(go-30, wun-29) ccomp(scared-27, go-30)
det(card-3, e-1) nn(card-3, name-2) nsubj(need-4, card-3) dep(pass-17, need-4) det(daes-7, another-5) amod(daes-7, few-6) nsubj(n-8, daes-7) ccomp(need-4, n-8) poss($20-10, its-9) dobj(n-8, $20-10) prep(n-8, for-11) num(rite-14, 100-12) nn(rite-14, ok-13) pobj(for-11, rite-14) aux(pass-17, will-16) root(ROOT-0, pass-17) dobj(pass-17, u-18) mark(done-21, once-19) nsubj(done-21, its-20) advcl(pass-17, done-21) nsubj(pass-17, ..-22)
root(ROOT-0, Aiyo-1) amod(good-3, good-2) dep(Aiyo-1, good-3) dep(Aiyo-1, glad-5) nsubj(home-9, you-6) cop(home-9, are-7) advmod(home-9, almost-8) dep(glad-5, home-9) punct(Aiyo-1, Never-11) dep(Aiyo-1, mind-12) dobj(rest-15, mind-12) nsubj(rest-15, you-13) aux(rest-15, can-14) rcmod(mind-12, rest-15) prep(rest-15, for-16) det(day-19, the-17) amod(day-19, whole-18) pobj(for-16, day-19) dep(mind-12, Hehe-21)
nsubj(think-2, I-1) root(ROOT-0, think-2) nsubj(go-4, we-3) ccomp(think-2, go-4) nn(watch-6, lido-5) dobj(go-4, watch-6) dep(watch-6, k-7) nn(u-10, Den-9) nsubj(go-14, u-10) cc(u-10, and-11) conj(u-10, xyan-12) aux(go-14, can-13) dep(k-7, go-14) nn(shopping-16, orchard-15) dobj(go-14, shopping-16) advmod(go-14, first-17) dep(go-4, Show-19) advmod(Show-19, still-20) prep(Show-19, at-21) pobj(at-21, 930-22)
aux(going-4, Hey-1) nsubj(going-4, you-2) neg(going-4, not-3) root(ROOT-0, going-4) prep(going-4, for-5) nn(tmr-7, lect-6) pobj(for-5, tmr-7)
root(ROOT-0, I\u2019m-1) advmod(free-3, only-2) acomp(I\u2019m-1, free-3) prep(I\u2019m-1, in-4) det(evening-6, the-5) pobj(in-4, evening-6)
nn(wan-4, Yup-1) nn(wan-4, U-3) nsubj(go-5, wan-4) root(ROOT-0, go-5) dep(is-7, tomw-6) dep(go-5, is-7) nsubj(is-7, it-8) dobj(wan-13, Which-10) nn(u-12, branch-11) nsubj(wan-13, u-12) ccomp(go-5, wan-13) nsubj(go-15, 2-14) ccomp(wan-13, go-15)
nsubj(pray-2, Zack\u002c-1) root(ROOT-0, pray-2) dobj(pray-2, me-3) det(..-7, a-4) nn(..-7, prayer-5) nn(..-7, yo-6) nsubj(hope-8, ..-7) dep(pray-2, hope-8) nsubj(finish-11, i-9) aux(finish-11, can-10) ccomp(hope-8, finish-11) dobj(finish-11, things-12)
dep(go-8, Still-1) dep(Still-1, in-2) nn(discussion-4, group-3) pobj(in-2, discussion-4) nsubj(go-8, I-6) xsubj(have-10, I-6) aux(go-8, may-7) csubj(Sms-16, go-8) aux(have-10, to-9) xcomp(go-8, have-10) dobj(have-10, lunch-11) prep(have-10, in-12) num(mins-14, twenty-13) pobj(in-12, mins-14) root(ROOT-0, Sms-16) dobj(Sms-16, me-17) advmod(finished-22, when-18) poss(meeting-20, your-19) nsubjpass(finished-22, meeting-20) auxpass(finished-22, is-21) advcl(Sms-16, finished-22)
root(ROOT-0, Hey-1) dep(Hey-1, Very-3) amod(Very-3, inconvenient-4) prep(inconvenient-4, for-5) poss(sis-7, your-6) pobj(for-5, sis-7) det(not-9, a-8) npadvmod(huh-10, not-9) amod(sis-7, huh-10)
nn(ü-2, Y-1) root(ROOT-0, ü-2) dep(ü-2, wan-3) aux(go-5, to-4) xcomp(wan-3, go-5) advmod(go-5, there-6) nn(doctor-9, C-8) dep(ü-2, doctor-9)
root(ROOT-0, Hai-1) num(option-5, One-3) amod(option-5, less-4) dep(Hai-1, option-5) prep(option-5, for-6) pobj(for-6, me-7) advmod(will-10, So-9) dep(Hai-1, will-10) nsubj(be-12, you-11) rcmod(will-10, be-12) advmod(be-12, there-13) prep(be-12, for-14) pobj(for-14, long-15)
root(ROOT-0, I\u2019m-1) neg(it\u2019s-4, not-2) amod(it\u2019s-4, sure\u002c-3) dobj(I\u2019m-1, it\u2019s-4) dep(vs-7, ard-5) num(ard-5, 53-6) dep(it\u2019s-4, vs-7) num(vs-7, 39-8) nsubj(know-11, I-10) dep(I\u2019m-1, know-11) nsubj(touched-13, they-12) ccomp(know-11, touched-13) num(mark-15, 50-14) dobj(touched-13, mark-15)
root(ROOT-0, Hmmm-1) nsubj(Cos-8, Reach-3) advmod(at-5, there-4) rcmod(Reach-3, at-5) pobj(at-5, 1-6) dep(Hmmm-1, Cos-8) poss(oso-12, my-9) nn(oso-12, sis-10) nn(oso-12, goin-11) dobj(Cos-8, oso-12) nsubj(wan-15, U-14) xsubj(go-17, U-14) parataxis(Cos-8, wan-15) aux(go-17, to-16) xcomp(wan-15, go-17) advmod(near-19, somewhere-18) advmod(go-17, near-19) poss(den-22, my-20) nn(den-22, hse-21) nsubj(fetch-24, den-22) aux(fetch-24, can-23) dep(near-19, fetch-24) nn(oso-26, u-25) dobj(fetch-24, oso-26)
aux(wan-3, eh-1) nsubj(wan-3, you-2) xsubj(share-5, you-2) root(ROOT-0, wan-3) aux(share-5, to-4) xcomp(wan-3, share-5) dobj(share-5, wen\u2019s-6) amod(wen\u2019s-6, present-7) prep(present-7, with-8) pobj(with-8, me-9)
nsubj(leave-4, U-1) aux(leave-4, can-2) advmod(leave-4, just-3) root(ROOT-0, leave-4) prep(leave-4, in-5) poss(lab-7, my-6) pobj(in-5, lab-7) cc(leave-4, or-8) conj(leave-4, pass-9) prep(pass-9, to-10) pobj(to-10, me-11) nsubj(Sorry-14, tml-12) dep(leave-4, Sorry-14) dobj(Sorry-14, its-15) advmod(abrupt-17, so-16) acomp(Sorry-14, abrupt-17) cc(leave-4, but-18) nsubj(realised-21, I-19) advmod(realised-21, just-20) conj(leave-4, realised-21) dobj(realised-21, sm-22) prep(sm-22, of-23) det(r-25, those-24) pobj(of-23, r-25) poss(frens\u2019-27, my-26) dep(r-25, frens\u2019-27)
advmod(fast-2, So-1) dep(..-5, fast-2) amod(..-5, ah\u002c-3) nn(..-5, hmm-4) dep(Tdy-11, ..-5) nsubj(shld-7, It-6) rcmod(..-5, shld-7) auxpass(alright-9, be-8) dep(shld-7, alright-9) dep(seem-14, Tdy-11) dep(seem-14, e-12) nsubj(seem-14, weather-13) dep(bring-19, seem-14) neg(seem-14, not-15) amod(u-17, bad\u002c-16) nsubj(bring-19, u-17) aux(bring-19, can-18) root(ROOT-0, bring-19) nn(dog-21, ur-20) dobj(bring-19, dog-21) prt(bring-19, out-22)
advmod(wan-3, when-1) nsubj(wan-3, you-2) xsubj(be-6, you-2) root(ROOT-0, wan-3) dobj(wan-3, me-4) aux(be-6, to-5) xcomp(wan-3, be-6) advmod(be-6, back-7)
root(ROOT-0, choose-1) det(colour-3, a-2) dobj(choose-1, colour-3) advmod(la-9, Just-5) det(la-9, some-6) amod(la-9, silly-7) nn(la-9, test-8) dep(colour-3, la-9)
root(ROOT-0, Huifang-1) nsubj(go-4, Wanna-3) ccomp(Huifang-1, go-4) parataxis(Huifang-1, go-4) amod(sales-7, john-5) amod(sales-7, little-6) dobj(go-4, sales-7) aux(buy-9, to-8) vmod(sales-7, buy-9) det(bd-12, a-10) amod(bd-12, fren\u2019s-11) dobj(buy-9, bd-12) dep(bd-12, present-13) nsubj(go-16, Wanna-15) dep(present-13, go-16) dobj(go-16, tog-17) nsubj(heard-20, I-19) dep(go-4, heard-20) expl(got-22, there-21) ccomp(heard-20, got-22) det(lot-24, a-23) dobj(got-22, lot-24) nsubj(got-22, lot-24) prep(lot-24, of-25) amod(shirts-27, guy\u2019s-26) pobj(of-25, shirts-27)
nn(wads-2, hey-1) dep(wrong-3, wads-2) dep(wads-28, wrong-3) prep(wrong-3, with-4) nn(ar-6, shuz-5) pobj(with-4, ar-6) nsubj(keeps-9, she-8) dep(wrong-3, keeps-9) xcomp(keeps-9, answering-10) poss(sms-es-12, my-11) dobj(answering-10, sms-es-12) prep(answering-10, in-13) det(way-17, a-14) advmod(vague-16, very-15) amod(way-17, vague-16) pobj(in-13, way-17) prep(wrong-3, like-19) cop(secretive-22, being-20) advmod(secretive-22, very-21) pcomp(like-19, secretive-22) prep(secretive-22, about-23) pobj(about-23, everything-24) det(idea-27, any-26) nsubj(wads-28, idea-27) root(ROOT-0, wads-28) xcomp(wads-28, going-29) prt(going-29, on-30) prep(going-29, with-31) poss(??-33, her-32) pobj(with-31, ??-33)
advmod(u-3, Ailing\u002c-1) nsubj(u-3, how-2) dep(Meet-11, u-3) xcomp(u-3, going-4) amod(pt-6, east-5) dobj(going-4, pt-6) prep(going-4, from-7) nn(home-9, ur-8) pobj(from-7, home-9) advcl(got-21, Meet-11) dobj(Meet-11, u-12) prep(u-12, in-13) pobj(in-13, bedok-14) advmod(Meet-11, then-15) dep(Meet-11, go-16) nn(la-18, tog-17) nsubj(Meet-11, la-18) nsubj(got-21, I-20) root(ROOT-0, got-21) amod(bus-23, free-22) dobj(got-21, bus-23) prep(got-21, to-24) nn(mrt-26, bedok-25) pobj(to-24, mrt-26)
root(ROOT-0, On-1) pobj(On-1, mrt-2) dep(mrt-2, You-4) advmod(You-4, out-5) advmod(arriving-11, Where-7) nsubj(arriving-11, I-9) aux(arriving-11, am-10) rcmod(mrt-2, arriving-11) prep(arriving-11, at-12) pobj(at-12, boonlay-13)
nsubj(welcome-4, U-1) cop(welcome-4, are-2) advmod(welcome-4, most-3) dep(t-7, welcome-4) nsubj(t-7, thnks-6) root(ROOT-0, t-7) dobj(t-7, 4-8) xcomp(t-7, reminding-9) nsubj(young-23, me-10) dep(young-23, yr-11) nsubj(wish-14, birthday-12) dep(young-23, wish-14) amod(years-18, u-15) amod(years-18, many-16) amod(years-18, good-17) nsubj(come-20, years-18) aux(come-20, to-19) xcomp(wish-14, come-20) dobj(come-20, n-21) advmod(come-20, forever-22) xcomp(reminding-9, young-23)
discourse(eat-5, No-1) dep(No-1, la-2) nsubj(eat-5, You-4) root(ROOT-0, eat-5) advmod(hungry-9, when-6) nsubjpass(hungry-9, you-7) auxpass(hungry-9, are-8) advcl(eat-5, hungry-9)
nn(Zhen-2, Wan-1) nsubj(powder-7, Zhen-2) cop(powder-7, are-3) amod(powder-7, u-4) nn(powder-7, buying-5) nn(powder-7, gliter-6) root(ROOT-0, powder-7)
aux(going-3, are-1) nsubj(going-3, u-2) root(ROOT-0, going-3) prep(going-3, to-4) nn(tml-6, sch-5) pobj(to-4, tml-6)
root(ROOT-0, Huh-1) amod(afternoon-4, Whole-3) dep(Huh-1, afternoon-4) vmod(afternoon-4, gone-5) dep(Huh-1, Nvrmind-7) amod(time-10, lor\u002c-8) nn(time-10, nxt-9) nsubj(go-11, time-10) ccomp(Nvrmind-7, go-11) advmod(go-11, again-12) dep(Huh-1, C-14) poss(bdae-16, whose-15) nsubj(comin-17, bdae-16) dep(C-14, comin-17) prt(comin-17, up-18)
discourse(need-2, No-1) root(ROOT-0, need-2) dobj(need-2, lah-3) dobj(try-7, lah-3) nsubj(try-7, I-5) aux(try-7, will-6) rcmod(lah-3, try-7) advmod(try-7, again-8) prep(try-7, with-9) dep(i-12, e-10) num(i-12, one-11) dep(with-9, i-12) vmod(i-12, bought-13)
amod(xin-2, Hey-1) root(ROOT-0, xin-2) nn(rite-7, Doin-4) nn(rite-7, puzzle-5) nn(rite-7, tmr-6) dep(xin-2, rite-7) ref(rite-7, What-9) det(time-10, What-9) nsubj(go-11, time-10) rcmod(rite-7, go-11) nn(leh-14, ur-12) nn(leh-14, hse-13) dobj(go-11, leh-14)
nn(lor-2, Yar-1) root(ROOT-0, lor-2) nsubj(raining-5, Keep-4) dep(lor-2, raining-5) nn(stop-7, non-6) dobj(raining-5, stop-7) cc(go-13, Or-9) advmod(go-13, u-10) nsubj(go-13, wan-11) num(wan-11, 2-12) dep(lor-2, go-13) advmod(go-13, elsewhere-14)
advmod(where-2, Go-1) advmod(buy-4, where-2) nsubj(buy-4, n-3) dep(buy-7, buy-4) nsubj(buy-7, Juz-6) root(ROOT-0, buy-7) advmod(get-10, when-8) nsubj(get-10, we-9) advcl(buy-7, get-10) advmod(get-10, there-11) dobj(get-10, lar-12)
nsubj(need-2, I-1) xsubj(confirm-4, I-1) root(ROOT-0, need-2) aux(confirm-4, to-3) xcomp(need-2, confirm-4) prep(confirm-4, with-5) pobj(with-5, you-6) dobj(confirm-4, guys-7) vmod(guys-7, regarding-8) det(gathering-12, the-9) amod(gathering-12, small-10) nn(gathering-12, class-11) dobj(regarding-8, gathering-12) prep(gathering-12, at-13) poss(studio-15, my-14) pobj(at-13, studio-15) prep(regarding-8, at-16) pobj(at-16, 6pm-17) prep(6pm-17, on-18) pobj(on-18, sunday-19) rcmod(sunday-19, let-21) nsubj(know-23, me-22) ccomp(let-21, know-23) mark(coming-28, if-24) dep(guys-26, you-25) nsubj(coming-28, guys-26) aux(coming-28, are-27) advcl(know-23, coming-28) discourse(reply-31, please-30) dep(regarding-8, reply-31) dobj(reply-31, asap-32)
prep(juz-7, With-1) poss(lor-4, my-2) nn(lor-4, sis-3) pobj(With-1, lor-4) nsubj(juz-7, We-6) root(ROOT-0, juz-7) amod(job-10, watched-8) amod(job-10, italian-9) dobj(juz-7, job-10)
nsubjpass(u-3, wat-1) auxpass(u-3, are-2) root(ROOT-0, u-3) dep(u-3, going-4) aux(buy-6, to-5) xcomp(going-4, buy-6) prep(buy-6, for-7) poss(??-10, her-8) amod(??-10, present-9) pobj(for-7, ??-10)
dep(said-9, Hey\u002c-1) nsubj(bro-3, you-2) dep(Hey\u002c-1, bro-3) nsubj(called-5, jus-4) ccomp(bro-3, called-5) dobj(called-5, me-6) nsubj(said-9, He-8) root(ROOT-0, said-9) mark(morn-12, that-10) nsubj(morn-12, this-11) ccomp(said-9, morn-12) nsubj(went-14, you-13) ccomp(morn-12, went-14) prep(went-14, to-15) pobj(to-15, church-16) cc(said-9, and-17) advmod(looking-30, then-18) dep(looking-30, dunno-19) rcmod(dunno-19, go-20) dep(go-20, where-21) advmod(u-25, Where-23) dep(Where-23, r-24) dep(dunno-19, u-25) dep(dunno-19, now-26) nsubj(looking-30, He-28) aux(looking-30, is-29) conj(said-9, looking-30) prep(looking-30, for-31) pobj(for-31, you-32)
nsubj(meet-4, hi\u002c-1) xsubj(pass-14, hi\u002c-1) aux(meet-4, can-2) advmod(meet-4, i-3) root(ROOT-0, meet-4) dobj(meet-4, you-5) prep(meet-4, at-6) amod(mrt-9, dhoby-7) nn(mrt-9, ghaut-8) pobj(at-6, mrt-9) prep(meet-4, at-10) num(pm-12, 4.15-11) pobj(at-10, pm-12) aux(pass-14, to-13) xcomp(meet-4, pass-14) dep(stuff-17, you-15) det(stuff-17, the-16) dobj(pass-14, stuff-17)
amod(sia-3, guess-1) nn(sia-3, wad-2) root(ROOT-0, sia-3) dep(sia-3, i-5) vmod(i-5, won-6) nn(tickets-8, preview-7) dobj(won-6, tickets-8) prep(won-6, to-9) det(show-12, this-10) nn(show-12, korean-11) pobj(to-9, show-12) amod(haven-18, woo-14) nn(haven-18, hoo-15) nn(haven-18, !!!!-16) nn(haven-18, i-17) dep(sia-3, haven-18) vmod(haven-18, lost-19) advmod(luck-23, all-20) poss(luck-23, my-21) amod(luck-23, good-22) dobj(lost-19, luck-23) advmod(yet-25, just-24) advmod(lost-19, yet-25)
dep(wait-5, Really-1) cc(wait-5, But-3) nsubj(wait-5, muz-4) root(ROOT-0, wait-5) advmod(long-7, very-6) amod(rite-8, long-7) dobj(wait-5, rite-8) advmod(wait-5, So-10) amod(test-14, u-11) nn(test-14, book-12) nn(test-14, ur-13) nsubj(date-15, test-14) parataxis(wait-5, date-15) dobj(date-15, oredi-16)
root(ROOT-0, hey-1) nsubj(said-3, wendy-2) rcmod(hey-1, said-3) ref(hey-1, that-4) mark(week-13, that-4) nsubj(week-13, we-5) aux(week-13, can-6) cop(week-13, stay-7) advmod(week-13, overnight-8) prep(week-13, at-9) poss(place-11, her-10) pobj(at-9, place-11) amod(week-13, next-12) ccomp(said-3, week-13) dep(week-13, cos-14) poss(parents-16, her-15) nsubj(going-18, parents-16) aux(going-18, are-17) ccomp(cos-14, going-18) prep(going-18, to-19) pobj(to-19, genting-20) nn(anot-25, u-22) nn(anot-25, wanna-23) nn(anot-25, stay-24) dep(hey-1, anot-25)
num(Think-4, Havent-1) advmod(Think-4, yet-2) dep(convenient-17, Think-4) number(8-6, ard-5) amod(Think-4, 8-6) cc(eat-9, plus-7) advmod(eat-9, n-8) dep(8-6, eat-9) prep(Think-4, until-10) num(lah-13, 10-11) amod(lah-13, plus-12) pobj(until-10, lah-13) cop(convenient-17, Is-15) nsubj(convenient-17, it-16) root(ROOT-0, convenient-17) mark(come-20, if-18) nsubj(come-20, i-19) dep(convenient-17, come-20) nn(10plus-22, ard-21) dobj(come-20, 10plus-22)
root(ROOT-0, Yup-1) poss(stream-4, My-3) nsubj(requires-5, stream-4) rcmod(Yup-1, requires-5) dobj(requires-5, it-6) dep(is-9, There-8) dep(..-26, is-9) nsubj(is-9, exam-10) prep(exam-10, of-11) pobj(of-11, 100MCQs-12) neg(100MCQs-12, Not-14) dep(is-9, confirm-15) det(biology-22, A-16) amod(biology-22, lah\u002c-17) advmod(never-20, so-18) advmod(never-20, long-19) neg(lah\u002c-17, never-20) nn(biology-22, touch-21) dobj(confirm-15, biology-22) advmod(confirm-15, already-23) nn(..-26, Hmm-25) dep(get-29, ..-26) aux(get-29, can-27) nsubj(get-29, I-28) dep(Yup-1, get-29) det(book-31, the-30) dobj(get-29, book-31) prep(book-31, from-32) pobj(from-32, you-33) advmod(get-29, earlier-34) dep(get-29, Meet-36) prep(Meet-36, at-37) nn(mrt-39, Aljunied-38) pobj(at-37, mrt-39) cc(mrt-39, or-40) advmod(..?-43, somewhere-41) amod(..?-43, convenient-42) conj(mrt-39, ..?-43)
dep(rem-10, Gee-1) poss(memory-4, My-3) nsubj(den-7, memory-4) cop(den-7, is-5) amod(den-7, bad-6) dep(Gee-1, den-7) nsubj(rem-10, I-9) root(ROOT-0, rem-10) advmod(rem-10, wrongly-11)
root(ROOT-0, Hi-1) dobj(wish-5, Hi-1) advmod(wanna-4, Just-3) nsubj(wish-5, wanna-4) rcmod(Hi-1, wish-5) nsubj(christmas-11, you-6) det(christmas-11, a-7) amod(christmas-11, merry-8) cc(merry-8, and-9) conj(merry-8, blessed-10) xcomp(wish-5, christmas-11) dep(Hi-1, Hope-13) predet(wishes-16, all-14) poss(wishes-16, your-15) nsubj(come-17, wishes-16) rcmod(Hope-13, come-17) amod(christmas-20, true-18) det(christmas-20, this-19) dobj(come-17, christmas-20) nn(CHRISTMAS-23, MERRY-22) dep(Hi-1, CHRISTMAS-23)
ccomp(let-21, Hi-1) nsubj(looking-5, guys\u002c-2) poss(company-4, my-3) dep(looking-5, company-4) xcomp(Hi-1, looking-5) num(developers\u002c-7, 4-6) dobj(looking-5, developers\u002c-7) prep(developers\u002c-7, like-8) nn(i\u2019m-10, wat-9) pobj(like-8, i\u2019m-10) vmod(looking-5, doing-11) advmod(doing-11, now-12) nsubj(let-21, Any-14) prep(Any-14, of-15) nn(friends-17, ur-16) pobj(of-15, friends-17) vmod(friends-17, looking-18) num(job-20, 4-19) dobj(looking-18, job-20) root(ROOT-0, let-21) nsubj(know-23, me-22) ccomp(let-21, know-23)
poss(m-4, My-1) amod(m-4, dear\u002c-2) amod(m-4, i-3) nsubj(going-5, m-4) root(ROOT-0, going-5) prep(going-5, to-6) poss(ah-9, your-7) nn(ah-9, lt-8) pobj(to-6, ah-9) aux(sitting-13, Are-11) nsubj(sitting-13, u-12) parataxis(going-5, sitting-13) prep(sitting-13, with-14) nn(friends-16, ur-15) pobj(with-14, friends-16)
amod(ah-3, Hey-1) nn(ah-3, fen-2) nsubj(meet-9, ah-3) nn(wana-8, Wat-5) nn(wana-8, time-6) nn(wana-8, u-7) dep(ah-3, wana-8) root(ROOT-0, meet-9) nsubj(ah-11, me-10) xcomp(meet-9, ah-11)
amod(thankful-3, I\u2019m-1) nn(thankful-3, v-2) root(ROOT-0, thankful-3) num(God-5, 4-4) nsubj(remind-7, God-5) dep(remind-7, has-6) rcmod(thankful-3, remind-7) nsubj(He\u2019s-9, me-8) ccomp(remind-7, He\u2019s-9) dep(He\u2019s-9, e-10) dobj(He\u2019s-9, provider-11) prep(provider-11, thru-12) nn(message-14, yr-13) pobj(thru-12, message-14) punct(thankful-3, Thanks-16) det(lot-18, a-17) dep(thankful-3, lot-18) nn(U-20, !!-19) nsubj(take-21, U-20) rcmod(lot-18, take-21) dobj(take-21, care-22) advmod(@-24, too-23) dep(thankful-3, @-24) dep(thankful-3, ->---25)
prep(go-17, After-1) poss(ah-4, my-2) nn(ah-4, work-3) pobj(After-1, ah-4) number(6-7, Den-6) num(lor-9, 6-7) amod(lor-9, plus-8) nsubj(go-17, lor-9) xsubj(go-24, lor-9) nn(rite-14, U-11) nn(rite-14, workin-12) nn(rite-14, oso-13) dep(lor-9, rite-14) dep(lor-9, Den-16) root(ROOT-0, go-17) nn(lor\u002c-19, orchard-18) iobj(go-17, lor\u002c-19) det(place-22, no-20) amod(place-22, other-21) dobj(go-17, place-22) aux(go-24, to-23) xcomp(go-17, go-24) dobj(go-24, liao-25)
root(ROOT-0, Think-1) amod(need-3, don-2) dobj(Think-1, need-3) advmod(Think-1, already-4) nsubj(changing-7, We-6) parataxis(Think-1, changing-7) dobj(changing-7, date-8) advmod(changing-7, again-9) poss(birthday-12, Her-11) dobj(changing-7, birthday-12) parataxis(changing-7, birthday-12) prep(birthday-12, on-13) det(right-16, the-14) num(right-16, 10-15) pobj(on-13, right-16)
dep(kids-6, no-1) det(kids-6, some-3) amod(kids-6, secondary-4) nn(kids-6, school-5) root(ROOT-0, kids-6)
nsubj(will-3, Den-1) dep(Den-1, we-2) root(ROOT-0, will-3) advmod(will-3, still-4) dep(given-6, b-5) dep(Hey-13, given-6) nn(price-8, student-7) dep(given-6, price-8) cc(price-8, and-9) nn(rite-11, loan-10) conj(price-8, rite-11) ccomp(will-3, Hey-13) advmod(noe-16, how-14) nsubj(noe-16, u-15) ccomp(will-3, noe-16) nn(wk-19, comin-17) nn(wk-19, nxt-18) dobj(noe-16, wk-19)
root(ROOT-0, hey-1) dobj(looks-6, hey-1) ref(hey-1, that-2) det(pic-5, that-2) nn(pic-5, xmas-3) nn(pic-5, bash-4) nsubj(looks-6, pic-5) rcmod(hey-1, looks-6) acomp(looks-6, great-7) num(look-10, u-9) npadvmod(nice-11, look-10) dep(hey-1, nice-11) prep(nice-11, in-12) pobj(in-12, it-13) dep(hey-1, too-14) punct(hey-1, *-16) amod(picture-18, saves-17) dep(hey-1, picture-18) dep(picture-18, *-19)
nsubj(going-3, I-1) xsubj(sao-5, I-1) aux(going-3, am-2) root(ROOT-0, going-3) aux(sao-5, to-4) xcomp(going-3, sao-5) dobj(sao-5, mu-6) nn(Will-9, today-7) nsubjpass(done-11, Will-9) auxpass(done-11, be-10) rcmod(mu-6, done-11) advmod(at-13, only-12) prep(done-11, at-13) pobj(at-13, 12-14)
nsubj(come-2, U-1) root(ROOT-0, come-2) dobj(come-2, this-3) advmod(time-7, aft-4) det(time-7, What-6) advcl(come-2, time-7)
root(ROOT-0, Aiyo-1) nsubj(worry-4, Dun-3) dep(Aiyo-1, worry-4) amod(they\u2019ll-6, la\u002c-5) nsubj(let-7, they\u2019ll-6) ccomp(worry-4, let-7) nsubj(change-9, u-8) ccomp(let-7, change-9) dobj(change-9, one-10) nsubj(sleep-13, Anyway\u002c-12) parataxis(worry-4, sleep-13) amod(nite-16, early\u002c-14) nn(nite-16, nite-15) dobj(sleep-13, nite-16)
root(ROOT-0, same-1) prep(same-1, to-2) pobj(to-2, you-3)
root(ROOT-0, Haha-1) dep(Haha-1, Yup-3) advmod(lose-7, hopefully-4) nsubj(lose-7, we-5) aux(lose-7, will-6) rcmod(Yup-3, lose-7) det(kg-10, a-8) amod(kg-10, few-9) dobj(lose-7, kg-10) prep(lose-7, by-11) pobj(by-11, mon-12) mark(go-18, after-14) nn(hop-16, hip-15) nsubj(go-18, hop-16) aux(go-18, can-17) dep(Haha-1, go-18) dobj(go-18, orchard-19) cc(go-18, and-20) conj(go-18, weigh-21) advmod(weigh-21, again-22)
nsubj(saw-2, Darren-1) root(ROOT-0, saw-2) ccomp(saw-2, u-3) advmod(u-3, then-4) dep(u-3, ask-5) dobj(ask-5, me-6) mark(wan-12, If-8) nsubj(wan-12, u-9) advmod(u-9, alone-10) advmod(wan-12, then-11) dep(saw-2, wan-12) xcomp(wan-12, do-13) nn(w-15, project-14) dobj(do-13, w-15) dobj(help-19, w-15) nsubj(help-19, him-16) advmod(help-19, i-17) aux(help-19, can-18) rcmod(w-15, help-19) nsubj(ask-21, u-20) ccomp(help-19, ask-21)
nsubj(tickesu-10, Ok-1) cc(you-5, but-2) advmod(you-5, where-3) cop(you-5, are-4) dep(Ok-1, you-5) advmod(you-5, now-6) aux(tickesu-10, Can-8) dep(tickesu-10, get-9) root(ROOT-0, tickesu-10) advmod(tickesu-10, first-11)
aux(have-3, do-1) nsubj(have-3, we-2) xsubj(file-5, we-2) root(ROOT-0, have-3) aux(file-5, to-4) xcomp(have-3, file-5) prep(file-5, for-6) pobj(for-6, grad-7) advmod(file-5, now-8)
advcl(go-17, Dunno\u002c-1) poss(dad-3, my-2) dobj(Dunno\u002c-1, dad-3) dep(Dunno\u002c-1, said-4) nsubj(coming-6, he-5) dep(said-4, coming-6) nsubj(bring-9, home-7) num(home-7, 2-8) ccomp(coming-6, bring-9) dobj(bring-9, us-10) prt(bring-9, out-11) num(lunch-13, 4-12) nsubj(Dunno\u002c-1, lunch-13) nn(i-16, Yup-15) nsubj(go-17, i-16) root(ROOT-0, go-17) nn(lor-20, w-18) nn(lor-20, u-19) dobj(go-17, lor-20) nsubj(call-23, I-22) rcmod(lor-20, call-23) advmod(call-23, u-24) advmod(reach-27, when-25) nsubj(reach-27, i-26) advcl(call-23, reach-27) nn(lor-29, school-28) dobj(reach-27, lor-29)
nsubj(need-2, I-1) xsubj(buy-6, I-1) root(ROOT-0, need-2) npadvmod(extra-4, $100-3) dobj(need-2, extra-4) aux(buy-6, to-5) xcomp(need-2, buy-6) det(clothes-8, some-7) dobj(buy-6, clothes-8)
nsubj(break-2, Lect-1) root(ROOT-0, break-2) dep(break-2, ..-3) advmod(..-3, Now-4) advmod(bored-6, very-5) amod(n-7, bored-6) dobj(..-3, n-7) dep(n-7, tired-8) advmod(going-15, So-10) advmod(going-15, how-11) aux(going-15, is-12) nn(stylist-14, ur-13) nsubj(going-15, stylist-14) xsubj(cut-17, stylist-14) dep(..-3, going-15) aux(cut-17, to-16) xcomp(going-15, cut-17)
root(ROOT-0, Yup-1) dep(think-9, From-3) dep(remb-6, what-4) advmod(remb-6, i-5) pcomp(From-3, remb-6) nsubj(think-9, I-8) ccomp(Yup-1, think-9) aux(book-13, should-10) cop(book-13, be-11) nn(book-13, can-12) ccomp(think-9, book-13)
discourse(okie-2, Oh-1) root(ROOT-0, okie-2) nsubj(come-5, I\u2019ll-4) dep(okie-2, come-5) advmod(away-7, right-6) advmod(come-5, away-7) parataxis(come-5, I\u2019m-9) dep(I\u2019m-9, at-10) pobj(at-10, s2-11) advmod(I\u2019m-9, So-13) nsubj(cya-15, i\u2019ll-14) parataxis(I\u2019m-9, cya-15) prep(cya-15, at-16) nn(canteen-18, e-17) pobj(at-16, canteen-18)
nsubj(meet-2, tml-1) root(ROOT-0, meet-2) dobj(meet-2, me-3) prep(meet-2, at-4) nn(lounge-6, tv-5) pobj(at-4, lounge-6) prep(meet-2, at-7) pobj(at-7, 3pm\u002c-8) advmod(meet-2, then-9) nsubj(go-11, we-10) ccomp(meet-2, go-11) parataxis(meet-2, go-11) prt(go-11, together-12) discourse(see-15, k-13) ccomp(go-11, see-15) dobj(see-15, ya-16)
nsubj(watching-2, Nope-1) root(ROOT-0, watching-2) dobj(watching-2, tv-3) prep(watching-2, at-4) pobj(at-4, home-5) neg(going-8, Not-7) parataxis(watching-2, going-8) nn(V-11, out-9) nsubj(bored-12, V-11) xcomp(going-8, bored-12)
advmod(have-4, maybe-1) nsubj(have-4, we-2) aux(have-4, can-3) root(ROOT-0, have-4) dobj(have-4, lunch-5) prep(have-4, at-6) nn(canteen-8, arts-7) pobj(at-6, canteen-8)
dep(u-2, Only-1) dep(meeting-6, u-2) nsubj(meeting-6, I-4) aux(meeting-6, be-5) root(ROOT-0, meeting-6) dobj(meeting-6, xinyi-7) prep(meeting-6, at-8) dep(make-15, 12-9) prep(12-9, at-10) pobj(at-10, bishan-11) aux(make-15, Can-13) nsubj(make-15, u-14) dep(at-8, make-15) dobj(make-15, it-16)
advmod(go-4, tml-1) nsubj(go-4, I-2) aux(go-4, will-3) root(ROOT-0, go-4) dobj(go-4, KL\u002c-5) mark(buy-9, if-6) nsubj(buy-9, you-7) aux(buy-9, need-8) advcl(go-4, buy-9) dobj(buy-9, something-10) dep(buy-9, call-11) poss(I\u2019ll-16, my-12) num(I\u2019ll-16, sis\u2019s-13) nn(I\u2019ll-16, num-14) dobj(call-11, I\u2019ll-16) dep(call-11, be-17) advmod(be-17, back-18) prep(be-17, on-19) pobj(on-19, fri-20)
dep(did-4, Wow-1) nsubj(did-4, U-3) root(ROOT-0, did-4) iobj(did-4, it-5) det(ah-8, all-6) amod(ah-8, nite-7) dobj(did-4, ah-8) dep(ah-8, Hmmm-10) nsubj(got-13, I-12) parataxis(did-4, got-13) dobj(got-13, somethin-14) dep(until-16, on-15) prep(got-13, until-16) num(tt-19, 3-17) nn(tt-19, lk-18) pobj(until-16, tt-19) nn(u-24, Thk-21) amod(u-24, i\u2019ll-22) nn(u-24, msg-23) dep(tt-19, u-24) advmod(done-28, when-25) amod(abt-27, i\u2019m-26) nsubj(done-28, abt-27) advcl(got-13, done-28) dobj(done-28, k-29)
root(ROOT-0, Forgot-1) aux(tell-3, to-2) xcomp(Forgot-1, tell-3) nn(ü-8, ü-4) nn(ü-8, smth-5) nn(ü-8, ..-6) dep(ü-8, Can-7) iobj(tell-3, ü-8) prep(ü-8, like-9) pobj(like-9, number-10) det(sections-12, the-11) dobj(tell-3, sections-12) advmod(..-17, so-13) mark(..-17, that-14) num(..-17, it\u2019s-15) amod(..-17, clearer-16) dep(tell-3, ..-17)
root(ROOT-0, call-1) poss(arly-3, her-2) dep(call-1, arly-3) dep(arly-3, in-4) det(morning-6, the-5) pobj(in-4, morning-6)
advmod(manage-3, Ya\u002c-1) advmod(manage-3, din-2) advcl(take-24, manage-3) aux(get-5, to-4) xcomp(manage-3, get-5) nn(wan\u002c-9, e-6) nn(wan\u002c-9, timeslot-7) nn(wan\u002c-9, i-8) nsubj(end-10, wan\u002c-9) ccomp(get-5, end-10) prt(end-10, up-11) ccomp(end-10, w-12) det(tut-14, a-13) dobj(w-12, tut-14) prep(w-12, on-15) amod(n-17, sat\u002c-16) pobj(on-15, n-17) num(arghh-21, it\u2019s-18) amod(arghh-21, 1hr-19) amod(arghh-21, only\u002c-20) nsubj(manage-3, arghh-21) xsubj(get-5, arghh-21) nsubj(take-24, Kaiez\u002c-23) root(ROOT-0, take-24) nsubj(have-26, care\u002c-25) ccomp(take-24, have-26) det(wkend-29, a-27) amod(wkend-29, great-28) dobj(have-26, wkend-29) advmod(wkend-29, too-30)
nsubj(wk-2, Nxt-1) root(ROOT-0, wk-2) amod(work-5, i\u2019ll-3) nn(work-5, stop-4) dobj(wk-2, work-5) prep(work-5, on-6) num(nite-10, wed\u002c-7) advmod(wed-9, so-8) amod(nite-10, wed-9) pobj(on-6, nite-10)
advmod(When-9, So-1) dep(So-1, u-2) dep(u-2, sure-3) dep(sure-3, wan-4) xcomp(wan-4, go-5) nn(lar-7, hk-6) dobj(go-5, lar-7) advmod(is-10, When-9) root(ROOT-0, is-10) amod(flight-12, ur-11) nsubj(is-10, flight-12)
nsubj(b-3, i-1) aux(b-3, should-2) dep(going-11, b-3) acomp(b-3, able-4) aux(go-6, to-5) xcomp(able-4, go-6) prt(go-6, down-7) nsubj(going-11, who-9) advmod(who-9, else-10) root(ROOT-0, going-11)
nn(C-3, Ok-1) nsubj(u-4, C-3) root(ROOT-0, u-4) advmod(u-4, then-5)
dep(come-2, How-1) root(ROOT-0, come-2) advmod(fast-4, so-3) dep(Hee-6, fast-4) dep(I\u2019m-8, Hee-6) amod(I\u2019m-8, ..-7) dobj(come-2, I\u2019m-8) acomp(come-2, sure-9) poss(dear-11, my-10) nsubj(look-13, dear-11) advmod(look-13, now-12) ccomp(sure-9, look-13) advmod(..-16, very-14) advmod(..-16, pretty-15) acomp(look-13, ..-16)
advmod(ard-2, I\u2019m-1) root(ROOT-0, ard-2) prep(ard-2, outside-3) pcomp(outside-3, looking-4) prep(looking-4, at-5) amod(things-7, other-6) pobj(at-5, things-7) dep(ard-2, Call-9) dobj(Call-9, me-10) advmod(done-14, when-11) nsubj(done-14, u-12) dep(u-12, all-13) advcl(Call-9, done-14)
advmod(take-9, Still-1) prep(take-9, at-2) amod(coast-4, west-3) pobj(at-2, coast-4) dep(coast-4, Haiz-6) nsubj(take-9, Ã\u2019ll-8) xsubj(come-12, Ã\u2019ll-8) root(ROOT-0, take-9) advmod(take-9, forever-10) aux(come-12, to-11) xcomp(take-9, come-12) prt(come-12, back-13)
advmod(?!?!-3, where-1) nsubj(?!?!-3, u-2) root(ROOT-0, ?!?!-3) dobj(?!?!-3, we-4) prep(?!?!-3, all-5) dep(all-5, here-6) dep(here-6, already-7) dep(?!?!-3, waiting-9) prep(waiting-9, for-10) pobj(for-10, u-11)
root(ROOT-0, Wat-1) dobj(Wat-1, time-2) num(time-2, liao\u002c-3) advmod(got-6, where-4) advmod(got-6, still-5) rcmod(time-2, got-6)
dep(come-2, How-1) dep(it-12, come-2) advmod(late-4, so-3) acomp(come-2, late-4) num(camp-7, one-5) nn(camp-7, ur-6) nsubj(come-2, camp-7) nn(camp-10, Wat-9) nsubj(it-12, camp-10) cop(it-12, is-11) root(ROOT-0, it-12)
prep(call-5, As-1) pobj(As-1, usual-2) nsubj(call-5, u-3) aux(call-5, can-4) root(ROOT-0, call-5) nsubj(ard-7, me-6) ccomp(call-5, ard-7) num(smth-9, 10-8) dobj(ard-7, smth-9)
nn(la-2, Ok-1) nsubj(ask-11, la-2) nn(mum-5, Den-4) dep(la-2, mum-5) cc(mum-5, and-6) nn(leh-8, papa-7) conj(mum-5, leh-8) aux(ask-11, V-10) root(ROOT-0, ask-11) amod(den-17, em-12) nn(den-17, dey-13) nn(den-17, wan-14) nn(den-17, anythin-15) nn(den-17, anot-16) dobj(ask-11, den-17) vmod(den-17, msg-18) dobj(msg-18, me-19) advmod(ask-11, again-20)
root(ROOT-0, I\u2019m-1) prep(I\u2019m-1, in-2) pobj(in-2, town-3) advmod(take-8, now-4) mark(take-8, so-5) amod(jus-7, i\u2019ll-6) nsubj(take-8, jus-7) advcl(I\u2019m-1, take-8) dobj(take-8, mrt-9) advmod(later-11, down-10) advmod(take-8, later-11)
nsubj(got-3, i-1) advmod(got-3, just-2) root(ROOT-0, got-3) prep(got-3, on-4) det(train-6, the-5) pobj(on-4, train-6)
det(lah\u002c-2, No-1) nsubj(kidding-4, lah\u002c-2) advmod(kidding-4, just-3) root(ROOT-0, kidding-4) prep(enjoy-15, Of-6) pobj(Of-6, course-7) amod(thinking-9, i\u2019m-8) nsubj(enjoy-15, thinking-9) prep(thinking-9, of-10) nn(lah\u002c-14, u-11) nn(lah\u002c-14, Ok-13) pobj(of-10, lah\u002c-14) parataxis(kidding-4, enjoy-15) amod(dinner-20, ur-16) nn(dinner-20, shopping-17) nn(dinner-20, n-18) nn(dinner-20, ur-19) dobj(enjoy-15, dinner-20) advmod(enjoy-15, later-21)
nsubj(ask-2, Aud-1) root(ROOT-0, ask-2) mark(think-14, whether-3) nsubj(think-14, tmr-4) vmod(tmr-4, going-5) aux(ghenglai-7, to-6) xcomp(going-5, ghenglai-7) nn(ard-9, house-8) dobj(ghenglai-7, ard-9) num(ard-9, 5-10) prep(ghenglai-7, for-11) nn(i-13, dinner-12) pobj(for-11, i-13) ccomp(ask-2, think-14) acomp(think-14, ..-15)
nsubj(see-2, ok-1) root(ROOT-0, see-2) dep(see-2, u-3) prep(u-3, in-4) det(lab-6, the-5) pobj(in-4, lab-6) advmod(u-3, then-7)
nsubj(have-2, Cat\u002c-1) root(ROOT-0, have-2) nn(form-4, u-3) dobj(have-2, form-4) iobj(have-2, form-4) dep(form-4, ur-5) num(grp-7, 3214-6) dep(form-4, grp-7) nn(Yun-10, Jun-9) dep(form-4, Yun-10) advmod(form-4, here-11) pobj(here-11, :)-12)
root(ROOT-0, Hi-1) nsubj(is-3, this-2) ccomp(Hi-1, is-3) nsubj(meet-7, yijue\u002c-4) aux(meet-7, can-5) advmod(meet-7, i-6) ccomp(is-3, meet-7) dobj(meet-7, u-8) prep(meet-7, at-9) num(tmr-11, 11-10) pobj(at-9, tmr-11)
nsubj(wake-2, U-1) dep(tau-9, wake-2) advmod(already-4, up-3) advmod(wake-2, already-4) nn(e-8, Thanx-6) num(e-8, 4-7) nsubj(tau-9, e-8) root(ROOT-0, tau-9) nn(it\u2019s-12, sar-10) nn(it\u2019s-12, piah-11) nsubj(nice-14, it\u2019s-12) advmod(nice-14, quite-13) xcomp(tau-9, nice-14)
nsubj(rent-2, Haven\u2019t-1) root(ROOT-0, rent-2) prt(rent-2, out-3) dobj(rent-2, wad-4) nsubj(offer-7, nobody-6) parataxis(rent-2, offer-7) dobj(offer-7, leh-8)
ccomp(going-5, Hi-1) nsubj(going-5, We-3) xsubj(play-7, We-3) aux(going-5, are-4) root(ROOT-0, going-5) aux(play-7, to-6) xcomp(going-5, play-7) nn(May-10, pool-8) nsubj(home-13, May-10) neg(home-13, not-11) cop(home-13, be-12) ccomp(play-7, home-13) advmod(soon-15, so-14) advmod(play-7, soon-15)
nsubj(ask-2, U-1) root(ROOT-0, ask-2) dep(ask-2, Xyan-3) mark(make-7, whether-4) nsubj(make-7, she-5) aux(make-7, can-6) ccomp(Xyan-3, make-7) dobj(make-7, it\u002c-8) dep(not-10, if-9) cc(make-7, not-10) advmod(come-12, all-11) conj(make-7, come-12) prep(come-12, for-13) amod(lunch-15, e-14) pobj(for-13, lunch-15) num(lah\u002c-18, 1-17) dep(make-7, lah\u002c-18) advmod(long-20, how-19) advmod(eat\u002c-23, long-20) aux(eat\u002c-23, can-21) nsubj(eat\u002c-23, we-22) dep(Xyan-3, eat\u002c-23) mark(make-29, if-24) amod(u-28, u-25) nn(u-28, rush-26) nn(u-28, den-27) nsubj(make-29, u-28) advcl(eat\u002c-23, make-29) det(move-31, a-30) dobj(make-29, move-31) advmod(make-29, first-32)
neg(lah-3, not-1) amod(lah-3, bad-2) root(ROOT-0, lah-3) quantmod(bit-6, just-4) quantmod(bit-6, a-5) num(sian-7, bit-6) rcmod(lah-3, sian-7) advmod(u-10, where-9) dep(lah-3, u-10) dep(lah-3, now-11)
discourse(Den-3, Oh-1) dep(drop-6, Den-3) dobj(Den-3, i-4) aux(drop-6, can-5) root(ROOT-0, drop-6) prep(drop-6, by-7) pcomp(by-7, on-8) amod(liao-11, sunday\u2019s-9) nn(liao-11, match-10) dep(on-8, liao-11) dep(liao-11, Haha-13) nn(u-17, Alright-15) nn(u-17, c-16) dep(liao-11, u-17) prep(u-17, on-18) pobj(on-18, sun-19) amod(liao-26, Long-21) nn(liao-26, time-22) nn(liao-26, Nv-23) nn(liao-26, c-24) nn(liao-26, u-25) nsubj(drop-6, liao-26)
dep(toilet-5, Sorry-1) nn(toilet-5, ah-2) nn(toilet-5, i-3) nn(toilet-5, go-4) dep(go-8, toilet-5) advmod(go-8, Now-7) root(ROOT-0, go-8) nn(bus-10, home-9) dobj(go-8, bus-10) det(lot-12, a-11) dep(bus-10, lot-12) prep(bus-10, of-13) nn(gd-17, ppl-14) nn(gd-17, U-16) pobj(of-13, gd-17) dobj(sleep-20, gd-17) nsubj(sleep-20, lor-18) aux(sleep-20, can-19) rcmod(gd-17, sleep-20)
dep(watch-4, So-1) nsubj(watch-4, good-2) aux(watch-4, can-3) root(ROOT-0, watch-4) amod(Ur-8, tv\u002c-5) nn(Ur-8, haiz-6) nn(Ur-8, ..-7) dobj(watch-4, Ur-8) dobj(need-13, Ur-8) amod(bf-10, poor-9) nsubj(need-13, bf-10) xsubj(do-15, bf-10) advmod(need-13, still-11) aux(need-13, do-12) rcmod(Ur-8, need-13) aux(do-15, to-14) xcomp(need-13, do-15) dobj(do-15, report-16)
nsubj(say-2, Who-1) dep(behave-9, say-2) nn(dun-4, i-3) nsubj(miss-5, dun-4) ccomp(say-2, miss-5) dobj(miss-5, u-6) nsubj(behave-9, I\u2019ll-8) root(ROOT-0, behave-9) dep(k-11, well-10) dep(Tdy-13, k-11) dep(behave-9, Tdy-13) amod(close-16, many-14) nn(close-16, stall-15) dobj(behave-9, close-16)
nn(dun-7, Lazing-1) nn(dun-7, ard-2) nn(dun-7, lor-3) nn(dun-7, E-5) nn(dun-7, weather-6) nsubj(looks-8, dun-7) xsubj(go-11, dun-7) root(ROOT-0, looks-8) acomp(looks-8, good-9) aux(go-11, to-10) xcomp(looks-8, go-11) amod(leh-14, east-12) nn(leh-14, coast-13) dobj(go-11, leh-14)
amod(chinese-2, happy-1) amod(year-4, chinese-2) amod(year-4, new-3) nsubj(u-8, year-4) dep(year-4, kor-5) aux(u-8, may-7) root(ROOT-0, u-8) xcomp(u-8, find-9) det(job-12, a-10) amod(job-12, good-11) dobj(find-9, job-12) cc(u-8, and-13) conj(u-8, prosper-14) prep(prosper-14, in-15) amod(yr-17, e-16) pobj(in-15, yr-17) prep(yr-17, of-18) det(monkey-20, the-19) pobj(of-18, monkey-20)
nn(gonna-3, hey-1) nn(gonna-3, i-2) nsubj(meet-4, gonna-3) root(ROOT-0, meet-4) advmod(all-6, u-5) amod(guys-7, all-6) dobj(meet-4, guys-7) prep(meet-4, for-8) det(nxt-12, a-9) amod(nxt-12, short-10) nn(nxt-12, meeting-11) pobj(for-8, nxt-12) vmod(nxt-12, wed-13) xcomp(wed-13, ..-14) nn(u-18, i-15) nn(u-18, confirm-16) nn(u-18, wif-17) dobj(..-14, u-18) dobj(..-23, u-18) predet(details-21, all-19) det(details-21, the-20) nsubj(..-23, details-21) advmod(..-23, soon-22) rcmod(u-18, ..-23)
root(ROOT-0, help-1) nsubj(ask-3, me-2) ccomp(help-1, ask-3) dobj(ask-3, caroline-4) mark(wanna-7, whether-5) nsubj(wanna-7, she-6) ccomp(ask-3, wanna-7) dep(wanna-7, go-8) advmod(go-8, also-9)
det(assignments-2, The-1) nsubjpass(took-20, assignments-2) auxpass(took-20, were-3) prep(took-20, in-4) dep(in-4, groups-5) dep(groups-5, though-6) punct(groups-5, Else-8) nsubj(check-12, you-9) aux(check-12, can-10) advmod(check-12, also-11) dep(groups-5, check-12) prt(check-12, out-13) dobj(check-12, modules-14) prep(check-12, with-15) nn(IT1XXX-17, code-16) pobj(with-15, IT1XXX-17) neg(took-20, Never-19) root(ROOT-0, took-20) dobj(took-20, them-21) prep(took-20, before-22) pcomp(before-22, though-23)
nn(sori-3, hey-1) nn(sori-3, andy-2) root(ROOT-0, sori-3) dobj(ought-37, sori-3) advmod(late-5, real-4) advmod(in-6, late-5) rcmod(sori-3, in-6) pcomp(in-6, writing-7) dobj(writing-7, tis-8) advmod(feelin-13, So-10) advmod(feelin-13, how-11) amod(feelin-13, yer-12) dobj(go-30, feelin-13) prep(feelin-13, after-14) det(bountiful-16, a-15) pobj(after-14, bountiful-16) nn(wana-20, friday-17) nn(wana-20, Jus-19) nsubj(tell-21, wana-20) rcmod(bountiful-16, tell-21) nsubj(did-23, you-22) ccomp(tell-21, did-23) det(job-26, an-24) amod(job-26, awesome-25) dobj(did-23, job-26) nsubj(go-30, You-28) advmod(go-30, just-29) rcmod(tis-8, go-30) prep(go-30, from-31) pobj(from-31, strength-32) prep(writing-7, to-33) pobj(to-33, strength-34) nsubj(ought-37, They-36) xsubj(give-39, They-36) rcmod(sori-3, ought-37) aux(give-39, to-38) xcomp(ought-37, give-39) iobj(give-39, you-40) advmod(talented/versatile-42, most-41) amod(performer-43, talented/versatile-42) dobj(give-39, performer-43) prep(performer-43, of-44) det(night-46, the-45) pobj(of-44, night-46) amod(seeya-49, Alright\u002c-48) dep(sori-3, seeya-49) prep(seeya-49, at-50) pobj(at-50, Talentquest-51) dep(sori-3, Hope-53) dobj(get-56, Hope-53) amod(dun-55, h2obabes-54) nsubj(get-56, dun-55) rcmod(Hope-53, get-56) advmod(get-56, triple-57)
root(ROOT-0, i-1) cop(i-1, am-2) amod(tml-4, free-3) nsubj(i-1, tml-4) mark(give-8, after-5) nsubj(give-8, 4pm-6) dep(i-1, give-8) iobj(give-8, me-9) det(time-11, a-10) dobj(give-8, time-11)
nsubj(know-2, U-1) root(ROOT-0, know-2) nsubj(watchin-4, we-3) ccomp(know-2, watchin-4) prep(watchin-4, at-5) pobj(at-5, lido-6)
root(ROOT-0, YOu-1) rcmod(YOu-1, have-2) det(number-4, the-3) nsubj(did-9, number-4) prep(number-4, of-5) det(u-8, the-6) nn(u-8, salon-7) pobj(of-5, u-8) ccomp(have-2, did-9) xcomp(did-9, rebonding-10) prep(rebonding-10, at-11) pobj(at-11, raffles-12) advmod(paid-17, How-14) advmod(paid-17, much-15) advmod(paid-17, u-16) dep(YOu-1, paid-17)
advmod(doing-8, where-1) aux(doing-8, are-2) nsubj(doing-8, you-3) dep(you-3, what-5) cop(you-7, are-6) dep(you-3, you-7) root(ROOT-0, doing-8) aux(feeling-12, are-10) nsubj(feeling-12, you-11) dep(doing-8, feeling-12) dep(doing-8, well-13)
dep(got-6, xy-1) amod(i-5, Most-3) amod(i-5, prob-4) nsubj(got-6, i-5) dep(duno-11, got-6) num(work-8, 2-7) dobj(got-6, work-8) nsubj(duno-11, I-10) root(ROOT-0, duno-11) xcomp(duno-11, meet-12) amod(prob-15, where\u002c-13) advmod(prob-15, most-14) amod(lor-17, prob-15) nn(lor-17, town-16) dobj(meet-12, lor-17)
nsubj(have-3, So-1) advmod(have-3, still-2) root(ROOT-0, have-3)
nsubj(forget-2, Dun-1) xsubj(help-4, Dun-1) root(ROOT-0, forget-2) aux(help-4, to-3) xcomp(forget-2, help-4) nsubj(terminate-6, me-5) ccomp(help-4, terminate-6) poss(line-8, my-7) dobj(terminate-6, line-8)
amod(i-2, hi\u002c-1) root(ROOT-0, i-2) vmod(i-2, put-3) det(hp-5, the-4) nsubj(manage-11, hp-5) xsubj(see-13, hp-5) prep(hp-5, to-6) amod(mode\u002c-8, silent-7) pobj(to-6, mode\u002c-8) aux(manage-11, did-9) neg(manage-11, not-10) ccomp(put-3, manage-11) aux(see-13, to-12) xcomp(manage-11, see-13) dobj(see-13, it-14) dep(i-2, Nvm-16) rcmod(Nvm-16, pass-17) dobj(pass-17, it-18) prep(pass-17, to-19) pobj(to-19, me-20) det(day-23, some-21) amod(day-23, other-22) tmod(to-19, day-23) dep(i-2, It-25) rcmod(It-25, works-26) prep(works-26, without-27) det(right-30, a-28) nn(right-30, cd-29) pobj(without-27, right-30)
aux(feeling-3, Are-1) nsubj(feeling-3, you-2) root(ROOT-0, feeling-3) advmod(feeling-3, well-4) dep(feeling-3, have-6) prep(have-6, to-7) pobj(to-7, school-8) dep(feeling-3, On-10) poss(way-12, my-11) pobj(On-10, way-12) vmod(way-12, going-13) advmod(going-13, back-14) dep(feeling-3, take-16) dobj(take-16, care-17)
nn(sch-3, Today-1) amod(sch-3, first-2) dep(gd-5, sch-3) num(sch-3, reopen\u002c-4) root(ROOT-0, gd-5) discourse(fine-12, luck-6) amod(everything-9, Hope-8) nsubj(fine-12, everything-9) aux(fine-12, will-10) cop(fine-12, be-11) ccomp(gd-5, fine-12) dep(fine-12, 4-13) nn(Jia-16, u-14) xcomp(fine-12, Jia-16) nsubj(gd-5, you-17)
root(ROOT-0, i\u2019m-1) vmod(i\u2019m-1, done-2) amod(yay-5, liao-3) advmod(home-10, yay-5) prep(yay-5, on-7) poss(way-9, my-8) pobj(on-7, way-9) dobj(done-2, home-10) dep(i\u2019m-1, u-12) rcmod(u-12, want-13) nsubj(go-16, me-14) aux(go-16, to-15) xcomp(want-13, go-16) nn(u-18, pick-17) dobj(go-16, u-18) prt(go-16, up-19) amod(u-23, i\u2019ll-21) nn(u-23, call-22) dep(i\u2019m-1, u-23) tmod(leaving-26, u-23) advmod(leaving-26, when-24) nsubj(leaving-26, i\u2019m-25) rcmod(u-23, leaving-26) det(hse-28, the-27) dobj(leaving-26, hse-28)
amod(minds-2, great-1) root(ROOT-0, minds-2) dep(minds-2, think-3) advmod(think-3, alike-4)
advmod(back-2, welcome-1) advmod(When-12, back-2) nsubj(look-5, We-4) dep(back-2, look-5) advmod(look-5, forward-6) prep(look-5, to-7) pcomp(to-7, meeting-8) dobj(meeting-8, you-9) advmod(meeting-8, soon-10) advmod(alighting-15, When-12) auxpass(alighting-15, are-13) nsubjpass(alighting-15, you-14) root(ROOT-0, alighting-15)
root(ROOT-0, yeah-1) auxpass(time-14, was-3) nsubjpass(time-14, thinking-4) prep(thinking-4, of-5) pcomp(of-5, going-6) prt(going-6, out-7) dobj(going-6, lor-8) dep(lor-8, it\u2019s-10) cop(time-14, been-11) det(time-14, a-12) amod(time-14, long-13) dep(yeah-1, time-14) mark(went-18, since-15) nsubj(went-18, we-16) advmod(went-18, last-17) dep(time-14, went-18) prt(went-18, out-19) nn(:)-21, rite-20) dobj(went-18, :)-21)
nsubj(be-2, I\u2019ll-1) root(ROOT-0, be-2) prep(be-2, in-3) nn(fr-5, sch-4) pobj(in-3, fr-5) num(fr-5, 4-6-6) nsubj(dun-9, I-8) parataxis(be-2, dun-9) nn(book-12, haf-10) nn(book-12, da-11) dobj(dun-9, book-12) prep(book-12, in-13) pobj(in-13, sch-14) dep(book-12, It\u2019s-16) prep(It\u2019s-16, at-17) pobj(at-17, home-18)
nsubj(went-9, Me-1) advmod(at-3, now-2) rcmod(Me-1, at-3) nn(eating-5, chinatown-4) pobj(at-3, eating-5) advmod(went-9, Just-7) advmod(went-9, now-8) root(ROOT-0, went-9) prep(went-9, to-10) pobj(to-10, temple-11)
root(ROOT-0, wat-1) advmod(busy-3, u-2) amod(wat-1, busy-3) prep(busy-3, with-4)
poss(frens-2, His-1) nsubj(go-3, frens-2) root(ROOT-0, go-3) advmod(go-3, then-4) dobj(go-3, he-5) prep(go-3, in-6) pobj(in-6, lor-7) neg(lor-7, Not-9) advmod(lor-7, alone-10) advmod(lor-16, wif-11) poss(lor-16, my-12) nn(lor-16, mum-13) amod(lor-16, n-14) nn(lor-16, sis-15) dep(lor-7, lor-16)
dep(go-4, Hey-1) nsubj(go-4, We-3) root(ROOT-0, go-4) dobj(go-4, karaoke-5) dobj(think-11, karaoke-5) det(day-7, another-6) dep(karaoke-5, day-7) nn(Today\u002c-10, lah-8) nsubj(think-11, Today\u002c-10) rcmod(karaoke-5, think-11) dep(wanna-13, we-12) nsubj(go-14, wanna-13) ccomp(think-11, go-14) nn(town-16, china-15) dobj(go-14, town-16) cc(go-14, and-17) conj(go-14, look-18) dep(look-18, see-19) mark(time-22, if-20) amod(time-22, there\u2019s-21) advcl(see-19, time-22) advmod(go-4, :-)-24)
dep(wise-13, Haha-1) dep(wise-13, Since-3) advmod(salesman-8, when-4) nsubj(salesman-8, i-5) cop(salesman-8, become-6) det(salesman-8, a-7) pcomp(Since-3, salesman-8) advmod(Lucky-10, ..-9) amod(salesman-8, Lucky-10) nsubj(wise-13, she-11) xsubj(get-15, she-11) cop(wise-13, is-12) root(ROOT-0, wise-13) aux(get-15, to-14) xcomp(wise-13, get-15) dobj(get-15, it-16) dep(wise-13, So-18) nsubj(think-20, i-19) parataxis(wise-13, think-20) nsubj(rite-25, u-21) aux(rite-25, must-22) cop(rite-25, be-23) amod(rite-25, wiser-24) ccomp(think-20, rite-25)
dep(duper-34, Hm-1) advmod(valid-5, Just-3) neg(valid-5, not-4) dep(Hm-1, valid-5) prep(valid-5, with-6) dep(with-6, promotion-7) expl(is-10, There-9) dep(promotion-7, is-10) det(20%-12, a-11) nsubj(is-10, 20%-12) advmod(20%-12, off-13) cc(20%-12, and-14) det(discount-17, a-15) amod(discount-17, $5-16) conj(20%-12, discount-17) nsubj(see-20, Ã-19) rcmod(valid-5, see-20) ref(valid-5, which-21) dobj(gives-23, which-21) nsubj(gives-23, one-22) ccomp(see-20, gives-23) det(deal-26, a-24) amod(deal-26, better-25) dobj(gives-23, deal-26) dep(Hm-1, Eh-28) poss(super-33, My-30) nn(super-33, hair-31) nn(super-33, colour-32) nsubj(duper-34, super-33) root(ROOT-0, duper-34) acomp(duper-34, obvious-35) parataxis(duper-34, die-37)
nsubj(received-3, I-1) aux(received-3, have-2) root(ROOT-0, received-3) amod(translation-5, Kit\u2019s-4) nn(Sent-11, translation-5) cc(translation-5, and-6) conj(translation-5, reveiwed-7) cc(translation-5, and-8) conj(translation-5, commented-9) dobj(received-3, Sent-11) prep(received-3, to-12) poss(email-14, your-13) pobj(to-12, email-14)
nsubj(love-2, I-1) root(ROOT-0, love-2) nn(ah-4, u-3) dobj(love-2, ah-4) poss(m-8, my-5) amod(m-8, dear\u002c-6) amod(m-8, i-7) dep(ah-4, m-8) advmod(supporting-10, always-9) vmod(ah-4, supporting-10) nn(ga-12, u-11) dobj(supporting-10, ga-12) nsubj(..-16, Sleep-14) advmod(..-16, earlier-15) parataxis(love-2, ..-16) nsubj(m-18, I-17) ccomp(..-16, m-18) xcomp(m-18, going-19) aux(bathe-21, to-20) xcomp(going-19, bathe-21) dobj(bathe-21, la-22)
nsubj(love-3, I-1) aux(love-3, would-2) root(ROOT-0, love-3) nsubj(way-6, it-4) det(way-6, that-5) xcomp(love-3, way-6) amod(way-6, ..-7)
nsubj(noe-4, Ya-1) nsubj(noe-4, I-3) advcl(cos-11, noe-4) dobj(noe-4, he\u2019s-5) advmod(lor\u002c-10, only-6) det(lor\u002c-10, some-7) amod(lor\u002c-10, small-8) nn(lor\u002c-10, fry-9) nsubj(cos-11, lor\u002c-10) root(ROOT-0, cos-11) nsubj(nds-13, he-12) xsubj(go-15, he-12) ccomp(cos-11, nds-13) aux(go-15, to-14) xcomp(nds-13, go-15) nn(models-18, ard-16) nn(models-18, pullin-17) dobj(go-15, models-18) nsubj(watch-22, Goin-20) aux(watch-22, to-21) parataxis(nds-13, watch-22) xcomp(nds-13, watch-22) dobj(watch-22, movie-23) advmod(watch-22, now-24) num(sis-27, lor\u002c-25) nn(sis-27, w-26) pobj(now-24, sis-27)
dep(creature-5, She\u2019s-1) amod(creature-5, such-2) punct(creature-5, an-3) amod(creature-5, insensitive-4) dep(Makes-7, creature-5) root(ROOT-0, Makes-7) poss(boil-10, my-8) nn(boil-10, blood-9) dobj(Makes-7, boil-10)
root(ROOT-0, Ok-1) amod(bell-4, just-2) nn(bell-4, press-3) dobj(Ok-1, bell-4)
root(ROOT-0, see-1) nsubj(la-3, you-2) xcomp(see-1, la-3) dobj(wait-6, la-3) nsubj(wait-6, I-5) rcmod(la-3, wait-6) dep(wait-6, for-7) pobj(for-7, you-8)
dep(don\u2019t-2, you-1) nsubj(know-3, don\u2019t-2) root(ROOT-0, know-3) advmod(much-5, how-4) advmod(fucking-7, much-5) nsubj(fucking-7, I-6) ccomp(know-3, fucking-7) xcomp(fucking-7, miss-8) dobj(miss-8, you-9)
nsubj(say-3, Mei-1) advmod(say-3, suddenly-2) root(ROOT-0, say-3) nsubj(dun-5, she-4) ccomp(say-3, dun-5) nn(go\u002c-7, wan-6) iobj(dun-5, go\u002c-7) nn(dunno-11, den-8) nn(dunno-11, i-9) nn(dunno-11, oso-10) dobj(dun-5, dunno-11) dobj(ma-14, dunno-11) nn(frens-13, ur-12) nsubj(ma-14, frens-13) rcmod(dunno-11, ma-14) nsubj(confirm-17, Tmr-16) parataxis(dun-5, confirm-17) amod(hor-19, earlier-18) dobj(confirm-17, hor-19)
advmod(cfm-2, Too-1) root(ROOT-0, cfm-2) prep(cfm-2, with-3) pobj(with-3, u-4) advmod(free-8, when-5) nsubj(free-8, u-6) aux(free-8, be-7) dep(cfm-2, free-8) prep(free-8, for-9) amod(week-11, next-10) pobj(for-9, week-11)
advmod(find-5, So-1) advmod(find-5, how-2) aux(find-5, did-3) nsubj(find-5, u-4) dep(know-12, find-5) det(talk-7, the-6) dobj(find-5, talk-7) advmod(know-12, No-9) amod(u-11, internships-10) pobj(No-9, u-11) root(ROOT-0, know-12) num(fulltime-15, ....-13) amod(fulltime-15, only-14) nsubj(know-12, fulltime-15)
nsubj(liao-4, I-1) cop(liao-4, am-2) advmod(liao-4, here-3) root(ROOT-0, liao-4) dep(liao-4, see-5) dobj(see-5, u-6)
nsubj(need-3, I-1) advmod(need-3, also-2) root(ROOT-0, need-3) dobj(need-3, one-4) cc(need-3, But-6) nsubj(see-8, haven\u2019t-7) conj(need-3, see-8) dobj(offer-11, what-9) nsubj(offer-11, they-10) ccomp(see-8, offer-11) nn(i-13, tonight-12) dobj(offer-11, i-13) dep(offer-11, go-14) dobj(go-14, home-15) advmod(go-14, then-16) dep(go-14, see-17) advmod(got-20, Later-19) parataxis(need-3, got-20) dobj(got-20, match-21)
nsubj(want-2, Just-1) xsubj(thank-4, Just-1) root(ROOT-0, want-2) aux(thank-4, to-3) xcomp(want-2, thank-4) dobj(thank-4, you-5) cc(thank-4, and-6) conj(thank-4, treat-7) dobj(treat-7, dumpling-8)
dep(still-2, U-1) root(ROOT-0, still-2) prep(still-2, in-3) pobj(in-3, lecture-4)
nn(work-4, Thanks-1) nn(work-4, !??-2) nn(work-4, dng-3) root(ROOT-0, work-4) cc(work-4, or-5) conj(work-4, zzz-6) advmod(work-4, now-7) nn(n-12, i-9) nn(n-12, d-10) nn(n-12, ??-11) dep(work-4, n-12) rcmod(n-12, disturb-13) amod(la\u002ccan-15, ??-14) dobj(disturb-13, la\u002ccan-15) dep(disturb-13, give-16) iobj(give-16, m-17) amod(call-20, ??-18) nn(call-20, morning-19) dobj(give-16, call-20) prep(call-20, at-21) pobj(at-21, 7tmr-22) dep(work-4, thanks-24)
nsubj(call-2, Can-1) root(ROOT-0, call-2) dobj(call-2, me-3) advmod(awake-7, when-4) nsubj(awake-7, you-5) cop(awake-7, are-6) advcl(call-2, awake-7)
root(ROOT-0, forgot-1) aux(inform-3, to-2) xcomp(forgot-1, inform-3) dobj(inform-3, you-4) mark(wearing-8, that-5) nsubj(wearing-8, i-6) aux(wearing-8, am-7) ccomp(inform-3, wearing-8) det(tshirt-11, a-9) amod(tshirt-11, black-10) dobj(wearing-8, tshirt-11) prep(wearing-8, with-12) pobj(with-12, jeans-13)
nsubj(get-3, u-1) aux(get-3, should-2) root(ROOT-0, get-3) dobj(get-3, it-4) advmod(get-3, too-5)
prep(got-10, Like-1) nn(clash-3, dat-2) pobj(Like-1, clash-3) prep(clash-3, with-4) poss(Aiyoh\u002c-8, my-5) dep(Aiyoh\u002c-8, timing-6) pobj(with-4, Aiyoh\u002c-8) nsubj(got-10, i-9) xsubj(change-12, i-9) root(ROOT-0, got-10) aux(change-12, to-11) xcomp(got-10, change-12) dobj(change-12, date-13) advmod(change-12, again-14) advmod(change-12, ..-15)
root(ROOT-0, huh-1) dep(wanna-4, you-3) dep(huh-1, wanna-4) vmod(wanna-4, come-5) prep(come-5, in-6) nn(btw\u002c-9, ah-7) pobj(in-6, btw\u002c-9) mark(wants-13, if-10) poss(dad-12, your-11) nsubj(wants-13, dad-12) advcl(come-5, wants-13) amod(car\u002c-15, full-14) dobj(wants-13, car\u002c-15) amod(finish-18, high-16) nn(finish-18, quality-17) nsubj(take-20, finish-18) aux(take-20, may-19) rcmod(car\u002c-15, take-20) nn(dollars\u002c-24, ard-21) num(dollars\u002c-24, 3K-22) nn(dollars\u002c-24, malaysian-23) dobj(take-20, dollars\u002c-24) cc(dollars\u002c-24, and-25) num(week-27, one-26) conj(dollars\u002c-24, week-27) dep(huh-1, approximately-29)
nn(i\u2019ll-2, Cos-1) nsubj(bringing-4, i\u2019ll-2) aux(bringing-4, be-3) advcl(do-11, bringing-4) poss(laptop-6, my-5) dobj(bringing-4, laptop-6) prep(bringing-4, to-7) pobj(to-7, school-8) nn(oso-10, tml-9) nsubj(do-11, oso-10) root(ROOT-0, do-11) nsubj(do-15, project-12) advmod(project-12, so-13) aux(do-15, can-14) ccomp(do-11, do-15) nn(ü-17, wif-16) iobj(do-15, ü-17) det(lor-19, all-18) dobj(do-15, lor-19)
nsubj(got-2, I-1) xsubj(rush-4, I-1) root(ROOT-0, got-2) aux(rush-4, to-3) xcomp(got-2, rush-4) poss(report-7, my-5) nn(report-7, lab-6) dobj(rush-4, report-7) nn(k-13, Tdy-9) nn(k-13, cannot-10) nn(k-13, call-11) nn(k-13, u-12) dep(report-7, k-13) nn(u-16, Tmr-15) dep(report-7, u-16) vmod(u-16, going-17) prep(going-17, to-18) pobj(to-18, school-19) nsubj(meet-22, I-21) rcmod(report-7, meet-22) dobj(meet-22, u-23) prep(meet-22, in-24) pobj(in-24, school-25)
amod(xin-2, Hey-1) dep(there\u2019s-14, xin-2) nsubj(noe-5, U-4) dep(xin-2, noe-5) advmod(print-8, how-6) aux(print-8, to-7) ccomp(noe-5, print-8) xcomp(noe-5, print-8) dobj(print-8, double-Sided-9) nsubj(there\u2019s-14, It-11) cop(there\u2019s-14, seems-12) nn(there\u2019s-14, lk-13) dep(leh-19, there\u2019s-14) det(option-16, no-15) dep(there\u2019s-14, option-16) num(option-16, 4-17) nsubj(leh-19, it-18) root(ROOT-0, leh-19)
det(url-2, the-1) nsubj(is-6, url-2) prep(url-2, for-3) det(game-5, the-4) pobj(for-3, game-5) root(ROOT-0, is-6) prep(is-6, at-7) pobj(at-7, www.materiamagica.com-8)
root(ROOT-0, dun-1) dep(dun-1, forget-2) nsubj(owe-5, u-3) advmod(owe-5, still-4) ccomp(forget-2, owe-5) iobj(owe-5, me-6) det(treat-8, a-7) dobj(owe-5, treat-8) nn(haha-11, ah-9) nn(haha-11, ..-10) nsubj(dun-1, haha-11)
nn(birthday-2, Leona-1) root(ROOT-0, birthday-2) prep(birthday-2, on-3) pobj(on-3, sun-4) dep(birthday-2, we-5) dep(we-5, meeting-6) prep(birthday-2, on-7) pobj(on-7, fri-8) prep(fri-8, for-9) nn(u-11, dinner-10) pobj(for-9, u-11) dep(birthday-2, free-12)
root(ROOT-0, Haha-1) dep(Haha-1, Okay-3) nn(pon-7, Then-5) nn(pon-7, i-6) dep(Okay-3, pon-7) advmod(pon-7, too-8)
nsubj(take-2, U-1) root(ROOT-0, take-2) nn(time-4, ur-3) dobj(take-2, time-4) dobj(understand-24, time-4) nn(u-7, btw-6) dep(time-4, u-7) aux(meet-9, can-8) rcmod(u-7, meet-9) dobj(meet-9, him-10) prep(meet-9, on-11) nn(la-18, Fri-12) nn(la-18, mah-13) nn(la-18, I-15) nn(la-18, dunno-16) nn(la-18, u-17) pobj(on-11, la-18) dep(time-4, Mama-20) nsubj(understand-24, I-22) advmod(understand-24, dun-23) rcmod(time-4, understand-24)
root(ROOT-0, Hi-1) cop(yijue-4, is-2) nsubj(yijue-4, that-3) ccomp(Hi-1, yijue-4) advmod(free-8, When-6) dep(free-8, you-7) advcl(yijue-4, free-8) nn(recommend-11, Eric-10) nsubj(Hi-1, recommend-11)
dep(going-4, xy-1) nsubj(going-4, U-3) dep(cineleisure-14, going-4) num(tickets-8, 2-5) nn(tickets-8, bk-6) nn(tickets-8, e-7) dobj(going-4, tickets-8) prep(going-4, for-9) pobj(for-9, LOTR-10) punct(cineleisure-14, Please-12) nn(cineleisure-14, bk-13) root(ROOT-0, cineleisure-14)
nn(lor-3, U-1) nn(lor-3, gd-2) nsubj(go-4, lor-3) root(ROOT-0, go-4) dobj(go-4, shopping-5) nsubj(got-7, i-6) xsubj(do-10, i-6) rcmod(shopping-5, got-7) dobj(got-7, stuff-8) aux(do-10, to-9) xcomp(got-7, do-10) punct(shopping-5, U-12) nsubj(watch-15, wan-13) num(wan-13, 2-14) dep(shopping-5, watch-15) amod(affairs-17, infernal-16) iobj(watch-15, affairs-17) det(not-19, a-18) dobj(watch-15, not-19) prep(shopping-5, Come-21) dep(Come-21, lar-22)
dep(lor-4, Oh-1) nsubj(lor-4, Kaiez-3) root(ROOT-0, lor-4) nsubj(u-7, Wa\u002c-6) dep(lor-4, u-7) advmod(efficient-9, so-8) amod(ah\u002c-10, efficient-9) dobj(u-7, ah\u002c-10) advmod(done-13, so-11) advmod(done-13, fast-12) advmod(u-7, done-13) nn(u-16, Den-15) nsubj(confirm-17, u-16) parataxis(u-7, confirm-17) ccomp(confirm-17, w-18) dobj(w-18, me-19) advmod(w-18, again-20) dep(w-18, lor-21) nsubj(meet-24, C-23) parataxis(w-18, meet-24) dep(meet-24, where-25)
advmod(sorry-2, Aiyar-1) amod(lor-3, sorry-2) nsubj(forgot-4, lor-3) root(ROOT-0, forgot-4) dobj(forgot-4, 2-5) dep(forgot-4, tell-6) dobj(tell-6, u-7)
nn(lah-2, Notty-1) root(ROOT-0, lah-2) nn(Anyway\u002c-6, Haha-4) dep(lah-2, Anyway\u002c-6) poss(nice-8, its-7) dep(Anyway\u002c-6, nice-8) dep(lah-2, Thanx-10) nn(wrapping-13, E-12) nsubj(nice-15, wrapping-13) cop(nice-15, is-14) rcmod(Thanx-10, nice-15) advmod(nice-15, too-16)
dep(duno-6, Nope-1) poss(salon4hair-3, its-2) dobj(Nope-1, salon4hair-3) nsubj(duno-6, I-5) root(ROOT-0, duno-6) advmod(lah-13, how-7) dep(lah-13, much-8) nn(lah-13, Call-10) nn(lah-13, n-11) nn(lah-13, ask-12) dep(duno-6, lah-13) advmod(go-17, When-15) nsubj(go-17, u-16) advcl(duno-6, go-17) dobj(go-17, cut-18)
nsubj(going-11, nope-1) neg(at-4, not-3) prep(nope-1, at-4) pobj(at-4, home-5) dep(nope-1, now-6) cc(now-6, and-8) conj(now-6, wont-9) aux(going-11, be-10) root(ROOT-0, going-11) nn(todae-13, town-12) dobj(going-11, todae-13)
dep(fallout-3, wheres-1) poss(fallout-3, my-2) dep(u-7, fallout-3) num(fallout-3, 2-4) nn(u-7, dhd-6) dep(bring-8, u-7) root(ROOT-0, bring-8) cc(bring-8, or-10) advmod(goin-13, am-11) nn(goin-13, i-12) dep(bring-8, goin-13) aux(claim-15, to-14) dep(goin-13, claim-15) amod(life-17, ur-16) dobj(claim-15, life-17) prep(claim-15, in-18) pobj(in-18, compensation-19)
dep(feel-16, Lol-1) mark(sorry-10, so-2) nn(i-7, excitin-3) nn(i-7, siah-4) nn(i-7, Eh-6) nsubj(sorry-10, i-7) cop(sorry-10, am-8) advmod(sorry-10, so-9) dep(Lol-1, sorry-10) prep(sorry-10, about-11) det(leh-14, the-12) nn(leh-14, ktv-13) pobj(about-11, leh-14) root(ROOT-0, feel-16) dep(of-18, kind-17) advmod(bad-19, of-18) acomp(feel-16, bad-19)
advmod(comments-3, Then-1) det(comments-3, the-2) nsubj(include-5, comments-3) aux(include-5, will-4) root(ROOT-0, include-5) dobj(include-5, question-6) num(question-6, 1-7) advmod(well-9, as-8) mwe(well-9, as-8) dep(include-5, well-9) dep(later-12, You-11) dep(well-9, later-12) mark(go-18, after-13) amod(4-15, around-14) nsubj(go-18, 4-15) cc(4-15, or-16) conj(4-15, 5-17) advcl(include-5, go-18) cc(go-18, and-19) conj(go-18, check-20) nn(mail-22, ur-21) dobj(go-18, mail-22) cc(go-18, and-23) dep(add-30, c-24) dep(lor-26, c-25) dep(then-28, lor-26) dep(add-30, then-28) nsubj(add-30, u-29) conj(go-18, add-30) prep(add-30, in-31) amod(..-35, ur-32) amod(..-35, comments\u002c-33) amod(..-35, opinions\u002c-34) pobj(in-31, ..-35)
aux(let-3, Can-1) nsubj(let-3, you-2) root(ROOT-0, let-3) nsubj(know-5, me-4) ccomp(let-3, know-5) dobj(know-5, asap-6) dobj(make-10, asap-6) mark(make-10, whether-7) nsubj(make-10, you-8) aux(make-10, can-9) dep(asap-6, make-10) dep(make-10, it-11) dep(it-11, at-12) det(time-14, that-13) pobj(at-12, time-14) neg(know-5, not-15) dep(know-5, cause-16) nn(can-18, wil-17) dobj(cause-16, can-18)
poss(pay-2, My-1) nsubj($140\u002c-4, pay-2) cop($140\u002c-4, was-3) root(ROOT-0, $140\u002c-4) dep(2hrs-8, once-5) det(2hrs-8, a-6) amod(2hrs-8, wk\u002c-7) dep(check-11, 2hrs-8) nsubj(check-11, I-10) ccomp($140\u002c-4, check-11) dobj(check-11, net-12) prep(check-11, for-13) nn(range-15, price-14) pobj(for-13, range-15) nn(u-18, Sms-17) dep(range-15, u-18) advmod(range-15, later-19)
discourse(pple-2, Hey-1) root(ROOT-0, pple-2) nsubj(meet-5, Cant-4) dep(pple-2, meet-5) dobj(meet-5, ur-6) prep(meet-5, to-7) amod(movie-11, shop\u002c-8) nn(movie-11, cos-9) nn(movie-11, watchin-10) pobj(to-7, movie-11) prep(call-17, After-13) poss(movie-15, my-14) pobj(After-13, movie-15) nsubj(call-17, den-16) parataxis(meet-5, call-17) advmod(call-17, ur-18) prep(call-17, to-19) pobj(to-19, c-20) mark(ard-24, if-21) nsubj(ard-24, ur-22) advmod(ard-24, still-23) advcl(call-17, ard-24)
nsubj(finished-2, Jus-1) root(ROOT-0, finished-2) poss(dinner-4, my-3) dobj(finished-2, dinner-4) nn(tummy-9, Very-6) amod(tummy-9, full-7) amod(tummy-9, my-8) dep(dinner-4, tummy-9) vmod(tummy-9, coming-10) prt(coming-10, out-11) advmod(coming-10, already-12) amod(year-16, Happy-14) amod(year-16, new-15) parataxis(coming-10, year-16) tmod(coming-10, year-16)
nsubj(meet-2, we-1) root(ROOT-0, meet-2) prep(meet-2, at-3) pobj(at-3, 10.30-4) advmod(10.30-4, am-5) prep(meet-2, at-6) nn(k-11, Jurong-7) nn(k-11, mrt-8) nn(k-11, stat-9) amod(k-11, tmr\u002c-10) pobj(at-6, k-11)
amod(guys-2, Actually-1) nsubj(care-5, guys-2) aux(care-5, will-3) neg(care-5, not-4) root(ROOT-0, care-5) dobj(is-8, what-6) nsubj(is-8, it-7) ccomp(care-5, is-8) cc(is-8, but-9) aux(remember-11, will-10) conj(is-8, remember-11) nsubj(send-13, who-12) ccomp(remember-11, send-13) dobj(send-13, them-14)
amod(I\u2019ll-2, Ok\u002c-1) nsubj(let-3, I\u2019ll-2) root(ROOT-0, let-3) poss(know\u002c-6, my-4) nn(know\u002c-6, mom-5) dobj(let-3, know\u002c-6) det(time-8, what-7) nsubj(you-10, time-8) cop(you-10, are-9) dep(let-3, you-10) advmod(you-10, back-11)
aux(ask-3, Did-1) nsubj(ask-3, u-2) root(ROOT-0, ask-3) nn(abt-5, zhu-4) dobj(ask-3, abt-5) det(thingy-8, the-6) advmod(thingy-8, henry-7) dep(abt-5, thingy-8) prep(ask-3, So-10) nsubj(going-12, we-11) pcomp(So-10, going-12) prep(going-12, on-13) pobj(on-13, thurs-14)
nn(getit-4, i-1) nn(getit-4, mean-2) nn(getit-4, u-3) nsubj(knowwho-10, getit-4) xsubj(call-12, getit-4) prep(getit-4, from-5) pobj(from-5, him\u002c-6) advmod(knowwho-10, then-7) advmod(knowwho-10, u-8) aux(knowwho-10, will-9) root(ROOT-0, knowwho-10) aux(call-12, to-11) xcomp(knowwho-10, call-12) dobj(call-12, mah-13)
amod(ronaldo-2, reyes\u002c-1) nn(god-21, ronaldo-2) cc(ronaldo-2, and-3) nsubj(talented-7, co-4) cop(talented-7, are-5) advmod(talented-7, all-6) conj(ronaldo-2, talented-7) cc(have-12, but-8) nsubj(have-12, they-9) aux(have-12, do-10) neg(have-12, not-11) ccomp(talented-7, have-12) det(loyalty-14, the-13) dobj(have-12, loyalty-14) vmod(loyalty-14, shown-15) prep(shown-15, by-16) amod(tissier-18, le-17) pobj(by-16, tissier-18) nn(god-21, le-20) nsubjpass(ze-23, god-21) auxpass(ze-23, is-22) root(ROOT-0, ze-23) prt(ze-23, best-24)
nsubj(woke-4, Juz-1) advmod(havent-3, now-2) amod(Juz-1, havent-3) root(ROOT-0, woke-4) advmod(so-6, up-5) dep(Can-12, so-6) det(bit-8, a-7) dep(so-6, bit-8) advmod(blur-10, blur-9) dep(Can-12, blur-10) dep(went-15, Can-12) nsubj(went-15, Dad-14) dep(woke-4, went-15) prt(went-15, out-16) dobj(went-15, liao-17) nsubj(cum-21, I-19) advmod(cum-21, cant-20) parataxis(went-15, cum-21) advmod(cum-21, now-22) advmod(cum-21, oso-23)
advmod(see-2, Later-1) root(ROOT-0, see-2) advmod(go-7, how-3) dep(how-3, lah-4) nsubj(go-7, I-6) ccomp(see-2, go-7) xcomp(go-7, change-8) amod(u-11, now\u002c-9) nn(u-11, call-10) dobj(change-8, u-11) mark(leave-14, before-12) nsubj(leave-14, i-13) advcl(change-8, leave-14)
poss(i-3, My-1) amod(i-3, dear\u002c-2) nsubj(pray-5, i-3) aux(pray-5, will-4) root(ROOT-0, pray-5) prep(pray-5, for-6) pobj(for-6, you-7) nsubj(....-16, Hope-9) mark(tired-15, that-10) nn(won\u2019t-12, u-11) nsubj(tired-15, won\u2019t-12) cop(tired-15, be-13) advmod(tired-15, too-14) dep(Hope-9, tired-15) parataxis(pray-5, ....-16) nsubj(love-18, I-17) ccomp(....-16, love-18) dobj(love-18, u-19)
root(ROOT-0, Hi-1) dep(Hi-1, I\u2019m-3) prep(I\u2019m-3, at-4) amod(stop-7, e-5) nn(stop-7, bus-6) pobj(at-4, stop-7) prep(I\u2019m-3, outside-8) pobj(outside-8, esplanade-9) dep(Hi-1, E-11) num(rite-16, one-12) amod(rite-16, opp-13) amod(rite-16, marina-14) nn(rite-16, sq-15) dep(E-11, rite-16)
nsubj(come-2, I-1) root(ROOT-0, come-2) advmod(come-2, n-3) dep(come-2, pick-4) dobj(pick-4, ü-5) prt(pick-4, up-6) dep(pick-4, Come-8) prt(Come-8, out-9) advmod(aft-11, immediately-10) amod(lesson-13, aft-11) nn(lesson-13, ur-12) dobj(Come-8, lesson-13)
cc(starts-4, But-1) poss(lect-3, my-2) nsubj(starts-4, lect-3) root(ROOT-0, starts-4) prep(starts-4, at-5) num(leh-7, 2-6) pobj(at-5, leh-7) advmod(u-11, When-9) nsubj(u-11, r-10) rcmod(leh-7, u-11) advmod(anytime-13, free-12) advmod(u-11, anytime-13) num(2-15, b4-14) dobj(u-11, 2-15)
advmod(sorry-2, So-1) amod(reply-4, sorry-2) det(reply-4, no-3) root(ROOT-0, reply-4) dobj(coz-7, reply-4) poss(sms-6, your-5) nsubj(coz-7, sms-6) rcmod(reply-4, coz-7) advmod(busy-9, too-8) acomp(coz-7, busy-9) advmod(now-11, just-10) dep(reply-4, now-11)
nn(i-2, hey-1) nsubj(got-3, i-2) root(ROOT-0, got-3) det(job-5, a-4) dobj(got-3, job-5) vmod(job-5, lobang-6) prep(lobang-6, for-7) nn(..-9, u-8) pobj(for-7, ..-9) vmod(..-9, interested-10) prep(interested-10, in-11) nn(??-14, surveyor-12) nn(??-14, job-13) pobj(in-11, ??-14)
amod(i\u2019ll-15, Quite-1) dep(i\u2019ll-15, ok-2) cc(ok-2, but-3) det(bit-5, a-4) npadvmod(now-13, bit-5) dep(bit-5, ex-6) dep(ex-6, U-8) dep(ex-6, better-9) dep(ex-6, go-10) xcomp(go-10, eat-11) dobj(eat-11, smth-12) conj(ok-2, now-13) conj(ok-2, else-14) nsubj(feel-16, i\u2019ll-15) root(ROOT-0, feel-16) acomp(feel-16, guilty-17)
nsubj(..-2, Ok-1) root(ROOT-0, ..-2) advmod(sorry-4, So-3) acomp(..-2, sorry-4) dep(dat-6, abt-5) dep(eat-9, dat-6) nsubj(eat-9, I-8) ccomp(sorry-4, eat-9) nn(u-11, wif-10) dobj(eat-9, u-11) prep(eat-9, on-12) amod(k-15, other-13) nn(k-15, day-14) pobj(on-12, k-15)
nsubj(got-34, He-1) nsubj(grumble-3, neva-2) parataxis(got-34, grumble-3) cc(i-5, but-4) dep(grumble-3, i-5) amod(lor-7, sad-6) dobj(i-5, lor-7) dep(lor-7, Hee-9) dep(i-5, Buy-11) nn(lor-13, tmr-12) iobj(Buy-11, lor-13) amod(lunch-15, aft-14) dobj(Buy-11, lunch-15) cc(i-5, But-17) dep(hear-28, we-18) dep(tmr-23, still-19) nn(tmr-23, meetin-20) num(tmr-23, 4-21) nn(tmr-23, lunch-22) dep(hear-28, tmr-23) det(not-25, a-24) dep(tmr-23, not-25) nsubj(hear-28, Neva-27) conj(i-5, hear-28) ccomp(hear-28, fr-29) dobj(fr-29, them-30) nn(Ã-33, lei-31) dep(fr-29, Ã-33) root(ROOT-0, got-34) det(lot-36, a-35) dobj(got-34, lot-36) prep(lot-36, of-37) nn(ar-39, work-38) pobj(of-37, ar-39)
nsubj(cos-2, Oic-1) root(ROOT-0, cos-2) nsubj(n-4, me-3) dep(cos-2, n-4) poss(sis-6, my-5) nsubj(got-7, sis-6) dep(n-4, got-7) det(lunch-9, no-8) dobj(got-7, lunch-9) tmod(got-7, today-10) poss(dad-12, my-11) nsubj(went-13, dad-12) dep(got-7, went-13) prt(went-13, out-14) cc(got-7, So-16) conj(got-7, dunno-17) mark(eat-20, whether-18) nsubj(eat-20, 2-19) ccomp(cos-2, eat-20) prep(eat-20, in-21) pobj(in-21, sch-22) cc(sch-22, or-23) conj(sch-22, wat-24)
aux(..-8, Did-1) amod(valentine-3, noe-2) nsubj(..-8, valentine-3) prep(valentine-3, is-4) amod(day-7, oso-5) nn(day-7, friendship-6) dep(is-4, day-7) root(ROOT-0, ..-8) discourse(live-12, eh-9) nsubj(live-12, heh\u002c-10) advmod(live-12, long-11) ccomp(..-8, live-12) poss(friendship-14, our-13) dobj(live-12, friendship-14) cc(friendship-14, and-15) conj(friendship-14, A6-16)
root(ROOT-0, Aiyah-1) prep(Aiyah-1, e-2) pobj(e-2, rain-3) prep(Aiyah-1, like-4) advmod(leh-7, quite-5) amod(leh-7, big-6) pobj(like-4, leh-7) mark(run-15, If-9) csubj(run-15, drizzling-10) dobj(drizzling-10, i-11) aux(run-15, can-12) advmod(run-15, at-13) pobj(at-13, least-14) dep(Aiyah-1, run-15) advmod(run-15, home-16)
aux(take-3, Did-1) nsubj(take-3, you-2) root(ROOT-0, take-3) nsubj(have-10, lsm1202-4) dep(have-10, human-5) dep(have-10, anatomy-6) mark(have-10, If-8) nsubj(have-10, you-9) xcomp(take-3, have-10) det(text-12, the-11) nsubj(do-13, text-12) ccomp(have-10, do-13) nsubj(mind-15, you-14) ccomp(do-13, mind-15) xcomp(mind-15, lending-16) dobj(lending-16, one-17) prep(one-17, of-18) poss(friends-20, my-19) pobj(of-18, friends-20)
nn(haven\u2019t-3, Sori-1) nn(haven\u2019t-3, I-2) nsubj(done-4, haven\u2019t-3) root(ROOT-0, done-4) dobj(done-4, anything-5) iobj(done-4, anything-5) prep(anything-5, for-6) amod(meeting-8, today\u2019s-7) pobj(for-6, meeting-8) amod(pardon-11, ..-9) nn(pardon-11, pls-10) dep(anything-5, pardon-11) dep(anything-5, me-12) nn(guys-15, Cya-14) dep(anything-5, guys-15) advmod(anything-5, later-16) prep(later-16, at-17) pobj(at-17, 10am-18)
det(one-2, Which-1) dep(bring-5, one-2) pobj(to-8, one-2) aux(bring-5, do-3) nsubj(bring-5, u-4) root(ROOT-0, bring-5) amod(dog-7, ur-6) dobj(bring-5, dog-7) prep(bring-5, to-8)
aux(have-3, Do-1) nsubj(have-3, you-2) root(ROOT-0, have-3) det(burner-6, a-4) nn(burner-6, CD-5) dobj(have-3, burner-6) cc(burner-6, and-7) conj(burner-6, cable-8)
prep(provides-21, For-1) predet(eyewear-4, all-2) poss(eyewear-4, your-3) pobj(For-1, eyewear-4) dep(provides-21, needs\u002c-5) nsubj(recommend-7, I-6) ccomp(needs\u002c-5, recommend-7) amod(eyewear\u002c-9, ted\u2019s-8) dobj(recommend-7, eyewear\u002c-9) prep(recommend-7, at-10) nn(parade-12, parkway-11) pobj(at-10, parade-12) cc(parade-12, and-13) nn(point-15, jurong-14) conj(parade-12, point-15) det(one-18, The-17) nsubj(provides-21, one-18) prep(one-18, at-19) pobj(at-19, parkway-20) root(ROOT-0, provides-21) amod(service-23, excellent-22) dobj(provides-21, service-23)
nsubj(want-2, U-1) xsubj(watch-4, U-1) root(ROOT-0, want-2) aux(watch-4, to-3) xcomp(want-2, watch-4) dobj(watch-4, movie-5) prep(watch-4, after-6) nn(tmr-8, school-7) pobj(after-6, tmr-8)
aux(call-3, Can-1) nsubj(call-3, i-2) root(ROOT-0, call-3) dobj(call-3, him-4) nn(Dont-7, haha-5) nsubj(want-8, Dont-7) dep(call-3, want-8) nsubj(meet-21, lah\u002c-9) prep(lah\u002c-9, like-10) pobj(like-10, i\u2019m-11) vmod(i\u2019m-11, using-12) dobj(using-12, him-13) prep(using-12, like-14) nn(wat-19, t-15) nn(wat-19, ..-16) nn(wat-19, U-17) nn(wat-19, tomw-18) pobj(like-14, wat-19) dobj(using-12, time-20) ccomp(want-8, meet-21) dobj(meet-21, lecturer-22)
nsubj(place-2, I-1) root(ROOT-0, place-2) det(points-5, all-3) nn(points-5, ur-4) dobj(place-2, points-5) prep(points-5, on-6) amod(cultures-8, e-7) pobj(on-6, cultures-8) advmod(place-2, module-9) advmod(place-2, already-10)
root(ROOT-0, Yar-1) nsubj(ask-13, he-2) advmod(clever-4, quite-3) dep(ask-13, clever-4) cc(aft-6, but-5) dep(ask-13, aft-6) amod(lor-9, many-7) nn(lor-9, guesses-8) dobj(aft-6, lor-9) nsubj(ask-13, He-11) aux(ask-13, got-12) xcomp(Yar-1, ask-13) nsubj(thk-29, me-14) number(bring-16, 2-15) dep(thk-29, bring-16) cc(darren-20, but-17) amod(thk-19, i-18) dep(darren-20, thk-19) dep(Aiya-27, darren-20) dep(willing-23, not-21) advmod(willing-23, so-22) dep(go-25, willing-23) nsubj(go-25, 2-24) dep(darren-20, go-25) dep(thk-29, Aiya-27) nsubj(thk-29, they-28) xcomp(ask-13, thk-29) dobj(thk-29, leona-30) advmod(leona-30, still-31) neg(thk-29, not-32) dep(thk-29, attach-33) dobj(attach-33, wat-34)
amod(team-2, Girl\u2019s-1) nsubj(got-3, team-2) root(ROOT-0, got-3) dobj(got-3, home-4) vmod(home-4, united-5) nn(Nv-13, ah-6) nn(Nv-13, Hmm-8) amod(Nv-13, ..-9) nn(Nv-13, I-10) amod(Nv-13, long-11) nn(Nv-13, time-12) nsubj(watch-14, Nv-13) ccomp(united-5, watch-14) nn(Got-18, Bball-15) nn(Got-18, liao-16) nsubj(matches-19, Got-18) ccomp(watch-14, matches-19) prep(matches-19, at-20) pobj(at-20, clementi-21)
dep(See-3, Okie-1) root(ROOT-0, See-3) nsubj(See-3, you-4) prep(See-3, at-5) pobj(at-5, 12-6) advmod(See-3, then-7)
nsubj(wan-2, U-1) xsubj(go-4, U-1) root(ROOT-0, wan-2) aux(go-4, to-3) xcomp(wan-2, go-4) prep(go-4, for-5) amod(tmr-9, pedicure-6) amod(tmr-9, aft-7) nn(tmr-9, school-8) pobj(for-5, tmr-9)
nn(electives-4, Bui-1) nn(electives-4, wat-2) amod(electives-4, free-3) dep(wan-6, electives-4) nn(wan-6, u-5) dep(need-13, wan-6) aux(take-8, to-7) vmod(wan-6, take-8) dobj(take-8, huh-9) nsubj(need-13, I-11) xsubj(take-22, I-11) advmod(need-13, still-12) root(ROOT-0, need-13) dobj(need-13, one-14) prep(one-14, from-15) pobj(from-15, a1-16) prep(need-13, to-17) amod(wan-20, a6-18) nn(wan-20, u-19) pobj(to-17, wan-20) aux(take-22, to-21) xcomp(need-13, take-22) dobj(take-22, tog-23)
det(kind-2, these-1) nsubj(ones-6, kind-2) cop(ones-6, are-3) nn(ones-6, ad-4) nn(ones-6, hoc-5) root(ROOT-0, ones-6)
nsubj(dont-2, I-1) root(ROOT-0, dont-2) advmod(know-4, even-3) dep(dont-2, know-4) mark(is-7, if-5) nsubj(is-7, he-6) advcl(know-4, is-7) dep(Leona-10, back-8) dep(go-15, Leona-10) dep(Leona-10, not-11) amod(not-11, coming-12) nsubj(go-15, I-14) dep(know-4, go-15) xcomp(go-15, confirm-16) nn(shuhui-18, w-17) dobj(confirm-16, shuhui-18) mark(cancel-27, If-20) nsubj(cancel-27, she-21) advmod(cancel-27, really-22) neg(cancel-27, not-23) dep(not-23, coming-24) advmod(coming-24, then-25) dobj(coming-24, we-26) dep(dont-2, cancel-27)
nsubj(am-2, I-1) root(ROOT-0, am-2) dep(am-2, leaving-3) dep(leaving-3, from-4) poss(house-6, my-5) pobj(from-4, house-6) dobj(doing-11, what-8) aux(doing-11, are-9) nsubj(doing-11, you-10) dep(leaving-3, doing-11) advmod(am-2, still-13) xcomp(am-2, sleeping-14) cc(sleeping-14, or-15) conj(sleeping-14, woke-16) quantmod(8:00-18, up-17) num(am-19, 8:00-18) dobj(sleeping-14, am-19)
nsubj(call-13, U-1) dep(outside-3, still-2) dep(want-8, outside-3) mark(late-7, If-5) advmod(late-7, too-6) csubj(want-8, late-7) dep(call-13, want-8) nsubj(fetch-11, me-9) aux(fetch-11, to-10) xcomp(want-8, fetch-11) advmod(fetch-11, just-12) root(ROOT-0, call-13) nsubj(k-15, me-14) xcomp(call-13, k-15)
advmod(Hopefully-9, So-1) nn(..-3, pal-2) nsubj(Hopefully-9, ..-3) advmod(is-5, How-4) dep(Hopefully-9, is-5) poss(side-7, your-6) nsubj(is-5, side-7) root(ROOT-0, Hopefully-9) nsubj(dude-14, it-10) cop(dude-14, is-11) amod(dude-14, positive-12) nn(dude-14, reply-13) ccomp(Hopefully-9, dude-14) cc(Hopefully-9, Or-16) nsubj(sleeping-18, you-17) conj(Hopefully-9, sleeping-18) advmod(sleeping-18, already-19)
amod(Birthday-2, Happy-1) root(ROOT-0, Birthday-2) punct(Birthday-2, Hope-4) predet(wishes-7, all-5) poss(wishes-7, your-6) nsubj(come-8, wishes-7) dep(Birthday-2, come-8) acomp(come-8, true-9) cc(come-8, and-10) aux(have-13, may-11) advmod(have-13, you-12) conj(come-8, have-13) det(Enjoy-19, a-14) amod(Enjoy-19, wonderfully-15) amod(Enjoy-19, explosive-16) nn(Enjoy-19, birthday-17) nn(Enjoy-19, !!!-18) dobj(have-13, Enjoy-19)
root(ROOT-0, Ok-1) nn(i-4, Anyway-3) dep(Ok-1, i-4) advmod(free-6, so-5) advmod(i-4, free-6) nn(time-9, Wad-8) nsubj(be-12, time-9) aux(be-12, will-10) advmod(be-12, it-11) dep(Ok-1, be-12)
nsubj(got-2, Tmr-1) root(ROOT-0, got-2) prep(got-2, to-3) amod(n-5, work\u002c-4) pobj(to-3, n-5) vmod(n-5, having-6) nn(wif-8, dinner-7) dobj(having-6, wif-8) poss(n-11, my-9) nn(n-11, parent-10) nsubj(somemore-12, n-11) rcmod(wif-8, somemore-12) poss(sis-14, my-13) dobj(somemore-12, sis-14) vmod(having-6, using-15) dobj(using-15, car-16) advmod(so-18, earlier-17) advmod(using-15, so-18) nsubj(n-20, me-19) dep(so-18, n-20) acomp(n-20, sandy-21) neg(going-23, not-22) dep(sandy-21, going-23)
nsubj(chk-5, yu\u2019s-1) prep(yu\u2019s-1, on-2) pobj(on-2, tv-3) root(ROOT-0, chk-5) prt(chk-5, out-6) dobj(chk-5, ch-7) num(ch-7, 8-8) advmod(ch-7, now-9)
det(time-2, What-1) dobj(ready-5, time-2) auxpass(ready-5, are-3) nsubjpass(ready-5, you-4) root(ROOT-0, ready-5)
nsubj(think-2, I-1) root(ROOT-0, think-2) advmod(too-4, so-3) dep(time-7, too-4) amod(time-7, Last-6) dep(think-18, time-7) nsubj(told-9, i-8) rcmod(time-7, told-9) nsubj(i-11, them-10) ccomp(told-9, i-11) det(bf-13, no-12) dobj(i-11, bf-13) advmod(think-18, Now-15) nsubj(think-18, i-16) aux(think-18, must-17) advcl(found-25, think-18) prep(think-18, of-19) pobj(of-19, ways-20) nsubj(hint-22, 2-21) rcmod(ways-20, hint-22) dobj(hint-22, them-23) nsubj(found-25, i-24) ccomp(think-2, found-25) num(Wat-29, 1-26) advmod(Wat-29, already-27) dobj(found-25, Wat-29) advmod(doing-31, u-30) vmod(Wat-29, doing-31)
nsubj(spent-2, I-1) root(ROOT-0, spent-2) dobj(spent-2, money-3) dep(money-3, Emphasis-5) prep(spent-2, on-6) nn(Stuff-9, sale-7) nsubj(are-10, Stuff-9) pcomp(on-6, are-10) num(percent-14, 50-11) cc(50-11, and-12) conj(50-11, 70-13) npadvmod(off-15, percent-14) advmod(are-10, off-15) cc(spent-2, But-17) amod(dont-19, lucky-18) nsubj(e-21, dont-19) aux(e-21, have-20) conj(spent-2, e-21) num(u-23, one-22) iobj(e-21, u-23) vmod(u-23, bought-24) prep(bought-24, for-25) pobj(for-25, me-26) dobj(e-21, Haha-28)
root(ROOT-0, hmmm-1) advmod(don-3, why-2) dep(hmmm-1, don-3) dobj(don-3, wan-4) aux(check-6, to-5) xcomp(don-3, check-6) advmod(u-9, Where-8) dep(don-3, u-9) dobj(u-9, trip-10) advmod(u-9, anyway-11) prep(u-9, In-13) nn(hse-15, ur-14) pobj(In-13, hse-15) cc(hse-15, or-16) conj(hse-15, outside-17) num(gd-22, Oh-19) nn(gd-22, okie-20) nn(gd-22, gd-21) nsubj(hmmm-1, gd-22)
amod(lien-2, Hey-1) root(ROOT-0, lien-2) dep(rite-9, There\u2019s-4) det(rite-9, no-5) nn(rite-9, lab-6) nn(rite-9, session-7) nn(rite-9, today-8) dep(lien-2, rite-9)
nn(i-2, sigh-1) nsubj(need-4, i-2) xsubj(find-6, i-2) advmod(need-4, really-3) root(ROOT-0, need-4) aux(find-6, to-5) xcomp(need-4, find-6) det(sia-9, a-7) nn(sia-9, job-8) dobj(find-6, sia-9) dep(not-11, if-10) cc(sia-9, not-11) amod(dunno-14, next-12) nn(dunno-14, year-13) conj(sia-9, dunno-14) advmod(get-17, how-15) aux(get-17, to-16) xcomp(find-6, get-17) amod(money-19, enough-18) dobj(get-17, money-19) aux(go-21, to-20) vmod(money-19, go-21) acomp(go-21, holland-22)
dep(i-2, Sorry-1) dep(msg-14, i-2) advmod(deleted-4, accidentally-3) vmod(i-2, deleted-4) poss(sister-6, your-5) dobj(deleted-4, sister-6) cc(sister-6, and-7) poss(ic-9, your-8) conj(sister-6, ic-9) cc(ic-9, and-10) conj(ic-9, names-11) nsubj(msg-14, Pls-13) root(ROOT-0, msg-14) dobj(msg-14, me-15) advmod(msg-14, again-16) punct(msg-14, Anyway-18) poss(mum-20, my-19) dep(msg-14, mum-20) dep(mum-20, ask-21) iobj(ask-21, wat-22) dobj(ask-21, time-23) dep(ask-21, go-24) dobj(go-24, airport-25)
advmod(finish-2, Just-1) root(ROOT-0, finish-2) nn(tutorial-4, chinese-3) dobj(finish-2, tutorial-4) advmod(are-7, Where-6) dep(tutorial-4, are-7) nsubj(are-7, you-8) nsubj(go-11, Wanna-10) dep(finish-2, go-11) prep(go-11, to-12) pobj(to-12, clementi-13)
nsubj(r-2, we-1) root(ROOT-0, r-2) prep(r-2, at-3) pobj(at-3, traders-4) nn(jus-10, hotel-5) nn(jus-10, ..-6) nn(jus-10, room-7) num(jus-10, 1026-8) nn(jus-10, ..-9) nsubj(come-11, jus-10) ccomp(r-2, come-11) advmod(eh-14, along-12) advmod(eh-14, anytime-13) advmod(come-11, eh-14)
dep(say-10, So-1) nsubj(say-10, anyway\u002c-2) ref(anyway\u002c-2, what-3) nsubj(are-4, what-3) rcmod(anyway\u002c-2, are-4) nsubj(going-6, you-5) xsubj(get-8, you-5) dep(are-4, going-6) aux(get-8, to-7) xcomp(going-6, get-8) dobj(get-8, let\u2019s-9) root(ROOT-0, say-10) nsubj(get-12, you-11) ccomp(say-10, get-12) det(prize-15, the-13) amod(prize-15, first-14) dobj(get-12, prize-15)
dep(help-7, jus-1) rcmod(jus-1, started-2) advmod(started-2, only-3) advmod(help-7, u-5) aux(help-7, must-6) root(ROOT-0, help-7) nsubj(buy-9, mee-8) ccomp(help-7, buy-9) dobj(buy-9, leh-10) cc(buy-9, or-11) conj(buy-9, help-12) nsubj(tell-14, mee-13) ccomp(help-12, tell-14) poss(leh-17, your-15) nn(leh-17, friends-16) dobj(tell-14, leh-17) nn(mee-19, <(o_o)>-18) nsubj(invest-20, mee-19) dep(tell-14, invest-20) advmod(invest-20, heavily-21) prep(invest-20, on-22) pobj(on-22, it-23) num(hehe-26, leh-24) amod(hehe-26, (-.-)-25) nsubj(help-7, hehe-26)
nsubj(didnt-8, Nothing-1) aux(buy\u002c-3, to-2) vmod(Nothing-1, buy\u002c-3) det(weeks-6, this-4) amod(weeks-6, few-5) tmod(buy\u002c-3, weeks-6) advmod(didnt-8, also-7) root(ROOT-0, didnt-8) dobj(didnt-8, shop-9) advmod(didnt-8, much-10) nsubj(u-13, Wat-12) parataxis(didnt-8, u-13) xcomp(u-13, doing-14)
nsubj(nothing-3, It-1) cop(nothing-3, is-2) root(ROOT-0, nothing-3) nsubj(see-10, I-5) advmod(see-10, also-6) advmod(see-10, very-7) pobj(very-7, happy-8) ccomp(nothing-3, see-10) parataxis(nothing-3, see-10) poss(face-12, your-11) dobj(see-10, face-12) advmod(sweet-14, so-13) dep(see-10, sweet-14)
nn(ü-2, Can-1) nsubj(call-3, ü-2) xsubj(make-8, ü-2) root(ROOT-0, call-3) dobj(call-3, me-4) prep(call-3, at-5) pobj(at-5, 10:10-6) aux(make-8, to-7) xcomp(call-3, make-8) acomp(make-8, sure-9) ccomp(sure-9, dat-10) amod(woken-12, i\u2019ve-11) dobj(dat-10, woken-12) prt(dat-10, up-13)
aux(Thank-29, Have-1) nsubj(Thank-29, they-2) advmod(Thank-29, ever-3) dep(ever-3, think-4) prep(think-4, of-5) advmod(go-17, how-6) dep(left-11, e-7) nn(ey-9, ones-8) nsubj(left-11, ey-9) aux(left-11, had-10) csubj(go-17, left-11) prep(left-11, behind-12) pobj(behind-12, feel-13) advmod(go-17, Anyway-15) advmod(go-17, u-16) pcomp(of-5, go-17) nsubj(do-19, &-18) ccomp(go-17, do-19) amod(project-21, e-20) dobj(do-19, project-21) cc(project-21, or-22) advmod(liao-27, else-23) det(liao-27, no-24) amod(liao-27, more-25) nn(liao-27, time-26) conj(project-21, liao-27) dep(please-32, Thank-29) nsubj(please-32, &-31) root(ROOT-0, please-32) xcomp(please-32, write-33) nn(name-35, ur-34) dobj(write-33, name-35) prep(write-33, on-36) amod(cover-38, e-37) pobj(on-36, cover-38)
nn(I-5, Sobz-1) nn(I-5, Erm-3) nn(I-5, dunno-4) nsubj(check-7, I-5) neg(check-7, never-6) root(ROOT-0, check-7) nsubj(dare-10, dun-9) parataxis(check-7, dare-10) prep(dare-10, to-11) dep(I\u2019m-15, c-12) nn(I\u2019m-15, Yupz-14) pobj(to-11, I\u2019m-15) prep(I\u2019m-15, on-16) det(already\u002c-19, the-17) nn(already\u002c-19, bus-18) pobj(on-16, already\u002c-19) vmod(I\u2019m-15, left-20) det(hse-22, the-21) dobj(left-20, hse-22) prep(dare-10, at-23) pobj(at-23, 8:20-24)
root(ROOT-0, don\u2019t-1) nn(time-3, waste-2) dobj(don\u2019t-1, time-3) amod(time-3, quick-4)
aux(infernal-4, Have-1) nn(watch-3, u-2) nsubj(infernal-4, watch-3) dep(Xyan-15, infernal-4) dobj(infernal-4, affair-5) num(affair-5, 2-6) dep(infernal-4, Want-8) aux(watch-10, to-9) xcomp(Want-8, watch-10) prep(infernal-4, on-11) amod(weekend-13, e-12) pobj(on-11, weekend-13) nsubj(considering-17, Xyan-15) aux(considering-17, is-16) root(ROOT-0, considering-17)
dep(year-3, Happy-1) amod(year-3, new-2) dep(May-5, year-3) root(ROOT-0, May-5) predet(wishes-8, all-6) poss(wishes-8, your-7) nsubj(come-9, wishes-8) rcmod(May-5, come-9) acomp(come-9, true-10) det(year-12, this-11) tmod(come-9, year-12) cc(come-9, and-13) cop(happy-15, stay-14) conj(come-9, happy-15) advmod(happy-15, always-16) dep(happy-15, yah-17)
dep(is-19, Hmm-1) nsubj(light-5, CS1105-3) cop(light-5, was-4) dep(Hmm-1, light-5) advmod(took-8, when-6) nsubj(took-8, I-7) advcl(light-5, took-8) dobj(took-8, it-9) cc(took-8, but-10) expl(were-12, there-11) conj(took-8, were-12) num(assignments-14, 3-13) nsubj(were-12, assignments-14) aux(complete-16, to-15) vmod(assignments-14, complete-16) nsubj(is-19, It-18) dep(took-25, is-19) det(module-23, the-20) amod(module-23, lightest-21) nn(module-23, computing-22) dep(is-19, module-23) nsubj(took-25, I-24) root(ROOT-0, took-25) advmod(took-25, though-26)
nn(lyd-4, HOT-1) nn(lyd-4, GOSSIP-2) nn(lyd-4, !!!!!!!!-3) nsubj(is-5, lyd-4) root(ROOT-0, is-5) prep(is-5, in-6) pobj(in-6, love-7) nn(can\u2019t-10, i-9) nsubj(believe-11, can\u2019t-10) rcmod(love-7, believe-11) dobj(believe-11, it-12) nsubj(happy-17, i-14) cop(happy-17, am-15) advmod(happy-17, so-16) parataxis(is-5, happy-17) mark(tink-22, for-18) poss(dun-21, her-19) amod(dun-21, !!-20) nsubj(tink-22, dun-21) ccomp(happy-17, tink-22) nsubj(be-25, she-23) aux(be-25, will-24) ccomp(tink-22, be-25) advmod(be-25, back-26) prep(be-25, for-27) pobj(for-27, christmas-28) prep(christmas-28, though-29) pobj(though-29, sighz-30)
nn(bath-2, U-1) nsubj(want-8, bath-2) xsubj(come-10, bath-2) prep(bath-2, already-3) nn(U-6, ah-4) pobj(already-3, U-6) advmod(want-8, still-7) root(ROOT-0, want-8) aux(come-10, to-9) xcomp(want-8, come-10) prt(come-10, out-11)
root(ROOT-0, He-1) vmod(He-1, used-2) aux(b-4, to-3) xcomp(used-2, b-4) poss(student-6, my-5) dobj(b-4, student-6) dep(He-1, Sec-8) num(Sec-8, 1-9) cop(much-12, is-10) advmod(much-12, too-11) rcmod(Sec-8, much-12) prep(much-12, for-13) pobj(for-13, me-14) nn(pay-17, Abt-16) dep(He-1, pay-17) cc(pay-17, &-18) amod(u-20, time\u002c-19) conj(pay-17, u-20) vmod(pay-17, got-21) aux(negotiate-23, to-22) xcomp(got-21, negotiate-23) dobj(negotiate-23, wif-24) dep(mum-26, d-25) dep(dat-31, mum-26) cop(dat-31, is-28) nsubj(dat-31, it-29) nsubj(dat-31, ok-30) dep(wif-24, dat-31) dobj(dat-31, i-32) dep(dat-31, give-33) poss(ur-35, her-34) dep(give-33, ur-35) dobj(give-33, no-36)
nn(coz-2, oh-1) nsubj(want-3, coz-2) xsubj(get-5, coz-2) root(ROOT-0, want-3) aux(get-5, to-4) xcomp(want-3, get-5) nsubj(want-12, it-6) xsubj(meet-14, it-6) dep(want-12, done-7) advmod(want-12, soon-8) nn(u-11, mah-9) nn(u-11, ..-10) nsubj(want-12, u-11) xsubj(meet-14, u-11) xcomp(get-5, want-12) aux(meet-14, to-13) xcomp(want-12, meet-14) dobj(meet-14, me-15) prep(meet-14, at-16) nn(tomorrow-19, career-17) nn(tomorrow-19, center-18) pobj(at-16, tomorrow-19) prep(tomorrow-19, at-20) pobj(at-20, eleven-21)
nsubj(asked-2, I-1) root(ROOT-0, asked-2) dobj(asked-2, lecturer-3) dep(lecturer-3, already-4) amod(person-8, extra-6) num(person-8, 10-7) nsubj(ok-10, person-8) cop(ok-10, is-9) dep(asked-2, ok-10)
nsubj(great-3, it-1) cop(great-3, was-2) root(ROOT-0, great-3) xcomp(great-3, meeting-4) prt(meeting-4, up-5) prep(hope-10, with-6) dep(guys-8, you-7) pobj(with-6, guys-8) ccomp(meeting-4, hope-10) aux(do-12, to-11) xcomp(hope-10, do-12) dobj(do-12, it-13) advmod(do-12, again-14) advmod(do-12, soon-15)
nsubj(continue-17, I-1) nsubj(t-4, haven-2) parataxis(continue-17, t-4) xcomp(t-4, finish-5) poss(shift-8, my-6) amod(shift-8, first-7) dobj(finish-5, shift-8) dobj(think-12, shift-8) nn(i-11, leh-9) nsubj(think-12, i-11) rcmod(shift-8, think-12) ccomp(think-12, finish-13) amod(shift-15, first-14) dobj(finish-13, shift-15) aux(continue-17, can-16) root(ROOT-0, continue-17) amod(shift-19, second-18) dep(continue-17, shift-19) dep(haven-22, still-21) dep(t-24, haven-22) dep(shift-19, t-24) num(t-24, dinner\u002c-25) cc(just-27, but-26) cc(continue-17, just-27) conj(continue-17, have-28) det(bread-30, a-29) dobj(have-28, bread-30)
advmod(fine-2, I\u2019m-1) root(ROOT-0, fine-2) punct(fine-2, thanks-3)
root(ROOT-0, Let-1) nsubj(know-3, me-2) ccomp(Let-1, know-3) nn(leh-5, asap-4) dobj(know-3, leh-5)
root(ROOT-0, sorrie-1) nn(i\u2019m-3, ..-2) nsubj(doing-5, i\u2019m-3) dep(doing-5, busy-4) xcomp(sorrie-1, doing-5) det(..-8, some-6) nn(..-8, stuff-7) dobj(doing-5, ..-8) mark(got-12, so-9) amod(tink-11, dont-10) nsubj(got-12, tink-11) xsubj(call-15, tink-11) advcl(sorrie-1, got-12) dobj(got-12, time-13) aux(call-15, to-14) xcomp(got-12, call-15) nn(..-17, u-16) dobj(call-15, ..-17)
advmod(why-10, hey-1) amod(i-4, xuan-2) nsubj(got-5, i-4) dep(hey-1, got-5) det(idea-8, a-6) amod(idea-8, brilliant-7) dobj(got-5, idea-8) advmod(dun-11, why-10) root(ROOT-0, dun-11) nsubj(take-13, we-12) ccomp(dun-11, take-13) prt(take-13, up-14) dobj(take-13, dutch-15)
root(ROOT-0, Oh-1) amod(luck-5, Anyway\u002c-3) amod(luck-5, good-4) dep(okie-10, luck-5) prep(luck-5, for-6) poss(match-8, your-7) pobj(for-6, match-8) amod(okie-10, later-9) dep(rooting-13, okie-10) advmod(rooting-13, I\u2019m-12) dep(man-16, rooting-13) prep(rooting-13, for-14) pobj(for-14, you-15) dep(Oh-1, man-16)
root(ROOT-0, Cos-1) poss(tuition-3, her-2) nsubj(end-5, tuition-3) aux(end-5, will-4) rcmod(Cos-1, end-5) amod(lor-7, late-6) dobj(end-5, lor-7) nn(ur-12, Wat-9) nn(ur-12, time-10) nn(ur-12, wil-11) dep(Cos-1, ur-12) dep(in-14, b-13) dep(Cos-1, in-14) nn(den-16, town-15) pobj(in-14, den-16) nn(thgt-20, Cos-18) nn(thgt-20, i-19) dep(den-16, thgt-20) prep(thgt-20, of-21) pobj(of-21, watchin-22) advmod(oso-31, how-23) aux(lose-25, to-24) csubj(oso-31, lose-25) det(guy-27, a-26) dobj(lose-25, guy-27) prep(guy-27, in-28) num(days-30, 10-29) pobj(in-28, days-30) dep(watchin-22, oso-31)
root(ROOT-0, Got-1) amod(toshiba-5, fujitsu\u002c-2) amod(toshiba-5, ibm\u002c-3) amod(toshiba-5, hp\u002c-4) dobj(Got-1, toshiba-5) vmod(toshiba-5, Got-7) det(lot-9, a-8) dobj(Got-7, lot-9) prep(lot-9, of-10) pobj(of-10, model-11) advmod(say-14, how-12) aux(say-14, to-13) xcomp(Got-7, say-14)
det(cake-2, the-1) nsubj(is-3, cake-2) root(ROOT-0, is-3) advmod(is-3, here-4) dep(is-3, For-6) nsubj(Did-9, supper-7) ccomp(is-3, Did-9) parataxis(is-3, Did-9) nsubj(get-11, you-10) ccomp(Did-9, get-11) det(shawl-13, the-12) dobj(get-11, shawl-13)
nsubj(click-3, www.nus.edu.sg-1) advmod(click-3, then-2) root(ROOT-0, click-3) prt(click-3, on-4) dobj(click-3, students-5) iobj(click-3, students-5) det(time-8, What-7) dep(students-5, time-8) cop(results-11, is-9) poss(results-11, your-10) dep(time-8, results-11) nn(..-14, Hmm-13) dep(students-5, ..-14) ref(..-14, who-15) nsubj(ask-17, who-15) aux(ask-17, to-16) rcmod(..-14, ask-17) vmod(..-14, ask-17) prep(ask-17, about-18) det(outing-20, the-19) pobj(about-18, outing-20) advmod(watching-25, When-22) aux(watching-25, are-23) nsubj(watching-25, we-24) dep(students-5, watching-25) dep(watching-25, This-27) dep(This-27, weekend-28) cc(click-3, And-30) conj(click-3, thanks-31) dep(thanks-31, for-32) det(book-34, the-33) pobj(for-32, book-34)
nn(didn\u2019t-2, i-1) nsubj(buy-3, didn\u2019t-2) root(ROOT-0, buy-3) nsubj(want-10, anything-4) xsubj(play-12, anything-4) prep(anything-4, on-5) det(u-9, this-6) nn(u-9, trip-7) nn(u-9, ..-8) pobj(on-5, u-9) ccomp(buy-3, want-10) aux(play-12, to-11) xcomp(want-10, play-12) dobj(play-12, mahjong-13) amod(monday-15, next-14) tmod(play-12, monday-15)
nsubj(u-2, Are-1) root(ROOT-0, u-2) dobj(u-2, home-3) advmod(u-2, now-4) poss(dad-6, my-5) nsubj(going-8, dad-6) xsubj(pick-10, dad-6) aux(going-8, is-7) dep(u-2, going-8) aux(pick-10, to-9) xcomp(going-8, pick-10) dobj(pick-10, me-11) prt(pick-10, up-12) prep(pick-10, from-13) pobj(from-13, school-14) advmod(u-16, maybe-15) nsubj(meet-18, u-16) aux(meet-18, can-17) dep(pick-10, meet-18) dobj(meet-18, me-19) prep(meet-18, at-20) poss(place-22, my-21) pobj(at-20, place-22) mark(have-25, if-23) nsubj(have-25, u-24) advcl(meet-18, have-25) det(car-27, the-26) dobj(have-25, car-27)
nsubj(dating-3, Tom-1) aux(dating-3, is-2) root(ROOT-0, dating-3) prep(dating-3, with-4) det(hehe-8, some-5) nn(hehe-8, girl-6) pobj(with-4, hehe-8)
amod(wan-2, U-1) root(ROOT-0, wan-2) vmod(wan-2, come-3) prt(come-3, out-4) advmod(come-3, later-5) dep(wan-2, All-7) prep(All-7, of-8) nsubj(going-10, us-9) pcomp(of-8, going-10) prt(going-10, out-11) advmod(going-10, later-12) dep(wan-2, Join-14) dobj(lah-16, Join-14) nsubj(lah-16, us-15) rcmod(Join-14, lah-16)
amod(pal-2, Morning\u002c-1) dep(got-8, pal-2) dep(pal-2, Ten-4) nn(i-7, Anymore-6) nsubj(got-8, i-7) root(ROOT-0, got-8) dobj(got-8, nothing-9) aux(do-11, to-10) vmod(nothing-9, do-11) det(..-15, the-12) amod(..-15, next-13) nn(..-15, day-14) dobj(do-11, ..-15) advmod(got-8, Then-16) nsubj(go-18, we-17) ccomp(got-8, go-18) parataxis(got-8, go-18) dep(walk-20, walk-19) ccomp(go-18, walk-20) amod(b4-22, first-21) dobj(walk-20, b4-22) det(show-24, the-23) dep(walk-20, show-24)
nsubj(enjoy-2, Lol-1) root(ROOT-0, enjoy-2) poss(stars-4, your-3) dobj(enjoy-2, stars-4) cc(enjoy-2, i-5) conj(enjoy-2, got-6) aux(sleep-8, to-7) xcomp(got-6, sleep-8) dep(enjoy-2, got-10) aux(work-12, to-11) xcomp(got-10, work-12) advmod(work-12, later-13)
advmod(buy-8, i-1) advmod(..-4, jus-2) advmod(..-4, wakey-3) dep(i-1, ..-4) dep(..-4, so-5) aux(buy-8, did-6) nsubj(buy-8, u-7) root(ROOT-0, buy-8) dobj(buy-8, tbk\u002c-9) advmod(much-11, how-10) advmod(it-13, much-11) nsubj(it-13, much-11) cop(it-13, is-12) rcmod(tbk\u002c-9, it-13)
aux(smth-11, Can-1) nsubj(smth-11, also-2) prep(also-2, but-3) nn(will-5, lunch-4) pobj(but-3, will-5) advmod(b-7, only-6) rcmod(will-5, b-7) amod(will-5, ready-8) prep(ready-8, at-9) pobj(at-9, 1-10) root(ROOT-0, smth-11) dobj(smth-11, 2-12) nn(hungry-15, U-14) dep(2-12, hungry-15)
root(ROOT-0, xy-1) advmod(i-4, Later-3) nsubj(going-7, i-4) aux(going-7, might-5) aux(going-7, be-6) dep(xy-1, going-7) amod(wan-12, suntec-8) cc(suntec-8, or-9) conj(suntec-8, orchard\u002c-10) nn(wan-12, u-11) dobj(going-7, wan-12) num(go-14, 2-13) dep(going-7, go-14) cc(go-14, or-15) neg(go-14, not-16)
root(ROOT-0, Ps-1) nn(ong-7, tel-2) num(ong-7, 64549808-3) num(ong-7, 98388367-4) num(ong-7, 4-5) nn(ong-7, mrs-6) dobj(Ps-1, ong-7) prep(ong-7, about-8) nn(mrs-10, tuition-9) pobj(about-8, mrs-10) nsubj(waiting-14, lim-11) num(lim-11, 64535909-12) aux(waiting-14, is-13) dep(Ps-1, waiting-14) num(call-17, 4-15) nn(call-17, yr-16) dobj(waiting-14, call-17)
advmod(say-4, Really-1) nsubj(say-4, he-2) advmod(say-4, din-3) root(ROOT-0, say-4) nsubj(told-8, He-6) advmod(told-8, only-7) parataxis(say-4, told-8) dobj(told-8, me-9) prep(told-8, after-10) nn(u-13, i-11) nn(u-13, msg-12) pobj(after-10, u-13) advmod(told-8, Then-15) nn(u-17, wat-16) nsubj(doing-18, u-17) parataxis(told-8, doing-18) advmod(doing-18, now-19)
cc(den-11, But-1) advmod(pass-4, once-2) nsubj(pass-4, u-3) advcl(den-11, pass-4) prep(pass-4, to-5) pobj(to-5, me\u002c-6) nsubj(den-11, it-7) cop(den-11, becomes-8) nn(den-11, mine-9) amod(den-11, 4ever\u002c-10) root(ROOT-0, den-11) tmod(jialat-15, den-11) advmod(jialat-15, when-12) nn(nid\u002c-14, u-13) nsubj(jialat-15, nid\u002c-14) rcmod(den-11, jialat-15)
root(ROOT-0, Later-1) advmod(call-4, when-2) nsubj(call-4, u-3) advcl(Later-1, call-4) nsubj(call-6, me-5) ccomp(call-4, call-6) poss(k-10, my-7) nn(k-10, hand-8) nn(k-10, phone-9) dobj(call-6, k-10)
nn(instructor-3, Aiya\u002c-1) nn(instructor-3, e-2) nsubj(oso-4, instructor-3) root(ROOT-0, oso-4) advmod(oso-4, close-5) num(eye-7, one-6) pobj(close-5, eye-7) nsubj(finish-11, Gee\u002c-9) advmod(finish-11, finally-10) ccomp(oso-4, finish-11) parataxis(oso-4, finish-11) dobj(finish-11, oredi-12)
nsubj(want-2, You-1) root(ROOT-0, want-2) cc(not-4, or-3) nn(I\u2019m-6, not-4) dobj(want-2, I\u2019m-6) prep(want-2, following-7) poss(boss-10, your-8) nn(boss-10, decision-9) pobj(following-7, boss-10)
nn(..-2, Okie-1) nsubj(saw-4, ..-2) advmod(saw-4, just-3) root(ROOT-0, saw-4) nn(i-7, ur-5) nn(i-7, msg\u002c-6) nsubj(watching-8, i-7) dep(saw-4, watching-8) amod(..-11, tv\u002c-9) nn(..-11, hee-10) dobj(watching-8, ..-11)
root(ROOT-0, Wow-1) advmod(many-3, so-2) amod(Wow-1, many-3)
cc(delighted-5, And-1) nsubj(delighted-5, you-2) xsubj(see-7, you-2) aux(delighted-5, will-3) cop(delighted-5, be-4) root(ROOT-0, delighted-5) aux(see-7, to-6) xcomp(delighted-5, see-7) dobj(see-7, wats-8) prep(see-7, on-9) det(topic-11, the-10) pobj(on-9, topic-11)
nsubj(take-2, DUN-1) root(ROOT-0, take-2) amod(hehe-5, acct-3) dep(think-7, hehe-5) dep(take-2, think-7) nsubj(think-7, management-8) neg(bad-10, not-9) amod(management-8, bad-10)
discourse(okie-2, Oh-1) root(ROOT-0, okie-2) dobj(okie-2, lor-3) nsubj(dun-6, I-5) parataxis(okie-2, dun-6) nn(tmr-8, mind-7) dobj(dun-6, tmr-8)
root(ROOT-0, Hi-1) det(kl-5, any-2) nn(kl-5, girl-3) nn(kl-5, frm-4) nsubj(wan-8, kl-5) cc(kl-5, or-6) conj(kl-5, pj-7) ccomp(Hi-1, wan-8) num(chat-10, 2-9) dobj(wan-8, chat-10)
nsubj(walk-4, Yupz-1) aux(walk-4, Can-3) root(ROOT-0, walk-4) prep(walk-4, from-5) amod(station-8, tanjong-6) nn(station-8, pagar-7) pobj(from-5, station-8) cc(dunno-12, But-10) nsubj(dunno-12, i-11) parataxis(walk-4, dunno-12) advmod(tell-15, how-13) aux(tell-15, to-14) ccomp(dunno-12, tell-15) xcomp(dunno-12, tell-15) dobj(tell-15, u-16) advmod(walk-19, how-17) aux(walk-19, to-18) xcomp(tell-15, walk-19) prep(walk-19, from-20) pobj(from-20, there-21)
nsubj(wake-2, U-1) dep(U-10, wake-2) advmod(already-4, up-3) dep(wake-2, already-4) nn(u-7, Wat-6) nsubj(doing-8, u-7) dep(already-4, doing-8) advcl(check-30, U-10) xcomp(U-10, picking-11) dobj(picking-11, us-12) advmod(later-14, up-13) dep(rite-15, later-14) dep(picking-11, rite-15) nsubj(U-10, I\u2019m-17) vmod(I\u2019m-17, taking-18) dobj(taking-18, sq825\u002c-19) vmod(sq825\u002c-19, reaching-20) number(7-22, ard-21) num(smth-23, 7-22) dobj(reaching-20, smth-23) num(smth-23, 8-24) prep(reaching-20, like-25) pobj(like-25, dat-26) nsubj(check-30, U-28) aux(check-30, can-29) root(ROOT-0, check-30) amod(time-33, e-31) nn(time-33, arrival-32) dobj(check-30, time-33) iobj(check-30, time-33) nn(ya-36, C-35) dep(time-33, ya-36) advmod(time-33, soon-37)
nsubj(wld-2, I-1) root(ROOT-0, wld-2) nsubj(go-4, wanna-3) ccomp(wld-2, go-4) nsubj(buy-7, Haven-6) parataxis(wld-2, buy-7) amod(clothes-9, new-8) dobj(buy-7, clothes-9) advmod(..-11, yet-10) vmod(clothes-9, ..-11) cc(supposed-13, But-12) dep(Confirm-29, supposed-13) aux(meet-15, to-14) xcomp(supposed-13, meet-15) dobj(meet-15, yixin-16) prep(meet-15, after-17) poss(tryin-20, her-18) amod(tryin-20, work\u002c-19) pobj(after-17, tryin-20) aux(change-22, to-21) xcomp(meet-15, change-22) amod(appt-24, e-23) dobj(change-22, appt-24) prep(appt-24, with-25) pobj(with-25, her-26) advmod(change-22, now-27) dep(with-30, Confirm-29) prep(..-11, with-30) pobj(with-30, u-31) advmod(buy-7, later-32)
root(ROOT-0, happy-1) amod(year-3, new-2) tmod(happy-1, year-3)
amod(class-3, Stin-1) nn(class-3, bk-2) root(ROOT-0, class-3) mark(liao\u002c-6, for-4) dep(liao\u002c-6, you-5) dep(class-3, liao\u002c-6) cc(liao\u002c-6, but-7) nsubj(go-10, I-8) advmod(go-10, can\u2019t-9) conj(liao\u002c-6, go-10) dobj(go-10, cos-11) poss(mom-13, my-12) nsubj(..-18, mom-13) cop(..-18, is-14) advmod(..-18, very-15) prep(very-15, against-16) pobj(against-16, it-17) rcmod(cos-11, ..-18)
root(ROOT-0, Please-1) xcomp(Please-1, pass-2) dobj(pass-2, money-3) prep(pass-2, to-4) pobj(to-4, her-5) det(cash-8, No-7) dep(her-5, cash-8) amod(:P-10, le-9) dep(her-5, :P-10)
discourse(want-4, Hey-1) nsubj(want-4, you-2) xsubj(go-6, you-2) advmod(want-4, still-3) dep(go-18, want-4) aux(go-6, to-5) xcomp(want-4, go-6) prep(go-6, for-7) nn(Coz-10, yogasana-8) pobj(for-7, Coz-10) mark(end-13, if-11) nsubj(end-13, we-12) advcl(go-6, end-13) prep(end-13, at-14) pobj(at-14, cine-15) advmod(end-13, then-16) aux(go-18, can-17) root(ROOT-0, go-18) dobj(go-18, bathe-19) cc(go-18, and-20) conj(go-18, hav-21) det(bath-24, the-22) nn(bath-24, steam-23) nsubj(go-18, bath-24)
advmod(shld-2, Y-1) root(ROOT-0, shld-2) nn(gd-5, i-3) nn(gd-5, b-4) dobj(shld-2, gd-5) prep(gd-5, at-6) nn(leh-8, intviews-7) pobj(at-6, leh-8) amod(games-12, Anyway\u002c-10) nn(games-12, war-11) nsubj(sound-13, games-12) parataxis(shld-2, sound-13) dobj(sound-13, fun-14) advmod(sound-13, though-15) amod(v-20, I\u2019m-17) nn(v-20, oso-18) nn(v-20, feelin-19) nsubj(have-24, v-20) dep(have-24, tired\u002c-21) advmod(have-24, soon-22) nsubj(have-24, i\u2019ll-23) parataxis(sound-13, have-24) xcomp(sound-13, have-24) det(day-27, a-25) num(day-27, 6-26) tmod(have-24, day-27) num(haiz-29, wk\u002c-28) nsubj(shld-2, haiz-29)
dep(sweety-31, Oh-1) dep(sweety-31, I-3) dep(I-3, c-4) punct(I-3, i-5) dep(xin-9, c-6) amod(xin-9, Haha\u002c-8) dep(I-3, xin-9) rcmod(xin-9, ask-10) dobj(ask-10, u-11) aux(take-13, to-12) xcomp(ask-10, take-13) prt(take-13, away-14) nn(pau-18, food-15) num(pau-18, 4-16) nn(pau-18, her\u002c-17) dobj(take-13, pau-18) cc(pau-18, or-19) conj(pau-18, smethg-20) nsubj(help-24, Gee\u002c-22) aux(help-24, can-23) parataxis(ask-10, help-24) nsubj(buy-26, me-25) ccomp(help-24, buy-26) nn(milo-28, packet-27) dobj(buy-26, milo-28) nsubj(sweety-31, Thanx-30) root(ROOT-0, sweety-31)
nsubj(want-2, you-1) root(ROOT-0, want-2) amod(cd-4, old-3) nsubj(hurry-11, cd-4) nsubj(got-7, case-5) parataxis(hurry-11, got-7) num(plus-9, hundred-8) dep(got-7, plus-9) ccomp(want-2, hurry-11) dobj(hurry-11, reply-12) cc(hurry-11, or-13) conj(hurry-11, throw-14) prt(throw-14, away-15) advmod(throw-14, already-16)
dep(caught-10, I\u2019m-1) neg(driving-3, not-2) dep(Raining-5, driving-3) dobj(I\u2019m-1, Raining-5) advmod(Raining-5, Then-7) nsubjpass(caught-10, i\u2019ll-8) auxpass(caught-10, get-9) root(ROOT-0, caught-10) prep(caught-10, at-11) amod(lor-15, e-12) nn(lor-15, mrt-13) nn(lor-15, station-14) pobj(at-11, lor-15)
root(ROOT-0, I\u2019m-1) vmod(I\u2019m-1, doing-2) nn(intro-4, da-3) nsubj(covers-5, intro-4) dep(doing-2, covers-5) nn(trends-7, energy-6) dobj(covers-5, trends-7) nn(pros-9, n-8) nsubj(n-10, pros-9) rcmod(trends-7, n-10) dobj(n-10, cons-11) nn(description-14, Brief-13) nsubj(n-18, description-14) prep(description-14, of-15) amod(fusion-17, nuclear-16) pobj(of-15, fusion-17) parataxis(covers-5, n-18) amod(history-21, oso-19) amod(history-21, brief-20) dobj(n-18, history-21) prep(history-21, of-22) nn(jet-25, iter-23) nn(jet-25, n-24) pobj(of-22, jet-25) dep(I\u2019m-1, got-26) dobj(got-26, abt-27) num(..-32, 7-28) amod(..-32, n-29) amod(..-32, half-30) nn(..-32, pages-31) nsubj(I\u2019m-1, ..-32)
nn(i-2, Shan\u002c-1) nsubj(got-3, i-2) root(ROOT-0, got-3) dobj(got-3, something-4) prep(something-4, at-5) amod(ubin-7, pulau-6) pobj(at-5, ubin-7) prep(got-3, in-8) nn(afternoon-10, e-9) pobj(in-8, afternoon-10) advmod(got-3, So-12) nsubj(go-14, can\u2019t-13) parataxis(got-3, go-14) aux(love-17, Would-16) parataxis(got-3, love-17) aux(be-19, to-18) xcomp(love-17, be-19) advmod(be-19, there-20) advmod(be-19, though-21)
discourse(call-16, hi-1) amod(rem-3, folks\u002c-2) npadvmod(at-11, rem-3) nsubj(hav-5, we-4) rcmod(rem-3, hav-5) det(gathering-8, a-6) nn(gathering-8, huahui-7) dobj(hav-5, gathering-8) prep(hav-5, at-9) pobj(at-9, 7pm-10) dep(hi-1, at-11) nn(tomorrow-14, orchard-12) nn(tomorrow-14, mrt-13) pobj(at-11, tomorrow-14) root(ROOT-0, call-16) dobj(call-16, me-17) mark(u-25, if-18) nn(wil-20, u-19) nsubj(u-25, wil-20) advmod(late-22, b-21) advmod(c-24, late-22) rcmod(wil-20, c-24) advcl(call-16, u-25) dep(soon-27, all-26) advmod(u-25, soon-27)
nn(nothing\u002c-2, Doing-1) nsubj(u-4, nothing\u002c-2) advmod(u-4, then-3) root(ROOT-0, u-4) neg(u-4, not-5) xcomp(u-4, having-6) nsubj(w-8, dinner-7) ccomp(having-6, w-8) dobj(w-8, us-9)
nsubj(gonna-2, I-1) root(ROOT-0, gonna-2) cop(late-4, be-3) dep(gonna-2, late-4) prep(late-4, by-5) predet(hr-8, half-6) det(hr-8, an-7) pobj(by-5, hr-8)
advmod(leh-2, Why-1) root(ROOT-0, leh-2) aux(like-5, U-4) dep(leh-2, like-5) dobj(like-5, it-6) advmod(how-9, Anyway-8) advmod(i\u2019ll-14, how-9) amod(hair-12, bright-10) nn(hair-12, ur-11) nsubj(i\u2019ll-14, hair-12) cop(i\u2019ll-14, is-13) dep(leh-2, i\u2019ll-14) advmod(i\u2019ll-14, still-15) mark(..-18, like-16) nsubj(..-18, you-17) advcl(i\u2019ll-14, ..-18)
root(ROOT-0, U-1) vmod(U-1, sleeping-2) advmod(sleeping-2, now-3) advmod(sleeping-2, ..-4) cc(you-6, Or-5) dep(sleeping-2, you-6) dep(you-6, going-7) aux(take-9, to-8) xcomp(going-7, take-9) nn(..-12, Haha-11) dep(U-1, ..-12) nsubj(got-14, I-13) rcmod(..-12, got-14) amod(Me-18, spys-15) nn(Me-18, wat-16) nn(Me-18, ..-17) dobj(got-14, Me-18) prep(got-14, online-19) amod(mails-23, checking-20) nn(mails-23, n-21) amod(mails-23, replying-22) dep(online-19, mails-23) nn(..-25, lor-24) dep(U-1, ..-25)
nsubj(think-2, You-1) root(ROOT-0, think-2) nsubj(shld-4, i-3) ccomp(think-2, shld-4) dep(shld-4, take-5) advmod(feel-10, how-6) dep(how-6, many-7) nsubj(feel-10, I-9) advcl(modules-24, feel-10) prep(feel-10, like-11) nn(leh-14, takin-12) num(leh-14, 4-13) pobj(like-11, leh-14) prep(leh-14, like-15) nn(Treat-21, don-16) nn(Treat-21, waste-17) amod(Treat-21, last-18) nn(Treat-21, sem-19) nn(Treat-21, ..-20) pobj(like-15, Treat-21) det(cl-23, the-22) nsubj(modules-24, cl-23) ccomp(take-5, modules-24) prep(modules-24, as-25) amod(lo-28, extra-26) nn(lo-28, one-27) pobj(as-25, lo-28)
root(ROOT-0, How\u2019s-1) nn(preparation-3, ur-2) dobj(How\u2019s-1, preparation-3) nn(luck-6, Gd-5) dep(preparation-3, luck-6) prep(luck-6, for-7) nn(tmr-10, ur-8) nn(tmr-10, paper-9) pobj(for-7, tmr-10) cc(remember-13, And-12) dep(preparation-3, remember-13) aux(sleep-15, to-14) xcomp(remember-13, sleep-15) amod(k-17, early-16) dobj(sleep-15, k-17) advmod(How\u2019s-1, :-)-19)
nsubj(enjoy-24, Gee-1) advmod(sorry-4, So-3) amod(la-5, sorry-4) dep(Gee-1, la-5) poss(oso-9, My-7) nn(oso-9, mum-8) dep(Gee-1, oso-9) advmod(sad-11, very-10) amod(oso-9, sad-11) nsubj(missed-13, she-12) ccomp(sad-11, missed-13) dobj(missed-13, it-14) dep(Gee-1, Hmmm-16) nn(thk-21, K-18) amod(thk-21, la\u002c-19) nn(thk-21, dun-20) dep(Gee-1, thk-21) advmod(it\u002c-23, abt-22) amod(Gee-1, it\u002c-23) root(ROOT-0, enjoy-24) nn(trip-26, ur-25) dobj(enjoy-24, trip-26)
root(ROOT-0, Yar-1) nsubj(tot-4, I-3) dep(Yar-1, tot-4) nsubj(knew-6, u-5) ccomp(tot-4, knew-6) nsubj(happen-9, dis-7) aux(happen-9, would-8) ccomp(knew-6, happen-9) advmod(ago-11, long-10) advmod(happen-9, ago-11) advmod(happen-9, already-12)
mark(talk-5, If-1) det(walls-3, the-2) nsubj(talk-5, walls-3) aux(talk-5, could-4) root(ROOT-0, talk-5) amod(oh-7, \u002c-6) dobj(talk-5, oh-7) nsubj(say-10, they-8) aux(say-10, would-9) dep(talk-5, say-10) ccomp(say-10, want-11) nsubj(more-13, you-12) xcomp(want-11, more-13) nsubj(felt-20, They-15) aux(felt-20, would-16) num(hey\u002c-18, say\u002c-17) npadvmod(never-19, hey\u002c-18) neg(felt-20, never-19) ccomp(talk-5, felt-20) prep(felt-20, like-21) pobj(like-21, this-22) advmod(felt-20, before-23) cc(felt-20, and-24) mark(one-31, that-25) nsubj(one-31, you-26) aux(one-31, will-27) advmod(one-31, always-28) cop(one-31, be-29) det(one-31, the-30) conj(felt-20, one-31) prep(one-31, for-32) pobj(for-32, me-33)
aux(booked-2, Have-1) root(ROOT-0, booked-2) discourse(Meet-11, table-3) dep(table-3, at-4) amod(restaurant-6, angel-5) pobj(at-4, restaurant-6) prep(restaurant-6, at-7) nn(club-9, faculty-8) pobj(at-7, club-9) ccomp(booked-2, Meet-11) prep(Meet-11, at-12) num(noon-14, twelve-13) pobj(at-12, noon-14) prep(noon-14, at-15) amod(restaurant-18, outside-16) det(restaurant-18, the-17) pobj(at-15, restaurant-18)
nn(again\u002c-3, Change-1) nn(again\u002c-3, dateline-2) nsubj(thk-4, again\u002c-3) root(ROOT-0, thk-4) num(hand-6, i\u2019ll-5) dobj(thk-4, hand-6) prep(hand-6, in-7) advmod(collect-10, when-8) nsubj(collect-10, i-9) pcomp(in-7, collect-10) dep(package-13, e-11) amod(package-13, mat-12) dep(collect-10, package-13) discourse(is-18, Oh-15) amod(23rd-17, ya\u002c-16) nsubj(is-18, 23rd-17) dep(thk-4, is-18) prep(is-18, on-19) amod(rite-23, wed\u002c-20) nn(rite-23, movie-21) nn(rite-23, date-22) pobj(on-19, rite-23)
nsubj(telling-2, Jus-1) root(ROOT-0, telling-2) amod(i\u2019ll-5, u-3) nn(i\u2019ll-5, dat-4) dobj(telling-2, i\u2019ll-5) dep(i\u2019ll-5, b-6) vmod(telling-2, leaving-7) num(shanghai-9, 4-8) dobj(leaving-7, shanghai-9) prep(leaving-7, on-10) pobj(on-10, 21st-11) prep(leaving-7, instead-12) advmod(more-16, so-13) num(haf-15, we\u2019ll-14) npadvmod(more-16, haf-15) pobj(instead-12, more-16) nsubj(meet-19, time-17) num(time-17, 2-18) ccomp(more-16, meet-19) prt(meet-19, up-20) dobj(meet-19, cya-21)
dobj(know-4, Haha-1) nsubj(b-16, Haha-1) mark(know-4, so-2) nsubj(know-4, he-3) dep(Haha-1, know-4) num(liao-6, 2-5) dep(know-4, liao-6) nsubj(lah-9, Ok-8) dep(liao-6, lah-9) advmod(lah-9, then-10) dep(lah-9, i-11) nsubj(disturb-13, dont-12) ccomp(i-11, disturb-13) aux(b-16, Should-15) root(ROOT-0, b-16) amod(now\u002c-19, safe-17) num(now\u002c-19, 4-18) dobj(b-16, now\u002c-19) cc(b-16, but-20) advmod(got-22, later-21) conj(b-16, got-22) det(thing-25, some-23) nn(thing-25, celebration-24) dobj(got-22, thing-25) nsubj(guard-31, i-26) aux(guard-31, must-27) dep(on-29, b-28) dep(guard-31, on-29) pobj(on-29, e-30) rcmod(thing-25, guard-31) advmod(guard-31, again-32) dobj(guard-31, haiz-33)
nsubj(need-2, okok\u002c-1) xsubj(go-4, okok\u002c-1) root(ROOT-0, need-2) aux(go-4, to-3) xcomp(need-2, go-4) prep(go-4, for-5) pobj(for-5, class-6) advmod(msg-9, now-7) rcmod(class-6, msg-9) dobj(msg-9, you-10) advmod(msg-9, later-11)
advmod(long-2, How-1) dep(more-3, long-2) dep(take-6, more-3) aux(take-6, will-4) nsubj(take-6, u-5) root(ROOT-0, take-6) dep(take-6, Now-8) prep(Now-8, at-9) det(stn-11, which-10) pobj(at-9, stn-11)
nsubj(ask-3, Forget-1) aux(ask-3, to-2) root(ROOT-0, ask-3) dobj(ask-3, u-4) advmod(now-6, just-5) advmod(ask-3, now-6) aux(join-11, Do-8) nn(wanna-10, u-9) nsubj(join-11, wanna-10) parataxis(ask-3, join-11) dobj(join-11, us-12) prep(join-11, for-13) pobj(for-13, meditation-14) tmod(join-11, tomorrow-15)
nn(u-2, Y-1) nsubj(scold-3, u-2) root(ROOT-0, scold-3) dobj(scold-3, me-4) nn(y-7, Aiyo-6) nsubj(u-8, y-7) parataxis(scold-3, u-8) advmod(poor-10, so-9) amod(thing-11, poor-10) dobj(u-8, thing-11) tmod(u-8, today-12) nn(parents-17, Wat-14) nn(parents-17, time-15) nn(parents-17, ur-16) nsubj(coming-18, parents-17) parataxis(u-8, coming-18) nn(tmr-20, home-19) dobj(coming-18, tmr-20)
nsubj(is-2, xuan-1) root(ROOT-0, is-2) mark(hate-7, so-3) discourse(hate-7, petty-4) nsubj(hate-7, i-6) advcl(is-2, hate-7) nsubj(PUFF-10, him-8) xcomp(hate-7, PUFF-10)
det(choice-2, no-1) nsubj(have-3, choice-2) xsubj(treat-5, choice-2) root(ROOT-0, have-3) aux(treat-5, to-4) xcomp(have-3, treat-5) dobj(treat-5, her-6)
aux(make-3, Can-1) nsubj(make-3, ü-2) dep(suggestions-14, make-3) dobj(make-3, it-4) prep(make-3, on-5) pobj(on-5, Wednesday-6) prep(make-3, for-7) pobj(for-7, dinner-8) dep(make-3, Shuhui\u2019s-10) nn(..-12, Bday-11) dobj(Shuhui\u2019s-10, ..-12) det(suggestions-14, Any-13) dep(Ã-23, suggestions-14) prep(suggestions-14, as-15) pcomp(as-15, to-16) nsubj(get-19, what-17) aux(get-19, to-18) pcomp(to-16, get-19) prep(get-19, for-20) pobj(for-20, her-21) root(ROOT-0, Ã-23)
advmod(glad-2, \K-1) amod(u-4, glad-2) amod(u-4, t-3) root(ROOT-0, u-4) dep(u-4, r-5) dep(r-5, back-6) poss(lor-12, My-8) amod(lor-12, new-9) nn(lor-12, year-10) nn(lor-12, ok-11) dep(back-6, lor-12) prep(u-4, As-14) nn(Today-21, usual\u002c-15) nn(Today-21, go-16) nn(Today-21, grandmas-17) nn(Today-21, house-18) nn(Today-21, lor-19) pobj(As-14, Today-21) neg(go-23, never-22) dep(u-4, go-23) nn(tuo-25, pa-24) dobj(go-23, tuo-25)
det(modules-2, what-1) dobj(going-5, modules-2) aux(going-5, are-3) nsubj(going-5, u-4) xsubj(register-7, u-4) root(ROOT-0, going-5) aux(register-7, to-6) xcomp(going-5, register-7) prep(register-7, for-8) aux(come-12, can-10) nsubj(come-12, u-11) dep(going-5, come-12) prep(come-12, online-13) advmod(come-12, now-14) mark(discuss-18, so-15) nsubj(discuss-18, we-16) aux(discuss-18, can-17) dep(going-5, discuss-18)
poss(computing-3, your-1) amod(computing-3, parallel-2) nsubj(property-6, computing-3) cop(property-6, is-4) amod(property-6, hot-5) root(ROOT-0, property-6) amod(points-10, better-8) nn(points-10, increase-9) dep(property-6, points-10) advmod(points-10, now-11)
nsubj(maybe-3, Nvm-1) root(ROOT-0, maybe-3) amod(time-5, next-4) dobj(maybe-3, time-5) advmod(maybe-3, then-6)
det(stop-2, The-1) dobj(get-5, stop-2) nsubj(hope-7, stop-2) mark(get-5, after-3) nsubj(get-5, oasis-4) dep(stop-2, get-5) prt(get-5, off-6) root(ROOT-0, hope-7) dep(too-9, not-8) advmod(hope-7, too-9) advmod(reply-12, late-10) det(reply-12, the-11) dobj(hope-7, reply-12)
cc(take-4, But-1) nsubj(take-4, u-2) advmod(take-4, really-3) root(ROOT-0, take-4) det(tut-11, a-5) amod(tut-11, long-6) nn(tut-11, time-7) num(tut-11, 2-8) nn(tut-11, finish-9) num(tut-11, one-10) dobj(take-4, tut-11) prep(tuts-24, At-13) det(rate-15, this-14) pobj(At-13, rate-15) tmod(u-18, rate-15) advmod(u-18, when-16) nsubj(u-18, r-17) rcmod(rate-15, u-18) xcomp(u-18, going-19) num(finish-21, 2-20) dobj(going-19, finish-21) det(ur-23, all-22) nsubj(tuts-24, ur-23) parataxis(take-4, tuts-24)
num(i\u2019m-2, Nope\u002c-1) npadvmod(not-3, i\u2019m-2) dep(oso-22, not-3) prep(not-3, in-4) pobj(in-4, sch\u002c-5) dep(now-8, at-6) dep(at-6, home-7) dep(ok-12, now-8) nsubjpass(ok-12, Things-10) auxpass(ok-12, are-11) dep(not-3, ok-12) advmod(ok-12, now-13) cc(ok-12, but-14) conj(ok-12, i\u2019m-15) xcomp(i\u2019m-15, expecting-16) det(hee-19, a-17) amod(hee-19, storm\u002c-18) dobj(expecting-16, hee-19) amod(oso-22, I\u2019m-21) root(ROOT-0, oso-22) det(bit-24, a-23) dep(oso-22, bit-24) amod(oso-22, sad-25) prep(sad-25, about-26) amod(team-28, Liwei\u2019s-27) pobj(about-26, team-28)
amod(dears-3, Hi-1) poss(dears-3, my-2) root(ROOT-0, dears-3) nn(bill-6, Ã-5) nsubj($155.28-8, bill-6) cop($155.28-8, is-7) dep(dears-3, $155.28-8) dep($155.28-8, each-9) dep(dears-3, Acc-11) dep(dears-3, no-12) cop(304-00665-0-15, is-14) dep(dears-3, 304-00665-0-15) dep(dears-3, Thx-17) nn(u-20, Msg-19) dep(Thx-17, u-20) dep(Thx-17, once-21) dep(Thx-17, u-22) dep(u-22, transfer-23) mark(make-27, so-24) nsubj(make-27, i-25) aux(make-27, can-26) advcl(transfer-23, make-27) amod(it\u2019s-29, sure-28) dobj(make-27, it\u2019s-29) prep(make-27, in-30) dep(=)-35, *-32) nn(=)-35, hugz-33) nn(=)-35, *-34) dep(dears-3, =)-35)
nsubj(reply-9, Mtg-1) xsubj(indicate-11, Mtg-1) prep(Mtg-1, at-2) num(pm-4, 4.30-3) pobj(at-2, pm-4) prep(pm-4, on-5) nn(Please-8, sat-6) pobj(on-5, Please-8) root(ROOT-0, reply-9) aux(indicate-11, to-10) xcomp(reply-9, indicate-11) mark(make-15, whether-12) nsubj(make-15, you-13) aux(make-15, can-14) ccomp(indicate-11, make-15) dobj(make-15, it-16)
aux(go-3, i-1) nsubj(go-3, cant-2) dep(have-6, go-3) nsubj(have-6, i-5) root(ROOT-0, have-6) det(meeting-8, a-7) dobj(have-6, meeting-8) prep(meeting-8, on-9) det(day-11, that-10) pobj(on-9, day-11)
amod(time-2, Next-1) root(ROOT-0, time-2) nsubj(get-4, i\u2019ll-3) rcmod(time-2, get-4) det(bed-8, a-5) nn(bed-8, king-6) nn(bed-8, size-7) dobj(get-4, bed-8) dep(time-2, Haha-10)
nn(i-5, Hmm-1) nn(i-5, Ok-3) nn(i-5, den-4) nsubj(try-6, i-5) root(ROOT-0, try-6) nsubj(time-9, it-7) det(time-9, this-8) xcomp(try-6, time-9)
root(ROOT-0, ok-1) dep(ok-1, ok-2) nsubj(go-4, i-3) ccomp(ok-2, go-4) nn(court-6, book-5) dobj(go-4, court-6) advmod(go-4, then-7) dep(go-4, confirm-8) nn(u-10, wif-9) dobj(confirm-8, u-10)
nn(u-4, Tmr-1) nn(u-4, wat-2) nn(u-4, time-3) dep(end-5, u-4) dep(From-7, end-5) dep(go-11, From-7) poss(house-9, my-8) pobj(From-7, house-9) nsubj(go-11, i-10) advcl(tell-19, go-11) xcomp(go-11, pick-12) dobj(pick-12, u-13) advmod(pick-12, first-14) nn(i\u2019ll-18, E-16) nn(i\u2019ll-18, rest-17) nsubj(tell-19, i\u2019ll-18) root(ROOT-0, tell-19) nsubj(meet-22, them-20) aux(meet-22, to-21) xcomp(tell-19, meet-22) prep(meet-22, at-23) pobj(at-23, 730-24) prep(meet-22, at-25) amod(cellar-28, paragon-26) nn(cellar-28, food-27) pobj(at-25, cellar-28)
prep(wash-8, For-1) amod(past-3, e-2) pobj(For-1, past-3) num(week-5, 1-4) tmod(wash-8, week-5) amod(didnt-7, i-6) nsubj(wash-8, didnt-7) advcl(come-14, wash-8) poss(den-11, my-9) amod(den-11, clothes\u002c-10) dobj(wash-8, den-11) advmod(wash-8, now-12) nsubj(come-14, they-13) root(ROOT-0, come-14) advmod(sure-16, back-15) advmod(throw-24, sure-16) dep(sure-16, got-17) dobj(got-17, more-18) prep(got-17, to-19) pobj(to-19, wash\u002c-20) mark(throw-24, so-21) nsubj(throw-24, i-22) advmod(throw-24, just-23) advcl(come-14, throw-24) dobj(throw-24, mine-25) prep(throw-24, into-26) amod(machine-29, e-27) amod(machine-29, washing-28) pobj(into-26, machine-29)
det(time-2, What-1) dep(is-3, time-2) root(ROOT-0, is-3) det(show-5, the-4) nsubj(is-3, show-5)
root(ROOT-0, okie-1) nsubj(get-4, you-2) aux(get-4, should-3) ccomp(okie-1, get-4) dobj(get-4, bac-5) prep(get-4, to-6) poss(care-11, your-7) nn(care-11, lecture-8) nn(care-11, take-10) pobj(to-6, care-11)
nsubj(went-2, yupz-1) root(ROOT-0, went-2) prt(went-2, out-3) prep(went-2, for-4) nn(wif-6, lunch-5) pobj(for-4, wif-6) dobj(u-12, wif-6) poss(tok-10, my-7) nn(tok-10, family-8) nn(tok-10, ..-9) nsubj(u-12, tok-10) aux(u-12, to-11) vmod(wif-6, u-12) advmod(u-12, later-13)
det(bus-2, what-1) dobj(take-5, bus-2) aux(take-5, can-3) nsubj(take-5, i-4) root(ROOT-0, take-5) cc(mrt-11, Or-7) nn(mrt-11, shld-8) nn(mrt-11, i-9) nn(mrt-11, take-10) dep(take-5, mrt-11)
root(ROOT-0, Haiz-1) nsubj(ask-4, They-3) xsubj(go-7, They-3) ccomp(Haiz-1, ask-4) parataxis(Haiz-1, ask-4) dobj(ask-4, me-5) aux(go-7, to-6) xcomp(ask-4, go-7) advmod(go-7, back-8) prep(back-8, to-9) poss(department-11, my-10) pobj(to-9, department-11) cc(go-7, and-12) conj(go-7, ask-13) nsubj(time-17, Waste-15) poss(time-17, my-16) parataxis(ask-4, time-17) xcomp(ask-4, time-17)
root(ROOT-0, yupz-1) dep(yupz-1, I\u2019m-3) vmod(I\u2019m-3, goin-4) aux(bid-6, to-5) xcomp(goin-4, bid-6) advmod(bid-6, now-7) dobj(bid-6, liao-8) nn(bid-11, U-10) dep(yupz-1, bid-11) num(bid-11, 4-12) dep(bid-11, some-13) prep(some-13, of-14) nn(oredi-17, ur-15) nn(oredi-17, modules-16) pobj(of-14, oredi-17)
poss(dear\u002c-2, My-1) nsubj(see-13, dear\u002c-2) advmod(u-5, how-3) cop(u-5, are-4) dep(dear\u002c-2, u-5) nsubj(m-8, I-7) rcmod(u-5, m-8) xcomp(m-8, working-9) dobj(working-9, now\u002c-10) aux(see-13, did-11) neg(see-13, not-12) root(ROOT-0, see-13) dobj(see-13, u-14) amod(u-14, online-15) nsubj(heard-19, \u002c-17) advmod(heard-19, just-18) parataxis(see-13, heard-19) mark(given-24, that-20) nn(ho-22, pastor-21) nsubj(given-24, ho-22) aux(given-24, has-23) ccomp(heard-19, given-24) dobj(given-24, birth-25)
amod(year-3, Happy-1) amod(year-3, new-2) nsubj(!-4, year-3) dobj(!-4, ^_^-5)
expl(are-2, there-1) root(ROOT-0, are-2) amod(show-4, 730pm-3) nsubj(are-2, show-4) cc(show-4, and-5) det(show-8, the-6) amod(show-8, 9pm-7) conj(show-4, show-8) prep(show-8, at-9) pobj(at-9, PS-10) det(one-13, which-12) dep(PS-10, one-13)
root(ROOT-0, okie-1) parataxis(okie-1, done-3) nsubj(meet-7, we-5) aux(meet-7, shall-6) parataxis(done-3, meet-7) dobj(meet-7, 7pm-8) prep(meet-7, at-9) nn(k-11, dg-10) pobj(at-9, k-11)
root(ROOT-0, Tell-1) dobj(Tell-1, me-2) nsubj(confirm-4, ya-3) dep(Tell-1, confirm-4) dobj(confirm-4, time-5) advmod(so-7, later-6) advmod(time-5, so-7) nsubj(tell-10, i-8) aux(tell-10, can-9) rcmod(time-5, tell-10) amod(ron-13, ryan-11) nn(ron-13, n-12) dobj(tell-10, ron-13)
amod(gd-2, Dat\u2019s-1) root(ROOT-0, gd-2) advmod(i-5, Later-4) dep(gd-2, i-5) dep(i-5, meet-6) nn(ard-8, u-7) dobj(meet-6, ard-8) num(k\u002c-10, 7-9) npadvmod(i-11, k\u002c-10) advmod(meet-6, i-11) dep(meet-6, wait-12) prep(wait-12, for-13) poss(sis-15, my-14) pobj(for-13, sis-15) aux(come-17, to-16) xcomp(wait-12, come-17) advmod(come-17, back-18) advmod(come-17, first-19)
nsubj(tell-30, He-1) dep(not-3, today-2) dep(free-4, not-3) dep(wanted-11, free-4) nn(jus-9, Aiyah-6) nn(jus-9, u-7) nn(jus-9, free\u002c-8) nsubj(wanted-11, jus-9) advmod(wanted-11, now-10) advcl(tell-30, wanted-11) ccomp(wanted-11, go-12) prt(go-12, out-13) cc(wanted-11, but-14) conj(wanted-11, thought-15) xcomp(thought-15, u-16) det(wont-18, all-17) dobj(u-16, wont-18) dep(free-20, b-19) dep(Ok-22, free-20) dep(wont-18, Ok-22) advmod(Ok-22, later-23) mark(call-26, if-24) nsubj(call-26, she-25) advcl(u-16, call-26) prt(call-26, back-27) advmod(call-26, then-28) nsubj(tell-30, i-29) root(ROOT-0, tell-30) dobj(tell-30, u-31) advmod(tell-30, how-32)
nn(tmr-5, Oh\u002cthen-1) nn(tmr-5, shd-2) nn(tmr-5, i-3) nn(tmr-5, join-4) root(ROOT-0, tmr-5) dep(i-8, maybe-7) dep(tmr-5, i-8) aux(get-10, can-9) rcmod(i-8, get-10) amod(h-13, more-11) nn(h-13, sleep-12) dobj(get-10, h-13) amod(????...-16, ????-14) nn(????...-16, h-15) nsubj(:p-17, ????...-16) rcmod(h-13, :p-17) advmod(come-19, how-18) ccomp(:p-17, come-19) xcomp(come-19, ??-20) advmod(??-20, still-21) dep(late-24, awake-22) advmod(late-24, so-23) advmod(??-20, late-24) dep(tmr-5, >-27)
discourse(got-5, Hey-1) advmod(mei-3, so-2) amod(haven-4, mei-3) nsubj(got-5, haven-4) root(ROOT-0, got-5) amod(huh-8, e-6) nn(huh-8, frame-7) dobj(got-5, huh-8) aux(nd-12, Do-10) nsubj(nd-12, we-11) xsubj(get-14, we-11) parataxis(got-5, nd-12) aux(get-14, to-13) xcomp(nd-12, get-14) nsubj(den-16, it-15) xcomp(get-14, den-16)
root(ROOT-0, Nope\u002c-1) nsubj(wun-3, they-2) ccomp(Nope\u002c-1, wun-3) aux(going-5, be-4) dep(wun-3, going-5)
dep(sian-17, So-1) advmod(sian-17, far-2) mark(lor-5, so-3) amod(lor-5, good-4) dep(far-2, lor-5) dep(lor-5, Starting-7) poss(wk-13, my-8) num(wk-13, 6-9) nn(wk-13, day-10) amod(wk-13, wk-11) nn(wk-13, tis-12) dobj(Starting-7, wk-13) det(bit-16, A-15) nsubj(sian-17, bit-16) root(ROOT-0, sian-17) cc(sian-17, but-18) advmod(sian-17, still-19) conj(sian-17, still-19) aux(cope-21, can-20) conj(sian-17, cope-21) dobj(cope-21, la-22)
advmod(give-3, i-1) aux(give-3, will-2) root(ROOT-0, give-3) iobj(give-3, u-4) det(call-6, a-5) dobj(give-3, call-6) nn(:)-10, ok-8) nsubj(give-3, :)-10)
nsubj(call-3, U-1) aux(call-3, can-2) root(ROOT-0, call-3) dobj(call-3, me-4) advmod(call-3, now-5)
mark(sorry-3, Hey-1) amod(sorry-3, girls\u002c-2) dobj(can-5, sorry-3) csubj(wed-21, sorry-3) nsubj(can-5, I-4) rcmod(sorry-3, can-5) dep(sorry-3, t-7) rcmod(t-7, make-8) nsubj(tmr-10, it-9) ccomp(make-8, tmr-10) acomp(tmr-10, ..-11) dep(..-11, How-12) prep(tmr-10, at-13) amod(jan-15, 28th-14) pobj(at-13, jan-15) dep(sorry-3, it-17) cop(wed-21, s-19) det(wed-21, the-20) root(ROOT-0, wed-21) prep(wed-21, after-22) amod(year-25, Chinese-23) amod(year-25, new-24) pobj(after-22, year-25)
dep(meet-7, You-1) dep(You-1, ask-2) poss(friend-4, your-3) dobj(ask-2, friend-4) nsubj(meet-7, I-6) root(ROOT-0, meet-7) poss(senior-9, my-8) dobj(meet-7, senior-9) cc(meet-7, but-10) nsubj(know-13, he-11) advmod(know-13, only-12) conj(meet-7, know-13) amod(pple-18, math\u002cy-14) nn(pple-18, u-15) nn(pple-18, nv-16) nn(pple-18, approach-17) dobj(know-13, pple-18) prep(know-13, during-19) nn(bazaar-22, d-20) nn(bazaar-22, cca-21) pobj(during-19, bazaar-22)
nn(i-2, Haha\u002c-1) nsubj(watched-3, i-2) root(ROOT-0, watched-3) advmod(watched-3, already-4) nn(i-9, Sorry-6) nn(i-9, Anyway-8) nsubj(made-10, i-9) parataxis(watched-3, made-10) amod(plans-12, other-11) nsubj(go-16, plans-12) prep(plans-12, for-13) nn(already\u002c-15, tmr-14) pobj(for-13, already\u002c-15) ccomp(made-10, go-16) prt(go-16, out-17) det(lah-20, another-18) nn(lah-20, time-19) dobj(go-16, lah-20) nsubj(enjoy-23, Ã-22) parataxis(made-10, enjoy-23) nn(party-26, yr-24) nn(party-26, birthday-25) dobj(enjoy-23, party-26) amod(..-28, babe-27) amod(party-26, ..-28)
nsubj(waitin-3, Havent-1) advmod(waitin-3, still-2) root(ROOT-0, waitin-3) prep(waitin-3, as-4) pobj(as-4, usual-5) nsubj(come-8, Ã-7) parataxis(waitin-3, come-8) prt(come-8, back-9) nn(oredi-11, sch-10) dobj(come-8, oredi-11)
advmod(DARREN-3, Here-1) cop(DARREN-3, is-2) dep(like-11, DARREN-3) prep(DARREN-3, from-4) det(INSPIRATION-7, the-5) nn(INSPIRATION-7, DREAM-6) pobj(from-4, INSPIRATION-7) nsubj(like-11, I-9) xsubj(invite-13, I-9) aux(like-11, would-10) root(ROOT-0, like-11) aux(invite-13, to-12) xcomp(like-11, invite-13) nsubj(seminar-16, you-14) det(seminar-16, a-15) xcomp(invite-13, seminar-16) prep(seminar-16, on-17) det(creation-20, the-18) nn(creation-20, wealth-19) pobj(on-17, creation-20) prep(creation-20, on-21) det(VILLAGE-26, this-22) amod(VILLAGE-26, coming-23) nn(VILLAGE-26, WEDNESDAY\u002c7pm\u002c63B-24) nn(VILLAGE-26, BUGIS-25) pobj(on-21, VILLAGE-26)
advmod(plaza-2, At-1) root(ROOT-0, plaza-2) num(pm-5, sing\u002c-3) num(pm-5, 10-4) dobj(plaza-2, pm-5) cc(pm-5, or-6) nn(pm-9, marina-7) num(pm-9, 1010-8) conj(pm-5, pm-9) aux(make-12, Can-11) dep(pm-5, make-12) dobj(make-12, it-13) mark(lor-20, If-15) neg(lor-20, not-16) advmod(lor-20, then-17) amod(lor-20, next-18) nn(lor-20, day-19) dep(plaza-2, lor-20)
dep(..-17, hey-1) num(hey-1, i-2) aux(coz-8, will-3) cop(coz-8, be-4) det(coz-8, a-5) advmod(coz-8, bit-6) amod(coz-8, late-7) dep(..-17, coz-8) nsubj(coz-8, i-9) dep(coz-8, meet-10) poss(frien-12, my-11) dobj(meet-10, frien-12) dep(coz-8, pass-13) det(stuff-15, some-14) dobj(pass-13, stuff-15) amod(..-17, first-16) root(ROOT-0, ..-17)
nsubj(send-3, Thk-1) aux(send-3, will-2) root(ROOT-0, send-3) num(mail-5, one-4) dobj(send-3, mail-5) cc(send-3, and-6) conj(send-3, confirm-7) dobj(confirm-7, lor\u002c-8) nsubj(lk-10, they-9) rcmod(lor\u002c-8, lk-10) nn(check-12, nvr-11) dobj(lk-10, check-12) mark(booked-15, whether-13) nsubj(booked-15, we-14) ccomp(lk-10, booked-15) nn(anot-17, oredi-16) dobj(booked-15, anot-17)
root(ROOT-0, Sorry-1) prep(Sorry-1, to-2) nn(u-4, trouble-3) pobj(to-2, u-4) advmod(buy-8, again-5) aux(buy-8, Can-7) rcmod(u-4, buy-8) dobj(buy-8, 4d-9) prep(buy-8, for-10) poss(dad-12, my-11) pobj(for-10, dad-12) advmod(buy-8, again-13) dep(buy-8, 1405\u002c-15) num(1843-17, 1680\u002c-16) dobj(1405\u002c-15, 1843-17) quantmod(2-20, All-19) num(small\u002c-23, 2-20) amod(small\u002c-23, big-21) num(small\u002c-23, 1-22) dep(Sorry-1, small\u002c-23) vmod(small\u002c-23, sat-24) nn(sun-26, n-25) dobj(sat-24, sun-26) dep(Sorry-1, Thanx-28)
dep(dat-15, valuing-1) nsubjpass(jus-5, someone-2) auxpass(jus-5, is-3) neg(jus-5, not-4) ccomp(valuing-1, jus-5) prep(jus-5, by-6) pcomp(by-6, seeing-7) det(other-9, each-8) dobj(seeing-7, other-9) advmod(seeing-7, always-10) nn(counts-13, wat-12) nsubjpass(dat-15, counts-13) auxpass(dat-15, is-14) root(ROOT-0, dat-15) advmod(dat-15, somehow-16) prep(dat-15, in-17) poss(lives\u002c-20, our-18) amod(lives\u002c-20, busy-19) dep(in-17, lives\u002c-20) nsubj(remember-22, we-21) rcmod(lives\u002c-20, remember-22) det(other-24, each-23) dobj(remember-22, other-24) dep(lives\u002c-20, take-26) dobj(take-26, care-27)
advmod(gave-3, Hey-1) nsubj(gave-3, you-2) root(ROOT-0, gave-3) iobj(gave-3, them-4) poss(photo-6, your-5) dobj(gave-3, photo-6) advmod(registered-9, when-7) nsubj(registered-9, you-8) advcl(gave-3, registered-9) prep(registered-9, for-10) pcomp(for-10, driving-11) nn(wanna-15, ah-12) nn(wanna-15, Tmr-14) nsubj(meet-16, wanna-15) ccomp(driving-11, meet-16) prep(meet-16, at-17) pobj(at-17, yck-18)
nn(wanna-4, Yea-1) nn(wanna-4, I\u2019m-2) nn(wanna-4, gng\u002c-3) nsubj(meet-5, wanna-4) root(ROOT-0, meet-5) prep(meet-5, at-6) nn(MRT-8, Orchard-7) pobj(at-6, MRT-8) num(pm-10, 6.45-9) dobj(meet-5, pm-10) amod(pm-10, (-11) cc((-11, or-12) conj((-11, earlier)-13)
dep(woke-8, Are-1) nsubj(Are-1, you-2) dep(Are-1, wake-3) dep(wake-3, up-4) mark(woke-8, If-6) nsubj(woke-8, you-7) advcl(give-10, woke-8) csubj(give-10, woke-8) prt(woke-8, up-9) root(ROOT-0, give-10) iobj(give-10, me-11) det(ok-14, a-12) nn(ok-14, call-13) dobj(give-10, ok-14)
advmod(making-3, How-1) nsubj(making-3, abt-2) root(ROOT-0, making-3) nsubj(bigger-8, some-4) prep(some-4, of-5) det(pics-7, the-6) pobj(of-5, pics-7) xcomp(making-3, bigger-8)
nsubj(meet-2, let\u2019s-1) root(ROOT-0, meet-2) prep(meet-2, at-3) nn(2morrow-5, taka-4) pobj(at-3, 2morrow-5) nsubj(give-7, 2-6) ccomp(meet-2, give-7) nn(stuff-9, e-8) iobj(give-7, stuff-9) num(stuff-9, 2-10) det(other-12, each-11) dobj(give-7, other-12) prep(give-7, as-13) amod(things\u002ck-16, i\u2019llbe-14) nn(things\u002ck-16, buying-15) pobj(as-13, things\u002ck-16)
dep(??-38, Hi-1) dep(Hi-1, pple-2) dep(Hi-1, confirm-5) dep(2mr-11, watching-6) dobj(watching-6, lotr-7) prep(watching-6, with-8) pobj(with-8, us-9) dep(confirm-5, 2mr-11) num(rite-17, 1.30-13) amod(rite-17, suntec-14) amod(rite-17, eng-15) nn(rite-17, wah-16) dep(2mr-11, rite-17) mark(buy-23, If-19) nn(i-21, ok\u002c-20) nsubj(buy-23, i-21) aux(buy-23, will-22) dep(2mr-11, buy-23) det(tic-25, the-24) dobj(buy-23, tic-25) prep(buy-23, for-26) amod(lunch-30, ?...-27) nn(lunch-30, Wanna-28) nn(lunch-30, haf-29) pobj(for-26, lunch-30) nn(dinner-35, Go-32) nn(dinner-35, jalan-33) nn(dinner-35, n-34) dep(??-38, dinner-35) amod(??-38, aft-36) nn(??-38, movie-37) root(ROOT-0, ??-38)
nsubj(lend-7, Ic-1) xsubj(read-12, Ic-1) nn(i-5, U-3) nn(i-5, wan-4) dep(Ic-1, i-5) aux(lend-7, can-6) root(ROOT-0, lend-7) iobj(lend-7, u-8) amod(book-10, e-9) dobj(lend-7, book-10) aux(read-12, to-11) xcomp(lend-7, read-12) dobj(read-12, lor-13) amod(wat-19, Haha\u002c-15) nn(wat-19, newsweek-16) nn(wat-19, oso-17) amod(wat-19, nice-18) parataxis(lend-7, wat-19)
discourse(ic-2, Oh-1) root(ROOT-0, ic-2) nsubj(ask-5, Nvr-4) xsubj(pick-22, Nvr-4) parataxis(ic-2, ask-5) amod(fren-8, ur-6) amod(fren-8, good-7) dobj(ask-5, fren-8) vmod(fren-8, menghong-9) prt(menghong-9, out-10) advmod(menghong-9, ah-11) amod(oso-14, I\u2019m-13) dep(waitin-17, oso-14) advmod(now\u002c-16, alone-15) dep(waitin-17, now\u002c-16) dep(fren-20, waitin-17) num(waitin-17, 4-18) poss(fren-20, my-19) dep(menghong-9, fren-20) aux(pick-22, to-21) xcomp(ask-5, pick-22) dobj(pick-22, me-23) prt(pick-22, up-24)
root(ROOT-0, I\u2019m-1) vmod(I\u2019m-1, impressed-2) prep(impressed-2, by-3) nsubj(you\u2019ve-5, what-4) dep(by-3, you\u2019ve-5) dep(you\u2019ve-5, done-6) dep(I\u2019m-10, Wah-8) dep(Wah-19, I\u2019m-10) amod(I\u2019m-10, refering-11) prep(I\u2019m-10, to-12) det(project-15, the-13) nn(project-15, BZ-14) pobj(to-12, project-15) amod(Wah-19, Wah-17) dep(Esp-23, Wah-19) amod(Esp-23, Wah-21) dep(ratios-26, Esp-23) det(ratios-26, the-25) dep(you\u2019ve-5, ratios-26) amod(Wah-30, Wah-28) dep(I\u2019m-1, Wah-30) dep(I\u2019m-1, Wah-32)
nn(dun-2, Sorry-1) nsubj(want-3, dun-2) xsubj(keep-5, dun-2) advcl(let-12, want-3) aux(keep-5, to-4) xcomp(want-3, keep-5) dobj(keep-5, you-6) prt(keep-5, up-7) advmod(late-9, too-8) advmod(keep-5, late-9) nsubj(let-12, Will-11) root(ROOT-0, let-12) nsubj(know-14, you-13) ccomp(let-12, know-14) advmod(i\u2019m-16, when-15) advcl(know-14, i\u2019m-16) prep(i\u2019m-16, on-17) det(way-19, the-18) pobj(on-17, way-19)
ccomp(check-8, Havent-1) dep(Havent-1, planning-2) aux(buy-4, to-3) xcomp(planning-2, buy-4) advmod(buy-4, later-5) nsubj(check-8, I-7) root(ROOT-0, check-8) advmod(lido-10, already-9) nsubj(got-12, lido-10) advmod(got-12, only-11) ccomp(check-8, got-12) amod(show-14, 530-13) dobj(got-12, show-14) prep(show-14, in-15) dep(in-15, e-16) nn(U-19, afternoon-17) nsubj(finish-20, U-19) dep(got-12, finish-20) dobj(finish-20, work-21) advmod(finish-20, already-22)
root(ROOT-0, Hey-1) dep(Hey-1, I\u2019ll-3) dep(late-6, b-4) advmod(late-6, slightly-5) dep(I\u2019ll-3, late-6) dep(Hey-1, Still-8) prep(Still-8, on-9) nn(bus-11, e-10) pobj(on-9, bus-11)
aux(u-2, will-1) root(ROOT-0, u-2) dep(able-4, b-3) dep(be-17, able-4) aux(help-6, to-5) xcomp(able-4, help-6) dobj(help-6, me-7) prep(help-6, with-8) pcomp(with-8, sorting-9) dobj(sorting-9, tml-10) advmod(sorting-9, anytime-11) prep(anytime-11, from-12) pobj(from-12, 12-2pm-13) nsubj(be-17, it-15) aux(be-17, will-16) csubj(lvl-20, be-17) prep(be-17, at-18) pobj(at-18, s15-19) ccomp(u-2, lvl-20) num(benches-22, 3-21) dobj(lvl-20, benches-22) prep(lvl-20, near-23) pobj(near-23, lift-24) cc(lvl-20, and-25) aux(take-27, will-26) conj(lvl-20, take-27) dobj(take-27, ard-28) num(Geok-31, 30-45-29) amod(Geok-31, mins-Loo-30) nsubj(u-2, Geok-31)
dep(better-3, ok-1) advmod(apply-4, better-3) root(ROOT-0, apply-4) dobj(apply-4, leave-5) prep(leave-5, from-6) pobj(from-6, S1-7)
nsubj(need-3, U-1) advmod(need-3, definitely-2) root(ROOT-0, need-3) det(module-5, a-4) dobj(need-3, module-5) prep(need-3, from-6) dep(izzit-11, e-7) punct(izzit-11, humanities-8) amod(izzit-11, dis-9) nn(izzit-11, sem-10) pobj(from-6, izzit-11) nn(wan-14, U-13) nsubj(take-16, wan-14) num(wan-14, 2-15) rcmod(izzit-11, take-16) amod(modules-18, other-17) dobj(take-16, modules-18) dep(izzit-11, 1st-19)
nsubj(confirm-2, I-1) root(ROOT-0, confirm-2) xcomp(confirm-2, going-3) aux(claim-5, to-4) xcomp(going-3, claim-5) poss(book-7, your-6) dobj(claim-5, book-7) dep(book-7, Hehe-9) cc(dinner-12, And-11) dep(book-7, dinner-12) advmod(well-14, as-13) mwe(well-14, as-13) advmod(dinner-12, well-14) cc(confirm-2, But-16) nsubj(scared-19, I\u2019m-17) advmod(scared-19, still-18) conj(confirm-2, scared-19) amod(tickets-22, there\u2019s-20) det(tickets-22, no-21) dobj(scared-19, tickets-22) dobj(go-33, tickets-22) prep(tickets-22, for-23) pobj(for-23, Lord-24) prep(Lord-24, of-25) det(Rings-27, the-26) pobj(of-25, Rings-27) dep(tickets-22, Pub-29) nsubj(go-33, I-31) advmod(go-33, rather-32) rcmod(tickets-22, go-33) advmod(go-33, back-34) prep(go-33, to-35) poss(bathtub-37, my-36) pobj(to-35, bathtub-37)
dep(think-4, xy-1) nsubj(think-4, I-3) dep(w-25, think-4) amod(t-8, v-5) amod(t-8, high-6) nn(t-8, probability-7) dobj(forgotten-11, t-8) nsubj(do-21, t-8) nsubj(forgotten-11, she-9) aux(forgotten-11, has-10) rcmod(t-8, forgotten-11) dep(forgotten-11, wat-12) dobj(say-14, wat-12) nsubj(say-14, she-13) rcmod(wat-12, say-14) ref(t-8, What-16) nsubj(u-17, What-16) rcmod(t-8, u-17) advmod(u-17, all-18) dep(u-17, want-19) dobj(want-19, 2-20) ccomp(think-4, do-21) nn(cfm-24, U-23) nsubj(w-25, cfm-24) root(ROOT-0, w-25) poss(..-29, her-26) amod(..-29, first-27) nn(..-29, lah-28) dobj(w-25, ..-29)
root(ROOT-0, Wat-1) dobj(Wat-1, time-2) advmod(coming-4, u-3) vmod(time-2, coming-4) prep(coming-4, to-5) pobj(to-5, school-6)
dep(u-2, r-1) dep(need-12, u-2) vmod(u-2, working-3) prep(working-3, in-4) pobj(in-4, amk-5) cc(amk-5, or-6) conj(amk-5, bkt-7) vmod(u-2, pj-8) tmod(pj-8, today-9) nsubj(need-12, i-11) xsubj(pass-14, i-11) advcl(gave-19, need-12) aux(pass-14, to-13) xcomp(need-12, pass-14) dobj(pass-14, you-15) det(karen-18, the-16) nn(karen-18, gift-17) nsubj(gave-19, karen-18) root(ROOT-0, gave-19)
nsubj(sent-2, I\u2019ve-1) root(ROOT-0, sent-2) predet(details-6, all-3) det(details-6, the-4) nn(details-6, information-5) dobj(sent-2, details-6) prep(sent-2, to-7) poss(check-13, your-8) nn(check-13, email-9) nn(check-13, Pls-11) nn(check-13, kindly-12) nn(k-16, check-13) amod(k-16, ur-14) nn(k-16, email-15) pobj(to-7, k-16)
dep(Both-3, Ha-1) dep(tv-14, Both-3) prep(Both-3, of-4) nsubj(doing-6, us-5) pcomp(of-4, doing-6) dep(thing-9, e-7) amod(thing-9, same-8) dep(doing-6, thing-9) cc(Both-3, But-11) nsubj(got-13, i-12) conj(Both-3, got-13) advcl(thk-20, tv-14) num(watch-16, 2-15) nsubj(tv-14, watch-16) nsubj(thk-20, U-18) aux(thk-20, can-19) root(ROOT-0, thk-20) prep(thk-20, of-21) advmod(go-24, where-22) nsubj(go-24, 2-23) pcomp(of-21, go-24) dobj(go-24, tonight-25) cc(tonight-25, or-26) conj(tonight-25, u-27) advmod(go-24, already-28) dep(go-24, haf-29) dobj(haf-29, smth-30) prep(haf-29, in-31) pobj(in-31, mind-32)
nn(mus-2, Havent-1) nsubj(ask-3, mus-2) root(ROOT-0, ask-3) mark(meet-11, if-4) nsubj(meet-11, u-5) aux(meet-11, can-6) dep(wat-8, 1st-7) dep(Of-10, wat-8) dep(meet-11, Of-10) advcl(ask-3, meet-11) num(n-16, 4-12) nn(n-16, lunch-13) nn(n-16, den-14) nn(n-16, u-15) dobj(meet-11, n-16) nsubj(meet-18, him-17) rcmod(n-16, meet-18) aux(lor-21, can-19) advmod(lor-21, already-20) ccomp(meet-18, lor-21) cc(ask-3, Or-23) nn(wan-25, u-24) nsubj(go-27, wan-25) num(wan-25, 2-26) conj(ask-3, go-27) ccomp(go-27, ask-28) nn(ge-30, da-29) dobj(ask-28, ge-30) num(ge-30, 1st-31) advmod(ask-28, then-32) dep(ask-28, confirm-33) dobj(confirm-33, w-34) dobj(asap-36, w-34) nsubj(asap-36, me-35) rcmod(w-34, asap-36)
discourse(have-19, Good-1) dep(Good-1, morning-2) advmod(way-6, on-4) poss(way-6, my-5) nsubj(have-19, way-6) dep(way-6, to-7) dep(way-6, office-8) dep(office-8, Im-10) vmod(Im-10, feeling-11) advmod(feeling-11, well-12) nn(worry-15, dont-14) dep(office-8, worry-15) prep(worry-15, about-16) pobj(about-16, me-17) root(ROOT-0, have-19) nsubj(saw-21, you-20) ccomp(have-19, saw-21) dobj(saw-21, me-22) prep(saw-21, in-23) poss(hee-27, your-24) nn(hee-27, dreaming-25) pobj(in-23, hee-27)
nn(ll-3, ok-1) nn(ll-3, i-2) nsubj(send-4, ll-3) root(ROOT-0, send-4) dobj(send-4, her-5) det(asap-9, the-6) amod(asap-9, final-7) nn(asap-9, ver-8) dep(her-5, asap-9) dep(asap-9, then-10) dep(send-4, tell-12) dobj(tell-12, u-13) advmod(submitted-15, when-14) advcl(tell-12, submitted-15)
nn(doc-2, E-1) nsubjpass(ard-4, doc-2) auxpass(ard-4, is-3) root(ROOT-0, ard-4) num(Mb-6, 2.2-5) dobj(ard-4, Mb-6) advmod(ard-4, So-8) nsubj(think-10, i-9) ccomp(ard-4, think-10) parataxis(ard-4, think-10) nsubj(got-12, u-11) xsubj(have-14, u-11) ccomp(think-10, got-12) aux(have-14, to-13) xcomp(got-12, have-14) amod(space-16, enough-15) dobj(have-14, space-16) prep(space-16, in-17) nn(mailbox-19, ur-18) pobj(in-17, mailbox-19) advmod(bounce-22, else-20) num(bounce-22, it\u2019ll-21) npadvmod(back-23, bounce-22) advmod(mailbox-19, back-23)
nn(ur-2, How\u2019s-1) dep(year-4, ur-2) amod(year-4, new-3) dep(jus-7, year-4) nsubj(jus-7, I-6) csubj(came-8, jus-7) root(ROOT-0, came-8) advmod(came-8, back-9) tmod(came-8, yesterday-10)
nsubj(do-14, aiyah-1) mark(do-5, since-3) nsubj(do-5, u-4) dep(aiyah-1, do-5) advmod(many-7, so-6) amod(things-8, many-7) dobj(do-5, things-8) advmod(do-5, liaoz-9) aux(do-14, might-11) advmod(well-13, as-12) mwe(well-13, as-12) advmod(do-14, well-13) root(ROOT-0, do-14) det(rite-17, another-15) nn(rite-17, thing-16) dobj(do-14, rite-17)
mark(told-3, Although-1) nsubj(told-3, i-2) csubj(watches-10, told-3) nn(i\u2019m-6, u-4) nn(i\u2019m-6, dat-5) dobj(told-3, i\u2019m-6) prep(told-3, into-7) amod(face-9, baig-8) pobj(into-7, face-9) dep(gave-19, watches-10) advmod(watches-10, now-11) cc(watches-10, but-12) conj(watches-10, i-13) advmod(i-13, really-14) prep(i-13, like-15) amod(u-18, e-16) nn(u-18, watch-17) pobj(like-15, u-18) advcl(touched-33, gave-19) num(u-23, cos-20) amod(u-23, it\u2019s-21) nn(u-23, fr-22) nsubj(gave-19, u-23) nsubj(touched-33, Thanx-25) num(u\u2019ve-29, 4-26) nn(u\u2019ve-29, everything-27) nn(u\u2019ve-29, dat-28) dep(Thanx-25, u\u2019ve-29) vmod(Thanx-25, done-30) amod(i\u2019m-32, today\u002c-31) dobj(done-30, i\u2019m-32) root(ROOT-0, touched-33)
nn(lar-3, Jokin-1) advmod(lar-3, only-2) nsubj(depends-6, lar-3) dep(lar-3, :-)-5) root(ROOT-0, depends-6) prep(get-13, on-7) det(phone-9, which-8) pobj(on-7, phone-9) poss(father-11, my-10) nsubj(get-13, father-11) aux(get-13, can-12) ccomp(depends-6, get-13) dobj(get-13, lor-14)
amod(lah-3, dun-1) amod(lah-3, noe-2) root(ROOT-0, lah-3) punct(lah-3, cant-5) dep(bothered-7, b-6) dep(lah-3, bothered-7) prep(bothered-7, by-8) poss(nonsense-10, his-9) pobj(by-8, nonsense-10)
advmod(busy-4, Sorry-1) nsubj(busy-4, I-2) cop(busy-4, was-3) root(ROOT-0, busy-4) cc(busy-4, and-5) amod(didn\u2019t-7, i-6) nsubj(have-8, didn\u2019t-7) conj(busy-4, have-8) poss(phone-10, my-9) dobj(have-8, phone-10) prep(have-8, with-11) pobj(with-11, me-12) nsubj(6pm-15, Sat-14) parataxis(busy-4, 6pm-15) prep(6pm-15, at-16) nn(right-19, marina-17) nn(right-19, mrt-18) pobj(at-16, right-19)
nsubj(mean-2, Ã-1) root(ROOT-0, mean-2) nsubj(confirmed-4, it\u2019s-3) ccomp(mean-2, confirmed-4) nsubj(tot-7, I-6) ccomp(confirmed-4, tot-7) parataxis(confirmed-4, tot-7) nsubj(say-10, they-8) advmod(say-10, juz-9) ccomp(tot-7, say-10) dobj(say-10, oni-11) dep(oni-11, Ok-13) advmod(say-10, then-14)
nn(I-2, Andy-1) nsubj(hope-3, I-2) root(ROOT-0, hope-3) nsubj(ans-6, u-4) aux(ans-6, can-5) ccomp(hope-3, ans-6) poss(qn\u002c-9, my-7) nn(qn\u002c-9, icq-8) dobj(ans-6, qn\u002c-9) mark(ok-13, if-10) amod(it\u2019s-12, not\u002c-11) nsubj(ok-13, it\u2019s-12) advcl(ans-6, ok-13)
root(ROOT-0, Yup-1) nsubj(pick-4, I-3) rcmod(Yup-1, pick-4) nn(ard-6, u-5) dobj(pick-4, ard-6) num(ard-6, 830-7) dep(u-10, Call-9) dep(Yup-1, u-10) tmod(leave-13, u-10) advmod(leave-13, when-11) nsubj(leave-13, i-12) rcmod(u-10, leave-13)
nn(wat-2, Den-1) nsubj(u-3, wat-2) root(ROOT-0, u-3) xcomp(u-3, having-4) dep(U-9, for-5) pobj(for-5, ur-6) nn(U-9, lunch-7) dep(having-4, U-9) xcomp(u-3, going-10) nsubj(wif-12, ikea-11) ccomp(going-10, wif-12) dobj(wif-12, me-13)
nn(thanx-4, hey-1) nn(thanx-4, al-2) nn(thanx-4, ..-3) dep(!!-16, thanx-4) mark(haf-12, for-5) dep(gift-7, e-6) dep(haf-12, gift-7) num(gift-7, ..-8) nn(haf-12, haha-9) nn(haf-12, ..-10) nn(haf-12, u-11) dep(thanx-4, haf-12) det(!!-16, a-13) amod(!!-16, wonderful-14) nn(!!-16, time-15) root(ROOT-0, !!-16)
root(ROOT-0, Oh-1) dep(Oh-1, Ok\u002c-3) tmod(let-10, Ok\u002c-3) advmod(let-10, when-4) nsubj(let-10, u-5) vmod(u-5, going-6) aux(finish-8, to-7) xcomp(going-6, finish-8) dobj(finish-8, tuition-9) rcmod(Ok\u002c-3, let-10) nsubj(noe-12, me-11) xcomp(let-10, noe-12) nsubj(feel-15, U-14) dep(Oh-1, feel-15) prep(feel-15, like-16) pcomp(like-16, going-17) dobj(going-17, anot-18) mark(go-24, If-20) amod(i-23, u-21) amod(i-23, wan\u002c-22) nsubj(go-24, i-23) dep(Oh-1, go-24) prep(go-24, with-25) nn(lor-27, u-26) pobj(with-25, lor-27) nn(oso-30, Tmr-29) nsubj(..-32, oso-30) aux(..-32, can-31) parataxis(go-24, ..-32)
root(ROOT-0, Yes-1) dep(Yes-1, Going-3) prep(Going-3, out-4) advmod(Where-7, now-5) advmod(meet-9, Where-7) aux(meet-9, to-8) dep(out-4, meet-9)
nsubj(urself-5, U-1) advmod(urself-5, still-2) advmod(urself-5, havent-3) aux(urself-5, got-4) root(ROOT-0, urself-5) det(ah-8, a-6) nn(ah-8, jacket-7) dobj(urself-5, ah-8)
root(ROOT-0, Paiseh-1) nsubj(check-3, I-2) rcmod(Paiseh-1, check-3) nn(2day-5, newsPaper-4) dobj(check-3, 2day-5) det(show-8, no-6) nn(show-8, tt-7) dep(2day-5, show-8) dep(show-8, 2day-10) cop(WwF-12, is-11) rcmod(2day-10, WwF-12) amod(y-15, dunno-14) dep(show-8, y-15) det(liao-18, no-16) amod(liao-18, more-17) dep(y-15, liao-18) dep(check-3, Maybe-20) amod(wk-22, last-21) dep(Maybe-20, wk-22) amod(Friends-26, last-23) nn(Friends-26, episode-24) nn(Friends-26, w-25) dep(wk-22, Friends-26) nn(dunno-29, I-28) dep(Paiseh-1, dunno-29) dep(Paiseh-1, Sorry-31)
root(ROOT-0, Today-1) nsubj(meeting-3, we-2) dep(Today-1, meeting-3) prep(meeting-3, for-4) pobj(for-4, dinner-5) prep(meeting-3, at-6) pobj(at-6, 730-7) prep(Today-1, at-8) nn(jade-10, crystal-9) pobj(at-8, jade-10) aux(make-14, Can-12) nsubj(make-14, u-13) parataxis(Today-1, make-14) dobj(make-14, it-15) cc(Today-1, and-16) advmod(many-18, how-17) dep(cos-20, many-18) nsubj(cos-20, coming-19) conj(Today-1, cos-20) nsubj(making-22, we-21) dep(cos-20, making-22) dobj(making-22, reservation-23)
nsubj(thkin-3, I\u2019m-1) advmod(thkin-3, still-2) root(ROOT-0, thkin-3) nsubj(consider-6, I\u2019ll-5) parataxis(thkin-3, consider-6) prep(consider-6, after-7) det(talks-10, all-8) amod(talks-10, e-9) pobj(after-7, talks-10) amod(talks-10, lor\u002c-11) dep(talks-10, c-12) ref(talks-10, which-13) nsubj(interestin-16, which-13) npadvmod(more-15, one-14) advmod(interestin-16, more-15) rcmod(talks-10, interestin-16)
root(ROOT-0, tom-1) det(time-3, what-2) dobj(tom-1, time-3)
amod(xin-2, Hey-1) nsubj(ah-3, xin-2) root(ROOT-0, ah-3) nsubj(have-8, Tmr-5) xsubj(go-10, Tmr-5) cc(Tmr-5, or-6) conj(Tmr-5, thurs-7) dep(ah-3, have-8) aux(go-10, to-9) xcomp(have-8, go-10) cc(go-10, and-11) conj(go-10, pay-12) prep(go-10, for-13) amod(leh-17, e-14) nn(leh-17, sailin-15) nn(leh-17, camp-16) pobj(for-13, leh-17) nsubj(got-20, They\u2019ve-19) parataxis(have-8, got-20) det(bazaar-23, a-21) nn(bazaar-23, sports-22) dobj(got-20, bazaar-23)
root(ROOT-0, mornin-1) nn(jessen-5, u-3) nn(jessen-5, n-4) dep(mornin-1, jessen-5) prep(jessen-5, on-6) pobj(on-6, rite-7) nn(mean-10, i-9) dep(mornin-1, mean-10) prep(mean-10, on-11) amod(eve-13, chris-12) pobj(on-11, eve-13) punct(mornin-1, i-15) dep(mornin-1, nd-16) aux(confirm-18, to-17) xcomp(nd-16, confirm-18) nn(list-20, e-19) dobj(confirm-18, list-20) dep(nd-16, :-)-22)
nsubj(test-3, I-1) aux(test-3, will-2) root(ROOT-0, test-3) poss(part-5, my-4) dobj(test-3, part-5) dep(okie-10, later-6) amod(okie-10, don\u2019t-8) nn(okie-10, worry-9) dep(part-5, okie-10) amod(luck-13, good-12) nsubj(think-16, luck-13) cc(luck-13, and-14) conj(luck-13, don\u2019t-15) dep(test-3, think-16) advmod(program-18, about-17) nsubj(concentrate-20, program-18) advmod(concentrate-20, now-19) ccomp(think-16, concentrate-20) prep(concentrate-20, on-21) poss(test-23, your-22) pobj(on-21, test-23)
nsubj(see-3, You-1) aux(see-3, should-2) root(ROOT-0, see-3) num(files-5, two-4) dobj(see-3, files-5) cc(files-5, and-6) det(textbook-8, a-7) conj(files-5, textbook-8)
advmod(obvious-2, More-1) amod(den-3, obvious-2) nsubj(mine-4, den-3) root(ROOT-0, mine-4) dobj(mine-4, ah-5) mark(wat-12, If-7) num(ok-11, it\u2019s-8) amod(ok-11, nice-9) nn(ok-11, den-10) nsubj(wat-12, ok-11) csubj(consider-27, wat-12) nn(dad-15, Ur-14) nsubj(mind-17, dad-15) aux(mind-17, will-16) dep(wat-12, mind-17) dobj(mind-17, izit-18) nn(juz-22, Oh\u002c-20) nn(juz-22, i-21) nsubj(bought-23, juz-22) parataxis(mind-17, bought-23) advmod(fit\u002c-25, pretty-24) amod(i\u2019ll-26, fit\u002c-25) dobj(bought-23, i\u2019ll-26) parataxis(mine-4, consider-27) mark(wan-31, if-28) nsubj(wan-31, i-29) advmod(wan-31, still-30) advcl(consider-27, wan-31) dep(keith-35, e-32) amod(keith-35, charles-33) nn(keith-35, n-34) dep(wan-31, keith-35)
dep(..-10, Lucky-1) dep(ate-5, e-2) nn(i-4, honey-3) nsubj(ate-5, i-4) ccomp(Lucky-1, ate-5) cop(..-10, is-6) amod(..-10, low-7) nn(..-10, sugar-8) nn(..-10, content-9) root(ROOT-0, ..-10) dobj(hope-12, ..-10) nsubj(hope-12, I-11) rcmod(..-10, hope-12) nsubj(find-14, u-13) ccomp(hope-12, find-14) nsubj(nice-17, it-15) advmod(nice-17, just-16) xcomp(find-14, nice-17) nn(:-)-19, ..-18) nsubj(..-10, :-)-19)
nsubj(reached-3, I-1) advmod(reached-3, jus-2) root(ROOT-0, reached-3) nn(I-6, home-4) nsubj(go-7, I-6) dep(reached-3, go-7) dobj(go-7, bathe-8) advmod(go-7, first-9) cc(go-7, But-11) poss(sis-13, my-12) nsubj(tell-16, sis-13) vmod(sis-13, using-14) dobj(using-14, net-15) conj(go-7, tell-16) dobj(tell-16, u-17) advmod(finishes-20, when-18) nsubj(finishes-20, she-19) advcl(tell-16, finishes-20) dobj(finishes-20, k-21)
amod(lor-3, U-1) amod(lor-3, good-2) root(ROOT-0, lor-3) dep(lor-3, Now-5) advmod(hungry-8, i-6) advmod(hungry-8, really-7) amod(Now-5, hungry-8) nn(food-11, E-10) dep(lor-3, food-11) advmod(nice-13, there-12) amod(food-11, nice-13)
nsubj(got-2, JJ\u002c-1) root(ROOT-0, got-2) nn(card-4, TV-3) dobj(got-2, card-4) prep(got-2, to-5) nn(program-7, record-6) pobj(to-5, program-7)
nsubj(thk-2, I-1) root(ROOT-0, thk-2) xcomp(thk-2, go-3) dobj(go-3, lor-4) dep(lor-4, Dunno-6) advmod(goin-13, how-7) dep(goin-13, long-8) dep(last-10, it\u2019ll-9) dep(goin-13, last-10) nn(goin-13, U-12) dep(go-3, goin-13)
nsubjpass(invited-4, you-1) auxpass(invited-4, are-2) advmod(invited-4, cordially-3) root(ROOT-0, invited-4) prep(invited-4, to-5) amod(house-7, wendy\u2019s-6) pobj(to-5, house-7) prep(house-7, on-8) amod(eve-10, christmas-9) pobj(on-8, eve-10) prep(to-5, at-11) dep(at-11, 7pm-12) prep(7pm-12, for-13) det(dinner-17, a-14) amod(dinner-17, nice-15) nn(dinner-17, christmas-16) pobj(for-13, dinner-17) mark(like\u002c-21, if-19) nsubj(like\u002c-21, you-20) dep(7pm-12, like\u002c-21) nsubj(overnite-25, you-22) aux(overnite-25, can-23) cop(overnite-25, stay-24) ccomp(like\u002c-21, overnite-25) advmod(overnite-25, too-26) ccomp(invited-4, bring-28) poss(swimming-30, your-29) nsubj(wear-31, swimming-30) ccomp(bring-28, wear-31) advmod(wear-31, too-32) mark(swim-36, if-33) nsubj(swim-36, you-34) advmod(swim-36, wanna-35) advcl(wear-31, swim-36)
advmod(come-2, How-1) advcl(u-23, come-2) nn(friend-5, ur-3) nn(friend-5, boy-4) dep(come-2, friend-5) advmod(believe-7, so-6) rcmod(friend-5, believe-7) prep(believe-7, in-8) pobj(in-8, reviews-9) punct(friend-5, Ask-11) nsubj(choose-13, him-12) dep(friend-5, choose-13) nn(review-17, girl-14) nn(review-17, friend-15) nn(review-17, need-16) dep(choose-13, review-17) cc(review-17, or-18) neg(review-17, not-19) nn(disturb-22, Dont-21) nsubj(u-23, disturb-22) root(ROOT-0, u-23) det(Enjoy-27, all-24) nn(Enjoy-27, liao-25) dobj(u-23, Enjoy-27)
root(ROOT-0, Yo-1) nn(Reminder-3, ..-2) dobj(Yo-1, Reminder-3) cc(Reminder-3, and-4) advmod(Reminder-3, also-5) conj(Reminder-3, also-5) det(changes-8, some-6) amod(changes-8, slight-7) conj(Reminder-3, changes-8) dep(changes-8, Lets-10) dep(Yo-1, meet-11) dobj(meet-11, 1715-12) prep(meet-11, at-13) nn(..-18, sheares-14) nn(..-18, hall-15) nn(..-18, lobby-16) nn(..-18, Tmr-17) pobj(at-13, ..-18)
nn(ler-5, Hi\u002c-1) nn(ler-5, today-2) advmod(boring-4, very-3) amod(ler-5, boring-4) root(ROOT-0, ler-5) nsubj(go-8, wan-7) dep(ler-5, go-8) dobj(go-8, shopping-9) cc(go-8, or-10) conj(go-8, not-11) neg(go-8, not-11)
nsubj(sounds-2, this-1) root(ROOT-0, sounds-2) amod(:D-5, interesting-3) dobj(sounds-2, :D-5)
nsubj(reached-2, I-1) root(ROOT-0, reached-2) det(time-5, a-3) amod(time-5, long-4) dobj(reached-2, time-5) advmod(time-5, back-6)
nn(GALS\u002cI-2, HI-1) nsubj(CALLED-3, GALS\u002cI-2) root(ROOT-0, CALLED-3) nn(THANKS-31, PASTOR-4) nn(THANKS-31, HO-5) nn(WK-18, PASTOR-7) nn(WK-18, LI-8) nn(WK-18, SAID-9) nn(WK-18, TT-10) nn(WK-18, WE-11) nn(WK-18, CAN-12) nn(WK-18, VISIT-13) nn(WK-18, HER-14) nn(WK-18, ONWED-15) nn(WK-18, EVENING-16) nn(WK-18, THIS-17) dep(THANKS-31, WK-18) nn(WHETHER-24, PLS-20) nn(WHETHER-24, LET-21) nn(WHETHER-24, ME-22) nn(WHETHER-24, NOE-23) dep(WK-18, WHETHER-24) nn(ANOT-29, CAN-26) nn(ANOT-29, MAKE-27) nn(ANOT-29, IT-28) dep(WK-18, ANOT-29) dobj(CALLED-3, THANKS-31) prep(THANKS-31, From-33) pobj(From-33, Huimin-34)
root(ROOT-0, Hi-1) dep(Hi-1, They-3) neg(going-5, not-4) vmod(They-3, going-5) amod(cos-7, tonite-6) dobj(going-5, cos-7) nsubj(have-9, they-8) rcmod(They-3, have-9) det(class-12, a-10) nn(class-12, morning-11) dobj(have-9, class-12) dobj(going-19, class-12) nn(wont-17, tmw-13) nn(wont-17, Think-15) nn(wont-17, i-16) nsubj(going-19, wont-17) aux(going-19, be-18) rcmod(class-12, going-19) advmod(going-19, either-20) dep(fun-23, Have-22) dep(Hi-1, fun-23)
nsubj(am-2, I-1) xsubj(work-6, I-1) root(ROOT-0, am-2) prep(am-2, in-3) pobj(in-3, bus-4) aux(work-6, to-5) xcomp(am-2, work-6) advmod(disappointed-8, so-7) acomp(work-6, disappointed-8) ccomp(work-6, make-9) nsubj(unhappy-11, you-10) xcomp(make-9, unhappy-11) dep(Don-14, again-12) dep(angry-17, Don-14) advmod(angry-17, t-16) dep(leh-24, angry-17) advmod(long-19, too-18) amod(coz-20, long-19) nsubj(leh-24, coz-20) aux(leh-24, can-21) cop(leh-24, be-22) amod(leh-24, old-old-23) ccomp(unhappy-11, leh-24)
dep(need-8, Coming-1) advmod(Coming-1, soon-2) nsubj(need-8, Today-4) xsubj(call-23, Today-4) num(Today-4, four-5) prep(Today-4, of-6) pobj(of-6, us-7) root(ROOT-0, need-8) aux(call-23, to-9) advmod(call-23, hand-10) prep(hand-10, in-11) pobj(in-11, project-12) advmod(not-14, so-13) neg(going-15, not-14) vmod(project-12, going-15) dobj(going-15, lect-16) iobj(going-15, lect-16) nn(sch-21, Later-18) nn(sch-21, i-19) nn(sch-21, reach-20) dep(lect-16, sch-21) advmod(lect-16, then-22) xcomp(need-8, call-23) dobj(call-23, u-24)
nsubj(mean-2, U-1) root(ROOT-0, mean-2) prep(mean-2, at-3) pobj(at-3, 11-4) dobj(need-11, 11-4) det(bit-7, A-6) dep(11-4, bit-7) amod(bit-7, early-8) nsubj(need-11, I-10) xsubj(work-13, I-10) rcmod(11-4, need-11) aux(work-13, to-12) xcomp(need-11, work-13)
root(ROOT-0, xy-1) aux(meet-6, Can-3) nsubj(meet-6, i-4) advmod(meet-6, just-5) dep(xy-1, meet-6) ccomp(meet-6, u-7) advmod(u-7, then-8) advmod(u-7, u-9) dep(u-7, send-10) iobj(send-10, me-11) num(bugis-13, 2-12) dobj(send-10, bugis-13) cc(u-7, or-14) conj(u-7, suntec-15) advmod(suntec-15, then-16) advmod(suntec-15, u-17) dep(suntec-15, go-18) xcomp(go-18, meet-19) poss(???-21, her-20) dobj(meet-19, ???-21)
nn(Anything-3, Yup-1) nsubj(lor\u002c-4, Anything-3) root(ROOT-0, lor\u002c-4) mark(wan-8, if-5) nn(dun-7, u-6) nsubj(wan-8, dun-7) advcl(lor\u002c-4, wan-8) num(ok-10, it\u2019s-9) dobj(wan-8, ok-10)
root(ROOT-0, Do-1) nsubj(have-3, you-2) ccomp(Do-1, have-3) det(doc-6, the-4) amod(doc-6, final-5) dobj(have-3, doc-6) mark(needs-11, for-7) nn(Erik-10, 3214-8) nsubj(needs-11, Erik-10) advcl(have-3, needs-11) dobj(needs-11, it-12) advmod(needs-11, ..-13)
nsubj(spotted-2, hi\u002c-1) root(ROOT-0, spotted-2) dobj(spotted-2, you-3) prep(spotted-2, at-4) det(canteen-6, the-5) pobj(at-4, canteen-6) advmod(now-8, just-7) advmod(spotted-2, now-8) cc(spotted-2, but-9) nsubj(were-11, you-10) conj(spotted-2, were-11) prep(were-11, with-12) pobj(with-12, friends-13) advmod(bother-16, so-14) nsubj(bother-16, didn\u2019t-15) xsubj(call-18, didn\u2019t-15) ccomp(were-11, bother-16) aux(call-18, to-17) xcomp(bother-16, call-18) prt(call-18, out-19) prep(call-18, to-20) pobj(to-20, you-21)
dobj(mean-3, What-1) nsubj(mean-3, you-2) root(ROOT-0, mean-3)
num(capacity-3, Got-1) amod(capacity-3, smaller-2) root(ROOT-0, capacity-3) dep(capacity-3, one-4) punct(capacity-3, Quite-6) dep(capacity-3, ex-7)
root(ROOT-0, go-1) prep(go-1, on-2) nn(lor-4, dutch-3) pobj(on-2, lor-4) dobj(pay-7, lor-4) nsubj(pay-7, we-6) rcmod(lor-4, pay-7) prep(pay-7, for-8) poss(share-11, our-9) amod(share-11, own-10) pobj(for-8, share-11)
advmod(nice-2, So-1) root(ROOT-0, nice-2) dep(nice-2, go-3) nn(tuo-5, pa-4) dobj(go-3, tuo-5) advmod(go-3, still-6) dep(go-3, think-7) prep(think-7, of-8) pobj(of-8, me-9) punct(nice-2, Nope-11) dep(didnt-14, at-12) amod(didnt-14, home\u002c-13) dep(go-15, didnt-14) dep(nice-2, go-15) prt(go-15, out-16)
nn(gal-3, U-1) amod(gal-3, horrible-2) nsubj(knew-6, gal-3) nsubj(knew-6, U-5) advcl(yest-14, knew-6) nn(i-8, dat-7) nsubj(going-10, i-8) aux(going-10, was-9) ccomp(knew-6, going-10) prt(going-10, out-11) dobj(going-10, wif-12) nsubj(yest-14, him-13) root(ROOT-0, yest-14) nn(u-16, n-15) nsubj(come-18, u-16) advmod(come-18, still-17) ccomp(yest-14, come-18) advmod(come-18, n-19) dep(come-18, ask-20) dobj(ask-20, me-21)
advmod(nd-11, So-1) mark(want-6, if-2) prep(want-6, in-3) amod(i-5, future-4) pobj(in-3, i-5) dep(So-1, want-6) det(haircut\u002c-9, a-7) amod(haircut\u002c-9, free-8) dobj(want-6, haircut\u002c-9) nsubj(nd-11, i-10) xsubj(get-13, i-10) root(ROOT-0, nd-11) aux(get-13, to-12) xcomp(nd-11, get-13) amod(slip-15, e-14) dobj(get-13, slip-15) prep(slip-15, of-16) pobj(of-16, paper-17) prep(get-13, from-18) nn(rite-20, u-19) pobj(from-18, rite-20)
root(ROOT-0, Hey-1) advmod(hse-9, How-3) csubj(hse-9, come-4) nn(rent-6, u-5) dobj(come-4, rent-6) prep(come-4, out-7) pobj(out-7, ur-8) dep(Hey-1, hse-9) advmod(hse-9, again-10) advmod(hse-9, ah-11)
root(ROOT-0, Erm-1) nsubj(mean-4, i-3) dep(Erm-1, mean-4) ccomp(mean-4, is-5) advmod(determine-8, when-6) nsubj(determine-8, they-7) advcl(is-5, determine-8) mark(get-11, if-9) nsubj(get-11, you-10) advcl(determine-8, get-11) amod(class-13, first-12) dobj(get-11, class-13) dobj(do-18, class-13) amod(they\u2019ll-17, second-14) amod(they\u2019ll-17, upper-15) nn(they\u2019ll-17, etc-16) nsubj(do-18, they\u2019ll-17) rcmod(class-13, do-18) det(moderation-20, some-19) nsubj(anyway\u002c-22, moderation-20) advmod(anyway\u002c-22, ..-21) xcomp(do-18, anyway\u002c-22) nsubj(jia-25, ya-23) ccomp(anyway\u002c-22, jia-25) dobj(jia-25, you-26)
nsubj(leaving-4, ok-1) num(ok-1, i-2) aux(leaving-4, am-3) root(ROOT-0, leaving-4) advmod(leaving-4, now-5) ccomp(leaving-4, see-6) dobj(see-6, u-7)
nsubj(meet-2, we-1) root(ROOT-0, meet-2) prep(meet-2, at-3) pobj(at-3, esplanade-4) prep(meet-2, at-5) pobj(at-5, 630-6)
advmod(collected-5, Then-1) nn(mus-3, u-2) nsubj(collected-5, mus-3) aux(collected-5, have-4) root(ROOT-0, collected-5) det(lot-7, a-6) dobj(collected-5, lot-7) prep(lot-7, of-8) nn(bao-10, ang-9) pobj(of-8, bao-10) nsubj(thailand\u002c-16, My-12) dep(thailand\u002c-16, dear-13) nsubj(thailand\u002c-16, this-14) cop(thailand\u002c-16, is-15) parataxis(collected-5, thailand\u002c-16) xcomp(collected-5, thailand\u002c-16) nsubj(celebrate-19, they-17) advmod(celebrate-19, dun-18) ccomp(thailand\u002c-16, celebrate-19) dobj(celebrate-19, chines-20) amod(year-22, new-21) tmod(celebrate-19, year-22) nn(e-25, Onl-24) nsubj(celebrate-27, e-25) dep(celebrate-27, chinese-26) parataxis(celebrate-19, celebrate-27) xcomp(celebrate-19, celebrate-27) dobj(celebrate-27, wat-28)
nsubj(got-2, we-1) root(ROOT-0, got-2) det(weapon-5, the-3) amod(weapon-5, best-4) dobj(got-2, weapon-5)
auxpass(reached-2, Are-1) dep(am-6, reached-2) dobj(reached-2, home-3) nsubj(am-6, i-5) root(ROOT-0, am-6) prep(am-6, in-7) nn(bus-9, 852-8) pobj(in-7, bus-9) advmod(remember-11, already-10) dep(bus-9, remember-11) aux(take-13, to-12) xcomp(remember-11, take-13) poss(dinner-15, your-14) dobj(take-13, dinner-15)
root(ROOT-0, Ya\u002c-1) poss(end-7, my-2) amod(end-7, tai-3) nn(end-7, tai-4) nn(end-7, life-5) nn(end-7, gona-6) dobj(Ya\u002c-1, end-7) prep(Ya\u002c-1, in-8) det(time-11, a-9) nn(time-11, month-10) pobj(in-8, time-11) dep(time-11, Sob-13) nn(Haha-18, Old-15) nn(Haha-18, bird-16) dep(Sob-13, Haha-18) advmod(ah-30, Only-20) nn(ah-30, bz-21) nn(ah-30, w-22) nn(ah-30, soccer-23) num(ah-30, meh\u002c-24) neg(goin-26, not-25) amod(ah-30, goin-26) prep(goin-26, out-27) nn(gals-29, w-28) pobj(out-27, gals-29) dep(Sob-13, ah-30)
mark(open-5, If-1) nsubj(open-5, it-2) aux(open-5, is-3) advmod(open-5, still-4) root(ROOT-0, open-5) aux(interested-9, will-6) nsubj(interested-9, he-7) cop(interested-9, be-8) advcl(open-5, interested-9)
aux(abt-4, i-1) amod(tot-3, havn\u2019t-2) nsubj(abt-4, tot-3) root(ROOT-0, abt-4) dobj(abt-4, it-5) nn(wat-8, leh-6) nsubj(do-9, wat-8) xsubj(eat-13, wat-8) dep(abt-4, do-9) amod(wan-11, u-10) dobj(do-9, wan-11) aux(eat-13, to-12) xcomp(do-9, eat-13)
advmod(dun-2, eh-1) root(ROOT-0, dun-2) dep(dun-2, forget-3) aux(bring-5, to-4) xcomp(forget-3, bring-5) det(handphone-7, the-6) iobj(bring-5, handphone-7) nn(lent-9, i-8) dobj(bring-5, lent-9) dep(time-13, u-10) det(time-13, the-11) amod(time-13, last-12) dep(have-16, time-13) nsubj(have-16, i-15) xsubj(return-18, i-15) dep(dun-2, have-16) aux(return-18, to-17) xcomp(have-16, return-18) poss(friend-20, my-19) dobj(return-18, friend-20)
nsubj(going-3, I-1) aux(going-3, am-2) root(ROOT-0, going-3) advmod(going-3, home-4) advmod(going-3, now-5) dep(going-3, 2-6) rcmod(2-6, prepare-7) nn(gifts-9, yr-8) dobj(prepare-7, gifts-9) advmod(later-12, Else-11) dep(2-6, later-12) det(time-14, no-13) nsubj(do-16, time-14) aux(do-16, to-15) vmod(later-12, do-16) dobj(do-16, it-17) nn(ha-20, Ha-19) dep(2-6, ha-20) mark(found-28, After-22) det(walk\u002c-26, a-23) amod(walk\u002c-26, long-24) nn(walk\u002c-26, shopping-25) nsubj(found-28, walk\u002c-26) advmod(found-28, finally-27) dep(going-3, found-28) nsubj(give-31, something-29) num(something-29, 2-30) ccomp(found-28, give-31) dobj(give-31, u-32) advmod(u-32, Now-34) prep(u-32, for-35) det(packaging-37, the-36) pobj(for-35, packaging-37)
nsubj(Got-3, Eh-1) root(ROOT-0, Got-3) det(friends-6, a-4) amod(friends-6, few-5) nsubj(go-7, friends-6) ccomp(Got-3, go-7) advmod(go-7, together-8) advmod(ok-10, then-9) dep(go-7, ok-10) amod(right-12, le-11) dobj(ok-10, right-12)
root(ROOT-0, xy-1) num(uno\u002c-3, :D-2) npadvmod(later-4, uno\u002c-3) advmod(c-5, later-4) dobj(xy-1, c-5) advmod(vcd-9, how-6) nsubj(vcd-9, Buy-8) xsubj(buy-15, Buy-8) dep(c-5, vcd-9) advmod(vcd-9, also-10) amod(movie-13, duno-11) nn(movie-13, wat-12) dobj(vcd-9, movie-13) aux(buy-15, to-14) xcomp(vcd-9, buy-15)
amod(xin-2, Hey-1) nsubj(I\u2019m-8, xin-2) amod(jam-6, Sorry\u002c-4) nn(jam-6, traffic-5) dep(xin-2, jam-6) root(ROOT-0, I\u2019m-8) prep(I\u2019m-8, near-9) pobj(near-9, sch-10) cc(I\u2019m-8, but-11) conj(I\u2019m-8, stuck-12) prep(stuck-12, in-13) pobj(in-13, jam-14)
aux(transfer-8, can-1) nsubj(transfer-8, help-2) nsubj(ask-4, me-3) xsubj(fund-7, me-3) rcmod(help-2, ask-4) dobj(ask-4, mummy-5) aux(fund-7, to-6) xcomp(ask-4, fund-7) root(ROOT-0, transfer-8) poss(money-11, my-9) nn(money-11, pocket-10) dobj(transfer-8, money-11) prep(transfer-8, to-12) poss(account-15, my-13) nn(account-15, bank-14) pobj(to-12, account-15) advmod(u-17, when-16) advcl(transfer-8, u-17) nn(home-19, r-18) dobj(u-17, home-19)
nn(i-3, eh-1) nn(i-3, bitch-2) nsubj(bought-4, i-3) root(ROOT-0, bought-4) det(hahahah-9, a-5) amod(hahahah-9, new-6) nn(hahahah-9, handphone-7) dobj(bought-4, hahahah-9)
amod(lor-3, Haha\u002cok\u002cnvr-1) nn(lor-3, mind-2) root(ROOT-0, lor-3) dep(lor-3, Coz-5) aux(go-8, need-6) dep(go-8, 2-7) rcmod(Coz-5, go-8) nn(today-10, sch-9) tmod(go-8, today-10) dep(go-8, n-11) poss(look-14, my-12) amod(look-14, skirts-13) dobj(n-11, look-14) advmod(dressy-16, too-15) amod(look-14, dressy-16) nn(mind\u002cu-21, Heh-18) nn(mind\u002cu-21, Nvr-20) dep(lor-3, mind\u002cu-21) rcmod(mind\u002cu-21, wear-22) ref(mind\u002cu-21, what-23) dobj(want-25, what-23) nsubj(want-25, u-24) ccomp(wear-22, want-25)
advmod(got-8, Just-1) advmod(in-3, now-2) prep(got-8, in-3) dep(canteen-5, e-4) dep(in-3, canteen-5) nsubj(got-8, I-7) root(ROOT-0, got-8) num(battles-10, 4-9) dobj(got-8, battles-10) iobj(got-8, battles-10) prep(battles-10, in-11) num(week\u002c-13, one-12) pobj(in-11, week\u002c-13) advmod(battles-10, now-14) quantmod(half-17, at-15) quantmod(half-17, least-16) num(liao-19, half-17) amod(liao-19, dead-18) dep(battles-10, liao-19)
nsubj(went-2, I-1) root(ROOT-0, went-2) det(src-4, the-3) dobj(went-2, src-4) prep(went-2, to-5) pobj(to-5, play\u002c-6) prep(went-2, in-7) det(court-10, the-8) nn(court-10, badminton-9) pobj(in-7, court-10)
nsubj(oredi-21, U-1) det(r-3, all-2) nsubj(lazy-5, r-3) dep(lazy-5, getting-4) rcmod(U-1, lazy-5) cc(wat-14, But-7) det(need-9, no-8) nsubj(wat-14, need-9) aux(go-11, to-10) vmod(need-9, go-11) advmod(early-13, very-12) advmod(go-11, early-13) parataxis(lazy-5, wat-14) nsubj(reach-17, Juz-16) parataxis(lazy-5, reach-17) dobj(reach-17, ard-18) num(ard-18, 12-19) aux(oredi-21, can-20) root(ROOT-0, oredi-21) dobj(oredi-21, wat-22)
det(day-3, A-1) amod(day-3, happy-2) root(ROOT-0, day-3) prep(day-3, for-4) pobj(for-4, me-5) advmod(:p-10, how-6) prep(how-6, about-7) pobj(about-7, you-8) dep(day-3, :p-10)
nsubj(ask-2, I-1) dep(say-6, ask-2) advmod(ask-2, already-3) nsubj(say-6, She-5) root(ROOT-0, say-6) nsubj(going-9, she-7) neg(going-9, not-8) ccomp(say-6, going-9) mark(cos-12, so-10) amod(cos-12, early-11) advcl(going-9, cos-12) dep(car-15, she-13) det(car-15, no-14) dep(ryan-18, car-15) advmod(ryan-18, Then-17) dep(cos-12, ryan-18) advmod(ryan-18, also-19) dobj(ryan-18, duno-20) amod(duno-20, coming-21) cc(cos-12, or-22) dep(Xf-25, not-23) dep(ron-32, Xf-25) dep(Xf-25, not-26) amod(not-26, coming-27) nn(ron-32, I-29) nn(ron-32, duno-30) nn(ron-32, abt-31) dep(cos-12, ron-32)
advmod(now-2, just-1) advmod(confirm-4, now-2) advmod(confirm-4, already-3) root(ROOT-0, confirm-4)
nsubj(Put-3, Haha-1) root(ROOT-0, Put-3) prep(Put-3, on-4) pobj(on-4, weight-5) prep(Put-3, at-6) advmod(wrong-8, e-7) amod(leh-10, wrong-8) nn(leh-10, place-9) pobj(at-6, leh-10) nn(la\u002c-13, Ya-12) nsubj(enjoy-14, la\u002c-13) parataxis(Put-3, enjoy-14) advmod(much-16, too-15) amod(oredi-18, much-16) nn(oredi-18, cheesecake-17) dobj(enjoy-14, oredi-18) advmod(enjoy-14, So-20) parataxis(enjoy-14, u-21) dobj(u-21, r-22) prep(r-22, in-23) amod(comp-26, e-24) nn(comp-26, bowlin-25) pobj(in-23, comp-26)
num(unit-2, 1-1) dep($446-3, unit-2) dep(have-6, $446-3) nsubj(have-6, I-5) xsubj(attemp-8, I-5) csubj(total-12, have-6) aux(attemp-8, to-7) xcomp(have-6, attemp-8) num(unit\u002c-10, 5-9) dobj(attemp-8, unit\u002c-10) advmod(total-12, so-11) root(ROOT-0, total-12) dobj(total-12, 2230-13)
poss(slot-3, Our-1) nn(slot-3, time-2) nsubj(:)-20, slot-3) cop(:)-20, is-4) num(am-12pm-6, 10.30-5) nn(:)-20, am-12pm-6) dep(am-12pm-6, We\u2019re-8) det(team-12, the-9) amod(team-12, 2nd-10) amod(team-12, last-11) dep(We\u2019re-8, team-12) prep(team-12, in-13) det(slot-16, that-14) nn(slot-16, time-15) pobj(in-13, slot-16) dep(am-12pm-6, Coming-18) root(ROOT-0, :)-20)
nsubj(push-8, wah-1) advmod(good-5, u-3) advmod(good-5, very-4) amod(lor-6, good-5) dep(wah-1, lor-6) root(ROOT-0, push-8) dobj(push-8, everything-9) prep(push-8, to-10) pobj(to-10, me-11)
root(ROOT-0, Hmmm-1) advmod(come-5, When-3) nsubj(come-5, u-4) rcmod(Hmmm-1, come-5) prt(come-5, out-6) nsubj(walk-8, den-7) ccomp(come-5, walk-8) amod(area-11, right\u002c-9) amod(area-11, e-10) dobj(walk-8, area-11) advmod(gather-15, where-12) nsubj(gather-15, pple-13) advmod(gather-15, always-14) rcmod(area-11, gather-15) dobj(gather-15, lor-16)
nsubj(tonite-2, Ok-1) root(ROOT-0, tonite-2) advmod(tonite-2, then-3) dep(tonite-2, u-4) ccomp(u-4, read-5) advmod(muz-8, then-6) nn(muz-8, u-7) dobj(read-5, muz-8) dep(read-5, tell-9) iobj(tell-9, me-10) poss(decision-12, your-11) dobj(tell-9, decision-12) mark(tell-16, so-13) nsubj(tell-16, i-14) aux(tell-16, can-15) advcl(tell-9, tell-16) nsubj(help-18, you-17) ccomp(tell-16, help-18) nsubj(bid-20, me-19) ccomp(help-18, bid-20) nn(k-22, wat-21) dobj(bid-20, k-22)
aux(meet-11, Hey-1) nsubj(meet-11, gals\u002c-2) advmod(meet-11, later-3) advmod(got-6, u-4) dep(got-6, all-5) dep(later-3, got-6) dobj(got-6, date-7) num(2-10, Wan-9) dep(later-3, 2-10) root(ROOT-0, meet-11)
poss(juz-2, its-1) nsubj(changes-3, juz-2) root(ROOT-0, changes-3) dobj(changes-3, lah-4) nn(cant-8, something-6) nn(cant-8, u-7) nsubj(avoid-9, cant-8) parataxis(changes-3, avoid-9) cc(avoid-9, but-10) nn(cant-12, u-11) nsubj(put-13, cant-12) conj(avoid-9, put-13) det(blame-15, the-14) dobj(put-13, blame-15) prep(put-13, on-16) det(oso-20, any-17) num(oso-20, 1-18) nn(oso-20, thing-19) pobj(on-16, oso-20)
root(ROOT-0, Finish-1) poss(hours-6, my-2) nn(hours-6, presentation-3) nn(hours-6, le-4) num(hours-6, three-5) dobj(Finish-1, hours-6) xcomp(Finish-1, standing-7) nn(Wat-10, exhausted-8) dobj(standing-7, Wat-10) prep(Wat-10, about-11) pobj(about-11, you-12)
nsubj(tell-7, Thanx-1) prep(Thanx-1, on-2) pobj(on-2, behalf-3) prep(behalf-3, of-4) amod(i\u2019ll-6, her\u002c-5) pobj(of-4, i\u2019ll-6) dep(shld-13, tell-7) dobj(tell-7, her-8) advmod(tell-7, later-9) nn(i-12, Tmr-11) nsubj(shld-13, i-12) root(ROOT-0, shld-13) aux(working-15, be-14) dep(shld-13, working-15) prep(working-15, in-16) dep(dun-22, e-17) nn(dun-22, morining-18) nn(dun-22, Anyway-20) nn(dun-22, i-21) dep(in-16, dun-22) advmod(dun-22, even-23) advmod(working-15, noe-24) dep(place-28, e-25) num(place-28, time\u002c-26) amod(place-28, e-27) dep(working-15, place-28)
root(ROOT-0, Take-1) dobj(Take-1, care-2)
nsubj(bathing-19, Wow-1) advmod(healthy-3, so-2) dep(Wow-1, healthy-3) nn(lor-8, Old-5) nn(lor-8, airport-6) nn(lor-8, rd-7) dep(healthy-3, lor-8) nn(thk-11, Cant-10) dep(healthy-3, thk-11) prep(thk-11, of-12) pobj(of-12, anything-13) advmod(anything-13, else-14) cc(Wow-1, But-16) conj(Wow-1, i\u2019ll-17) nsubj(bathing-19, b-18) root(ROOT-0, bathing-19) poss(dog-21, my-20) dobj(bathing-19, dog-21) advmod(bathing-19, later-22)
nn(i-2, Sure-1) nsubj(shop-4, i-2) aux(shop-4, can-3) root(ROOT-0, shop-4) advmod(shop-4, also-5) cc(shop-4, Or-7) nn(wan-9, u-8) nsubj(call-10, wan-9) conj(shop-4, call-10) nsubj(haha-14, darren-11) advmod(haha-14, also-12) aux(haha-14, can-13) dep(call-10, haha-14) cc(haha-14, But-16) nsubj(sis-18, ur-17) conj(haha-14, sis-18) dobj(sis-18, how-19)
nsubj(u-2, Aiyar-1) root(ROOT-0, u-2) advmod(poor-4, so-3) amod(thing-5, poor-4) dobj(u-2, thing-5) nsubj(give-8, I-7) parataxis(u-2, give-8) iobj(give-8, u-9) poss(k-12, my-10) nn(k-12, support-11) dep(u-9, k-12) dep(you-15, Jia-14) dep(k-12, you-15) nn(think-18, I\u2019ll-17) dobj(give-8, think-18) prep(think-18, of-19) pobj(of-19, u-20)
nsubj(call-3, U-1) aux(call-3, can-2) root(ROOT-0, call-3) dobj(call-3, me-4) advmod(call-3, now-5)
root(ROOT-0, die-1) dobj(die-1, la-2) det(year-6, this-4) amod(year-6, new-5) nsubj(stuck-7, year-6) parataxis(die-1, stuck-7) prep(stuck-7, at-8) nn(hyp-13, home-9) amod(hyp-13, ..-10) amod(hyp-13, haveta-11) amod(hyp-13, complete-12) pobj(at-8, hyp-13) dep(hyp-13, xianzz-15)
amod(man\u002cyou-4, hey-1) amod(man\u002cyou-4, that\u2019s-2) amod(man\u002cyou-4, great-3) nsubj(keep-5, man\u002cyou-4) root(ROOT-0, keep-5) prt(keep-5, up-6) det(yeah-10, the-7) amod(yeah-10, good-8) nn(yeah-10, work-9) dobj(keep-5, yeah-10)
nn(thk-4, Yar-1) amod(thk-4, else-2) amod(thk-4, i\u2019ll-3) root(ROOT-0, thk-4) prep(thk-4, of-5) det(sorts-7, all-6) pobj(of-5, sorts-7) prep(sorts-7, of-8) amod(things-10, funny-9) pobj(of-8, things-10)
cc(want-3, So-1) nsubj(want-3, tonight-2) root(ROOT-0, want-3) nsubj(eat-5, 2-4) ccomp(want-3, eat-5) prep(eat-5, dinner-6) mark(ask-11, If-8) amod(i-10, want\u002c-9) nsubj(ask-11, i-10) advcl(want-3, ask-11) det(girls-13, the-12) dobj(ask-11, girls-13) advmod(ask-11, ..-14)
nsubj(worse-3, He-1) dep(worse-3, got-2) root(ROOT-0, worse-3) prep(worse-3, than-4) pobj(than-4, me-5)
root(ROOT-0, like-1) num(lor-3, 15-2) dobj(like-1, lor-3) advmod(like-1, really-4)
nsubj(went-3, Aiyah-1) num(Aiyah-1, one-2) dep(went-6, went-3) num(one-5, out\u002c-4) dobj(went-3, one-5) root(ROOT-0, went-6) nn(..-8, aust-7) nsubj(Left-9, ..-8) ccomp(went-6, Left-9) dobj(Left-9, me-10) prep(Left-9, in-11) dep(Sorry-16, e-12) amod(Sorry-16, end\u002c-13) nn(Sorry-16, Haha-14) nn(Sorry-16, ..-15) dep(in-11, Sorry-16) num(..-21, ah\u002c-17) amod(..-21, next-18) nn(..-21, time-19) nn(..-21, lor-20) nsubj(went-6, ..-21)
num(laptop-2, 2-1) root(ROOT-0, laptop-2) nsubj(noe-5, I-4) dep(laptop-2, noe-5) amod(lar-10, infra-6) cc(infra-6, but-7) advmod(slow-9, too-8) conj(infra-6, slow-9) dobj(noe-5, lar-10) nsubj(wan-13, I-12) dep(laptop-2, wan-13) advmod(wan-13, fast-14) dobj(wan-13, one-15)
amod(morning\u002c-2, Good-1) nsubj(reached-18, morning\u002c-2) vmod(morning\u002c-2, walking-3) prep(walking-3, to-4) nn(loh-6, office-5) dep(to-4, loh-6) poss(feeling-9, my-8) dep(loh-6, feeling-9) amod(feeling-9, better-10) advmod(better-10, already-11) advmod(flu-16, only-13) det(flu-16, a-14) amod(flu-16, little-15) dep(loh-6, flu-16) root(ROOT-0, reached-18) nn(bye-20, office-19) dobj(reached-18, bye-20)
root(ROOT-0, wow-1) dobj(wans-15, wow-1) amod(sia-4, ..-2) amod(sia-4, amazing-3) dep(wow-1, sia-4) nsubj(requested-8, xuan-6) xsubj(attend-10, xuan-6) advmod(requested-8, actually-7) dep(sia-4, requested-8) aux(attend-10, to-9) xcomp(requested-8, attend-10) det(potluck-12, the-11) dobj(attend-10, potluck-12) nsubj(wans-15, he-14) xsubj(experiment-17, he-14) rcmod(wow-1, wans-15) aux(experiment-17, to-16) xcomp(wans-15, experiment-17) poss(dish-20, his-18) amod(dish-20, new-19) dobj(experiment-17, dish-20) dep(wow-1, hope-22) nsubj(dun-24, we-23) ccomp(hope-22, dun-24) ccomp(dun-24, die-25) prep(die-25, of-26) nn(sia-28, poisoning-27) pobj(of-26, sia-28) nn(hiak-31, hiak-30) dep(die-25, hiak-31)
root(ROOT-0, Call-1) dobj(Call-1, me-2) advmod(finish-5, when-3) nsubj(finish-5, u-4) advcl(Call-1, finish-5) advmod(finish-5, then-6) dep(come-8, i-7) dep(finish-5, come-8) amod(u-11, n-9) nn(u-11, pick-10) dobj(come-8, u-11)
amod(ah\u002c-2, Dear-1) nsubj(cos-11, ah\u002c-2) prep(ah\u002c-2, in-3) amod(change-6, e-4) nn(change-6, end-5) pobj(in-3, change-6) prep(change-6, to-7) num(pm-9, 2-8) pobj(to-7, pm-9) advmod(cos-11, again-10) root(ROOT-0, cos-11) amod(wanna-15, last-12) nn(wanna-15, min-13) nn(wanna-15, lecturer-14) nsubj(meet-16, wanna-15) ccomp(cos-11, meet-16) poss(1st-18, her-17) dobj(meet-16, 1st-18)
mark(timing-3, If-1) dep(timing-3, e-2) advcl(go-7, timing-3) nsubj(go-7, can\u002c-4) advmod(go-7, then-5) aux(go-7, i-6) root(ROOT-0, go-7) nn(lor-10, w-8) nn(lor-10, u-9) dobj(go-7, lor-10)
advmod(wait-3, Then-1) nsubj(wait-3, we-2) root(ROOT-0, wait-3) num(lor-6, 4-4) nn(lor-6, u-5) dobj(wait-3, lor-6) det(need-9, No-8) dep(lor-6, need-9) nsubj(feel-11, 2-10) rcmod(need-9, feel-11) amod(lar-13, bad-12) dobj(feel-11, lar-13)
root(ROOT-0, go-1) dep(go-1, watch-2) xcomp(watch-2, \u2019Love-3) dobj(\u2019Love-3, me-4) mark(dare\u2019-7, if-5) nsubj(dare\u2019-7, you-6) advcl(watch-2, dare\u2019-7) prep(dare\u2019-7, at-8) nn(cineleisure-10, orchard-9) pobj(at-8, cineleisure-10) nsubj(go-1, its-12) advmod(good-14, really-13) amod(its-12, good-14) cc(good-14, and-15) advmod(twisted-17, really-16) conj(good-14, twisted-17) cc(twisted-17, and-18) conj(twisted-17, beautiful-19)
amod(nite-2, Good-1) root(ROOT-0, nite-2) cc(nite-2, and-3) amod(dreams-5, sweet-4) conj(nite-2, dreams-5) prep(dreams-5, to-6) pobj(to-6, u-7)
root(ROOT-0, meet-1) dobj(meet-1, u-2) prep(u-2, at-3) nn(control-7, orchard-4) num(control-7, mrt-5) nn(control-7, station-6) pobj(at-3, control-7) dep(u-2, 630-9) amod(u-2, dont-11) cop(late-13, be-12) dep(meet-1, late-13)
amod(..-2, Hehe-1) root(ROOT-0, ..-2) advmod(noe-5, How-3) nsubj(noe-5, u-4) dep(..-2, noe-5) dep(..-2, U-7) aux(see-9, can-8) rcmod(U-7, see-9) nn(i\u2019m-11, wat-10) nsubj(doing-12, i\u2019m-11) dep(see-9, doing-12) nn(leh-15, U-14) dep(..-2, leh-15)
dep(collecting-4, Daddy-1) nsubj(collecting-4, I\u2019m-3) dep(fetch-9, collecting-4) poss(dun-8, my-5) nn(dun-8, notebook-6) amod(dun-8, today\u002c-7) dobj(collecting-4, dun-8) advcl(call-15, fetch-9) nsubj(fetch-9, me-10) prep(me-10, at-11) pobj(at-11, 4-12) nsubj(call-15, I\u2019ll-14) root(ROOT-0, call-15) ccomp(call-15, u-16) advmod(ready-19, when-17) dep(ready-19, i\u2019m-18) advcl(u-16, ready-19)
nsubj(reach-2, I-1) root(ROOT-0, reach-2) nn(u-7, amk-3) nn(u-7, mrt-4) nn(u-7, Meet-6) dobj(reach-2, u-7) prep(u-7, at-8) amod(cabin-10, first-9) pobj(at-8, cabin-10)
root(ROOT-0, Huh-1) nn(machine-4, Waffle-3) dep(Huh-1, machine-4) dobj(send-8, machine-4) nn(u-7, thk-6) nsubj(send-8, u-7) rcmod(machine-4, send-8) prep(send-8, to-9) amod(person-11, wrong-10) pobj(to-9, person-11)
cc(say-14, But-1) nn(can\u2019t-3, y-2) dobj(start-6, can\u2019t-3) nsubj(say-14, can\u2019t-3) nsubj(start-6, we-4) advmod(start-6, just-5) rcmod(can\u2019t-3, start-6) xcomp(start-6, doing-7) dobj(doing-7, it-8) advmod(over-10, all-9) prep(doing-7, over-10) dep(over-10, again-11) advmod(say-14, u-13) root(ROOT-0, say-14) nsubj(continue-37, u-15) vmod(u-15, quitting-16) amod(I-18, now\u002c-17) dobj(quitting-16, I-18) advmod(can\u2019t-20, really-19) dep(I-18, can\u2019t-20) dep(can\u2019t-20, continue-21) nn(lor-23, liao-22) dobj(continue-21, lor-23) advmod(2-26, how-25) dep(quitting-16, 2-26) nn(ec-31, u-28) nn(ec-31, think-29) nn(ec-31, tt-30) dep(2-26, ec-31) dep(2-26, Gimme-33) det(chance-35, a-34) dep(Gimme-33, chance-35) ccomp(say-14, continue-37)
nsubj(tired-4, I-1) cop(tired-4, am-2) advmod(tired-4, very-3) root(ROOT-0, tired-4) cc(tired-4, and-5) advmod(sleepy-7, very-6) conj(tired-4, sleepy-7) nsubj(cal-9, I-8) ccomp(sleepy-7, cal-9) dobj(cal-9, u-10) dep(ok-12, tonight-11) dep(take-15, ok-12) nsubj(take-15, bye-14) ccomp(sleepy-7, take-15) dobj(take-15, care-16)
nn(!!!!-2, atta-1) nsubj(u-3, !!!!-2) root(ROOT-0, u-3) advmod(nice-5, so-4) amod(thx-7, nice-5) amod(thx-7, !!!!!!-6) dobj(u-3, thx-7) advmod(much-9, so-8) advmod(for-10, much-9) prep(u-3, for-10) amod(lobangs-13, yr-11) amod(lobangs-13, good-12) pobj(for-10, lobangs-13)
root(ROOT-0, Yup-1) nsubj(took-4, She-3) rcmod(Yup-1, took-4) advmod(long-6, very-5) amod(lor\u002c-7, long-6) dobj(took-4, lor\u002c-7) nn(..-9, haha-8) dep(Yup-1, ..-9)
nn(time-3, Den-1) nn(time-3, tt-2) nsubj(u-4, time-3) root(ROOT-0, u-4) nn(use-6, oso-5) dobj(u-4, use-6) dep(wat-10, e-7) number(one-9, soc-8) num(wat-10, one-9) dep(drop-14, wat-10) amod(drop-14, Hiya\u002c-12) nn(drop-14, u-13) dep(u-4, drop-14) poss(pen\u002c-16, my-15) nsubj(write-19, pen\u002c-16) advmod(write-19, now-17) aux(write-19, cant-18) rcmod(drop-14, write-19) dobj(write-19, notes-20)
amod(ah-3, Hey-1) nn(ah-3, xin-2) root(ROOT-0, ah-3) nn(time-6, Wat-5) nsubj(u-8, time-6) aux(u-8, will-7) dep(ah-3, u-8) dep(camp-12, b-9) amod(camp-12, joinin-10) amod(camp-12, e-11) dep(u-8, camp-12)
root(ROOT-0, Ok-1) det(test-5, The-3) nn(test-5, theory-4) dep(Ok-1, test-5) advmod(going-10, when-7) aux(going-10, are-8) nsubj(going-10, ü-9) dep(think-15, going-10) prep(going-10, to-11) pobj(to-11, book-12) nsubj(think-15, I-14) dep(Ok-1, think-15) dep(thought-22, it\u2019s-16) prep(it\u2019s-16, on-17) pobj(on-17, 21-18) dep(it\u2019s-16, may-19) nsubj(thought-22, Coz-21) dep(think-15, thought-22) nsubj(go-24, wanna-23) ccomp(thought-22, go-24) prt(go-24, out-25) prep(go-24, with-26) pobj(with-26, jiayin-27) cc(thought-22, But-29) nsubj(isnt-31, she-30) conj(thought-22, isnt-31) advmod(isnt-31, free-32)
nn(lar-2, Anything-1) nsubj(ü-4, lar-2) advmod(ü-4, then-3) root(ROOT-0, ü-4) neg(ü-4, not-5) xcomp(ü-4, going-6) nn(dinner-9, home-7) num(dinner-9, 4-8) dobj(going-6, dinner-9)
root(ROOT-0, Ok-1) dep(now-4, So-3) dep(prefer-10, now-4) dobj(do-8, Which-6) nsubj(do-8, canteen-7) advcl(prefer-10, do-8) nsubj(prefer-10, you-9) dep(Ok-1, prefer-10)
det(matter-2, No-1) advmod(black-6, matter-2) det(sky-4, the-3) nsubj(black-6, sky-4) cop(black-6, is-5) root(ROOT-0, black-6) cc(black-6, or-7) conj(black-6, blue\u002c-8) det(matter-10, no-9) dep(black-6, matter-10) amod(stars-12, there\u2019s-11) nsubjpass(wif-27, stars-12) cc(stars-12, or-13) conj(stars-12, moon\u002c-14) advmod(long-16, as-15) advmod(wif-27, long-16) mark(dreams-23, as-17) nn(heart-19, ur-18) nsubj(dreams-23, heart-19) cop(dreams-23, is-20) amod(dreams-23, true\u002c-21) amod(dreams-23, sweet-22) ccomp(long-16, dreams-23) aux(wif-27, will-24) advmod(wif-27, always-25) auxpass(wif-27, be-26) rcmod(matter-10, wif-27) nn(Nite-31, u-28) nn(Nite-31, Gd-30) xcomp(wif-27, Nite-31)
cc(confess-4, But-1) nsubj(confess-4, i-2) aux(confess-4, must-3) root(ROOT-0, confess-4) nn(i\u2019m-6, dat-5) nsubj(watching-7, i\u2019m-6) dep(confess-4, watching-7) nn(reading-10, soccer-8) nn(reading-10, n-9) dobj(watching-7, reading-10) prep(watching-7, at-11) nn(leh-15, e-12) amod(leh-15, same-13) nn(leh-15, time-14) pobj(at-11, leh-15)
root(ROOT-0, Ok-1) nn(u-3, den-2) nsubj(Ok-1, u-3) prep(u-3, coming-4) poss(place-6, my-5) pobj(coming-4, place-6) amod(noe-9, rite\u002c-7) nn(noe-9, u-8) dep(Ok-1, noe-9) advmod(come-12, how-10) aux(come-12, to-11) dep(Ok-1, come-12)
aux(make-15, U-1) dobj(made-9, r-2) nsubj(make-15, r-2) advmod(like-4, just-3) rcmod(r-2, like-4) poss(friends-6, my-5) pobj(like-4, friends-6) nsubj(made-9, I-8) rcmod(r-2, made-9) nsubj(feel-11, them-10) ccomp(made-9, feel-11) num(happy\u002c-13, warm\u002c-12) dobj(feel-11, happy\u002c-13) advmod(make-15, then-14) dep(hope-37, make-15) nsubj(left-24, them-16) dep(left-24, angry-17) dep(they-19, &-18) dep(left-24, they-19) dep(they-19, cry-20) advmod(left-24, Finally-22) nsubj(left-24, they-23) xcomp(make-15, left-24) dobj(left-24, me-25) aux(leave-29, Will-27) nsubj(leave-29, u-28) dep(make-15, leave-29) dobj(leave-29, 2-30) nsubj(hope-33, I-32) dep(make-15, hope-33) neg(hope-33, not-34) nsubj(hope-37, Really-36) root(ROOT-0, hope-37) advmod(hope-37, so-38)
root(ROOT-0, Yah-1) amod(liao-3, bathe-2) dep(Yah-1, liao-3) advmod(later-6, Maybe-5) advmod(den-7, later-6) amod(lor-9, den-7) amod(lor-9, eat-8) dep(liao-3, lor-9) dep(liao-3, Now-11) advmod(dead-14, i-12) advmod(dead-14, half-13) amod(Now-11, dead-14) nn(..-17, Haiz-16) nsubj(Yah-1, ..-17)
nsubj(want-2, U-1) root(ROOT-0, want-2) poss(project-5, our-3) nn(project-5, physics-4) nsubj(do-9, project-5) prep(project-5, for-6) pobj(for-6, ref-7) aux(do-9, to-8) xcomp(want-2, do-9) dobj(do-9, formatting-10)
mark(decide-3, since-1) nsubj(decide-3, u-2) root(ROOT-0, decide-3) prep(decide-3, on-4) det(timing-6, the-5) pobj(on-4, timing-6) cc(timing-6, and-7) conj(timing-6, place\u002c-8) nsubj(think-10, i-9) rcmod(timing-6, think-10) nsubj(decide-14, u-11) xsubj(eat-17, u-11) aux(decide-14, should-12) advmod(decide-14, also-13) ccomp(think-10, decide-14) advmod(eat-17, where-15) aux(eat-17, to-16) xcomp(decide-14, eat-17) advmod(eat-17, also-18) dobj(eat-17, :p-19)
dep(tired-3, I-1) advmod(tired-3, extremely-2) root(ROOT-0, tired-3) advmod(Limbs-6, now-4) dep(tired-3, Limbs-6) dobj(Limbs-6, all-7) det(strength-9, no-8) nsubj(Limbs-6, strength-9) dep(tired-3, On-11) poss(way-13, my-12) nsubj(have-17, way-13) num(Jap\u002c-15, 2-14) npadvmod(later-16, Jap\u002c-15) advmod(have-17, later-16) dep(..-37, have-17) nsubj(ask-19, 2-18) ccomp(have-17, ask-19) dobj(ask-19, abt-20) dep(matter-23, e-21) punct(matter-23, exams-22) dep(ask-19, matter-23) punct(matter-23, Quite-25) amod(tt-27, worried-26) dep(matter-23, tt-27) nsubj(peng-30, I-28) aux(peng-30, would-29) dep(tt-27, peng-30) amod(woman-34, shang-31) nn(woman-34, tt-32) amod(woman-34, rude-33) dobj(peng-30, woman-34) amod(..-37, Anyway\u002c-36) pobj(On-11, ..-37)
nsubj(..-19, Depends-1) prep(Depends-1, on-2) amod(lor-4, individual-3) pobj(on-2, lor-4) dep(say-8, e-5) nn(dresser-7, hair-6) nsubj(say-8, dresser-7) advcl(..-19, say-8) dep(say-8, pretty-9) cc(say-13, but-10) poss(parents-12, my-11) nsubj(say-13, parents-12) dep(pretty-9, say-13) nn(gong-15, look-14) dobj(say-13, gong-15) nn(kaypoh-18, U-17) nsubj(..-19, kaypoh-18) root(ROOT-0, ..-19) dobj(..-19, I-20) advmod(..-19, also-21) nsubj(wat-23, dunno-22) dep(..-19, wat-23) nsubj(collecting-25, she-24) dep(wat-23, collecting-25)
root(ROOT-0, Thanks-1) amod(X\u2019mas-3, Merry-2) dobj(Thanks-1, X\u2019mas-3) prep(Thanks-1, to-4) dep(Jianbin\u002c-7, you-5) advmod(Jianbin\u002c-7, too-6) pobj(to-4, Jianbin\u002c-7) cc(Thanks-1, and-8) conj(Thanks-1, enjoy-9) det(rest-11, the-10) dobj(enjoy-9, rest-11) prep(rest-11, of-12) nn(:)-16, ur-13) nn(:)-16, holiday-14) pobj(of-12, :)-16)
dep(intend-9, xy-1) poss(ok-4, Its-3) dep(xy-1, ok-4) cc(intend-9, But-6) nsubj(intend-9, i-7) xsubj(watch-11, i-7) aux(intend-9, do-8) csubj(need-23, intend-9) aux(watch-11, to-10) xcomp(intend-9, watch-11) nsubj(u-14, it-12) advmod(u-14, w-13) ccomp(watch-11, u-14) det(hahha-16, all-15) dobj(u-14, hahha-16) nsubj(prefer-19, I-18) parataxis(intend-9, prefer-19) amod(cos-22, 11pm-20) nn(cos-22, show-21) dobj(prefer-19, cos-22) root(ROOT-0, need-23) aux(eat-25, to-24) xcomp(need-23, eat-25) dobj(eat-25, dinner-26) prep(eat-25, at-27) pobj(at-27, home\u002c-28) cc(need-23, but-29) conj(need-23, depends-30) mark(take-35, if-31) nsubj(take-35, u-32) advmod(take-35, all-33) aux(take-35, can-34) advcl(depends-30, take-35) nsubj(lah-37, it-36) xcomp(take-35, lah-37)
nsubj(go-3, I-1) neg(go-3, never-2) root(ROOT-0, go-3) prt(go-3, out-4) dobj(go-3, tdy-5) nsubj(ate-8, I-7) parataxis(go-3, ate-8) dep(ate-8, e-9) dep(ate-8, left-10) prep(left-10, over-11) nn(soup-13, steamboat-12) pobj(over-11, soup-13) prep(soup-13, with-14) nn(lor-16, rice-15) pobj(with-14, lor-16) nsubj(think-19, I-18) parataxis(go-3, think-19) amod(transfer-21, i\u2019ll-20) nsubj(u-22, transfer-21) ccomp(think-19, u-22) poss(1kg-24, my-23) dobj(u-22, 1kg-24) nsubj(envy-28, I-26) advmod(envy-28, so-27) parataxis(go-3, envy-28) dobj(envy-28, u-29) dep(u-29, Haiz-31)
advmod(call-5, K-1) aux(call-5, Did-3) nsubj(call-5, you-4) root(ROOT-0, call-5) dobj(call-5, me-6) advmod(now-8, just-7) advmod(call-5, now-8) pobj(now-8, ah-9)
amod(pink-2, Tt\u2019s-1) dobj(sent-15, pink-2) nsubj(oso-23, pink-2) amod(lover-6, Blue-4) nn(lover-6, means-5) dep(pink-2, lover-6) det(blue-10, No-8) amod(blue-10, light-9) dep(pink-2, blue-10) dep(pink-2, Oh\u002c-12) poss(fren-14, my-13) nsubj(sent-15, fren-14) rcmod(pink-2, sent-15) prep(sent-15, to-16) amod(i-18, me\u002cso-17) pobj(to-16, i-18) advmod(sent-15, forward-19) prep(sent-15, to-20) poss(frens-22, my-21) pobj(to-20, frens-22) root(ROOT-0, oso-23) dobj(oso-23, lor-24)
root(ROOT-0, Hmmm-1) dep(Hmmm-1, I\u2019ll-3) dep(done-5, b-4) dep(ard-6, done-5) dep(Hmmm-1, ard-6) num(ard-6, 230-7) dep(Hmmm-1, So-9) mark(reach-16, if-10) csubj(reach-16, meet-11) dobj(meet-11, u-12) prep(meet-11, at-13) nn(i\u2019ll-15, yck-14) pobj(at-13, i\u2019ll-15) dep(So-9, reach-16) prep(reach-16, at-17) pobj(at-17, 3\u002c-18) cc(3\u002c-18, but-19) conj(3\u002c-18, u\u2019ll-20) dep(go-29, b-21) advmod(bored-23, quite-22) amod(lor\u002c-25, bored-23) amod(lor\u002c-25, waitin-24) nsubj(go-29, lor\u002c-25) dep(not-27, if-26) cc(lor\u002c-25, not-27) conj(lor\u002c-25, i-28) dep(So-9, go-29) nsubj(lor-31, myself-30) dep(go-29, lor-31) cc(lor-31, Or-33) nsubj(go-36, u-34) aux(go-36, can-35) conj(lor-31, go-36) dobj(go-36, orchard-37)
aux(going-3, Are-1) nsubj(going-3, we-2) dep(wearing-12, going-3) prep(going-3, to-4) det(restaurant-8, any-5) amod(restaurant-8, high-6) nn(restaurant-8, class-7) pobj(to-4, restaurant-8) nsubj(wearing-12, I-10) aux(wearing-12, am-11) root(ROOT-0, wearing-12) dobj(wearing-12, slipper-13)
root(ROOT-0, okie-1) amod(!!-5, thaxx-2) det(!!-5, a-3) nn(!!-5, lot-4) dobj(okie-1, !!-5)
poss(sis-2, My-1) nsubj(went-3, sis-2) root(ROOT-0, went-3) prt(went-3, out-4) dobj(went-3, wif-5) amod(car-7, e-6) dep(wif-5, car-7) punct(car-7, Think-9) nn(cannot-11, tdy-10) nsubj(eat-12, cannot-11) dep(car-7, eat-12) nn(u-15, lunch-13) nn(u-15, wif-14) dobj(eat-12, u-15) advmod(went-3, Maybe-17) nsubj(go-20, we-18) advmod(go-20, just-19) ccomp(went-3, go-20) parataxis(went-3, go-20) dobj(go-20, cycling-21)
root(ROOT-0, I\u2019m-1) dep(I\u2019m-1, going-2) num(orchard-4, 2-3) nsubj(laready-6, orchard-4) advmod(laready-6, now-5) ccomp(going-2, laready-6) nsubj(reaching-8, me-7) dep(laready-6, reaching-8) advmod(reaching-8, soon-9) punct(I\u2019m-1, U-11) dep(I\u2019m-1, reaching-12)
advmod(la\u002c-3, just-1) nn(la\u002c-3, go-2) nsubj(have-4, la\u002c-3) root(ROOT-0, have-4) dobj(have-4, fun-5)
poss(m-4, My-1) amod(m-4, dear\u002c-2) amod(m-4, i-3) nsubj(miss-17, m-4) vmod(m-4, eating-5) prep(eating-5, with-6) pobj(with-6, patrick-7) advmod(eating-5, now-8) advmod(are-11, How-10) dep(i-16, are-11) nsubj(are-11, u-12) poss(i-16, My-14) amod(i-16, dear\u002c-15) dep(eating-5, i-16) root(ROOT-0, miss-17) dobj(miss-17, u-18) advmod(much-20, very-19) advmod(miss-17, much-20)
nn(neva-2, Ã-1) nsubj(tell-3, neva-2) root(ROOT-0, tell-3) dobj(tell-3, me-4) advmod(I\u2019m-9, how-5) nn(noe-7, i-6) nsubj(I\u2019m-9, noe-7) dep(tell-3, I\u2019m-9) dep(at-11, not-10) advmod(I\u2019m-9, at-11) dep(at-11, home-12) prep(I\u2019m-9, in-13) nn(wat-16, da-14) amod(wat-16, aft-15) pobj(in-13, wat-16)
discourse(is-5, oh-1) dep(oh-1, boy-2) amod(shawn-4, ..-3) nsubj(is-5, shawn-4) advcl(has-16, is-5) nsubj(disappointed-10, gonna-6) cop(disappointed-10, be-7) advmod(disappointed-10, so-8) advmod(disappointed-10, damn-9) ccomp(is-5, disappointed-10) advmod(finds-13, when-11) nsubj(finds-13, he-12) ccomp(disappointed-10, finds-13) prt(finds-13, out-14) nsubj(has-16, lyd-15) root(ROOT-0, has-16) det(liao-19, a-17) nn(liao-19, bf-18) dobj(has-16, liao-19)
root(ROOT-0, Oh-1) amod(wat\u2019s-3, btw\u002c-2) nsubj(Oh-1, wat\u2019s-3) det(price-5, the-4) dep(Oh-1, price-5) nsubj(pay-7, they-6) rcmod(price-5, pay-7) dobj(pay-7, u-8) advmod(pay-7, previously-9) advmod(pay-7, ar-10)
nn(mine-2, Ya-1) nsubj(pdf-4, mine-2) cop(pdf-4, is-3) root(ROOT-0, pdf-4) cc(e-9, But-6) nsubj(e-9, dun-7) xsubj(choose-12, dun-7) aux(e-9, have-8) parataxis(pdf-4, e-9) dobj(e-9, icon-10) aux(choose-12, to-11) xcomp(e-9, choose-12) dobj(choose-12, double-13)
nsubj(eating-3, we-1) aux(eating-3, are-2) root(ROOT-0, eating-3) advmod(eating-3, here-4) prep(eating-3, before-5) pcomp(before-5, going-6) amod(u-9, ..-7) nn(u-9, haf-8) nsubj(eaten-10, u-9) dep(going-6, eaten-10) nn(wanna-12, ??-11) nsubj(join-13, wanna-12) ccomp(eaten-10, join-13) nsubj(??-15, us-14) xcomp(join-13, ??-15)
poss(friend-2, my-1) nsubj(selling-4, friend-2) aux(selling-4, is-3) root(ROOT-0, selling-4) amod(gifts-6, cute-5) dobj(selling-4, gifts-6) prep(gifts-6, for-7) pobj(for-7, x-mas-8) cc(x-mas-8, and-9) conj(x-mas-8, v-day-10) prep(selling-4, at-11) advmod(east-13, far-12) advmod(i\u2019ll-46, east-13) num((-15, plaza-14) npadvmod(next-16, (-15) advmod(nice-42, next-16) prep(next-16, to-17) det(outlet-21, the-18) nn(outlet-21, hang-19) num(outlet-21, ten-20) pobj(to-17, outlet-21) vmod(outlet-21, )-22) det(drop-29, every-23) amod(drop-29, thurs-24) prep(thurs-24, to-25) nn(Do-28, sat-26) pobj(to-25, Do-28) dobj()-22, drop-29) prep()-22, by-30) mark(interested-34, if-31) nsubj(interested-34, you-32) cop(interested-34, are-33) dep(next-16, interested-34) dep(nice-42, some-36) prep(some-36, of-37) det(gifts-39, the-38) pobj(of-37, gifts-39) cop(nice-42, are-40) advmod(nice-42, really-41) dep(east-13, nice-42) cc(nice-42, and-43) conj(nice-42, sweet-44) pcomp(at-11, i\u2019ll-46) aux(helping-48, be-47) dep(i\u2019ll-46, helping-48) dobj(helping-48, her-49) prt(helping-48, out-50) prep(hope-57, on-51) pobj(on-51, some-52) prep(some-52, of-53) det(days-55, the-54) pobj(of-53, days-55) dep(helping-48, hope-57) aux(see-59, to-58) xcomp(hope-57, see-59) dobj(see-59, you-60) dep(there-62, all-61) advmod(see-59, there-62)
nn(i-3, yah\u002c-1) nn(i-3, wed-2) nsubj(think-4, i-3) root(ROOT-0, think-4) cc(think-4, But-6) nsubj(noe-8, i-7) conj(think-4, noe-8) dobj(noe-8, she-9) dep(free-11, not-10) advmod(noe-8, free-11) prep(free-11, on-12) pobj(on-12, wed-13)
dep(tell-22, Oh-1) nsubj(tell-22, Muz-3) dep(rite-12, b-4) dep(rite-12, e-5) amod(type-8, jolin-6) amod(type-8, tsai\u2019s-7) nsubj(rite-12, type-8) prep(type-8, of-9) nn(colour-11, hair-10) pobj(of-9, colour-11) rcmod(Muz-3, rite-12) nsubj(let-15, Aiya\u002c-14) parataxis(rite-12, let-15) nsubjpass(used-18, em-16) auxpass(used-18, get-17) ccomp(let-15, used-18) prep(used-18, to-19) dep(lor\u002c-21, it-20) pobj(to-19, lor\u002c-21) root(ROOT-0, tell-22) nn(everyone-24, em-23) nsubj(say-25, everyone-24) ccomp(tell-22, say-25) advmod(nice-27, v-26) acomp(say-25, nice-27) dobj(say-25, Gee-29) parataxis(say-25, Gee-29)
amod(somethin-2, It\u2019s-1) root(ROOT-0, somethin-2) dobj(go-14, somethin-2) prep(somethin-2, like-3) nn(version-5, nus-4) pobj(like-3, version-5) prep(version-5, of-6) amod(lor-8, chingay-7) pobj(of-6, lor-8) mark(go-14, If-10) nn(wan-12, u-11) nsubj(go-14, wan-12) aux(go-14, can-13) dep(somethin-2, go-14) dep(c-16, c-15) dep(lor-17, c-16) dep(go-14, lor-17)
root(ROOT-0, Yup-1) nsubj(havent-4, I-3) dep(Yup-1, havent-4) dep(havent-4, been-5) advmod(been-5, there-6) advmod(been-5, before-7) nsubj(want-10, You-9) xsubj(go-12, You-9) dep(call-19, want-10) aux(go-12, to-11) xcomp(want-10, go-12) prep(go-12, for-13) det(yoga-15, the-14) pobj(for-13, yoga-15) nsubj(call-19, I-17) aux(call-19, can-18) parataxis(havent-4, call-19) prt(call-19, up-20) prep(call-19, to-21) pobj(to-21, book-22)
root(ROOT-0, Wat-1) dobj(Wat-1, time-2) iobj(Wat-1, time-2) aux(set-5, should-3) nsubj(set-5, we-4) dep(time-2, set-5) prt(set-5, off-6) aux(feel-14, Will-8) nsubj(feel-14, b-9) prep(b-9, at-10) pobj(at-10, simei-11) cc(simei-11, but-12) conj(simei-11, i-13) dep(set-5, feel-14) prep(feel-14, like-15) pcomp(like-15, coming-16) advmod(coming-16, back-17) dep(set-5, 2-18) dep(set-5, bathe-19) cc(set-5, but-20) conj(set-5, like-21) neg(enough-23, not-22) amod(hor-25, enough-23) nn(hor-25, time-24) pobj(like-21, hor-25)
nsubj(think-2, Duno\u002c-1) dep(Think-11, think-2) nsubj(post-5, they-3) aux(post-5, will-4) ccomp(think-2, post-5) prep(post-5, in-6) nn(lor-9, forum-7) nn(lor-9, tomw-8) pobj(in-6, lor-9) root(ROOT-0, Think-11) num(lor-15, 7.30-12) amod(lor-15, \u002c-13) nn(lor-15, 8pm-14) nsubj(Think-11, lor-15)
nsubj(..-4, Huh-1) advmod(early-3, so-2) advmod(..-4, early-3) root(ROOT-0, ..-4) advmod(..-4, Then-5) advmod(..-4, ü-6) xcomp(..-4, having-7) dobj(having-7, dinner-8) prep(having-7, outside-9) pobj(outside-9, izzit-10)
discourse(Is-19, Hey-1) advmod(Is-19, sorry-2) dep(Is-19, Have-4) aux(meet-6, to-5) dep(Have-4, meet-6) dobj(meet-6, u-7) prep(meet-6, at-8) pobj(at-8, bishan-9) advmod(as-11, instead-10) prep(meet-6, as-11) nn(goin-13, i-12) pobj(as-11, goin-13) aux(have-15, to-14) xcomp(meet-6, have-15) dobj(have-15, lunch-16) dep(Have-4, earlier-17) root(ROOT-0, Is-19) det(ok-21, that-20) nsubj(Is-19, ok-21)
root(ROOT-0, opss-1) nsubj(forget-3, I-2) xsubj(call-5, I-2) ccomp(opss-1, forget-3) aux(call-5, to-4) xcomp(forget-3, call-5) dobj(call-5, you-6) advmod(now-8, just-7) advmod(call-5, now-8)
nsubj(meet-2, wanna-1) xsubj(go-4, wanna-1) root(ROOT-0, meet-2) aux(go-4, to-3) xcomp(meet-2, go-4) xcomp(go-4, study-5) dobj(study-5, ??-6)
root(ROOT-0, need-1) nsubj(help-3, me-2) ccomp(need-1, help-3) nsubj(get-5, u-4) ccomp(help-3, get-5) dobj(get-5, anything-6)
prep(is-30, As-1) pcomp(As-1, in-2) dep(myth-5, e-3) amod(myth-5, original-4) dep(is-6, myth-5) dep(r-12, is-6) nsubj(is-6, solid\u002c-7) cc(solid\u002c-7, &-8) conj(solid\u002c-7, e-9) dep(is-6, taiwanese-10) dobj(taiwanese-10, actors-11) dep(good-13, r-12) dep(Lin-22, good-13) punct(Lin-22, Actually-15) advmod(Lin-22, quite-16) amod(Lin-22, creative-17) nn(Lin-22, la-18) nn(Lin-22, Xu-20) nn(Lin-22, Shi-21) dep(in-2, Lin-22) amod(Lin-22, blur-23) dep(blur-23, blur-24) num(blur-24, one-25) nn(Xiao-29, Qing-27) nn(Xiao-29, Xiao-28) nsubj(is-30, Xiao-29) root(ROOT-0, is-30) prep(is-30, like-31) poss(swindler-34, her-32) amod(swindler-34, granny\u002c-33) pobj(like-31, swindler-34)
nsubj(u-3, Hey\u002c-1) aux(u-3, can-2) root(ROOT-0, u-3) nsubj(make-5, guys-4) ccomp(u-3, make-5) nsubj(tdy-7, it-6) dep(make-5, tdy-7) prep(tdy-7, at-8) pobj(at-8, 5pm-9)
advmod(confirm-3, When-1) nsubj(confirm-3, we-2) advcl(arrange-9, confirm-3) advmod(meeting-6, when-4) nsubj(meeting-6, we-5) advcl(confirm-3, meeting-6) advmod(meeting-6, then-7) nsubj(arrange-9, we-8) root(ROOT-0, arrange-9) dobj(arrange-9, time-10) advmod(arrange-9, again-11)
nsubj(ok-3, It-1) cop(ok-3, is-2) root(ROOT-0, ok-3) dep(ok-3, you-5) cc(you-5, and-6) nsubj(like-9, me-7) advmod(like-9, always-8) conj(you-5, like-9) det(rite-11, this-10) dobj(like-9, rite-11) advmod(love-15, See-13) nsubj(love-15, you-14) advcl(ok-3, love-15) dobj(love-15, you-16)
advmod(when-2, so-1) advmod(wan-5, when-2) aux(wan-5, do-3) nsubj(wan-5, you-4) root(ROOT-0, wan-5) det(??-9, the-6) nn(??-9, christmas-7) nn(??-9, dinner-8) nsubj(wadever-10, ??-9) ccomp(wan-5, wadever-10) dobj(wadever-10, it-11) num(wanna-15, is\u002c-12) amod(wanna-15, i-13) nn(wanna-15, dun-14) nsubj(see-16, wanna-15) dep(wan-5, see-16) mark(ok-20, that-17) nsubj(ok-20, fella-18) advmod(ok-20, there-19) ccomp(see-16, ok-20)
discourse(hey-2, Hey-1) root(ROOT-0, hey-2) amod(christmas-5, ..-3) amod(christmas-5, merry-4) dobj(hey-2, christmas-5) vmod(christmas-5, ..-6) mark(is-10, so-7) det(time-9, what-8) dep(is-10, time-9) advcl(..-6, is-10) det(tonight-14, the-11) nn(tonight-14, christmas-12) nn(tonight-14, dinner-13) nsubj(is-10, tonight-14) ref(christmas-5, who-16) nsubj(going-18, who-16) aux(going-18, is-17) rcmod(christmas-5, going-18) advmod(going-18, too-19)
dep(..-2, Oh-1) dep(come-6, ..-2) dep(..-2, Ya-3) dep(&-16, come-6) prt(come-6, out-7) dep(come-6, see-9) discourse(see-9, mall-10) dep(mall-10, G-12) prep(see-9, in-14) pobj(in-14, mall-15) dep(out-17, &-16) dep(see-20, out-17) aux(see-20, will-19) root(ROOT-0, see-20) nn(interchange-22, kovan-21) dobj(see-20, interchange-22) punct(see-20, Take-24) dep(see-20, 321-25) dep(321-25, there-26)
advmod(free-2, u-1) root(ROOT-0, free-2) prep(free-2, on-3) pcomp(on-3, sat-4) dep(free-2, go-6) dobj(go-6, bugis-7)
root(ROOT-0, Nothing-1) aux(eat-3, to-2) vmod(Nothing-1, eat-3) dobj(eat-3, n-4) advmod(eat-3, also-5) det(time-7, no-6) dobj(eat-3, time-7) aux(go-9, to-8) xcomp(eat-3, go-9) prt(go-9, out-10) ccomp(go-9, buy-11) dobj(buy-11, lor-12) nn(rite-16, Poor-14) nn(rite-16, thing-15) dep(Nothing-1, rite-16)
cc(ah-6, But-1) nsubj(ah-6, tution-2) cop(ah-6, is-3) nn(ah-6, gd-4) nn(ah-6, money-5) dep(tsk-9, ah-6) nn(tsk-9, Tsk-8) root(ROOT-0, tsk-9) dep(tsk-9, u-11) dep(tsk-9, really-12) dep(tsk-9, shld-13) xcomp(shld-13, cut-14) prt(cut-14, down-15) prep(cut-14, on-16) nn(sauce-18, ur-17) pobj(on-16, sauce-18) advmod(much-20, too-19) amod(sodium-21, much-20) dobj(cut-14, sodium-21) punct(tsk-9, k-23) nn(nap-25, go-24) dep(tsk-9, nap-25) nn(hugz-29, dnr-27) nn(hugz-29, *-28) dep(nap-25, hugz-29) dep(nap-25, *-30)
root(ROOT-0, max-1) dep(max-1, is-2) num(min-5, one-3) amod(min-5, week\u002c-4) nsubj(is-6, min-5) ccomp(is-2, is-6) advmod(coming\u002c-12, depends-7) mark(coming\u002c-12, if-9) nsubj(coming\u002c-12, you-10) cop(coming\u002c-12, are-11) advcl(is-6, coming\u002c-12) advmod(going-16, how-13) aux(going-16, are-14) nsubj(going-16, you-15) xsubj(come-18, you-15) dep(is-2, going-16) aux(come-18, to-17) xcomp(going-16, come-18)
nn(tut-3, E-1) nn(tut-3, 2nd-2) dep(nvr-14, tut-3) advmod(lor\u002c-5, harder-4) dep(tut-3, lor\u002c-5) dep(tut-3, quite-6) det(dunno-8, some-7) pobj(quite-6, dunno-8) advmod(do-11, how-9) aux(do-11, to-10) dep(quite-6, do-11) nsubj(nvr-14, She-13) root(ROOT-0, nvr-14) xcomp(nvr-14, explain-15) advmod(explain-15, properly-16) dobj(explain-15, ah-17) nn(din-21, Cham\u002c-19) nn(din-21, i-20) nsubj(go-23, din-21) advmod(go-23, even-22) parataxis(nvr-14, go-23) num(tut-25, 4-24) dobj(go-23, tut-25)
discourse(pray-4, Hey-1) nsubj(pray-4, Lizzie\u002c-2) aux(pray-4, will-3) root(ROOT-0, pray-4) prep(pray-4, for-5) pobj(for-5, you-6) advmod(wake-9, when-7) nsubj(wake-9, i-8) advcl(pray-4, wake-9) prt(wake-9, up-10) tmod(wake-9, tomorrow-11) tmod(find-15, May-13) nsubj(find-15, you-14) dep(-j-39, find-15) nsubj(handle-21, strength-16) prep(strength-16, in-17) det(Lord-19, the-18) pobj(in-17, Lord-19) aux(handle-21, to-20) xcomp(find-15, handle-21) poss(test-23, your-22) dobj(handle-21, test-23) dep(yawn-26, *-25) dep(test-23, yawn-26) dep(test-23, *-27) vmod(test-23, Going-28) prep(Going-28, to-29) pobj(to-29, bed-30) advmod(Going-28, now-31) amod(ght-36, Good-33) nn(ght-36, n-34) nn(ght-36, ??-35) dep(find-15, ght-36) parataxis(pray-4, -j-39)
nn(ha-2, Ha-1) dep(house-6, ha-2) nn(house-6, i-3) nn(house-6, guessed-4) amod(house-6, yr-5) dep(has-13, house-6) vmod(house-6, got-7) det(visitors-9, no-8) dobj(got-7, visitors-9) poss(dad-12, My-11) nsubj(has-13, dad-12) root(ROOT-0, has-13) det(lot-15, a-14) dobj(has-13, lot-15) prep(lot-15, of-16) nn(friends-18, china-17) pobj(of-16, friends-18)
nsubj(wat-2, Den-1) root(ROOT-0, wat-2) amod(alex-5, other-3) amod(alex-5, movies\u002c-4) dobj(wat-2, alex-5) cc(alex-5, and-6) nn(ah-8, emma-7) conj(alex-5, ah-8) nsubj(go-12, I-10) dep(go-12, cant-11) parataxis(wat-2, go-12) amod(yet\u002c-14, online-13) dobj(go-12, yet\u002c-14) poss(usin-17, my-15) nn(usin-17, sis-16) dep(yet\u002c-14, usin-17) dep(laptop-19, e-18) dep(usin-17, laptop-19)
poss(trip-2, My-1) nsubj(ok-4, trip-2) cop(ok-4, was-3) root(ROOT-0, ok-4) cc(ok-4, but-5) advmod(tiring-7, quite-6) conj(ok-4, tiring-7) nn(Uni-10, lor-8) nsubj(starts-11, Uni-10) ccomp(tiring-7, starts-11) tmod(starts-11, today-12) cc(ok-4, but-13) nsubj(ok-15, it\u2019s-14) conj(ok-4, ok-15) dobj(ok-15, 4-16) dobj(cos-18, 4-16) nsubj(cos-18, me-17) rcmod(4-16, cos-18) acomp(cos-18, i\u2019m-19) neg(taking-21, not-20) dep(i\u2019m-19, taking-21) det(modules-23, any-22) dobj(taking-21, modules-23) cc(taking-21, but-24) advmod(concentrating-26, jus-25) conj(taking-21, concentrating-26) prep(concentrating-26, on-27) poss(project-31, my-28) amod(project-31, final-29) nn(project-31, yr-30) pobj(on-27, project-31)
root(ROOT-0, This-1) cop(day-12, is-2) nn(Yun-4, Jun-3) nsubj(day-12, Yun-4) poss(day-12, your-5) amod(day-12, bestest-6) nn(day-12, friend-7) nn(day-12, Enjoy-9) nn(day-12, ur-10) amod(day-12, 1st-11) dep(hor-29, day-12) prep(day-12, of-13) amod(Marky-17, Chinese-14) nn(Marky-17, New-15) nn(Marky-17, Year-16) pobj(of-13, Marky-17) dep(day-12, Go-19) nn(tons-21, grab-20) dobj(Go-19, tons-21) prep(tons-21, of-22) nn(bao-24, ang-23) pobj(of-22, bao-24) cc(bao-24, and-25) conj(bao-24, share-26) prep(Go-19, with-27) pobj(with-27, me-28) dep(This-1, hor-29) dep(This-1, ->-32)
advmod(ok-2, u-1) root(ROOT-0, ok-2) dep(ok-2, wan-4) dobj(wan-4, me-5) aux(come-7, to-6) xcomp(wan-4, come-7) prt(come-7, over-8) advmod(come-7, now-9)
advmod(sorry-2, So-1) amod(cant-3, sorry-2) nsubj(reply-4, cant-3) root(ROOT-0, reply-4) poss(cause-8, your-5) nn(cause-8, sms-6) dobj(reply-4, cause-8) advmod(busy-10, too-9) amod(today-11, busy-10) tmod(reply-4, today-11)
nsubj(confirm-2, you-1) root(ROOT-0, confirm-2) prep(confirm-2, with-3) pobj(with-3, me-4) num(day-6, one-5) dobj(confirm-2, day-6) advmod(can-8, before-7) dep(day-6, can-8)
root(ROOT-0, U-1) nsubj(delay-21, not-2) dep(not-2, at-3) dep(at-3, home-4) amod(sigh-7, ar-5) dep(not-2, sigh-7) prep(not-2, Due-9) num(fault-12, 2-10) nn(fault-12, tech-11) dep(Due-9, fault-12) prep(fault-12, at-13) nn(service-19, Chua-14) nn(service-19, Chu-15) nn(service-19, Kang-16) nn(service-19, e-17) nn(service-19, train-18) pobj(at-13, service-19) aux(delay-21, will-20) rcmod(U-1, delay-21) number(10-23, 4-22) num(minutes\u002c-24, 10-23) dobj(delay-21, minutes\u002c-24) dobj(stop-33, minutes\u002c-24) cc(JE-28, &-25) nn(JE-28, train-26) num(JE-28, 2wards-27) nsubj(stop-33, JE-28) cc(JE-28, &-29) nn(BAY-31, Marina-30) conj(JE-28, BAY-31) aux(stop-33, will-32) rcmod(minutes\u002c-24, stop-33) amod(LATE-37, argh-35) dep(U-1, LATE-37)
advmod(think-3, then-1) advmod(think-3, i-2) root(ROOT-0, think-3) poss(ok-5, its-4) dobj(think-3, ok-5) nsubj(think-3, la-6) dep(la-6, thanks-8) advmod(thanks-8, anyway-9)
nn(ppl-2, hey-1) root(ROOT-0, ppl-2) dep(ppl-2, remember-4) dep(remember-4, tonite-5) nsubj(7pm-8, we-6) nn(7pm-8, meetin-7) xcomp(tonite-5, 7pm-8) prep(7pm-8, at-9) nn(lips-11, ps-10) pobj(at-9, lips-11) nn(hor-19, cafe-12) nn(hor-19, ..-13) nn(hor-19, cya-14) nn(hor-19, ..-15) nn(hor-19, dun-16) nn(hor-19, put-17) nn(hor-19, aeroplane-18) dep(remember-4, hor-19) nn(;)-21, ..-20) dep(remember-4, ;)-21)
det(time-2, What-1) dep(free-5, time-2) cop(free-5, are-3) nsubj(free-5, u-4) root(ROOT-0, free-5)
nsubj(need-5, Thx-1) xsubj(prepare-9, Thx-1) cc(Thx-1, and-2) conj(Thx-1, i-3) advmod(need-5, also-4) root(ROOT-0, need-5) nn(help-7, ur-6) dobj(need-5, help-7) aux(prepare-9, to-8) xcomp(need-5, prepare-9) nsubj(have-12, it-10) aux(have-12, i-11) ccomp(prepare-9, have-12) det(experience-14, no-13) dobj(have-12, experience-14) prep(experience-14, of-15) det(:)-17, that-16) pobj(of-15, :)-17)
root(ROOT-0, Meet-1) dobj(Meet-1, us-2) prep(Meet-1, at-3) amod(..-7, kovan-4) nn(..-7, mrt-5) nn(..-7, lah-6) pobj(at-3, ..-7) nsubj(r-9, We-8) rcmod(..-7, r-9) xcomp(r-9, meeting-10) advmod(meeting-10, there-11) prep(there-11, at-12) amod(u-16, 645pm-13) nn(u-16, ..-14) nn(u-16, See-15) pobj(at-12, u-16) advmod(at-12, there-17) advmod(meeting-10, ..-18)
advmod(are-2, Where-1) dep(on-6, are-2) nsubj(are-2, you-3) advmod(on-6, still-5) dep(blur-blur-8, on-6) pobj(on-6, bed-7) root(ROOT-0, blur-blur-8)
nsubj(u-3, Wat-1) aux(u-3, would-2) root(ROOT-0, u-3) prep(u-3, like-4) num(birthday-7, 4-5) nn(birthday-7, ur-6) pobj(like-4, birthday-7)
root(ROOT-0, Wah-1) nsubj(queue-4, E-3) dep(Wah-1, queue-4) advmod(long-6, damn-5) acomp(queue-4, long-6) aux(buy-8, to-7) xcomp(long-6, buy-8) dobj(buy-8, laptops-9) nn(goin-12, U-11) nsubj(buy-14, goin-12) aux(buy-14, to-13) parataxis(queue-4, buy-14) xcomp(queue-4, buy-14) advmod(buy-14, soon-15) punct(Wah-1, Beta-17) advmod(cos-19, hurry-18) dep(Wah-1, cos-19) dep(open-23, e-20) nsubj(open-23, offer-21) aux(open-23, will-22) ccomp(cos-19, open-23) prep(open-23, to-24) amod(onwards-29, e-25) amod(onwards-29, whole-26) nn(onwards-29, nus-27) nn(onwards-29, tmr-28) pobj(to-24, onwards-29)
root(ROOT-0, Hi\u002c-1) nsubj(wait-4, I-2) aux(wait-4, will-3) ccomp(Hi\u002c-1, wait-4) prep(wait-4, for-5) pobj(for-5, u-6) prep(u-6, near-7) det(bank-10, the-8) nn(bank-10, DBS-9) pobj(near-7, bank-10) prep(wait-4, at-11) pobj(at-11, b1-12)
root(ROOT-0, Hi\u002c-1) aux(help-3, can-2) ccomp(Hi\u002c-1, help-3) nsubj(buy-6, me-4) aux(buy-6, to-5) xcomp(help-3, buy-6) dobj(buy-6, snacks-7) prep(buy-6, from-8) pobj(from-8, canteen-9) aux(be-13, Will-11) nsubj(be-13, you-12) dep(help-3, be-13) prep(be-13, in-14) pobj(in-14, lab-15) dep(help-3, by-16) num(o\u2019clock-18, two-17) pobj(by-16, o\u2019clock-18)
amod(building-3, E-1) nn(building-3, admin-2) dep(b-8, building-3) dep(building-3, there-4) nsubj(b-8, I-6) aux(b-8, might-7) root(ROOT-0, b-8) advmod(earlier-10, slightly-9) advmod(b-8, earlier-10) nsubj(call-13, I\u2019ll-12) parataxis(b-8, call-13) advmod(call-13, u-14) advmod(reaching-17, when-15) nsubj(reaching-17, i\u2019m-16) advcl(call-13, reaching-17)
root(ROOT-0, Thank-1) dobj(Thank-1, you-2) nsubj(u-5, Wish-4) dep(Thank-1, u-5) predet(best-8, all-6) det(best-8, the-7) dobj(u-5, best-8) prep(u-5, in-9) nn(exams-11, ur-10) pobj(in-9, exams-11)
nsubj(dun-2, Ok-1) root(ROOT-0, dun-2) cop(angry\u002c-4, be-3) dep(dun-2, angry\u002c-4) nsubj(try-6, i-5) xsubj(keep-8, i-5) ccomp(angry\u002c-4, try-6) aux(keep-8, to-7) xcomp(try-6, keep-8) det(den-13, some-9) advmod(den-13, away-10) prep(away-10, from-11) pobj(from-11, them-12) nsubj(eat-17, den-13) nsubj(give-15, i-14) rcmod(den-13, give-15) dobj(give-15, u-16) ccomp(keep-8, eat-17) dobj(eat-17, k-18)
nsubj(Got-3, Aiyo-1) xsubj(wear-6, Aiyo-1) root(ROOT-0, Got-3) dobj(Got-3, nothin-4) aux(wear-6, to-5) xcomp(Got-3, wear-6) dobj(wear-6, Haiz-8) parataxis(wear-6, Haiz-8) advmod(take-17, Hey-10) nn(rite\u002c-14, u-11) nn(rite\u002c-14, takin-12) amod(rite\u002c-14, maths-13) dep(Hey-10, rite\u002c-14) aux(take-17, did-15) nsubj(take-17, u-16) dep(Cos-22, take-17) dobj(take-17, ma1101r-18) cc(ma1101r-18, and-19) conj(ma1101r-18, ma1102r-20) parataxis(Got-3, Cos-22) num(oso-26, i\u2019m-23) nn(oso-26, takin-24) nn(oso-26, em-25) nsubj(Cos-22, oso-26) nn(mayb-29, Den-28) nsubj(go-31, mayb-29) aux(go-31, can-30) parataxis(Got-3, go-31) dobj(go-31, lect-32) advmod(go-31, together-33)
nsubj(use-2, U-1) root(ROOT-0, use-2) dobj(use-2, melody-3) prep(use-2, as-4) nn(pic-6, ur-5) pobj(as-4, pic-6) advmod(use-2, right-7)
cc(ask-3, Or-1) nsubj(ask-3, u-2) root(ROOT-0, ask-3) nsubj(make-18, they-4) dep(make-18, all-5) mark(not-11, if-6) amod(sat-8, next-7) nsubj(not-11, sat-8) aux(not-11, can-9) det(not-11, a-10) ccomp(all-5, not-11) mark(make-18, If-13) nsubj(make-18, all-14) prep(all-14, of-15) pobj(of-15, them-16) aux(make-18, can-17) xcomp(ask-3, make-18) dep(lor-23, it-19) advmod(lor-23, then-20) amod(lor-23, i\u2019m-21) nn(lor-23, ok-22) dep(make-18, lor-23)
root(ROOT-0, leming-1) amod(time-3, last-2) dobj(leming-1, time-3) advmod(leming-1, also-4) prep(leming-1, like-5) pobj(like-5, that-6)
amod(lor-2, Okay-1) root(ROOT-0, lor-2) dep(lor-2, Wah-4) prep(wont-10, like-6) det(def-8, that-7) pobj(like-6, def-8) nsubj(wont-10, they-9) dep(lor-2, wont-10) dep(wont-10, let-11) nsubj(go-13, us-12) ccomp(let-11, go-13) dobj(wont-10, Haha-15) parataxis(wont-10, Haha-15) dobj(say-20, What-17) aux(say-20, did-18) nsubj(say-20, they-19) dep(Haha-15, say-20) prep(say-20, in-21) det(terms-23, the-22) pobj(in-21, terms-23) cc(terms-23, and-24) conj(terms-23, conditions-25)
nn(ar-3, Ur-1) nn(ar-3, dog-2) nsubj(make-13, ar-3) advmod(naughty-5, so-4) amod(ar-3, naughty-5) dep(ar-3, Shit-7) prep(Shit-7, on-8) nn(floor-10, da-9) pobj(on-8, floor-10) advmod(make-13, Then-12) root(ROOT-0, make-13) mark(got-18, until-14) predet(body-17, all-15) poss(body-17, his-16) nsubj(got-18, body-17) advcl(make-13, got-18) dobj(got-18, shit-19) advmod(make-13, Then-21) nsubj(bathe-23, gotta-22) ccomp(make-13, bathe-23) parataxis(make-13, bathe-23) nsubj(n-25, him-24) ccomp(bathe-23, n-25) xcomp(n-25, change-26) nn(mat-29, da-27) amod(mat-29, whole-28) dobj(change-26, mat-29)
nsubj(woke-3, I-1) advmod(woke-3, just-2) root(ROOT-0, woke-3) prt(woke-3, up-4) cc(woke-3, So-6) nn(time-8, wat-7) nsubj(u-9, time-8) conj(woke-3, u-9) acomp(u-9, free-10) aux(come-12, to-11) xcomp(free-10, come-12) advmod(come-12, out-13)
nsubj(thinking-3, I-1) aux(thinking-3, was-2) root(ROOT-0, thinking-3) vmod(thinking-3, going-4) aux(popular-6, to-5) xcomp(going-4, popular-6) aux(buy-8, to-7) xcomp(popular-6, buy-8) det(folder-10, some-9) dobj(buy-8, folder-10)
nsubj(meet-2, U-1) root(ROOT-0, meet-2) amod(wan-6, other-3) nn(wan-6, fren-4) nn(wan-6, dun-5) nsubj(meet-7, wan-6) ccomp(meet-2, meet-7) dobj(meet-7, me-8) advmod(meet-7, ah-9) nsubj(b-12, Muz-11) parataxis(meet-7, b-12) det(rite-15, a-13) nn(rite-15, guy-14) dobj(b-12, rite-15)
amod(pam-2, hi\u002c-1) nsubj(asked-3, pam-2) root(ROOT-0, asked-3) dobj(asked-3, us-4) mark(want-7, whether-5) nsubj(want-7, we-6) xsubj(catch-9, we-6) ccomp(asked-3, want-7) aux(catch-9, to-8) xcomp(want-7, catch-9) amod(affairs-11, infernal-10) iobj(catch-9, affairs-11) dobj(catch-9, 3-12) advmod(week-15, sometime-13) amod(week-15, next-14) tmod(catch-9, week-15)
root(ROOT-0, Oh-1) nsubj(meet-8, Icic-3) nn(den-7, K-5) amod(den-7, lor\u002c-6) nsubj(meet-8, den-7) ccomp(Oh-1, meet-8) parataxis(Oh-1, meet-8) amod(day-10, other-9) tmod(meet-8, day-10)
root(ROOT-0, Nope-1) csubj(go-6, Think-3) dobj(Think-3, i-4) aux(go-6, will-5) dep(Nope-1, go-6) prep(go-6, for-7) pobj(for-7, it-8) prep(go-6, on-9) pobj(on-9, monday-10) nn(i-13, Sorry-12) nsubj(replied-14, i-13) parataxis(go-6, replied-14) advmod(late-16, so-15) advmod(replied-14, late-16)
discourse(booked-3, Hey-1) nsubj(booked-3, i-2) root(ROOT-0, booked-3) det(kb-5, the-4) dobj(booked-3, kb-5) prep(booked-3, on-6) pcomp(on-6, sat-7) advmod(sat-7, already-8) dep(lessons-12, what-10) amod(lessons-12, other-11) dep(going-15, lessons-12) aux(going-15, are-13) nsubj(going-15, we-14) dep(need-25, going-15) prep(going-15, for-16) pobj(for-16, ah-17) dep(going-15, Keep-19) poss(night-22, your-20) amod(night-22, sat-21) nsubj(free-23, night-22) xcomp(Keep-19, free-23) nsubj(need-25, we-24) xsubj(meet-27, we-24) parataxis(booked-3, need-25) aux(meet-27, to-26) xcomp(need-25, meet-27) cc(meet-27, and-28) conj(meet-27, confirm-29) poss(lodging-31, our-30) dobj(meet-27, lodging-31)
nn(It\u2019s-3, Oh-1) amod(It\u2019s-3, ..-2) nsubj(going-4, It\u2019s-3) xsubj(painful-7, It\u2019s-3) root(ROOT-0, going-4) aux(painful-7, to-5) cop(painful-7, be-6) xcomp(going-4, painful-7)
advmod(buy-14, Very-1) advmod(buy-14, far-2) prep(far-2, from-3) nn(lei-5, mrt-4) pobj(from-3, lei-5) dep(lei-5, Ã-7) prep(Ã-7, on-8) nn(oredi-11, da-9) nn(oredi-11, bus-10) pobj(on-8, oredi-11) nsubj(buy-14, I\u2019ll-13) root(ROOT-0, buy-14) dobj(buy-14, tmr-15)
nsubj(call-3, U-1) aux(call-3, can-2) root(ROOT-0, call-3) advmod(call-3, now-4)
nsubj(oso-2, I-1) root(ROOT-0, oso-2) dobj(oso-2, dunno\u002c-3) cc(oso-2, or-4) advmod(oso-2, maybe-5) conj(oso-2, maybe-5) aux(go-7, can-6) conj(oso-2, go-7) nn(walk-9, walk-8) dobj(go-7, walk-9) prep(walk-9, near-10) poss(mall-14, my-11) nn(mall-14, house-12) nn(mall-14, shopping-13) pobj(near-10, mall-14) prep(go-7, like-15) pobj(like-15, parkway-16)
nn(nvm\u002c-4, orh-1) nn(nvm\u002c-4, ok-2) nn(nvm\u002c-4, ..-3) root(ROOT-0, nvm\u002c-4) expl(b-8, there-5) aux(b-8, will-6) advmod(b-8, still-7) rcmod(nvm\u002c-4, b-8) dobj(b-8, chances-9) nsubj(b-8, chances-9) dep(best-12, all-11) dep(nvm\u002c-4, best-12) num(ur-14, 4-13) npadvmod(match-15, ur-14) dep(nvm\u002c-4, match-15) punct(nvm\u002c-4, wish-17) dep(xmas-22, u-18) det(xmas-22, an-19) amod(xmas-22, early-20) nn(xmas-22, merry-21) dep(nvm\u002c-4, xmas-22)
nsubj(bath-2, I-1) root(ROOT-0, bath-2) advmod(bath-2, then-3) dep(bath-2, go-4) prt(go-4, over-5)
nsubjpass(u-5, Can-1) dep(Can-1, Best-3) auxpass(u-5, is-4) root(ROOT-0, u-5) ccomp(u-5, eat-6) prep(eat-6, until-7) amod(haha-10, fat-8) amod(haha-10, fat\u002c-9) pobj(until-7, haha-10)
nsubj(join-11, we-1) vmod(we-1, going-2) prep(going-2, for-3) nn(food-5, jap-4) pobj(for-3, food-5) prep(going-2, at-6) nn(wanna-10, bugis-7) amod(wanna-10, 2nite-8) nn(wanna-10, u-9) pobj(at-6, wanna-10) root(ROOT-0, join-11) dobj(join-11, us-12)
prep(lok-6, At-1) pobj(At-1, lab-2) dep(lok-6, now-3) dep(now-3, Just-5) root(ROOT-0, lok-6) prep(lok-6, for-7) pobj(for-7, me-8) mark(wait-12, after-9) nn(i-11, meeting\u002c-10) nsubj(wait-12, i-11) dep(lok-6, wait-12) dobj(wait-12, you-13)
root(ROOT-0, Nothin-1) rcmod(Nothin-1, comes-2) prep(comes-2, to-3) poss(mind-5, my-4) pobj(to-3, mind-5) nn(help-8, Ã-7) dep(Nothin-1, help-8) nsubj(buy-10, me-9) rcmod(help-8, buy-10) nn(lor-12, hanger-11) dobj(buy-10, lor-12) nn(laptop-15, Ur-14) dep(Nothin-1, laptop-15) neg(heavy-17, not-16) amod(laptop-15, heavy-17)
cop(you-2, Are-1) root(ROOT-0, you-2) advmod(you-2, still-3) prep(you-2, in-4) pobj(in-4, office-5)
nn(i-2, Ok-1) nsubj(wan-4, i-2) advmod(wan-4, also-3) root(ROOT-0, wan-4) num(watch-6, 2-5) dobj(wan-4, watch-6) dep(show-10, e-7) number(pm-9, 9-8) num(show-10, pm-9) dep(watch-6, show-10)
advmod(long-2, As-1) advmod(try-5, long-2) mark(try-5, as-3) nsubj(try-5, you-4) root(ROOT-0, try-5) poss(others-8, your-6) amod(others-8, best\u002c-7) nsubj(listen-11, others-8) aux(listen-11, can-9) advmod(listen-11, only-10) ccomp(try-5, listen-11) prep(listen-11, to-12) nn(......-15, fate-13) nn(......-15, liao-14) pobj(to-12, ......-15)
nsubj(there\u2019s-4, Kaiez-1) dep(Kaiez-1, Hope-3) root(ROOT-0, there\u2019s-4) det(jam-6, no-5) dobj(there\u2019s-4, jam-6)
advmod(stuck-2, Havent-1) root(ROOT-0, stuck-2) prep(stuck-2, at-3) pobj(at-3, orchard-4) prep(orchard-4, in-5) poss(car-8, my-6) amod(car-8, dad\u2019s-7) pobj(in-5, car-8) dep(stuck-2, Going-10) num(dinner-12, 4-11) dobj(Going-10, dinner-12) dep(leh-16, now-13) nn(leh-16, U-15) dep(they-20, leh-16) advmod(they-20, So-18) cop(they-20, r-19) dep(Going-10, they-20) amod(tonight-22, free-21) dep(they-20, tonight-22)
nsubj(finished-2, I-1) root(ROOT-0, finished-2) poss(lunch-4, my-3) dobj(finished-2, lunch-4) advmod(finished-2, already-5) nsubj(wake-8, U-7) ccomp(finished-2, wake-8) parataxis(finished-2, wake-8) advmod(wake-8, up-9) advmod(wake-8, already-10)
nsubj(late-6, 630-1) cc(630-1, but-2) conj(630-1, i-3) aux(late-6, will-4) cop(late-6, be-5) root(ROOT-0, late-6) mark(lead-15, so-7) mark(know-10, since-8) nsubj(know-10, you-9) advcl(lead-15, know-10) dep(place-12, e-11) dep(know-10, place-12) nsubj(lead-15, You-14) advcl(late-6, lead-15) dobj(lead-15, them-16) advmod(lead-15, there-17) amod(hor-19, first-18) pobj(there-17, hor-19)
nsubj(wat-2, Den-1) root(ROOT-0, wat-2) dobj(wat-2, colour-3) nsubj(picked-5, they-4) rcmod(colour-3, picked-5) num(u-7, 4-6) dobj(picked-5, u-7) nsubj(ah\u002c-12, U-9) advmod(ah\u002c-12, still-10) advmod(ah\u002c-12, there-11) parataxis(wat-2, ah\u002c-12) nsubj(take-14, they-13) ccomp(ah\u002c-12, take-14) advmod(long-16, so-15) advmod(take-14, long-16) cc(wat-2, So-18) aux(get-21, did-19) nsubj(get-21, u-20) conj(wat-2, get-21) nn(hall-23, ur-22) dep(get-21, hall-23)
amod(almond-2, butter\u002c-1) root(ROOT-0, almond-2) cc(almond-2, and-3) conj(almond-2, peanuts-4) dep(almond-2, buy-6) dobj(buy-6, some-7) prep(buy-6, from-8) pobj(from-8, me-9) advmod(buy-6, lah-10) parataxis(buy-6, hehe-12)
nn(noe-2, U-1) nsubj(tutor-8, noe-2) prep(noe-2, of-3) det(Maths-7, any-4) nn(Maths-7, gd-5) nn(Maths-7, Secondary-6) pobj(of-3, Maths-7) root(ROOT-0, tutor-8) acomp(tutor-8, willing-9) aux(teach-11, to-10) xcomp(willing-9, teach-11) dobj(teach-11, student-12) prep(student-12, in-13) nn(area-15, AMK-14) pobj(in-13, area-15)
amod(gal-2, Hey-1) root(ROOT-0, gal-2) dep(gal-2, U-4) vmod(U-4, goin-5) num(today-9, 4-6) amod(today-9, jy\u2019s-7) nn(today-9, play-8) nsubj(bring-15, today-9) dep(bring-15, ?...-10) mark(bring-15, If-11) advmod(rem-13, yes-12) nsubj(bring-15, rem-13) aux(bring-15, to-14) xcomp(goin-5, bring-15) poss(hor-18, my-16) nn(hor-18, ring-17) dobj(bring-15, hor-18)
nsubj(woke-3, She-1) advmod(woke-3, juz-2) root(ROOT-0, woke-3) prt(woke-3, up-4) cc(woke-3, and-5) conj(woke-3, she\u2019s-6) prep(she\u2019s-6, at-7) poss(hse-10, her-8) nn(hse-10, bf-9) pobj(at-7, hse-10) advmod(she\u2019s-6, now-11) nsubj(said-14, She-13) parataxis(woke-3, said-14) amod(thk-16, she\u2019ll-15) nsubj(call-21, thk-16) advmod(eat-19, where-17) aux(eat-19, to-18) rcmod(thk-16, eat-19) vmod(thk-16, eat-19) dobj(eat-19, den-20) ccomp(said-14, call-21) dobj(call-21, me-22) prt(call-21, back-23)
nn(hmm-2, ......-1) nsubj(have-5, hmm-2) xsubj(resign-7, hmm-2) advmod(have-5, really-4) root(ROOT-0, have-5) aux(resign-7, to-6) xcomp(have-5, resign-7) prep(resign-7, to-8) nn(mah-10, fate-9) pobj(to-8, mah-10) mark(meant-15, if-12) nsubj(meant-15, its-13) neg(meant-15, not-14) advcl(resign-7, meant-15) parataxis(resign-7, meant-15) prep(meant-15, to-16) amod(it\u2019ll-18, b\u002c-17) pobj(to-16, it\u2019ll-18) prep(meant-15, not-19) dep(yours-21, b-20) dep(sighz-24, yours-21) advmod(yours-21, also-22) dep(not-19, sighz-24)
poss(friends-2, my-1) nsubj(abt-10, friends-2) cc(friends-2, and-3) conj(friends-2, i-4) prep(friends-2, in-5) det(session-8, a-6) nn(session-8, chat-7) pobj(in-5, session-8) vmod(session-8, discussing-9) root(ROOT-0, abt-10) poss(ambitious-12, her-11) dobj(abt-10, ambitious-12)
num(cooking-3, mother\u2019s-1) neg(cooking-3, not-2) root(ROOT-0, cooking-3) nsubj(go-6, today-5) dep(cooking-3, go-6) prt(go-6, out-7) ccomp(go-6, eat-8)
det(lar-3, No-1) nn(lar-3, need-2) root(ROOT-0, lar-3) dep(lar-3, Jus-5) amod(card-9, testing-6) nn(card-9, e-7) nn(card-9, phone-8) dep(Jus-5, card-9) nn(network-12, Dunno-11) dep(lar-3, network-12) neg(thk-16, not-13) nn(thk-16, gd-14) nn(thk-16, i-15) dep(network-12, thk-16) punct(lar-3, Me-18) dep(bathing-25, waiting-19) num(waiting-19, 4-20) poss(bathing-25, my-21) nn(bathing-25, sis-22) num(bathing-25, 2-23) nn(bathing-25, finish-24) dobj(bathe-29, bathing-25) dep(liao-34, bathing-25) mark(bathe-29, so-26) nsubj(bathe-29, i-27) aux(bathe-29, can-28) dep(bathing-25, bathe-29) nn(liao-34, Dun-31) nn(liao-34, disturb-32) nn(liao-34, u-33) dep(room-38, liao-34) nn(room-38, u-35) nn(room-38, cleaning-36) nn(room-38, ur-37) dep(lar-3, room-38)
det(lah\u002c-2, No-1) nsubj(cos-11, lah\u002c-2) nsubj(didnt-4, she-3) rcmod(lah\u002c-2, didnt-4) ccomp(didnt-4, expect-5) nsubj(fast\u002c-10, us-6) aux(fast\u002c-10, to-7) cop(fast\u002c-10, be-8) advmod(fast\u002c-10, so-9) xcomp(expect-5, fast\u002c-10) root(ROOT-0, cos-11) nsubj(took-13, they-12) xsubj(get-16, they-12) ccomp(cos-11, took-13) tmod(took-13, months-14) aux(get-16, to-15) xcomp(took-13, get-16) advmod(get-16, together-17)
root(ROOT-0, Click-1) prep(Click-1, on-2) dep(on-2, ma1101\u002c-3) advmod(show-7, then-4) nsubj(show-7, they-5) aux(show-7, will-6) rcmod(ma1101\u002c-3, show-7) predet(papers-10, all-8) det(papers-10, the-9) dobj(show-7, papers-10) punct(ma1101\u002c-3, Click-12) prep(wish-17, on-13) det(paper-15, the-14) pobj(on-13, paper-15) nsubj(wish-17, ü-16) xsubj(view-19, ü-16) dep(ma1101\u002c-3, wish-17) aux(view-19, to-18) xcomp(wish-17, view-19) advmod(on-22, Then-21) prep(on-2, on-22) det(window-24, the-23) pobj(on-22, window-24) nsubj(ask-27, they-25) aux(ask-27, will-26) rcmod(window-24, ask-27) dobj(ask-27, ü-28) mark(wish-31, whether-29) nsubj(wish-31, ü-30) xsubj(view-33, ü-30) ccomp(ask-27, wish-31) aux(view-33, to-32) xcomp(wish-31, view-33) dobj(view-33, it\u002c-34) advmod(view-33, then-35) dobj(view-33, ü-36)
root(ROOT-0, Hmmm-1) nsubj(have-4, Dun-3) dep(Hmmm-1, have-4) nn(payoh-8, Thk-6) nn(payoh-8, toa-7) nsubj(Troublesome-11, payoh-8) aux(Troublesome-11, got-9) conj(have-4, Troublesome-11) num(cos-15, 4-12) nn(cos-15, u-13) amod(cos-15, anot\u002c-14) nsubj(u-16, cos-15) ccomp(Troublesome-11, u-16) advmod(u-16, still-17) dep(u-16, have-18) aux(cut-20, to-19) xcomp(have-18, cut-20) dobj(cut-20, cake-21) cc(have-4, Or-23) nsubj(wan-25, u-24) conj(have-4, wan-25) det(day-27, another-26) tmod(wan-25, day-27) advmod(wan-25, instead-28)
poss(i-3, My-1) amod(i-3, dear\u002c-2) nsubj(m-4, i-3) root(ROOT-0, m-4) advmod(m-4, still-5) xcomp(m-4, having-6) vmod(having-6, meeting-7) parataxis(m-4, Add-9) nsubj(pray-12, oil\u002c-10) aux(pray-12, will-11) ccomp(Add-9, pray-12) prep(pray-12, for-13) pobj(for-13, u-14)
nn(i-2, hey-1) nsubj(think-3, i-2) root(ROOT-0, think-3) amod(cannot-5, i-4) nsubj(finish-6, cannot-5) ccomp(think-3, finish-6) det(prototype-8, the-7) dobj(finish-6, prototype-8) dep(prototype-8, tonight-9) dep(tonight-9, can-11) dobj(bring-14, can-11) nsubj(bring-14, I-12) advmod(bring-14, jus-13) rcmod(can-11, bring-14) prep(bring-14, during-15) det(meeting-18, the-16) amod(meeting-18, next-17) pobj(during-15, meeting-18) dep(tonight-9, Thanks-20) dep(finish-6, See-22) dobj(See-22, ya-23)
aux(going-3, r-1) nsubj(going-3, u-2) xsubj(lecture-5, u-2) root(ROOT-0, going-3) aux(lecture-5, to-4) xcomp(going-3, lecture-5)
advmod(wanted-4, Actually-1) tmod(wanted-4, today-2) nsubj(wanted-4, I-3) xsubj(mail-6, I-3) root(ROOT-0, wanted-4) aux(mail-6, to-5) xcomp(wanted-4, mail-6) iobj(mail-6, you-7) det(sooo-12, a-8) amod(sooo-12, present-9) amod(sooo-12, ..-10) amod(sooo-12, It\u2019s-11) dobj(mail-6, sooo-12) dobj(make-17, sooo-12) nn(Confirm-15, cute-13) nsubj(make-17, Confirm-15) aux(make-17, will-16) rcmod(sooo-12, make-17) nsubj(smile-19, you-18) ccomp(make-17, smile-19) cc(asked-25, But-21) det(postman-24, the-22) amod(postman-24, stupid-23) nsubj(asked-25, postman-24) xsubj(get-28, postman-24) parataxis(wanted-4, asked-25) dobj(asked-25, me-26) aux(get-28, to-27) xcomp(asked-25, get-28) prt(get-28, out-29) prep(get-28, of-30) det(..-33, the-31) nn(..-33, mailbox-32) pobj(of-30, ..-33)
aux(meet-3, Can-1) nsubj(meet-3, i-2) root(ROOT-0, meet-3) dobj(meet-3, ü-4) prep(meet-3, at-5) pobj(at-5, 5-6) dep(meet-3, ..-7) prep(..-7, As-8) pobj(As-8, 4-9) advmod(depends-11, where-10) dep(meet-3, depends-11) prep(depends-11, on-12) advmod(wan-15, where-13) nsubj(wan-15, ü-14) pcomp(on-12, wan-15) dobj(wan-15, 2-16) prep(wan-15, in-17) nn(..-19, lor-18) pobj(in-17, ..-19)
nsubj(tried-2, I\u2019ve-1) xsubj(send-4, I\u2019ve-1) root(ROOT-0, tried-2) aux(send-4, to-3) xcomp(tried-2, send-4) amod(email-6, u-5) iobj(send-4, email-6) amod(times\u002c-8, several-7) dobj(send-4, times\u002c-8) cc(tried-2, but-9) advmod(tried-2, always-10) conj(tried-2, always-10) auxpass(rejected-12, got-11) conj(tried-2, rejected-12)
root(ROOT-0, haha-1) prep(haha-1, like-2) pobj(like-2, real-3) nsubj(makes-6, wat-5) dep(haha-1, makes-6) amod(tat-9, u-7) nn(tat-9, tink-8) dobj(makes-6, tat-9) nsubj(do-12, he-10) aux(do-12, will-11) rcmod(tat-9, do-12) poss(huh-15, my-13) nn(huh-15, bidding-14) dobj(do-12, huh-15)
nn(dun-2, Ã-1) nsubj(need-3, dun-2) xsubj(pick-5, dun-2) root(ROOT-0, need-3) aux(pick-5, to-4) xcomp(need-3, pick-5) nn(gf-7, ur-6) dobj(pick-5, gf-7)
mark(need-5, By-1) nsubj(need-5, nets-2) xsubj(pay-7, nets-2) cc(nets-2, or-3) conj(nets-2, cheque\u002c-4) root(ROOT-0, need-5) aux(pay-7, to-6) xcomp(need-5, pay-7) prep(pay-7, at-8) nn(BUREAU\\u002c-10, RELC-9) pobj(at-8, BUREAU\\u002c-10) prep(BUREAU\\u002c-10, near-11) nn(hotel-14, orchard-12) nn(hotel-14, ShangRiLa-13) pobj(near-11, hotel-14)
prep(got-3, Of-1) pobj(Of-1, course-2) root(ROOT-0, got-3) dobj(got-3, use-4) nn(U-7, lah-5) nsubj(jia-9, U-7) aux(jia-9, must-8) rcmod(use-4, jia-9) iobj(jia-9, you-10) dobj(jia-9, k-11) num(days-15, 2-13) quantmod(2-13, more-14) dep(k-11, days-15) cc(jia-9, and-16) nsubj(enjoy-19, u-17) aux(enjoy-19, can-18) conj(jia-9, enjoy-19) nn(:-)-23, liao-20) nn(:-)-23, oh-21) nsubj(got-3, :-)-23)
det(e-2, All-1) root(ROOT-0, e-2) amod(e-2, best-3) num(:-)-8, 4-4) nn(:-)-8, ur-5) amod(:-)-8, driving-6) amod(:-)-8, tmr-7) dep(e-2, :-)-8)
amod(Something-3, Hey-1) amod(Something-3, ..-2) nsubj(came-4, Something-3) dep(Think-9, came-4) prt(came-4, up-5) amod(..-8, last-6) nn(..-8, min-7) dobj(came-4, ..-8) root(ROOT-0, Think-9) advmod(Think-9, i-10) advmod(Think-9, wun-11) aux(signing-13, be-12) dep(Think-9, signing-13) prt(signing-13, up-14) dobj(signing-13, tmr-15) nn(Hee-17, ..-16) nsubj(Think-9, Hee-17)
nn(..-2, Erm-1) root(ROOT-0, ..-2) advmod(..-2, up-3) prep(up-3, to-4) pobj(to-4, you-5) dep(..-2, I-7) aux(prefer-9, will-8) rcmod(I-7, prefer-9) aux(borrow-11, to-10) xcomp(prefer-9, borrow-11) dobj(borrow-11, it-12) advmod(borrow-11, though-13) dep(..-2, Lord-15) prep(Lord-15, of-16) det(Rings-18, the-17) pobj(of-16, Rings-18) advmod(want-23, how-19) nn(doesn\u2019t-22, Shangbin-21) nsubj(want-23, doesn\u2019t-22) xsubj(join-25, doesn\u2019t-22) dep(Lord-15, want-23) aux(join-25, to-24) xcomp(want-23, join-25) dobj(join-25, us-26) mark(watched-30, because-27) nsubj(watched-30, he-28) aux(watched-30, has-29) advcl(join-25, watched-30) dobj(watched-30, it-31)
nn(dun-2, i-1) nsubj(think-3, dun-2) root(ROOT-0, think-3) nsubj(going-7, i-4) aux(going-7, will-5) aux(going-7, be-6) ccomp(think-3, going-7) amod(caus-9, ..-8) dobj(going-7, caus-9) nsubj(have-11, i-10) xsubj(hand-13, i-10) dep(caus-9, have-11) aux(hand-13, to-12) xcomp(have-11, hand-13) prep(hand-13, in-14) poss(draft-18, my-15) amod(draft-18, first-16) nn(draft-18, hyp-17) pobj(in-14, draft-18) prep(draft-18, on-19) pobj(on-19, mon-20) dep(caus-9, streszzzz-22)
dep(had-13, wow-1) nsubj(join-5, you-3) advmod(join-5, also-4) dep(wow-1, join-5) det(trend-7, the-6) dobj(join-5, trend-7) prep(trend-7, of-8) nn(sia-10, mlm-9) pobj(of-8, sia-10) nsubj(had-13, i-12) root(ROOT-0, had-13) ccomp(had-13, listen-14) prep(listen-14, to-15) det(too-17, some-16) pobj(to-15, too-17) cc(had-13, But-19) dep(lets-28, not-20) dep(not-20, interested-21) prep(interested-21, in-22) advmod(yet-24, any-23) pcomp(in-22, yet-24) nn(la-27, Can-26) nsubj(lets-28, la-27) conj(had-13, lets-28) ccomp(lets-28, meet-29) det(time-31, any-30) dobj(meet-29, time-31)
nsubj(wanted-2, I-1) xsubj(say-4, I-1) root(ROOT-0, wanted-2) aux(say-4, to-3) xcomp(wanted-2, say-4) nsubj(you-7, that-5) aux(you-7, to-6) dobj(say-4, you-7) prep(you-7, on-8) pobj(on-8, saturday-9) cc(you-7, but-10) mark(want-13, since-11) nsubj(want-13, you-12) conj(you-7, want-13) nsubj(say-16, me-14) aux(say-16, to-15) xcomp(want-13, say-16) dobj(say-16, it-17) prep(say-16, to-18) pobj(to-18, you-19) advmod(say-16, now-20) nsubj(say-23, I\u2019ll-22) dep(you-7, say-23)
nsubj(is-2, This-1) xsubj(test-5, This-1) root(ROOT-0, is-2) advmod(test-5, just-3) aux(test-5, to-4) xcomp(is-2, test-5) mark(working-10, whether-6) det(function-8, this-7) nsubj(working-10, function-8) aux(working-10, is-9) ccomp(test-5, working-10) mark(seems-13, as-11) nsubj(seems-13, it-12) xsubj(be-15, it-12) advcl(working-10, seems-13) aux(be-15, to-14) xcomp(seems-13, be-15) prep(be-15, for-16) det(project-20, the-17) nn(project-20, honours-18) nn(project-20, year-19) pobj(for-16, project-20) prep(project-20, of-21) pobj(of-21, Analysis-22) prep(Analysis-22, of-23) nn(efficiency-25, SMS-24) pobj(of-23, efficiency-25)
dep(win-11, Yup-1) nn(match-4, Tomorrow\u2019s-3) nsubj(important-7, match-4) cop(important-7, is-5) advmod(important-7, very-6) rcmod(Yup-1, important-7) mark(win-11, If-9) nsubj(win-11, we-10) advcl(get-15, win-11) dobj(win-11, it-12) nsubj(get-15, we\u2019ll-13) advmod(get-15, definitely-14) root(ROOT-0, get-15) prep(get-15, into-16) pobj(into-16, round-17) num(round-17, 2-18)
root(ROOT-0, ok-1) advmod(ready-3, ..-2) acomp(ok-1, ready-3) nsubj(go-6, ..-4) aux(go-6, will-5) ccomp(ready-3, go-6) prep(go-6, in-7) det(:D-11, an-8) nn(:D-11, hrs-9) nn(:D-11, time-10) pobj(in-7, :D-11)
dep(lend-6, Hmmm-1) nn(i-5, U-3) nn(i-5, wan-4) nsubj(lend-6, i-5) dep(i-12, lend-6) nsubj(u-9, it-7) aux(u-9, to-8) xcomp(lend-6, u-9) amod(thk-11, lor\u002c-10) dobj(u-9, thk-11) advcl(thkin-35, i-12) nn(wan-17, dun-13) nn(wan-17, nd-14) nn(wan-17, la\u002c-15) nn(wan-17, i-16) dobj(i-12, wan-17) iobj(i-12, wan-17) poss(notes-19, my-18) dep(wan-17, notes-19) advmod(i-12, more-20) parataxis(i-12, Gee-22) amod(coasters-26, Oh\u002c-24) amod(coasters-26, e-25) dep(Gee-22, coasters-26) num(share-31, 4-27) amod(share-31, cow-28) nn(share-31, u-29) nn(share-31, wana-30) nsubj(i-12, share-31) nsubj(thkin-35, I-33) cop(thkin-35, was-34) root(ROOT-0, thkin-35) prep(thkin-35, of-36) nn(cups-38, gettin-37) pobj(of-36, cups-38) num(cups-38, 4-39) dep(thkin-35, her-40) advmod(her-40, too-41)
nsubj(sat-2, this-1) root(ROOT-0, sat-2) num(tennis-5, wan-3) nn(tennis-5, play-4) dobj(sat-2, tennis-5)
dep(ru\u002c-22, Sorry-1) cc(think-5, but-2) advmod(think-5, personally-3) nsubj(think-5, I-4) dep(Sorry-1, think-5) det(2day-9, this-6) nn(2day-9, guy-7) nn(2day-9, performance-8) nsubj(beta-12, 2day-9) cop(beta-12, is-10) neg(beta-12, not-11) ccomp(think-5, beta-12) prep(beta-12, than-13) amod(weeks-16, last-14) amod(weeks-16, few-15) pobj(than-13, weeks-16) nn(tou-21, Yuh-18) nn(tou-21, v-19) nsubj(ru\u002c-22, tou-21) root(ROOT-0, ru\u002c-22) cc(ru\u002c-22, but-23) nsubj(beta-26, Daniel-24) cop(beta-26, is-25) conj(ru\u002c-22, beta-26) advmod(tt-28, Later-27) dep(beta-26, tt-28) acomp(tt-28, stupid-29) nn(V-33, Xing-30) nn(V-33, Qing-31) nsubj(tt-28, V-33) dep(beta-26, funny-35)
root(ROOT-0, Let-1) nsubj(Wat-5, me-2) dep(Wat-5, c-3) ccomp(Let-1, Wat-5) advmod(Wat-5, exactly-6) aux(doing-12, will-7) poss(GAL-10, our-8) amod(GAL-10, BDAE-9) nsubj(doing-12, GAL-10) aux(doing-12, be-11) dep(haf-25, doing-12) prep(doing-12, on-13) amod(wed-15, next-14) pobj(on-13, wed-15) dep(doing-12, hmm-17) nsubj(looks-21, kekeke-19) ccomp(hmm-17, looks-21) parataxis(hmm-17, looks-21) mark(haf-25, like-22) nsubj(haf-25, i-23) xsubj(free-28, i-23) advmod(haf-25, definitely-24) advcl(Let-1, haf-25) ccomp(Let-1, haf-25) aux(free-28, to-26) cop(free-28, be-27) xcomp(haf-25, free-28) prep(free-28, on-29) predet(liao-34, such-30) det(liao-34, a-31) amod(liao-34, joyous-32) nn(liao-34, day-33) pobj(on-29, liao-34)
dep(rem-16, SEnding-1) det(hug-3, a-2) dobj(SEnding-1, hug-3) aux(make-5, to-4) vmod(hug-3, make-5) nsubj(feel-7, u-6) ccomp(make-5, feel-7) acomp(feel-7, warm-8) det(smile-11, A-10) nsubj(rem-16, smile-11) aux(make-13, to-12) vmod(smile-11, make-13) amod(u-15, sure-14) dobj(make-13, u-15) root(ROOT-0, rem-16) dobj(rem-16, me-17) cc(me-17, &-18) aux(wish-20, to-19) conj(me-17, wish-20) vmod(me-17, wish-20) nsubj(good-22, you-21) xcomp(wish-20, good-22) nn(Sweet-25, nitez-23) nsubj(dreams-26, Sweet-25) ccomp(good-22, dreams-26)
amod(birthday-3, Happy-1) amod(birthday-3, 22nd-2) dep(enjoy-27, birthday-3) dep(birthday-3, May-5) dobj(wishes-8, May-5) det(ur-7, all-6) nsubj(wishes-8, ur-7) rcmod(May-5, wishes-8) ccomp(wishes-8, come-9) amod(stay-11, true\u002c-10) dobj(come-9, stay-11) dep(birthday-3, pretty-12) det(successes-15, all-13) amod(successes-15, time\u002c-14) pobj(pretty-12, successes-15) prep(pretty-12, in-16) amod(romances-19, ur-17) amod(romances-19, career\u002c-18) pobj(in-16, romances-19) dep(birthday-3, fall-20) prep(fall-20, on-21) pobj(on-21, u-22) nn(n-26, Stay-24) amod(n-26, happy-25) nsubj(enjoy-27, n-26) root(ROOT-0, enjoy-27) nn(birthday-29, ur-28) dobj(enjoy-27, birthday-29)
nsubj(live-2, I-1) root(ROOT-0, live-2) nn(la-5, pasir-3) nn(la-5, ris-4) dobj(live-2, la-5) cc(now-8, And-7) dep(la-5, now-8) advmod(at-11, i-9) neg(at-11, not-10) prep(now-8, at-11) pcomp(at-11, home-12) nsubj(am-15, I-14) dep(live-2, am-15) prep(am-15, in-16) det(north-18, the-17) pobj(in-16, north-18)
poss(m-4, My-1) amod(m-4, dear\u002c-2) amod(m-4, i-3) nsubj(listening-5, m-4) xsubj(lecture-8, m-4) root(ROOT-0, listening-5) aux(lecture-8, to-6) dep(lecture-8, e-7) xcomp(listening-5, lecture-8) prep(lecture-8, on-9) pobj(on-9, interview-10) cc(lecture-8, and-11) conj(lecture-8, resume-12) poss(dear\u002c-15, My-14) nsubj(hope-16, dear\u002c-15) dep(resume-12, hope-16) mark(study-20, that-17) nsubj(study-20, u-18) aux(study-20, can-19) ccomp(hope-16, study-20) dobj(study-20, la-21) nsubj(pray-25, I-23) aux(pray-25, will-24) parataxis(hope-16, pray-25) prep(pray-25, for-26) pobj(for-26, u-27)
advmod(Nigel-4, Hi\u002c-1) nsubj(Nigel-4, this-2) cop(Nigel-4, is-3) root(ROOT-0, Nigel-4) amod(steamboat-37, I\u2019ll-6) prep(I\u2019ll-6, like-7) aux(wish-9, to-8) xcomp(I\u2019ll-6, wish-9) dobj(wish-9, u-10) det(merry-13, a-11) amod(merry-13, belated-12) dep(x\u2019mas-14, merry-13) dep(hoping-18, x\u2019mas-14) nsubj(hoping-18, I-16) aux(hoping-18, was-17) ccomp(I\u2019ll-6, hoping-18) nsubj(meet-21, we-19) aux(meet-21, could-20) ccomp(hoping-18, meet-21) prt(meet-21, up-22) prep(meet-21, for-23) det(dinner-26, a-24) nn(dinner-26, reunion-25) pobj(for-23, dinner-26) nsubj(sat-28, this-27) rcmod(dinner-26, sat-28) number(3-30, (-29) num()-33, 3-30) nn()-33, jan-31) num()-33, 04-32) dobj(sat-28, )-33) prep(sat-28, at-34) pobj(at-34, marina-35) amod(steamboat-37, south-36) dep(Nigel-4, steamboat-37) advmod(pls-40, So-39) dep(Nigel-4, pls-40) rcmod(pls-40, confirm-41) prep(confirm-41, with-42) pobj(with-42, me-43) prep(with-42, by-44) dep(by-44, wed-45) dep(wed-45, (-46) num()-49, 31-47) nn()-49, dec-48) dobj((-46, )-49) mark(joining-57, whether-50) nsubj(joining-57, you-51) cc(you-51, and-52) poss(partner-54, your-53) conj(you-51, partner-54) aux(joining-57, will-55) aux(joining-57, be-56) ccomp((-46, joining-57) dobj(joining-57, us-58) discourse(feel-61, Please-60) ccomp(confirm-41, feel-61) acomp(feel-61, free-62) aux(call-64, to-63) xcomp(free-62, call-64) dobj(call-64, me-65) mark(have-68, if-66) nsubj(have-68, you-67) advcl(call-64, have-68) det(queries-70, any-69) dobj(have-68, queries-70) cc(queries-70, or-71) conj(queries-70, suggestions-72) dep(Nigel-4, Thanks-74)
nsubj(put-2, Dun-1) root(ROOT-0, put-2) dobj(put-2, words-3) prep(put-2, into-4) poss(din-8, my-5) amod(din-8, mouth\u002c-6) amod(din-8, i-7) pobj(into-4, din-8) rcmod(din-8, say-9) dobj(say-9, dat-10) det(wat-14, No-12) nn(wat-14, matter-13) nsubj(becomes-15, wat-14) rcmod(dat-10, becomes-15) prep(becomes-15, of-16) amod(i-18, u-17) pobj(of-16, i-18) advmod(of-16, still-19) amod(k-21, wan-20) dep(say-9, k-21) cc(break-25, But-23) dep(break-25, dun-24) dep(k-21, break-25) dep(dun-30, e-26) nn(Aiyar-29, bed-27) nsubj(dun-30, Aiyar-29) dep(break-25, dun-30) nsubj(lar-33, crap-31) advmod(lar-33, already-32) ccomp(dun-30, lar-33) dobj(lar-33, u-34) dep(put-2, Say-36) prep(Say-36, until-37) nn(hungry-39, i-38) pobj(until-37, hungry-39)
aux(scold-4, Did-1) nsubj(scold-4, i-2) advmod(scold-4, really-3) dep(give-15, scold-4) nn(didnt-10, u-5) nn(didnt-10, I\u2019m-7) nn(didnt-10, sorry\u002c-8) nn(didnt-10, i-9) nsubj(mean-11, didnt-10) ccomp(scold-4, mean-11) dobj(mean-11, it-12) nsubj(give-15, U-14) root(ROOT-0, give-15) iobj(give-15, me-16) poss(num\u002c-18, his-17) dobj(give-15, num\u002c-18) dobj(go-20, num\u002c-18) nsubj(go-20, i-19) rcmod(num\u002c-18, go-20) dep(go-20, scold-21) nsubj(go-33, him-22) amod(tmr-25, Yah\u002c-24) dep(him-22, tmr-25) vmod(him-22, going-26) prep(going-26, to-27) pobj(to-27, school-28) prep(going-26, in-29) amod(den-32, e-30) nn(den-32, morning-31) pobj(in-29, den-32) ccomp(scold-21, go-33) xcomp(go-33, work-34) amod(tut-36, aft-35) dobj(work-34, tut-36)
amod(lotr-3, I\u2019m-1) nn(lotr-3, watching-2) nsubj(w-4, lotr-3) root(ROOT-0, w-4) poss(aft-8, my-5) nn(aft-8, sis-6) nn(aft-8, dis-7) dobj(w-4, aft-8) dep(w-4, So-10) nn(wan-12, u-11) nsubj(meet-14, wan-12) num(wan-12, 2-13) ccomp(w-4, meet-14) parataxis(w-4, meet-14) nsubj(nite-19, me-15) num(dinner-17, 4-16) npadvmod(at-18, dinner-17) advmod(nite-19, at-18) ccomp(meet-14, nite-19) det(not-21, a-20) dobj(nite-19, not-21)
root(ROOT-0, Okie-1) advmod(meet-4, Then-3) dep(Okie-1, meet-4) prep(meet-4, at-5) pobj(at-5, orchard-6)
amod(dear\u002c-3, don\u2019t-1) nn(dear\u002c-3, worry-2) nsubj(go-5, dear\u002c-3) advmod(go-5, just-4) root(ROOT-0, go-5) cc(go-5, and-6) conj(go-5, enjoy-7) dep(..-10, yourself-8) amod(..-10, first-9) dobj(enjoy-7, ..-10) dep(go-5, take-11) dobj(take-11, it-12) prep(take-11, as-13) det(break-15, a-14) pobj(as-13, break-15)
cc(be-3, But-1) nsubj(be-3, i\u2019ll-2) xsubj(do-7, i\u2019ll-2) root(ROOT-0, be-3) prep(be-3, in-4) pobj(in-4, school-5) aux(do-7, to-6) xcomp(be-3, do-7) det(lor-10, some-8) nn(lor-10, work-9) dobj(do-7, lor-10)
nsubj(go-12, Aiyo-1) dep(Aiyo-1, Ok-3) mark(u-8, If-5) nn(wkend-7, tis-6) nsubj(u-8, wkend-7) dep(go-12, u-8) amod(den-10, free-9) dobj(u-8, den-10) aux(go-12, can-11) root(ROOT-0, go-12) prt(go-12, out-13) dobj(go-12, lor-14)
advmod(u-2, where-1) root(ROOT-0, u-2) dep(u-2, going-3)
root(ROOT-0, Yup-1) nsubj(elaborating-3, i\u2019m-2) dep(Yup-1, elaborating-3) prep(elaborating-3, on-4) det(aspects-7, the-5) nn(aspects-7, safety-6) pobj(on-4, aspects-7) cc(aspects-7, and-8) det(issues-11, some-9) amod(issues-11, other-10) conj(aspects-7, issues-11) amod(issues-11, ..-12)
root(ROOT-0, So-1) dep(So-1, sorry-2) csubj(forgot-9, woke-3) prt(woke-3, up-4) advmod(late-6, too-5) dep(woke-3, late-6) advmod(forgot-9, then-8) ccomp(sorry-2, forgot-9) aux(open-11, to-10) xcomp(forgot-9, open-11) poss(fon-14, my-12) nn(fon-14, hand-13) dobj(open-11, fon-14)
dep(So-8, Really-1) nn(difference-4, Got-3) dep(Really-1, difference-4) num(meh-6, one-5) dep(difference-4, meh-6) root(ROOT-0, So-8) amod(roommate-11, how\u2019s-9) nn(roommate-11, ur-10) dep(So-8, roommate-11)
advmod(u-2, When-1) root(ROOT-0, u-2) det(c-6, all-3) amod(c-6, wan-4) num(c-6, 2-5) dobj(u-2, c-6)
dep(thought-7, Yah-1) advmod(Yah-1, still-2) prep(Yah-1, in-3) nn(..-5, office-4) pobj(in-3, ..-5) nsubj(thought-7, I-6) root(ROOT-0, thought-7) advmod(come-9, how-8) ccomp(thought-7, come-9) nsubj(reply-12, u-10) neg(reply-12, never-11) ccomp(come-9, reply-12) nsubj(make-14, me\u002c-13) ccomp(reply-12, make-14) dobj(make-14, me-15) mark(thought-20, so-16) amod(i-19, worried\u002c-17) nn(i-19, den-18) nsubj(thought-20, i-19) advcl(make-14, thought-20) nsubj(driving-24, u-21) aux(driving-24, might-22) aux(driving-24, be-23) ccomp(thought-20, driving-24) mark(want-27, so-25) nsubj(want-27, didnt-26) xsubj(call-29, didnt-26) advcl(driving-24, want-27) aux(call-29, to-28) xcomp(want-27, call-29) dobj(call-29, u-30)
root(ROOT-0, Think-1) dobj(Think-1, u-2) xcomp(Think-1, having-3) dep(hahh-10, e-4) amod((-7, post-attach-5) nn((-7, syndrome-6) nsubj(hahh-10, (-7) prep((-7, like-8) pobj(like-8, me-9) advcl(reciprocate-27, hahh-10) nn(..-12, )-11) nsubj(relax-13, ..-12) ccomp(hahh-10, relax-13) nn(..-15, lah-14) dobj(relax-13, ..-15) advmod(relax-13, just-16) dep(relax-13, enjoy-17) dep(enjoy-17, e-18) nsubj(reciprocate-27, feeling-19) prep(feeling-19, of-20) pcomp(of-20, having-21) nn(dote-23, somebody-22) dobj(having-21, dote-23) prep(having-21, on-24) nn(n-26, u-25) pobj(on-24, n-26) ccomp(having-3, reciprocate-27) dep(reciprocate-27, e-28) xcomp(reciprocate-27, feeling-29) mark(..-33, if-30) nsubj(..-33, u-31) aux(..-33, can-32) advcl(feeling-29, ..-33)
advmod(noe-5, Only-1) nsubj(noe-5, leona-2) cc(leona-2, and-3) conj(leona-2, Shuhui-4) root(ROOT-0, noe-5) nsubj(mah-7, me-6) xcomp(noe-5, mah-7) amod(mah-7, Lucky-9) dep(dunno-12, e-10) nsubj(dunno-12, guys-11) ccomp(Lucky-9, dunno-12) dobj(dunno-12, me-13)
nsubj(hahaha-5, Cakkavala-1) cop(hahaha-5, is-2) nn(hahaha-5, FAR-3) root(ROOT-0, hahaha-5) amod(time-9, oh\u002c-7) amod(time-9, first-8) dep(hahaha-5, time-9) vmod(time-9, heard-10) dobj(heard-10, this-11) prep(heard-10, from-12) pobj(from-12, u-13)
amod(relatives-2, ..-1) root(ROOT-0, relatives-2) advmod(now-4, just-3) dep(relatives-2, now-4) punct(relatives-2, Long-6) dep(relatives-2, time-7) advmod(time-7, no-8) dep(liao\u002c-10, c-9) dep(Shiying-29, liao\u002c-10) det(v-13, some-11) nn(v-13, cousins-12) dep(liao\u002c-10, v-13) amod(liao\u002c-16, old-15) dep(v-13, liao\u002c-16) cc(liao\u002c-16, &-17) advmod(distant-19, really-18) conj(liao\u002c-16, distant-19) dep(v-13, Duno-21) ref(Duno-21, what-22) dobj(say-24, what-22) nsubj(say-24, 2-23) rcmod(Duno-21, say-24) nsubj(them-26, 2-25) xcomp(say-24, them-26) advmod(Shiying-29, Even-28) dep(time-7, Shiying-29) nsubj(dunno-32, I-30) advmod(dunno-32, also-31) ccomp(Shiying-29, dunno-32) dobj(talk-35, what-33) nsubj(talk-35, 2-34) ccomp(dunno-32, talk-35) prep(talk-35, with-36) pobj(with-36, her-37)
advmod(heard-4, Just-1) advmod(heard-4, now-2) nsubj(heard-4, i-3) root(ROOT-0, heard-4) dobj(heard-4, thunder-5) cc(heard-4, but-6) amod(sky-8, e-7) nsubj(looks-10, sky-8) advmod(looks-10, still-9) conj(heard-4, looks-10) nn(Hee-13, ok-11) nsubj(i-19, Hee-13) dep(i-19, ..-14) mark(i-19, If-15) advmod(i-19, really-16) nn(den-18, rain-17) nsubj(i-19, den-18) xcomp(looks-10, i-19) det(need-21, no-20) dobj(i-19, need-21) aux(run-23, to-22) vmod(need-21, run-23) amod(i-25, liao\u002c-24) dobj(run-23, i-25) advmod(run-23, also-26) dep(i-19, lazy-27) cc(i-19, but-28) det(choice-30, no-29) nsubj(have-31, choice-30) xsubj(force-33, choice-30) conj(i-19, have-31) aux(force-33, to-32) xcomp(have-31, force-33) nsubj(run-36, myself-34) aux(run-36, to-35) xcomp(force-33, run-36)
nsubj(crazy-3, this-1) cop(crazy-3, is-2) root(ROOT-0, crazy-3) discourse(playin-8, man-4) nsubj(playin-8, everyone-6) cop(playin-8, is-7) ccomp(crazy-3, playin-8) dep(playin-8, gunbound-9) det(world-13, the-11) amod(world-13, whole-12) nsubjpass(playin-15, world-13) auxpass(playin-15, is-14) ccomp(playin-8, playin-15) amod(!!!!!!!-19, tt-16) amod(!!!!!!!-19, stupid-17) nn(!!!!!!!-19, game-18) dobj(playin-15, !!!!!!!-19)
root(ROOT-0, Hey-1) dep(Hey-1, So-3) advmod(go-20, how-4) npadvmod(in-8, I\u2019m-6) advmod(I\u2019m-6, still-7) prep(go-20, in-8) nn(leh-10, town-9) pobj(in-8, leh-10) nn(b-14, Thk-12) nn(b-14, i\u2019ll-13) dep(leh-10, b-14) vmod(leh-10, done-15) prep(done-15, at-16) pobj(at-16, 3-17) nsubj(go-20, Cant-19) dep(So-3, go-20) dobj(go-20, yck-21) prep(go-20, in-22) pobj(in-22, time-23) dep(time-23, Paiseh-25)
dep(result-14, hey-1) num(hey-1, guys\u002c-2) dep(result-14, result-3) prt(result-3, out-4) prep(result-3, by-5) nn(huh-7, today-6) pobj(by-5, huh-7) dep(result-3, dun-9) dobj(dun-9, mind-10) dep(dun-9, tell-11) dobj(tell-11, me-12) amod(result-14, ya-13) root(ROOT-0, result-14)
nn(..-2, Hee-1) nsubj(wake-4, ..-2) advmod(wake-4, Just-3) root(ROOT-0, wake-4) advmod(wake-4, up-5) prep(wake-4, not-6) advmod(ago-8, long-7) dep(not-6, ago-8) dep(ago-8, Going-10) prep(Going-10, to-11) pobj(to-11, office-12) advmod(Going-10, soon-13) dep(wake-4, So-15) nsubj(having-17, u-16) parataxis(wake-4, having-17) nn(lunch-19, ur-18) dobj(having-17, lunch-19) advmod(having-17, now-20)
discourse(keke-3, Sure-1) dep(u-7, keke-3) nn(..-5, keke-4) dobj(keke-3, ..-5) aux(u-7, will-6) root(ROOT-0, u-7) dobj(u-7, b-8) nn(sy-10, meeting-9) dep(b-8, sy-10) advmod(u-12, when-11) dep(sy-10, u-12) dep(sy-10, back-13) num(johor-15, 2-14) pobj(back-13, johor-15) mark(have-18, if-17) advcl(u-7, have-18) amod(u-21, i\u2019ll-19) nn(u-21, pass-20) dobj(have-18, u-21) poss(gift-26, her-22) amod(gift-26, bday-23) nn(gift-26, n-24) nn(gift-26, xmas-25) nsubj(u-7, gift-26)
nsubj(going-3, i-1) aux(going-3, am-2) root(ROOT-0, going-3) dobj(going-3, dinner-4) iobj(going-3, dinner-4) prep(dinner-4, with-5) poss(friends-7, my-6) pobj(with-5, friends-7) nn(ok-12, U-9) nn(ok-12, study-10) amod(ok-12, hard-hard-11) dep(dinner-4, ok-12) dobj(doing-17, What-14) aux(doing-17, are-15) nsubj(doing-17, u-16) dep(dinner-4, doing-17) dep(dinner-24, Very-19) dep(dinner-24, tired-20) punct(dinner-24, Had-22) nn(dinner-24, ur-23) dep(doing-17, dinner-24) dep(going-3, Take-26) dobj(Take-26, care-27) dep(Take-26, see-28) dobj(see-28, u-29)
nsubj(see-2, ya-1) root(ROOT-0, see-2) dobj(see-2, ü-3) advmod(see-2, soon-4) aux(meet-8, must-6) advmod(meet-8, really-7) parataxis(see-2, meet-8) prt(meet-8, up-9)
root(ROOT-0, Hmmm-1) nn(d-4, Thk-3) dep(Hmmm-1, d-4) amod(biscuit-6, lor\u002c-5) nsubj(hear-19, biscuit-6) mark(tt-16, Although-8) nn(kind-12, i-9) nn(kind-12, dunno-10) nn(kind-12, wat-11) nsubj(tt-16, kind-12) prep(kind-12, of-13) pobj(of-13, biscuit-14) cop(tt-16, is-15) parataxis(hear-19, tt-16) neg(hear-19, Never-18) rcmod(d-4, hear-19) dobj(hear-19, b4-20)
amod(birthday-2, happy-1) nsubj(hope-6, birthday-2) advmod(wendy-4, dear-3) rcmod(birthday-2, wendy-4) root(ROOT-0, hope-6) nsubj(turns-8, everything-7) ccomp(hope-6, turns-8) prt(turns-8, out-9) advmod(turns-8, well-10) prep(turns-8, in-11) poss(life-13, your-12) pobj(in-11, life-13)
nn(camera\u002c-7, Hi-1) nn(camera\u002c-7, ..-2) nn(camera\u002c-7, Erm-3) nn(camera\u002c-7, ..-4) nn(camera\u002c-7, abt-5) nn(camera\u002c-7, d-6) dep(me-12, camera\u002c-7) cop(me-12, is-8) nsubj(me-12, it-9) amod(it-9, possible-10) number(possible-10, 4-11) dep(Erm-23, me-12) dep(make-14, 2-13) dep(me-12, make-14) dobj(make-14, checks-15) prep(make-14, on-16) amod(camera-18, d-17) pobj(on-16, camera-18) num(buying-21, 1st-19) amod(buying-21, b4-20) dep(make-14, buying-21) dep(meet-26, Erm-23) aux(meet-26, can-24) nsubj(meet-26, i-25) dep(got-37, meet-26) dobj(meet-26, u-27) prep(meet-26, at-28) advmod(tt-30, somewhere-29) pobj(at-28, tt-30) vmod(tt-30, got-31) dep(meet-26, pc-32) mark(check-36, so-33) nsubj(check-36, tt-34) aux(check-36, can-35) advcl(pc-32, check-36) root(ROOT-0, got-37) amod(pixels-39, dead-38) dobj(got-37, pixels-39)
nsubj(saw-2, I-1) root(ROOT-0, saw-2) amod(cushion-5, hello-3) nn(cushion-5, kitty-4) dobj(saw-2, cushion-5) nn(bucks-9, Ard-7) num(bucks-9, 20-8) dep(cushion-5, bucks-9) nn(wan-12, U-11) dep(bucks-9, wan-12)
nsubj(cant-2, Me-1) root(ROOT-0, cant-2) dobj(cant-2, sleep-3) amod(night-5, last-4) dep(cant-2, night-5) punct(night-5, Ok-7) nsubj(go-9, lor-8) dep(night-5, go-9) advmod(go-9, now-10) cc(cant-2, But-12) mark(2-14, if-13) advcl(need-21, 2-14) punct(2-14, bored-15) nsubj(go-17, we-16) dep(2-14, go-17) prt(go-17, off-18) nsubj(need-21, U-20) conj(cant-2, need-21) nsubj(buy-23, 2-22) ccomp(need-21, buy-23) dobj(buy-23, dinner-24) prt(buy-23, back-25) tmod(buy-23, today-26)
nn(lor-2, okie-1) root(ROOT-0, lor-2) cop(sure-5, be-4) dep(lor-2, sure-5) aux(call-7, to-6) xcomp(sure-5, call-7) nsubj(man-9, me-8) ccomp(call-7, man-9)
root(ROOT-0, Hey-1) nn(k\u002c-5, Gd-3) nn(k\u002c-5, luck-4) dep(Hey-1, k\u002c-5) dobj(woke-12, k\u002c-5) det(bit-7, a-6) dep(k\u002c-5, bit-7) amod(la\u002c-9, late-8) nsubj(woke-12, la\u002c-9) prep(la\u002c-9, but-10) pobj(but-10, juz-11) rcmod(k\u002c-5, woke-12) prt(woke-12, up-13) advmod(later-17, Hey-15) advmod(later-17, so-16) advmod(eng-18, later-17) dep(Hey-1, eng-18) prep(eng-18, at-19) pcomp(at-19, e-20) amod(rite-24, same-21) nn(rite-24, class-22) nn(rite-24, room-23) dobj(e-20, rite-24) dep(rite-24, Cya-26)
root(ROOT-0, u-1) advmod(u-1, always-2) prep(u-1, like-3) det(one-5, that-4) pobj(like-3, one-5) advmod(bully-8, always-7) dep(one-5, bully-8) dobj(bully-8, me-9)
root(ROOT-0, Huh-1) advmod(slow-3, so-2) acomp(Huh-1, slow-3) nn(u-6, i-4) nn(u-6, tot-5) nsubj(reach-7, u-6) ccomp(slow-3, reach-7) advmod(ago-9, long-8) advmod(reach-7, ago-9) dobj(reach-7, liao-10) dep(liao-10, U-12) num(days-15, 2-13) quantmod(2-13, more-14) dep(U-12, days-15) quantmod(4-18, only-16) number(4-18, i-17) num(leh-20, 4-18) amod(leh-20, more-19) dep(U-12, leh-20)
nsubj(wants-2, hey\u002cgen-1) root(ROOT-0, wants-2) dep(gals-8, to-3) nn(ü-7, club-4) nn(ü-7, tmr-5) nn(ü-7, ..-6) nsubj(gals-8, ü-7) ccomp(wants-2, gals-8) acomp(gals-8, interested-9)
root(ROOT-0, Hmmm-1) nsubj(thk-4, I-3) dep(Hmmm-1, thk-4) nsubj(bad-7, it\u2019s-5) neg(bad-7, not-6) xcomp(thk-4, bad-7) advmod(bad-7, la-8) nsubj(dun-11, I-10) parataxis(thk-4, dun-11) nn(lor-14, mind-12) nn(lor-14, tpy-13) dobj(dun-11, lor-14)
nn(..-2, Heehee-1) root(ROOT-0, ..-2) advmod(spread-16, So-3) dep(U-6, touching-4) dep(nice-8, U-6) advmod(nice-8, so-7) dep(hope-13, nice-8) cc(nice-8, and-9) amod(..-11, thoughtful-10) conj(nice-8, ..-11) nsubj(hope-13, I-12) dep(So-3, hope-13) nsubj(didnt-15, i-14) xcomp(hope-13, didnt-15) vmod(..-2, spread-16) dep(germs-18, e-17) dep(..-2, germs-18) prep(germs-18, to-19) nn(..-21, u-20) pobj(to-19, ..-21)
amod(that\u2019s-2, Wow\u002c-1) dep(write-21, that\u2019s-2) det(question-5, an-3) amod(question-5, difficult-4) dep(that\u2019s-2, question-5) nn(don\u2019t-8, Why-7) dep(question-5, don\u2019t-8) nsubj(search-10, you-9) rcmod(don\u2019t-8, search-10) prt(search-10, out-11) det(books-14, the-12) nn(books-14, Dhamma-13) dobj(search-10, books-14) prep(that\u2019s-2, for-15) det(answer-17, the-16) pobj(for-15, answer-17) aux(write-21, Can-19) nsubj(write-21, I-20) root(ROOT-0, write-21) dobj(write-21, you-22) prep(write-21, in-23) pobj(in-23, email-24)
det(program-2, the-1) nsubj(run-4, program-2) aux(run-4, can-3) root(ROOT-0, run-4) prep(run-4, without-5) det(right-8, the-6) num(right-8, cd-7) pobj(without-5, right-8)
nsubj(stay-4, Erm-1) nsubj(stay-4, you-3) advcl(meet-12, stay-4) det(area-6, which-5) nsubj(ar-7, area-6) dep(cos-9, ar-7) dep(stay-4, cos-9) nsubj(cos-9, she-10) nsubj(meet-12, wana-11) root(ROOT-0, meet-12) nsubj(bringing-22, me-13) dep(bringing-22, 11am-14) prep(11am-14, at-15) amod(she\u2019s-21, tanah-16) nn(she\u2019s-21, merah-17) nn(she\u2019s-21, mrt-18) nn(she\u2019s-21, station-19) nn(she\u2019s-21, n-20) pobj(at-15, she\u2019s-21) xcomp(meet-12, bringing-22) poss(laptop-24, her-23) dobj(bringing-22, laptop-24) prep(bringing-22, for-25) pcomp(for-25, testing-26) nn(juz-28, ..-27) nsubj(see-29, juz-28) ccomp(testing-26, see-29) mark(u-31, if-30) advcl(see-29, u-31) amod(anot-33, free-32) dobj(u-31, anot-33)
advmod(pay-3, So-1) nsubj(pay-3, ü-2) root(ROOT-0, pay-3) amod(lar-5, first-4) dobj(pay-3, lar-5) advmod(when-8, Then-7) advmod(is-9, when-8) dep(lar-5, is-9) nn(comin-12, da-10) nn(comin-12, stock-11) nsubj(is-9, comin-12)
amod(she\u2019s-3, Hmmm\u002c-1) nn(she\u2019s-3, thk-2) nsubj(forgetin-7, she\u2019s-3) vmod(she\u2019s-3, used-4) prep(used-4, to-5) pobj(to-5, me-6) root(ROOT-0, forgetin-7) amod(oredi-10, everyone\u2019s-8) nn(oredi-10, bd-9) dobj(forgetin-7, oredi-10) nsubj(bad-14, Haha\u002c-12) neg(bad-14, not-13) parataxis(forgetin-7, bad-14) xcomp(forgetin-7, bad-14) num(bd-17, \u002c-15) nn(bd-17, ur-16) nsubj(gals-20, bd-17) dep(gals-20, got-18) advmod(gals-20, pretty-19) ccomp(bad-14, gals-20) prep(gals-20, to-21) pobj(to-21, company-22)
mark(say-5, If-1) nsubj(say-5, u-2) amod(u-2, sad-3) aux(say-5, should-4) advcl(do-52, say-5) dobj(say-5, mah\u002c-6) dep(say-5, then-7) dep(then-7, i-8) aux(go-10, will-9) rcmod(i-8, go-10) dep(then-7, Aiyah-12) advmod(go-21, actually-13) mark(u-15, if-14) dep(actually-13, u-15) advmod(u-15, all-16) dep(u-15, say-17) advmod(then-19, earlier-18) advmod(say-17, then-19) dobj(say-17, i-20) rcmod(Aiyah-12, go-21) prt(go-21, out-22) advmod(can-24, earlier-23) dobj(go-21, can-24) amod(can-24, liao\u002c-25) cc(go-21, but-26) advmod(go-21, now-27) conj(go-21, now-27) conj(go-21, drag-28) mark(didnt-44, till-29) advmod(late-31, so-30) advmod(ask-37, late-31) nn(leh\u002c-36, Tomw-33) nn(leh\u002c-36, i-34) nn(leh\u002c-36, duno-35) nsubj(ask-37, leh\u002c-36) advcl(didnt-44, ask-37) nsubj(go-39, shuhui-38) ccomp(ask-37, go-39) xcomp(go-39, ask-40) dobj(ask-40, ron-41) advmod(ask-40, then-42) nsubj(didnt-44, she-43) advcl(drag-28, didnt-44) dobj(didnt-44, reply-45) nsubj(do-52, I-47) vmod(I-47, helping-48) amod(company-51, e-49) nn(company-51, pre-50) dobj(helping-48, company-51) root(ROOT-0, do-52) det(translation-54, some-53) dobj(do-52, translation-54) advmod(do-52, then-55) nsubj(give-58, tomw-56) aux(give-58, need-57) dep(do-52, give-58) poss(tuition-61, my-59) nn(tuition-61, cousin-60) dobj(give-58, tuition-61)
advcl(u-21, hey-1) advmod(promised-7, where-2) auxpass(promised-7, is-3) det(u-6, the-4) nn(u-6, tiramisu-5) nsubjpass(promised-7, u-6) dep(hey-1, promised-7) advmod(is-10, when-9) dep(hey-1, is-10) amod(day-13, ur-11) amod(day-13, last-12) nsubj(is-10, day-13) prep(day-13, of-14) pobj(of-14, exam-15) amod(time-18, long-17) nsubj(hey-1, time-18) det(c-20, no-19) nsubj(u-21, c-20) root(ROOT-0, u-21) dobj(u-21, liao-22)
nn(lah-2, No-1) root(ROOT-0, lah-2) nsubj(got-5, I-4) rcmod(lah-2, got-5) dobj(got-5, something-6) prep(something-6, on-7) pcomp(on-7, also-8) nn(thanx-11, Lol-10) dep(lah-2, thanx-11)
nn(..-5, Shuhui-1) neg(..-5, not-2) amod(..-5, free-3) nn(..-5, lah-4) root(ROOT-0, ..-5) advmod(eating-10, So-6) advmod(u-9, where-7) nsubj(u-9, r-8) dep(So-6, u-9) vmod(..-5, eating-10)
dep(bucks-4, Erhm\u002c-1) advmod(bucks-4, just-2) num(bucks-4, 500-3) dep(again\u002cthat\u2019s-7, bucks-4) advmod(again\u002cthat\u2019s-7, Then-6) dep(get-14, again\u002cthat\u2019s-7) dobj(again\u002cthat\u2019s-7, way-8) prep(again\u002cthat\u2019s-7, beyond-9) nn(i-11, wad-10) pobj(beyond-9, i-11) aux(get-14, can-12) advmod(get-14, possibly-13) root(ROOT-0, get-14) nsubj(catch-17, haha\u002c-16) ccomp(get-14, catch-17) prt(catch-17, up-18) prep(catch-17, with-19) pobj(with-19, you-20) advmod(get-14, again-21)
root(ROOT-0, Hmmm-1) nsubj(try-4, I\u2019ll-3) dep(Hmmm-1, try-4) nsubj(places-9, spinelli\u2019s\u002c-5) dep(places-9, nydc-6) dobj(places-9, all-7) expl(places-9, there-8) xcomp(try-4, places-9) dobj(places-9, lor-10) nsubj(places-9, lor-10) amod(wana-14, Haha\u002c-12) nn(wana-14, u-13) nsubj(join-15, wana-14) parataxis(try-4, join-15) dobj(join-15, me-16)
amod(..-3, merry-1) nn(..-3, christmas-2) nsubj(take-4, ..-3) root(ROOT-0, take-4) dobj(take-4, care-5) prep(care-5, of-6) nn(ya-8, urself-7) pobj(of-6, ya-8)
nsubj(have-4, Erm-1) cc(Erm-1, but-2) conj(Erm-1, it\u2019ll-3) root(ROOT-0, have-4) det(moderation-6, some-5) dobj(have-4, moderation-6) prep(have-4, according-7) pcomp(according-7, to-8) advmod(performs-12, how-9) poss(catch-11, your-10) nsubj(performs-12, catch-11) pcomp(to-8, performs-12) xcomp(performs-12, n-13) advmod(n-13, also-14) num(weightage-17, yr1-15) amod(weightage-17, lesser-16) dobj(n-13, weightage-17) dep(performs-12, so-18) nsubj(have-21, you-19) advmod(have-21, still-20) parataxis(performs-12, have-21) nn(la-23, chance-22) dobj(have-21, la-23) nsubj(lose-26, dun-25) parataxis(have-21, lose-26) dobj(lose-26, hope-27) advmod(lose-26, yet-28)
nn(timin-2, Tmr-1) nsubj(da-4, timin-2) advmod(da-4, still-3) root(ROOT-0, da-4) amod(cos-7, same-5) nn(cos-7, wat-6) dobj(da-4, cos-7) nsubj(got-9, i-8) dep(da-4, got-9) dobj(got-9, lesson-10) prep(got-9, until-11) pobj(until-11, 6-12)
nsubj(try-4, haha-1) amod(haha-1, i-2) aux(try-4, will-3) root(ROOT-0, try-4) det(cake-6, the-5) dobj(try-4, cake-6) tmod(try-4, today-7)
dep(juz-5, Hey-1) nsubj(juz-5, Thk-3) dep(Thk-3, we-4) root(ROOT-0, juz-5) ccomp(juz-5, go-6) dobj(go-6, accordin-7) aux(wat-9, to-8) xcomp(go-6, wat-9) nsubj(discussed-11, we-10) ccomp(wat-9, discussed-11) amod(lor\u002c-13, yest-12) dobj(discussed-11, lor\u002c-13) prep(discussed-11, except-14) det(kb-16, no-15) pobj(except-14, kb-16) prep(discussed-11, on-17) pobj(on-17, sun-18) nn(lesson-24, Cos-20) nn(lesson-24, there\u2019s-21) nn(lesson-24, nt-22) amod(lesson-24, much-23) nsubj(go-26, lesson-24) aux(go-26, to-25) parataxis(go-6, go-26) xcomp(go-6, go-26) mark(attend-29, if-27) nsubj(attend-29, we-28) advcl(go-26, attend-29) dobj(attend-29, kb-30) prep(attend-29, on-31) pobj(on-31, sat-32)
nn(nobody-3, Duno-1) amod(nobody-3, lah\u002c-2) nsubj(tell-4, nobody-3) root(ROOT-0, tell-4) dobj(tell-4, me-5) iobj(tell-4, me-5) nn(lido-8, Why-7) dep(me-5, lido-8) det(time-11, What-10) dep(me-5, time-11)
nsubj(m-2, I-1) root(ROOT-0, m-2) xcomp(m-2, eating-3) prep(eating-3, with-4) nn(eng-6, tze-5) pobj(with-4, eng-6) cc(eng-6, and-7) conj(eng-6, friends-8) advmod(eaten-15, How-10) aux(eaten-15, are-11) nsubj(eaten-15, u-12) aux(eaten-15, have-13) advmod(eaten-15, u-14) dep(eng-6, eaten-15) dobj(eaten-15, lunch-16)
nsubj(have-3, you-1) advmod(have-3, still-2) root(ROOT-0, have-3) num(tradition-5, chinese-4) dobj(have-3, tradition-5)
root(ROOT-0, Ok-1) dep(Ok-1, Leona-3) neg(free-5, not-4) amod(Leona-3, free-5) dep(reply-8, shuhui-6) nn(reply-8, haven-7) dep(meet-11, reply-8) nsubj(meet-11, We-10) ccomp(free-5, meet-11) amod(noon\u002c-14, late-12) amod(noon\u002c-14, aft-13) dobj(meet-11, noon\u002c-14) dobj(confirm-16, noon\u002c-14) nsubj(confirm-16, we-15) rcmod(noon\u002c-14, confirm-16) advmod(again-18, later-17) advmod(confirm-16, again-18) dep(Ok-1, Ok-20)
root(ROOT-0, Hey-1) aux(tis-6, Did-3) nn(noe-5, u-4) nsubj(tis-6, noe-5) dep(Hey-1, tis-6) advmod(got-8, sat-7) dep(tis-6, got-8) nn(outin\u002c-10, class-9) nsubj(celebrate-11, outin\u002c-10) ccomp(got-8, celebrate-11) amod(bdae-13, jojo\u2019s-12) dobj(celebrate-11, bdae-13) prep(msg-21, At-15) amod(park-18, west-16) nn(park-18, coast-17) pobj(At-15, park-18) nsubj(msg-21, Pls-20) parataxis(celebrate-11, msg-21) dobj(msg-21, me-22) mark(anot-27, whether-23) nn(anot-27, u-24) nn(anot-27, r-25) nn(anot-27, goin-26) dep(got-8, anot-27)
dep(Tuesday-4, Free-1) prep(Free-1, on-2) pobj(on-2, this-3) root(ROOT-0, Tuesday-4) prep(Tuesday-4, for-5) det(strategie-8, a-6) nn(strategie-8, business-7) pobj(for-5, strategie-8)
amod(worry-2, don\u2019t-1) root(ROOT-0, worry-2) advmod(much-4, too-3) dep(i-6, much-4) dep(??-21, i-6) vmod(i-6, wanted-7) aux(say-9, to-8) xcomp(wanted-7, say-9) advmod(now\u002c-11, just-10) dobj(say-9, now\u002c-11) nsubj(take-14, you-12) aux(take-14, can-13) rcmod(now\u002c-11, take-14) dobj(take-14, it-15) prep(take-14, to-16) pobj(to-16, God-17) prep(take-14, in-18) pobj(in-18, prayer-19) dep(worry-2, ??-21)
nsubj(call-12, me-1) prep(me-1, in-2) dep(in-2, class-3) advmod(class-3, now-4) dep(class-3, wats-6) advmod(wats-6, up-7) amod(talk-10, cannot-9) dep(class-3, talk-10) root(ROOT-0, call-12) dobj(call-12, u-13) advmod(finish-16, when-14) nsubj(finish-16, i-15) advcl(call-12, finish-16)
prep(adds-18, From-1) det(stranger\u002c-3, a-2) pobj(From-1, stranger\u002c-3) prep(stranger\u002c-3, to-4) det(2-7, an-5) amod(2-7, acquaintance\u002c-6) pobj(to-4, 2-7) det(u-10, a-8) amod(u-10, friend\u002c-9) nsubj(adds-18, u-10) vmod(u-10, presented-11) dep(memories-14, e-12) amod(memories-14, best-13) dep(presented-11, memories-14) cc(memories-14, and-15) advmod(god-17, as-16) conj(memories-14, god-17) root(ROOT-0, adds-18) nsubj(added-24, years-19) prep(years-19, to-20) poss(u-23, my-21) nn(u-23, life-22) pobj(to-20, u-23) ccomp(adds-18, added-24) dobj(added-24, life-25) prep(added-24, to-26) poss(years-28, my-27) pobj(to-26, years-28)
nn(bravo-2, Kor\u002c-1) nsubj(!-3, bravo-2) amod(home-5, welcome-4) dobj(!-3, home-5) cc(!-3, and-6) nsubj(love-8, we-7) conj(!-3, love-8) dobj(love-8, you-9) advmod(much-11, very-10) advmod(love-8, much-11)
dep(dinner-3, Enjoying-1) nn(dinner-3, ur-2) dep(had-7, dinner-3) nsubj(had-7, I-5) advmod(had-7, just-6) csubj(did-14, had-7) poss(dinner-9, my-8) dobj(had-7, dinner-9) prep(had-7, at-10) nn(..-12, home-11) pobj(at-10, ..-12) advmod(had-7, So-13) root(ROOT-0, did-14) nsubj(tease-16, they-15) ccomp(did-14, tease-16) dobj(tease-16, u-17)
root(ROOT-0, U-1) dep(U-1, alone-2) punct(U-1, Ask-4) nn(dad-6, ur-5) dep(U-1, dad-6) aux(fetch-8, to-7) vmod(dad-6, fetch-8) dobj(fetch-8, u-9) mark(see-18, If-11) advmod(stuck-13, really-12) csubj(see-18, stuck-13) prep(stuck-13, at-14) amod(den-16, mrt\u002c-15) pobj(at-14, den-16) dobj(stuck-13, i-17) dep(dad-6, see-18) mark(go-25, whether-19) poss(i-24, my-20) nn(i-24, dad-21) nn(i-24, car-22) nn(i-24, ard-23) nsubj(go-25, i-24) ccomp(see-18, go-25) xcomp(go-25, fetch-26) amod(lor-29, u-27) nn(lor-29, home-28) dobj(fetch-26, lor-29)
dep(go-8, Ailing\u002c-1) nn(u-3, wad-2) dobj(Ailing\u002c-1, u-3) vmod(u-3, doing-4) tmod(doing-4, today-5) nsubj(go-8, Wanna-7) root(ROOT-0, go-8) prt(go-8, out-9)
ccomp(reach-9, Yah-1) dep(Yah-1, going-2) aux(rain-4, to-3) xcomp(going-2, rain-4) advmod(rain-4, soon-5) nsubj(reach-9, I-7) advmod(reach-9, just-8) root(ROOT-0, reach-9) dobj(reach-9, office\u002c-10) cc(office\u002c-10, but-11) amod(drive-14, lucky-12) amod(drive-14, i-13) conj(office\u002c-10, drive-14)
root(ROOT-0, Haha-1) nn(la-4, Go-3) dep(Haha-1, la-4) nsubj(ends-7, It-6) dep(Haha-1, ends-7) nn(..-9, tmr-8) nsubj(go-14, ..-9) nn(wanna-13, Else-10) nn(wanna-13, i-11) nn(wanna-13, wun-12) dep(..-9, wanna-13) ccomp(ends-7, go-14) tmod(go-14, today-15) advmod(go-14, too-16) dep(u-19, Where-18) dep(Haha-1, u-19) advmod(u-19, now-20)
det(potluck-2, the-1) root(ROOT-0, potluck-2) prep(potluck-2, on-3) nn(can-5, tuesday-4) pobj(on-3, can-5) nsubj(make-9, everyone-7) aux(make-9, can-8) rcmod(potluck-2, make-9) dobj(make-9, it-10) prep(make-9, except-11) pobj(except-11, xinyi-12) cc(xinyi-12, and-13) conj(xinyi-12, \u2019he-14) ref(xinyi-12, who-15) nsubj(named\u2019-19, who-15) aux(named\u2019-19, must-16) neg(named\u2019-19, not-17) cop(named\u2019-19, be-18) rcmod(xinyi-12, named\u2019-19) dep(potluck-2, hehe-21)
amod(zen-2, Hey-1) root(ROOT-0, zen-2) dep(zen-2, Sharis-4) advmod(Sharis-4, here-5) nsubj(made-8, I\u2019ve-7) dep(Sharis-4, made-8) det(haircut-12, an-9) amod(haircut-12, appt-10) num(haircut-12, 4-11) dobj(made-8, haircut-12) prep(made-8, at-13) pobj(at-13, 2pm\u002c-14) dep(zen-2, together-15) dep(zen-2, w-16) dobj(w-16, 2-17) prep(2-17, of-18) poss(....-21, my-19) amod(....-21, frens-20) pobj(of-18, ....-21)
root(ROOT-0, hello-1) nsubj(hello-1, there-2) nsubj(u-5, r-4) dep(hello-1, u-5) acomp(u-5, free-6) prep(free-6, for-7) nn(2day-9, lunch-8) pobj(for-7, 2day-9)
amod(time-2, Wat-1) nsubj(do-3, time-2) root(ROOT-0, do-3) nn(wan-5, u-4) dobj(do-3, wan-5) num(wan-5, 2-6) dep(do-3, meet-7) dobj(meet-7, me-8) advmod(meet-7, later-9)
nsubj(say-2, Shuhui-1) root(ROOT-0, say-2) dep(say-2, go-3) nn(chomp-5, chomp-4) nsubj(eat-6, chomp-5) dep(go-3, eat-6) advmod(go-12, Then-8) amod(mayb-11, aft-9) nn(mayb-11, t-10) nsubj(go-12, mayb-11) parataxis(eat-6, go-12) dobj(go-12, movie-13) cc(movie-13, or-14) conj(movie-13, ktv-15) advmod(go-12, Later-17) nsubj(pick-19, she-18) parataxis(eat-6, pick-19) nsubj(ard-21, me-20) ccomp(pick-19, ard-21) dobj(ard-21, 6-22) advmod(ard-21, then-23) nsubj(msg-25, i-24) parataxis(eat-6, msg-25) dobj(msg-25, u-26)
dep(ok-2, Oh-1) dep(taught-18, ok-2) amod(fate-5, Same-4) dep(ok-2, fate-5) dep(ok-2, Thk-7) poss(sux-10, our-8) nn(sux-10, timetable-9) dobj(Thk-7, sux-10) cc(taught-18, But-12) advmod(taught-18, at-13) pobj(at-13, least-14) poss(tut-16, my-15) nsubjpass(taught-18, tut-16) auxpass(taught-18, is-17) root(ROOT-0, taught-18) prep(taught-18, by-19) amod(he\u2019s-23, e-20) amod(he\u2019s-23, other-21) amod(he\u2019s-23, lecturer\u002c-22) pobj(by-19, he\u2019s-23) advmod(nice-25, quite-24) amod(he\u2019s-23, nice-25)
poss(MUD\u002c-3, its-1) det(MUD\u002c-3, a-2) root(ROOT-0, MUD\u002c-3) dobj(played-9, MUD\u002c-3) prep(MUD\u002c-3, like-4) pobj(like-4, LORD-5) cc(LORD-5, and-6) conj(LORD-5, Kingdoms-7) nsubj(played-9, we-8) rcmod(MUD\u002c-3, played-9) advmod(played-9, back-10) prep(played-9, in-11) pobj(in-11, hwachong-12)
ccomp(scare-13, Tell-1) amod(shuhui-3, u\u002c-2) dobj(Tell-1, shuhui-3) dep(Tell-1, coming-4) advmod(coming-4, later-5) cc(coming-4, or-6) neg(coming-8, not-7) conj(coming-4, coming-8) advmod(coming-8, at-9) pobj(at-9, all-10) nsubj(scare-13, I-12) root(ROOT-0, scare-13) dep(scare-13, wait-14) nsubj(left-17, hor-15) advmod(left-17, only-16) ccomp(wait-14, left-17) dep(left-17, e-18) dobj(left-17, 2-19) prep(2-19, of-20) pobj(of-20, us-21)