-
Notifications
You must be signed in to change notification settings - Fork 1
/
transcript_analysis.txt
1364 lines (1364 loc) · 412 KB
/
transcript_analysis.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
Speaker Transcript # Words # Nodes # Tokens # Propositions Tree depth S-Expression
HOLT "Well, I don't expect us to cover all the issues of this campaign tonight, but I remind everyone, there are two more presidential debates scheduled." 25 54 30 11 11 "(ROOT (S (S (INTJ (UH Well)) (, ,) (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB expect) (S (NP (PRP us)) (VP (TO to) (VP (VB cover) (NP (NP (PDT all) (DT the) (NNS issues)) (PP (IN of) (NP (DT this) (NN campaign) (NN tonight)))))))))) (, ,) (CC but) (S (NP (PRP I)) (VP (VB remind) (NP (NN everyone))))) (, ,) (NP (EX there)) (VP (VBP are) (NP (NP (CD two) (JJR more) (JJ presidential) (NNS debates)) (VP (VBN scheduled)))) (. .)))"
HOLT "We are going to focus on many of the issues that voters tell us are most important, and we're going to press for specifics." 24 58 27 16 14 "(ROOT (S (S (NP (PRP We)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB focus) (PP (IN on) (NP (NP (JJ many)) (PP (IN of) (NP (DT the) (NNS issues))))) (SBAR (IN that) (S (NP (NNS voters)) (VP (VBP tell) (SBAR (S (NP (PRP us)) (VP (VBP are) (ADJP (RBS most) (JJ important)))))))))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB press) (PP (IN for) (NP (NNS specifics))))))))) (. .)))"
HOLT "I am honored to have this role, but this evening belongs to the candidates and, just as important, to the American people." 22 46 26 13 8 "(ROOT (S (S (NP (PRP I)) (VP (VBP am) (ADJP (VBN honored) (S (VP (TO to) (VP (VB have) (NP (DT this) (NN role)))))))) (, ,) (CC but) (S (NP (DT this) (NN evening)) (VP (VBZ belongs) (PP (PP (TO to) (NP (DT the) (NNS candidates))) (CC and) (PRN (, ,) (CONJP (RB just) (IN as)) (ADJP (JJ important)) (, ,)) (PP (TO to) (NP (DT the) (JJ American) (NNS people)))))) (. .)))"
HOLT "Candidates, we look forward to hearing you articulate your policies and your positions, as well as your visions and your values." 21 43 24 9 10 "(ROOT (S (ADVP (RB Candidates)) (, ,) (NP (PRP we)) (VP (VBP look) (ADVP (RB forward)) (PP (TO to) (S (VP (VBG hearing) (S (NP (PRP you)) (VP (VB articulate) (NP (NP (NP (PRP$ your) (NNS policies)) (CC and) (NP (PRP$ your) (NNS positions))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (NP (PRP$ your) (NNS visions)) (CC and) (NP (PRP$ your) (NNS values)))))))))) (. .)))"
HOLT "So, let's begin." 3 10 6 2 2 "(ROOT (S (ADVP (RB So)) (, ,) (NP (NNP let) (POS 's)) (VP (VBP begin)) (. .)))"
HOLT "We're calling this opening segment ""Achieving Prosperity""." 7 17 11 3 5 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG calling) (NP (DT this) (JJ opening) (NN segment) (`` ``) (NP (NNP Achieving) (NNP Prosperity)) ('' '')))) (. .)))
HOLT And central to that is jobs. 6 14 7 4 4 (ROOT (S (CC And) (NP (NP (JJ central)) (PP (TO to) (NP (DT that)))) (VP (VBZ is) (NP (NNS jobs))) (. .)))
HOLT There are two economic realities in America today. 8 16 9 3 5 (ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (CD two) (JJ economic) (NNS realities)) (PP (IN in) (NP (NNP America) (NN today))))) (. .)))
HOLT "There's been a record six straight years of job growth, and new census numbers show incomes have increased at a record rate after years of stagnation." 26 53 29 12 11 "(ROOT (S (S (NP (EX There)) (VP (VBZ 's) (VP (VBN been) (NP (NP (DT a) (JJ record) (CD six) (JJ straight) (NNS years)) (PP (IN of) (NP (NN job) (NN growth))))))) (, ,) (CC and) (S (NP (JJ new) (NN census) (NNS numbers)) (VP (VBP show) (SBAR (S (NP (NNS incomes)) (VP (VBP have) (VP (VBN increased) (PP (IN at) (NP (DT a) (NN record) (NN rate))) (PP (IN after) (NP (NP (NNS years)) (PP (IN of) (NP (NN stagnation))))))))))) (. .)))"
HOLT "However, income inequality remains significant, and nearly half of Americans are living paycheck to paycheck." 15 35 18 9 6 "(ROOT (S (ADVP (RB However)) (, ,) (S (NP (NN income) (NN inequality)) (VP (VBZ remains) (ADJP (JJ significant)))) (, ,) (CC and) (S (NP (NP (QP (RB nearly) (PDT half))) (PP (IN of) (NP (NNPS Americans)))) (VP (VBP are) (VP (VBG living) (NP (NN paycheck)) (PP (TO to) (NP (NN paycheck)))))) (. .)))"
HOLT "Beginning with you, Secretary Clinton, why are you a better choice than your opponent to create the kinds of jobs that will put more money into the pockets of American works?" 31 67 33 14 21 "(ROOT (PP (VBG Beginning) (PP (IN with) (NP (NP (PRP you)) (, ,) (NP (NNP Secretary) (NNP Clinton)) (, ,) (SBAR (WHADVP (WRB why)) (S (VP (VBP are) (VP (NP (PRP you)) (NP (NP (DT a) (JJR better) (NN choice)) (PP (IN than) (NP (PRP$ your) (NN opponent)))) (S (VP (TO to) (VP (VB create) (NP (NP (DT the) (NNS kinds)) (PP (IN of) (NP (NP (NNS jobs)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (VP (VB put) (NP (JJR more) (NN money)) (PP (IN into) (NP (NP (DT the) (NNS pockets)) (PP (IN of) (NP (JJ American) (NNS works)))))))))))))))))))))))"
CLINTON "Well, thank you, Lester, and thanks to Hofstra for hosting us." 11 29 15 5 6 "(ROOT (S (INTJ (UH Well)) (, ,) (VP (VB thank) (NP (NP (PRP you)) (, ,) (NP (NNP Lester)) (, ,) (CC and) (NP (NP (NNS thanks)) (PP (TO to) (NP (NNP Hofstra))))) (PP (IN for) (S (VP (VBG hosting) (NP (PRP us)))))) (. .)))"
CLINTON The central question in this election is really what kind of country we want to be and what kind of future we'll build together. 24 53 26 11 9 (ROOT (S (NP (NP (DT The) (JJ central) (NN question)) (PP (IN in) (NP (DT this) (NN election)))) (VP (VBZ is) (ADVP (RB really)) (SBAR (SBAR (WHNP (WP what) (NN kind) (PP (IN of) (NP (NN country)))) (S (NP (PRP we)) (VP (VBP want) (S (VP (TO to) (VP (VB be))))))) (CC and) (SBAR (WHNP (WP what) (NN kind) (PP (IN of) (NP (NN future)))) (S (NP (PRP we)) (VP (MD 'll) (VP (VB build) (ADVP (RB together)))))))) (. .)))
CLINTON "Today is my granddaughter's second birthday, so I think about this a lot." 13 29 16 4 6 "(ROOT (S (S (NP (NNP Today)) (VP (VBZ is) (NP (NP (PRP$ my) (NN granddaughter) (POS 's)) (JJ second) (NN birthday)))) (, ,) (IN so) (S (NP (PRP I)) (VP (VBP think) (PP (IN about) (NP (NP (DT this)) (NP (DT a) (NN lot)))))) (. .)))"
CLINTON "First, we have to build an economy that works for everyone, not just those at the top." 17 41 20 9 12 "(ROOT (S (ADVP (RB First)) (, ,) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB build) (NP (NP (NP (DT an) (NN economy)) (SBAR (WHNP (WDT that)) (S (VP (VBZ works) (PP (IN for) (NP (NN everyone))))))) (, ,) (CONJP (RB not) (RB just)) (NP (NP (DT those)) (PP (IN at) (NP (DT the) (NN top))))))))) (. .)))"
CLINTON "That means we need new jobs, good jobs, with rising incomes." 11 27 14 6 8 "(ROOT (S (NP (DT That)) (VP (VBZ means) (SBAR (S (NP (PRP we)) (VP (VBP need) (NP (NP (NP (JJ new) (NNS jobs)) (, ,) (NP (JJ good) (NNS jobs)) (, ,)) (PP (IN with) (NP (VBG rising) (NNS incomes)))))))) (. .)))"
CLINTON I want us to invest in you. 7 17 8 4 7 (ROOT (S (NP (PRP I)) (VP (VBP want) (S (NP (PRP us)) (VP (TO to) (VP (VB invest) (PP (IN in) (NP (PRP you))))))) (. .)))
CLINTON I want us to invest in your future. 8 18 9 4 7 (ROOT (S (NP (PRP I)) (VP (VBP want) (S (NP (PRP us)) (VP (TO to) (VP (VB invest) (PP (IN in) (NP (PRP$ your) (NN future))))))) (. .)))
CLINTON "That means jobs in infrastructure, in advanced manufacturing, innovation and technology, clean, renewable energy, and small business, because most of the new jobs will come from small business." 28 57 35 13 8 "(ROOT (S (NP (DT That)) (VP (VBZ means) (NP (NNS jobs)) (PP (IN in) (NP (NN infrastructure))) (, ,) (PP (IN in) (NP (NP (JJ advanced) (NN manufacturing)) (, ,) (NP (NN innovation) (CC and) (NN technology)) (, ,) (NP (JJ clean) (, ,) (JJ renewable) (NN energy)) (, ,) (CC and) (NP (JJ small) (NN business)))) (, ,) (SBAR (IN because) (S (NP (NP (JJS most)) (PP (IN of) (NP (DT the) (JJ new) (NNS jobs)))) (VP (MD will) (VP (VB come) (PP (IN from) (NP (JJ small) (NN business)))))))) (. .)))"
CLINTON We also have to make the economy fairer. 8 19 9 5 7 (ROOT (S (NP (PRP We)) (ADVP (RB also)) (VP (VBP have) (S (VP (TO to) (VP (VB make) (S (NP (DT the) (NN economy)) (ADJP (JJR fairer))))))) (. .)))
CLINTON "That starts with raising the national minimum wage and also guarantee, finally, equal pay for women's work." 17 38 21 10 7 "(ROOT (S (S (NP (DT That)) (VP (VBZ starts) (PP (IN with) (S (VP (VBG raising) (NP (DT the) (JJ national) (JJ minimum) (NN wage))))))) (CC and) (ADVP (RB also)) (S (NP (NN guarantee)) (, ,) (ADVP (RB finally)) (, ,) (VP (VBP equal) (VP (VB pay) (PP (IN for) (NP (NP (NNS women) (POS 's)) (NN work)))))) (. .)))"
CLINTON I also want to see more companies do profit-sharing. 9 21 10 6 8 (ROOT (S (NP (PRP I)) (ADVP (RB also)) (VP (VBP want) (S (VP (TO to) (VP (VB see) (S (NP (JJR more) (NNS companies)) (VP (VB do) (NP (NN profit-sharing)))))))) (. .)))
CLINTON "If you help create the profits, you should be able to share in them, not just the executives at the top." 21 44 24 10 10 "(ROOT (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP help) (VP (VB create) (NP (DT the) (NNS profits)))))) (, ,) (NP (PRP you)) (VP (MD should) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB share) (PP (IN in) (NP (NP (PRP them)) (, ,) (RB not) (RB just) (NP (DT the) (NNS executives)))) (PP (IN at) (NP (DT the) (NN top))))))))) (. .)))"
CLINTON And I want us to do more to support people who are struggling to balance family and work. 18 41 19 10 17 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP want) (S (NP (PRP us)) (VP (TO to) (VP (VB do) (NP (JJR more)) (S (VP (TO to) (VP (VB support) (NP (NP (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBP are) (VP (VBG struggling) (S (VP (TO to) (VP (VB balance) (NP (NN family) (CC and) (NN work))))))))))))))))) (. .)))
CLINTON I've heard from so many of you about the difficult choices you face and the stresses that you're under. 19 47 22 12 9 (ROOT (S (S (NP (PRP I)) (VP (VBP 've) (VP (VBN heard) (PP (IN from) (NP (NP (RB so) (JJ many)) (PP (IN of) (NP (PRP you))))) (PP (IN about) (NP (NP (DT the) (JJ difficult) (NNS choices)) (SBAR (S (NP (PRP you)) (VP (VBP face))))))))) (CC and) (S (NP (DT the)) (VP (VBZ stresses) (SBAR (IN that) (S (NP (PRP you)) (VP (VBP 're) (ADJP (JJ under))))))) (. .)))
CLINTON "So let's have paid family leave, earned sick days." 9 23 12 6 9 "(ROOT (S (RB So) (VP (VB let) (SBAR (S (NP (PRP 's)) (VP (VBP have) (VP (VBN paid) (NP (NP (NN family) (NN leave)) (, ,) (VP (VBN earned) (NP (JJ sick) (NNS days))))))))) (. .)))"
CLINTON Let's be sure we have affordable child care and debt-free college. 11 25 13 6 9 (ROOT (S (NP (NNP Let)) (VP (VBZ 's) (VP (VB be) (ADJP (JJ sure) (SBAR (S (NP (PRP we)) (VP (VBP have) (NP (NP (JJ affordable) (NN child) (NN care)) (CC and) (NP (JJ debt-free) (NN college))))))))) (. .)))
CLINTON How are we going to do it? 7 16 7 4 7 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP are) (NP (PRP we)) (VP (VBG going) (S (VP (TO to) (VP (VB do) (NP (PRP it)))))))))
CLINTON We're going to do it by having the wealthy pay their fair share and close the corporate loopholes. 18 38 20 11 13 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB do) (NP (PRP it)) (PP (IN by) (S (VP (VBG having) (S (NP (DT the) (JJ wealthy)) (VP (VP (VB pay) (NP (PRP$ their) (JJ fair) (NN share))) (CC and) (VP (VB close) (NP (DT the) (JJ corporate) (NNS loopholes))))))))))))) (. .)))
CLINTON "Finally, we tonight are on the stage together, Donald Trump and I. Donald, it's good to be with you." 19 44 24 9 8 "(ROOT (S (S (ADVP (RB Finally)) (, ,) (NP (PRP we)) (NP (NN tonight)) (VP (VBP are) (PP (IN on) (NP (DT the) (NN stage))) (ADVP (RB together)) (, ,) (NP (NP (NNP Donald) (NNP Trump)) (CC and) (NP (NNP I.) (NNP Donald))))) (, ,) (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ good) (S (VP (TO to) (VP (VB be) (PP (IN with) (NP (PRP you)))))))) (. .)))"
CLINTON We're going to have a debate where we are talking about the important issues facing our country. 17 39 19 9 14 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB have) (NP (NP (DT a) (NN debate)) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (VBP are) (VP (VBG talking) (PP (IN about) (NP (DT the) (JJ important) (NNS issues))) (S (VP (VBG facing) (NP (PRP$ our) (NN country)))))))))))))) (. .)))
CLINTON "You have to judge us, who can shoulder the immense, awesome responsibilities of the presidency, who can put into action the plans that will make your life better." 28 65 32 11 19 "(ROOT (S (NP (PRP You)) (VP (VBP have) (S (VP (TO to) (VP (VB judge) (NP (PRP us))))) (, ,) (SBAR (WHNP (WP who)) (S (VP (MD can) (VP (VB shoulder) (NP (NP (DT the) (JJ immense) (, ,) (JJ awesome) (NNS responsibilities)) (PP (IN of) (NP (NP (DT the) (NN presidency)) (, ,) (SBAR (WHNP (WP who)) (S (VP (MD can) (VP (VB put) (PP (IN into) (NP (NN action))) (NP (NP (DT the) (NNS plans)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (VP (VB make) (NP (PRP$ your) (NN life)) (ADVP (RBR better))))))))))))))))))) (. .)))"
CLINTON I hope that I will be able to earn your vote on November 8th. 14 30 15 6 12 (ROOT (S (NP (PRP I)) (VP (VBP hope) (SBAR (IN that) (S (NP (PRP I)) (VP (MD will) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB earn) (NP (PRP$ your) (NN vote)) (PP (IN on) (NP (NNP November) (NNP 8th)))))))))))) (. .)))
HOLT "Secretary Clinton, thank you." 4 10 6 1 3 "(ROOT (S (NP (NNP Secretary) (NNP Clinton)) (, ,) (VP (VB thank) (NP (PRP you))) (. .)))"
HOLT "Mr. Trump, the same question to you." 7 15 9 3 4 "(ROOT (NP (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (NP (DT the) (JJ same) (NN question)) (PP (TO to) (NP (PRP you)))) (. .)))"
HOLT It's about putting money — more money into the pockets of American workers. 13 29 15 7 9 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (PP (IN about) (S (VP (VBG putting) (NP (NP (NN money)) (: --) (NP (JJR more) (NN money))) (PP (IN into) (NP (NP (DT the) (NNS pockets)) (PP (IN of) (NP (JJ American) (NNS workers))))))))) (. .)))
HOLT You have up to two minutes. 6 12 7 2 4 (ROOT (S (NP (PRP You)) (VP (VBP have) (NP (QP (IN up) (TO to) (CD two)) (NNS minutes))) (. .)))
TRUMP "Thank you, Lester." 3 9 5 1 3 "(ROOT (S (VP (VB Thank) (NP (PRP you))) (, ,) (NP (NNP Lester)) (. .)))"
TRUMP Our jobs are fleeing the country. 6 12 7 2 4 (ROOT (S (NP (PRP$ Our) (NNS jobs)) (VP (VBP are) (VP (VBG fleeing) (NP (DT the) (NN country)))) (. .)))
TRUMP They're going to Mexico. 4 12 6 4 5 (ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG going) (PP (TO to) (NP (NNP Mexico))))) (. .)))
TRUMP They're going to many other countries. 6 14 8 6 5 (ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG going) (PP (TO to) (NP (JJ many) (JJ other) (NNS countries))))) (. .)))
TRUMP You look at what China is doing to our country in terms of making our product. 16 36 17 9 13 (ROOT (S (NP (PRP You)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (NNP China)) (VP (VBZ is) (VP (VBG doing) (PP (TO to) (NP (PRP$ our) (NN country))) (PP (IN in) (NP (NP (NNS terms)) (PP (IN of) (S (VP (VBG making) (NP (PRP$ our) (NN product))))))))))))) (. .)))
TRUMP "They're devaluing their currency, and there's nobody in our government to fight them." 13 34 17 6 10 "(ROOT (S (S (NP (PRP They)) (VP (VBP 're) (VP (VBG devaluing) (NP (PRP$ their) (NN currency))))) (, ,) (CC and) (S (NP (EX there)) (VP (VBZ 's) (NP (NP (NN nobody)) (PP (IN in) (NP (PRP$ our) (NN government) (S (VP (TO to) (VP (VB fight) (NP (PRP them)))))))))) (. .)))"
TRUMP And we have a very good fight. 7 13 8 3 4 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (NP (DT a) (ADJP (RB very) (JJ good)) (NN fight))) (. .)))
TRUMP And we have a winning fight. 6 11 7 2 3 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (NP (DT a) (JJ winning) (NN fight))) (. .)))
TRUMP "Because they're using our country as a piggy bank to rebuild China, and many other countries are doing the same thing." 21 42 24 11 10 "(ROOT (S (SBAR (IN Because) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG using) (NP (PRP$ our) (NN country)) (PP (IN as) (NP (DT a) (JJ piggy) (NN bank))) (S (VP (TO to) (VP (VB rebuild) (NP (NP (NNP China)) (, ,) (CC and) (NP (JJ many) (JJ other) (NNS countries)))))))))) (VP (VBP are) (VP (VBG doing) (NP (DT the) (JJ same) (NN thing)))) (. .)))"
TRUMP "So we're losing our good jobs, so many of them." 10 24 13 6 7 "(ROOT (S (IN So) (NP (PRP we)) (VP (VBP 're) (VP (VBG losing) (NP (NP (PRP$ our) (JJ good) (NNS jobs)) (, ,) (NP (NP (QP (RB so) (JJ many))) (PP (IN of) (NP (PRP them))))))) (. .)))"
TRUMP "When you look at what's happening in Mexico, a friend of mine who builds plants said it's the eighth wonder of the world." 23 60 27 11 11 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG happening) (PP (IN in) (NP (NNP Mexico))))))))))) (, ,) (NP (NP (DT a) (NN friend)) (PP (IN of) (NP (NP (NN mine)) (SBAR (WHNP (WP who)) (S (VP (VBZ builds) (NP (NNS plants)))))))) (VP (VBD said) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (DT the) (JJ eighth) (NN wonder)) (PP (IN of) (NP (DT the) (NN world)))))))) (. .)))"
TRUMP "They're building some of the biggest plants anywhere in the world, some of the most sophisticated, some of the best plants." 21 47 25 11 13 "(ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG building) (NP (NP (DT some)) (PP (IN of) (NP (NP (DT the) (JJS biggest) (NNS plants)) (ADVP (RB anywhere) (PP (IN in) (NP (NP (DT the) (NN world)) (, ,) (NP (NP (DT some)) (PP (IN of) (NP (DT the) (ADJP (RBS most) (JJ sophisticated))))) (, ,) (NP (NP (DT some)) (PP (IN of) (NP (DT the) (JJS best) (NNS plants)))))))))))) (. .)))"
TRUMP "With the United States, as he said, not so much." 10 21 13 5 4 "(ROOT (FRAG (SBAR (PP (IN With) (NP (DT the) (NNP United) (NNPS States))) (, ,) (IN as) (S (NP (PRP he)) (VP (VBD said)))) (, ,) (ADVP (RB not) (RB so) (RB much)) (. .)))"
TRUMP So Ford is leaving. 4 9 5 2 3 (ROOT (S (IN So) (NP (NNP Ford)) (VP (VBZ is) (VP (VBG leaving))) (. .)))
TRUMP "You see that, their small car division leaving." 8 18 10 3 5 "(ROOT (S (NP (PRP You)) (VP (VBP see) (NP (NP (DT that)) (, ,) (NP (NP (PRP$ their) (JJ small) (NN car) (NN division)) (VP (VBG leaving))))) (. .)))"
TRUMP "Thousands of jobs leaving Michigan, leaving Ohio." 7 19 9 3 5 "(ROOT (NP (NP (NP (NNS Thousands)) (PP (IN of) (NP (NNS jobs)))) (VP (VBG leaving) (NP (NNP Michigan)) (, ,) (S (VP (VBG leaving) (NP (NNP Ohio))))) (. .)))"
TRUMP They're all leaving. 3 9 5 3 3 (ROOT (S (NP (PRP They)) (VP (VBP 're) (RB all) (VP (VBG leaving))) (. .)))
TRUMP And we can't allow it to happen anymore. 8 19 10 5 7 (ROOT (S (CC And) (NP (PRP we)) (VP (MD ca) (RB n't) (VP (VB allow) (S (NP (PRP it)) (VP (TO to) (VP (VB happen) (ADVP (RB anymore))))))) (. .)))
TRUMP "As far as child care is concerned and so many other things, I think Hillary and I agree on that." 20 40 22 10 8 "(ROOT (S (ADVP (RB As) (RB far) (SBAR (IN as) (S (NP (NN child) (NN care)) (VP (VBZ is) (NP (ADJP (ADJP (JJ concerned)) (CC and) (ADJP (RB so) (JJ many))) (JJ other) (NNS things)))))) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (NNP Hillary) (CC and) (PRP I)) (VP (VBP agree) (PP (IN on) (NP (DT that))))))) (. .)))"
TRUMP "We probably disagree a little bit as to numbers and amounts and what we're going to do, but perhaps we'll be talking about that later." 25 57 29 14 12 "(ROOT (S (S (NP (PRP We)) (ADVP (RB probably)) (VP (VBP disagree) (NP (NP (DT a) (JJ little) (NN bit)) (UCP (IN as) (PP (TO to) (NP (NNS numbers) (CC and) (NNS amounts))) (CC and) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB do)))))))))))) (, ,) (CC but) (S (ADVP (RB perhaps)) (NP (PRP we)) (VP (MD 'll) (VP (VB be) (VP (VBG talking) (PP (IN about) (NP (DT that))) (ADVP (RB later)))))) (. .)))"
TRUMP But we have to stop our jobs from being stolen from us. 12 26 13 7 11 (ROOT (S (CC But) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB stop) (NP (PRP$ our) (NNS jobs)) (PP (IN from) (S (VP (VBG being) (VP (VBN stolen) (PP (IN from) (NP (PRP us))))))))))) (. .)))
TRUMP "We have to stop our companies from leaving the United States and, with it, firing all of their people." 19 42 22 8 10 "(ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VP (VB stop) (NP (PRP$ our) (NNS companies)) (PP (IN from) (S (VP (VBG leaving) (NP (DT the) (NNP United) (NNPS States)))))) (CC and) (PRN (, ,) (PP (IN with) (NP (PRP it))) (, ,)) (VP (VB firing) (NP (NP (DT all)) (PP (IN of) (NP (PRP$ their) (NNS people))))))))) (. .)))"
TRUMP All you have to do is take a look at Carrier air conditioning in Indianapolis. 15 34 16 7 8 (ROOT (S (NP (NP (DT All)) (SBAR (S (NP (PRP you)) (VP (VBP have) (S (VP (TO to) (VP (VB do)))))))) (VP (VBZ is) (VP (VB take) (NP (DT a) (NN look)) (PP (IN at) (NP (NP (NN Carrier) (NN air) (NN conditioning)) (PP (IN in) (NP (NNP Indianapolis))))))) (. .)))
TRUMP "They left — fired 1,400 people." 6 14 7 2 4 "(ROOT (S (S (NP (PRP They)) (VP (VBD left))) (: --) (S (VP (VBN fired) (NP (CD 1,400) (NNS people)))) (. .)))"
TRUMP They're going to Mexico. 4 12 6 4 5 (ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG going) (PP (TO to) (NP (NNP Mexico))))) (. .)))
TRUMP So many hundreds and hundreds of companies are doing this. 10 19 11 4 4 (ROOT (S (IN So) (NP (NP (JJ many) (NNS hundreds) (CC and) (NNS hundreds)) (PP (IN of) (NP (NNS companies)))) (VP (VBP are) (VP (VBG doing) (NP (DT this)))) (. .)))
TRUMP We cannot let it happen. 5 14 7 3 5 (ROOT (S (NP (PRP We)) (VP (MD can) (RB not) (VP (VB let) (S (NP (PRP it)) (VP (VB happen))))) (. .)))
TRUMP "Under my plan, I'll be reducing taxes tremendously, from 35 percent to 15 percent for companies, small and big businesses." 20 44 25 10 11 "(ROOT (S (PP (IN Under) (NP (PRP$ my) (NN plan))) (, ,) (NP (PRP I)) (VP (MD 'll) (VP (VB be) (VP (VBG reducing) (NP (NNS taxes)) (ADVP (RB tremendously)) (, ,) (PP (IN from) (NP (NP (CD 35) (NN percent)) (PP (TO to) (NP (NP (CD 15) (NN percent)) (PP (IN for) (NP (NP (NNS companies)) (, ,) (NP (JJ small) (CC and) (JJ big) (NNS businesses))))))))))) (. .)))"
TRUMP That's going to be a job creator like we haven't seen since Ronald Reagan. 14 32 17 8 12 (ROOT (S (NP (DT That)) (VP (VBZ 's) (VP (VBG going) (S (VP (TO to) (VP (VB be) (NP (DT a) (NN job) (NN creator)) (SBAR (IN like) (S (NP (PRP we)) (VP (VBP have) (RB n't) (VP (VBN seen) (PP (IN since) (NP (NNP Ronald) (NNP Reagan)))))))))))) (. .)))
TRUMP It's going to be a beautiful thing to watch. 9 22 11 7 10 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (VP (VBG going) (S (VP (TO to) (VP (VB be) (NP (DT a) (JJ beautiful) (NN thing) (S (VP (TO to) (VP (VB watch)))))))))) (. .)))
TRUMP Companies will come. 3 8 4 1 3 (ROOT (S (NP (NNS Companies)) (VP (MD will) (VP (VB come))) (. .)))
TRUMP They will build. 3 8 4 1 3 (ROOT (S (NP (PRP They)) (VP (MD will) (VP (VB build))) (. .)))
TRUMP They will expand. 3 8 4 1 3 (ROOT (S (NP (PRP They)) (VP (MD will) (VP (VB expand))) (. .)))
TRUMP New companies will start. 4 9 5 1 3 (ROOT (S (NP (NNP New) (NNS companies)) (VP (MD will) (VP (VB start))) (. .)))
TRUMP "And I look very, very much forward to doing it." 10 22 12 8 6 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP look) (ADVP (ADVP (JJ very)) (, ,) (RB very) (ADVP (RB much) (RB forward))) (PP (TO to) (S (VP (VBG doing) (NP (PRP it)))))) (. .)))"
TRUMP "We have to renegotiate our trade deals, and we have to stop these countries from stealing our companies and our jobs." 21 44 23 8 11 "(ROOT (S (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB renegotiate) (NP (PRP$ our) (NN trade) (NNS deals))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB stop) (NP (DT these) (NNS countries)) (PP (IN from) (S (VP (VBG stealing) (NP (NP (PRP$ our) (NNS companies)) (CC and) (NP (PRP$ our) (NNS jobs))))))))))) (. .)))"
HOLT "Secretary Clinton, would you like to respond?" 7 17 8 4 7 "(ROOT (S (NP (NNP Secretary)) (VP (VBD Clinton) (, ,) (SQ (MD would) (NP (PRP you)) (VP (VB like) (S (VP (TO to) (VP (VB respond)))))))))"
CLINTON "Well, I think that trade is an important issue." 9 20 11 3 6 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (IN that) (S (NP (NN trade)) (VP (VBZ is) (NP (DT an) (JJ important) (NN issue)))))) (. .)))"
CLINTON "Of course, we are 5 percent of the world's population; we have to trade with the other 95 percent." 19 42 23 8 8 "(ROOT (S (S (PP (IN Of) (NP (NN course))) (, ,) (NP (PRP we)) (VP (VBP are) (NP (NP (CD 5) (NN percent)) (PP (IN of) (NP (NP (DT the) (NN world) (POS 's)) (NN population)))))) (: ;) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB trade) (PP (IN with) (NP (DT the) (JJ other) (CD 95) (NN percent)))))))) (. .)))"
CLINTON "And we need to have smart, fair trade deals." 9 19 11 5 7 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB have) (NP (ADJP (JJ smart) (, ,) (JJ fair)) (NN trade) (NNS deals)))))) (. .)))"
CLINTON "We also, though, need to have a tax system that rewards work and not just financial transactions." 17 39 20 9 11 "(ROOT (S (NP (PRP We)) (VP (ADVP (ADVP (RB also)) (PRN (, ,) (ADVP (RB though)) (, ,))) (VBP need) (S (VP (TO to) (VP (VB have) (NP (NP (DT a) (NN tax) (NN system)) (SBAR (WHNP (WDT that)) (S (VP (VBZ rewards) (NP (NP (NN work)) (CC and) (RB not) (NP (RB just) (JJ financial) (NNS transactions))))))))))) (. .)))"
CLINTON And the kind of plan that Donald has put forth would be trickle-down economics all over again. 17 34 18 7 9 (ROOT (S (CC And) (NP (NP (DT the) (NN kind)) (PP (IN of) (NP (NP (NN plan)) (SBAR (IN that) (S (NP (NNP Donald)) (VP (VBZ has) (VP (VBN put) (ADVP (RB forth))))))))) (VP (MD would) (VP (VB be) (NP (JJ trickle-down) (NNS economics)) (ADVP (DT all) (IN over) (RB again)))) (. .)))
CLINTON "In fact, it would be the most extreme version, the biggest tax cuts for the top percent of the people in this country than we've ever had." 27 56 31 12 11 "(ROOT (S (PP (IN In) (NP (NN fact))) (, ,) (NP (PRP it)) (VP (MD would) (VP (VB be) (NP (NP (DT the) (ADJP (RBS most) (JJ extreme)) (NN version)) (, ,) (NP (NP (DT the) (JJS biggest) (NN tax) (NNS cuts)) (PP (IN for) (NP (NP (DT the) (JJ top) (NN percent)) (PP (IN of) (NP (NP (DT the) (NNS people)) (PP (IN in) (NP (DT this) (NN country))))))))) (SBAR (IN than) (S (NP (PRP we)) (VP (VBP 've) (ADVP (RB ever)) (VP (VBN had))))))) (. .)))"
CLINTON "I call it trumped-up trickle-down, because that's exactly what it would be." 12 31 15 5 9 "(ROOT (S (NP (PRP I)) (VP (VBP call) (S (NP (PRP it)) (NP (JJ trumped-up) (NN trickle-down))) (, ,) (SBAR (IN because) (S (NP (DT that)) (VP (VBZ 's) (SBAR (WHADJP (RB exactly) (WP what)) (S (NP (PRP it)) (VP (MD would) (VP (VB be))))))))) (. .)))"
CLINTON That is not how we grow the economy. 8 18 9 3 6 (ROOT (S (NP (DT That)) (VP (VBZ is) (RB not) (SBAR (WHADVP (WRB how)) (S (NP (PRP we)) (VP (VBP grow) (NP (DT the) (NN economy)))))) (. .)))
CLINTON "We just have a different view about what's best for growing the economy, how we make investments that will actually produce jobs and rising incomes." 25 60 28 12 17 "(ROOT (S (NP (PRP We)) (ADVP (RB just)) (VP (VBP have) (NP (NP (DT a) (JJ different) (NN view)) (PP (IN about) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (ADJP (JJS best) (PP (IN for) (S (VP (VBG growing) (NP (DT the) (NN economy)))))) (, ,) (SBAR (WHADVP (WRB how)) (S (NP (PRP we)) (VP (VBP make) (NP (NP (NNS investments)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (ADVP (RB actually)) (VP (VB produce) (NP (NP (NNS jobs)) (CC and) (NP (VBG rising) (NNS incomes))))))))))))))))) (. .)))"
CLINTON I think we come at it from somewhat different perspectives. 10 23 11 6 8 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP come) (PP (IN at) (NP (PRP it))) (PP (IN from) (NP (ADJP (RB somewhat) (JJ different)) (NNS perspectives))))))) (. .)))
CLINTON I understand that. 3 8 4 1 3 (ROOT (S (NP (PRP I)) (VP (VBP understand) (NP (DT that))) (. .)))
CLINTON "You know, Donald was very fortunate in his life, and that's all to his benefit." 15 35 19 9 6 "(ROOT (S (S (NP (PRP You)) (VP (VBP know))) (PRN (, ,) (S (NP (NNP Donald)) (VP (VBD was) (ADJP (RB very) (JJ fortunate)) (PP (IN in) (NP (PRP$ his) (NN life))))) (, ,)) (CC and) (S (NP (DT that)) (VP (VBZ 's) (RB all) (PP (TO to) (NP (PRP$ his) (NN benefit))))) (. .)))"
CLINTON "He started his business with $14 million, borrowed from his father, and he really believes that the more you help wealthy people, the better off we'll be and that everything will work out from there." 35 79 41 15 10 "(ROOT (S (S (NP (PRP He)) (VP (VBD started) (NP (PRP$ his) (NN business)) (PP (IN with) (NP (QP ($ $) (CD 14) (CD million)))) (, ,) (S (VP (VBN borrowed) (PP (IN from) (NP (PRP$ his) (NN father))))))) (, ,) (CC and) (S (NP (PRP he)) (ADVP (RB really)) (VP (VBZ believes) (SBAR (SBAR (IN that) (S (SBAR (X (DT the) (JJR more)) (S (NP (PRP you)) (VP (VBP help) (NP (JJ wealthy) (NNS people))))) (, ,) (X (DT the) (JJR better) (PP (IN off))) (NP (PRP we)) (VP (MD 'll) (VP (VB be))))) (CC and) (SBAR (IN that) (S (NP (NN everything)) (VP (MD will) (VP (VB work) (PRT (RP out)) (PP (IN from) (NP (RB there)))))))))) (. .)))"
CLINTON I don't buy that. 4 11 6 3 4 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB buy) (NP (DT that)))) (. .)))
CLINTON I have a different experience. 5 10 6 2 3 (ROOT (S (NP (PRP I)) (VP (VBP have) (NP (DT a) (JJ different) (NN experience))) (. .)))
CLINTON My father was a small-businessman. 5 10 6 1 3 (ROOT (S (NP (PRP$ My) (NN father)) (VP (VBD was) (NP (DT a) (NN small-businessman))) (. .)))
CLINTON He worked really hard. 4 9 5 3 3 (ROOT (S (NP (PRP He)) (VP (VBD worked) (ADJP (RB really) (JJ hard))) (. .)))
CLINTON "He printed drapery fabrics on long tables, where he pulled out those fabrics and he went down with a silkscreen and dumped the paint in and took the squeegee and kept going." 32 66 34 12 12 "(ROOT (S (NP (PRP He)) (VP (VP (VBD printed) (NP (JJ drapery) (NNS fabrics)) (PP (IN on) (NP (NP (JJ long) (NNS tables)) (, ,) (SBAR (WHADVP (WRB where)) (S (S (NP (PRP he)) (VP (VBD pulled) (PRT (RP out)) (NP (DT those) (NNS fabrics)))) (CC and) (S (NP (PRP he)) (VP (VP (VBD went) (PRT (RP down)) (PP (IN with) (NP (DT a) (NN silkscreen)))) (CC and) (VP (VBD dumped) (NP (DT the) (NN paint)) (PP (IN in)))))))))) (CC and) (VP (VP (VBD took) (NP (DT the) (NN squeegee))) (CC and) (VP (VBD kept) (S (VP (VBG going)))))) (. .)))"
CLINTON "And so what I believe is the more we can do for the middle class, the more we can invest in you, your education, your skills, your future, the better we will be off and the better we'll grow." 39 86 46 14 16 "(ROOT (S (CC And) (S (RB so) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP believe) (SBAR (S (VP (VBZ is) (SBAR (S (SBAR (X (DT the) (JJR more)) (S (NP (PRP we)) (VP (MD can) (VP (VB do) (PP (IN for) (NP (DT the) (JJ middle) (NN class))))))) (, ,) (X (DT the) (JJR more)) (NP (PRP we)) (VP (MD can) (VP (VB invest) (PP (IN in) (NP (NP (PRP you)) (, ,) (NP (PRP$ your) (NN education)) (, ,) (NP (PRP$ your) (NNS skills)) (, ,) (NP (PRP$ your) (NN future)))))))))))))) (, ,) (X (DT the) (JJR better)) (NP (PRP we)) (VP (MD will) (VP (VB be) (ADJP (RP off))))) (CC and) (S (X (DT the) (JJR better)) (NP (PRP we)) (VP (MD 'll) (VP (VB grow)))) (. .)))"
CLINTON That's the kind of economy I want us to see again. 11 29 13 6 10 (ROOT (S (NP (DT That)) (VP (VBZ 's) (NP (NP (DT the) (NN kind)) (PP (IN of) (NP (NN economy))) (SBAR (S (NP (PRP I)) (VP (VBP want) (S (NP (PRP us)) (VP (TO to) (VP (VB see) (ADVP (RB again)))))))))) (. .)))
HOLT "Let me follow up with Mr. Trump, if you can." 10 24 12 3 7 "(ROOT (S (VP (VB Let) (S (NP (PRP me)) (VP (VB follow) (PRT (RP up)) (PP (IN with) (NP (NNP Mr.) (NNP Trump))) (, ,) (SBAR (IN if) (S (NP (PRP you)) (VP (MD can))))))) (. .)))"
HOLT "You've talked about creating 25 million jobs, and you've promised to bring back millions of jobs for Americans." 18 47 22 10 12 "(ROOT (S (S (NP (PRP You)) (VP (VBP 've) (VP (VBN talked) (PP (IN about) (S (VP (VBG creating) (NP (QP (CD 25) (CD million)) (NNS jobs)))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBP 've) (VP (VBN promised) (S (VP (TO to) (VP (VB bring) (PRT (RP back)) (NP (NP (NNS millions)) (PP (IN of) (NP (NP (NNS jobs)) (PP (IN for) (NP (NNPS Americans)))))))))))) (. .)))"
HOLT How are you going to bring back the industries that have left this country for cheaper labor overseas? 18 39 18 9 14 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP are) (NP (PRP you)) (VP (VBG going) (S (VP (TO to) (VP (VB bring) (PRT (RP back)) (NP (NP (DT the) (NNS industries)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (VP (VBN left) (NP (NP (DT this) (NN country)) (PP (IN for) (NP (JJR cheaper) (NN labor)))) (ADVP (RB overseas))))))))))))))
HOLT "How, specifically, are you going to tell American manufacturers that you have to come back?" 15 39 17 10 15 "(ROOT (SBAR (WHADVP (WRB How)) (S (NP (PRN (, ,) (ADVP (RB specifically)) (, ,))) (VP (VBP are) (NP (NP (PRP you)) (VP (VBG going) (S (VP (TO to) (VP (VB tell) (NP (JJ American) (NNS manufacturers)) (SBAR (IN that) (S (NP (PRP you)) (VP (VBP have) (S (VP (TO to) (VP (VB come) (ADVP (RB back)))))))))))))))))"
TRUMP "Well, for one thing — and before we start on that — my father gave me a very small loan in 1975, and I built it into a company that's worth many, many billions of dollars, with some of the greatest assets in the world, and I say that only because that's the kind of thinking that our country needs." 60 130 68 24 15 "(ROOT (S (S (INTJ (UH Well)) (, ,) (S (PP (IN for) (NP (CD one) (NN thing))) (PRN (: --) (CC and) (PP (IN before)) (S (NP (PRP we)) (VP (VBP start) (PP (IN on) (NP (DT that))))) (: --)) (NP (PRP$ my) (NN father)) (VP (VBD gave) (NP (PRP me)) (NP (NP (DT a) (ADJP (RB very) (JJ small)) (NN loan)) (PP (IN in) (NP (CD 1975)))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBD built) (NP (PRP it)) (PP (IN into) (NP (NP (DT a) (NN company)) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (ADJP (IN worth) (NP (NP (JJ many) (, ,) (JJ many) (NNS billions)) (PP (IN of) (NP (NNS dollars))))) (, ,) (PP (IN with) (NP (NP (DT some)) (PP (IN of) (NP (NP (DT the) (JJS greatest) (NNS assets)) (PP (IN in) (NP (DT the) (NN world))))))))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP say) (NP (DT that)) (SBAR (RB only) (IN because) (S (NP (DT that)) (VP (VBZ 's) (NP (NP (DT the) (NN kind)) (PP (IN of) (S (VP (VBG thinking) (SBAR (IN that) (S (NP (PRP$ our) (NN country)) (VP (VBZ needs))))))))))))) (. .)))"
TRUMP Our country's in deep trouble. 5 12 7 3 4 (ROOT (S (NP (PRP$ Our) (NN country)) (VP (VBZ 's) (PP (IN in) (NP (JJ deep) (NN trouble)))) (. .)))
TRUMP "We don't know what we're doing when it comes to devaluations and all of these countries all over the world, especially China." 22 52 26 11 15 "(ROOT (S (NP (PRP We)) (VP (VBP do) (RB n't) (VP (VB know) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG doing) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (VBZ comes) (PP (TO to) (NP (NP (NNS devaluations)) (CC and) (NP (NP (DT all)) (PP (IN of) (NP (DT these) (NNS countries)))))) (PP (DT all) (IN over) (NP (NP (DT the) (NN world)) (, ,) (RB especially) (NP (NNP China))))))))))))) (. .)))"
TRUMP "They're the best, the best ever at it." 8 20 11 5 6 "(ROOT (S (NP (PRP They)) (VP (VBP 're) (NP (NP (DT the) (JJS best)) (, ,) (NP (NP (DT the) (JJS best) (RB ever)) (PP (IN at) (NP (PRP it)))))) (. .)))"
TRUMP "What they're doing to us is a very, very sad thing." 11 26 14 8 7 "(ROOT (S (SBAR (WHNP (WP What)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG doing) (PP (TO to) (NP (PRP us))))))) (VP (VBZ is) (NP (DT a) (ADJP (RB very) (, ,) (RB very) (JJ sad)) (NN thing))) (. .)))"
TRUMP So we have to do that. 6 14 7 3 6 (ROOT (S (IN So) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB do) (NP (DT that)))))) (. .)))
TRUMP We have to renegotiate our trade deals. 7 15 8 3 6 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB renegotiate) (NP (PRP$ our) (NN trade) (NNS deals)))))) (. .)))
TRUMP "And, Lester, they're taking our jobs, they're giving incentives, they're doing things that, frankly, we don't do." 17 53 28 10 7 "(ROOT (S (CC And) (SBAR (PRN (, ,) (NP (NNP Lester)) (, ,)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG taking) (NP (PRP$ our) (NNS jobs)))))) (PRN (, ,) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG giving) (NP (NNS incentives))))) (, ,)) (NP (PRP they)) (VP (VBP 're) (VP (VBG doing) (NP (NNS things)) (SBAR (IN that) (S (, ,) (ADVP (RB frankly)) (, ,) (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB do))))))) (. .)))"
TRUMP Let me give you the example of Mexico. 8 19 9 3 7 (ROOT (S (VP (VB Let) (S (NP (PRP me)) (VP (VB give) (NP (PRP you)) (NP (NP (DT the) (NN example)) (PP (IN of) (NP (NNP Mexico))))))) (. .)))
TRUMP They have a VAT tax. 5 10 6 1 3 (ROOT (S (NP (PRP They)) (VP (VBP have) (NP (DT a) (NNP VAT) (NN tax))) (. .)))
TRUMP We're on a different system. 5 12 7 3 4 (ROOT (S (NP (PRP We)) (VP (VBP 're) (PP (IN on) (NP (DT a) (JJ different) (NN system)))) (. .)))
TRUMP "When we sell into Mexico, there's a tax." 8 22 11 3 6 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP we)) (VP (VBP sell) (PP (IN into) (NP (NNP Mexico)))))) (, ,) (NP (EX there)) (VP (VBZ 's) (NP (DT a) (NN tax))) (. .)))"
TRUMP "When they sell in — automatic, 16 percent, approximately." 9 24 12 3 5 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP they)) (VP (VBP sell) (PRT (RP in))))) (: --) (S (NP (NP (JJ automatic)) (, ,) (NP (CD 16) (NN percent)) (, ,)) (VP (VBZ approximately))) (. .)))"
TRUMP "When they sell into us, there's no tax." 8 22 11 3 6 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP they)) (VP (VBP sell) (PP (IN into) (NP (PRP us)))))) (, ,) (NP (EX there)) (VP (VBZ 's) (NP (DT no) (NN tax))) (. .)))"
TRUMP It's a defective agreement. 4 10 6 2 3 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (DT a) (JJ defective) (NN agreement))) (. .)))
TRUMP "It's been defective for a long time, many years, but the politicians haven't done anything about it." 17 39 22 10 7 "(ROOT (S (S (NP (PRP It)) (VP (VBZ 's) (VP (VBN been) (ADJP (JJ defective)) (PP (IN for) (NP (NP (DT a) (JJ long) (NN time)) (, ,) (NP (JJ many) (NNS years))))))) (, ,) (CC but) (S (NP (DT the) (NNS politicians)) (VP (VBP have) (RB n't) (VP (VBN done) (NP (NN anything)) (PP (IN about) (NP (PRP it)))))) (. .)))"
TRUMP "Now, in all fairness to Secretary Clinton — yes, is that OK?" 12 28 14 7 7 "(ROOT (S (ADVP (RB Now)) (, ,) (SBAR (SBAR (IN in) (S (NP (DT all)) (VP (VBZ fairness) (PP (TO to) (NP (NNP Secretary) (NNP Clinton)))))) (: --) (PRN (FRAG (INTJ (UH yes))))) (, ,) (VP (VBZ is) (ADJP (RB that) (JJ OK)))))"
TRUMP Good. 1 3 2 1 1 (ROOT (INTJ (JJ Good) (. .)))
TRUMP I want you to be very happy. 7 16 8 5 6 (ROOT (S (NP (PRP I)) (VP (VBP want) (S (NP (PRP you)) (VP (TO to) (VP (VB be) (ADJP (RB very) (JJ happy)))))) (. .)))
TRUMP It's very important to me. 5 13 7 5 5 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (RB very) (JJ important) (PP (TO to) (NP (PRP me))))) (. .)))
TRUMP "But in all fairness to Secretary Clinton, when she started talking about this, it was really very recently." 18 40 21 10 8 "(ROOT (S (CC But) (PP (IN in) (NP (NP (DT all) (NN fairness)) (PP (TO to) (NP (NNP Secretary) (NNP Clinton))))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD started) (S (VP (VBG talking) (PP (IN about) (NP (DT this)))))))) (, ,) (NP (PRP it)) (VP (VBD was) (ADVP (RB really)) (ADJP (RB very) (RB recently))) (. .)))"
TRUMP She's been doing this for 30 years. 7 18 9 4 7 (ROOT (S (NP (PRP She)) (VP (VBZ 's) (VP (VBN been) (VP (VBG doing) (NP (NP (DT this)) (PP (IN for) (NP (CD 30) (NNS years))))))) (. .)))
TRUMP And why hasn't she made the agreements better? 8 17 9 4 5 (ROOT (S (CC And) (NP (NNP why)) (VP (VBZ has) (RB n't) (NP (NP (PRP she)) (VP (VBN made) (NP (DT the) (NNS agreements)) (ADVP (RBR better)))))))
TRUMP The NAFTA agreement is defective. 5 10 6 2 3 (ROOT (S (NP (DT The) (NNP NAFTA) (NN agreement)) (VP (VBZ is) (ADJP (JJ defective))) (. .)))
TRUMP "Just because of the tax and many other reasons, but just because of the fact." 15 26 17 9 5 "(ROOT (FRAG (RB Just) (PP (RB because) (PP (IN of) (NP (NP (DT the) (NN tax)) (CC and) (NP (JJ many) (JJ other) (NNS reasons)))) (, ,) (CONJP (CC but) (RB just)) (PP (RB because) (IN of) (NP (DT the) (NN fact)))) (. .)))"
HOLT "Let me interrupt just a moment, but." 7 17 9 3 6 "(ROOT (S (VP (VB Let) (S (NP (PRP me)) (VP (VB interrupt) (ADVP (RB just) (NP (DT a) (NN moment))) (, ,) (ADVP (CC but))))) (. .)))"
TRUMP "Secretary Clinton and others, politicians, should have been doing this for years, not right now, because of the fact that we've created a movement." 24 57 30 11 11 "(ROOT (S (NP (NP (NP (NNP Secretary) (NNP Clinton)) (CC and) (NP (NNS others))) (, ,) (NP (NNS politicians)) (, ,)) (VP (MD should) (VP (VB have) (VP (VBN been) (VP (VBG doing) (NP (NP (DT this)) (PP (IN for) (NP (NP (NP (NNS years)) (PRN (, ,) (ADVP (RB not) (RB right)) (ADVP (RB now)) (, ,))) (PP (RB because) (IN of) (NP (DT the) (NN fact)))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 've) (VP (VBN created) (NP (DT a) (NN movement)))))))))) (. .)))"
TRUMP They should have been doing this for years. 8 19 9 4 8 (ROOT (S (NP (PRP They)) (VP (MD should) (VP (VB have) (VP (VBN been) (VP (VBG doing) (NP (NP (DT this)) (PP (IN for) (NP (NNS years)))))))) (. .)))
TRUMP "What's happened to our jobs and our country and our economy generally is — look, we owe $20 trillion." 19 44 23 8 10 "(ROOT (S (S (SBAR (WHNP (WP What)) (S (VP (VBZ 's) (VP (VBN happened) (PP (TO to) (NP (NP (PRP$ our) (NNS jobs)) (CC and) (NP (NP (PRP$ our) (NN country)) (CC and) (NP (PRP$ our) (NN economy))))))))) (ADVP (RB generally)) (VP (VBZ is) (: --) (S (VP (VB look))))) (, ,) (NP (PRP we)) (VP (VBP owe) (NP (QP ($ $) (CD 20) (CD trillion)))) (. .)))"
TRUMP "We cannot do it any longer, Lester." 7 17 10 4 4 "(ROOT (S (NP (PRP We)) (VP (MD can) (RB not) (VP (VB do) (NP (PRP it)) (ADVP (DT any) (RBR longer)) (, ,) (ADVP (RB Lester)))) (. .)))"
HOLT "Back to the question, though." 5 12 7 4 4 "(ROOT (FRAG (ADVP (RB Back) (PP (TO to) (NP (DT the) (NN question)))) (, ,) (ADVP (RB though)) (. .)))"
HOLT "How do you bring back — specifically bring back jobs, American manufacturers?" 12 24 13 6 6 "(ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP do) (NP (PRP you)) (VP (VB bring) (ADVP (RB back)) (: --) (S (ADVP (RB specifically)) (VP (VB bring) (PRT (RP back)) (NP (NNS jobs) (, ,) (JJ American) (NNS manufacturers))))))))"
HOLT How do you make them bring the jobs back? 9 19 9 4 6 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP do) (NP (PRP you)) (VP (VB make) (S (NP (PRP them)) (VP (VB bring) (NP (DT the) (NNS jobs)) (ADVP (RB back))))))))
TRUMP "Well, the first thing you do is don't let the jobs leave." 12 29 15 7 6 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (NP (DT the) (JJ first) (NN thing)) (SBAR (S (NP (PRP you)) (VP (VBP do))))) (VP (VBZ is) (VP (VBP do) (RB n't) (VP (VB let) (S (NP (DT the) (NNS jobs)) (VP (VB leave)))))) (. .)))"
TRUMP The companies are leaving. 4 9 5 2 3 (ROOT (S (NP (DT The) (NNS companies)) (VP (VBP are) (VP (VBG leaving))) (. .)))
TRUMP "I could name, I mean, there are thousands of them." 10 29 13 4 9 "(ROOT (S (NP (PRP I)) (VP (MD could) (VP (VB name) (PRN (, ,) (S (NP (PRP I)) (VP (VBP mean))) (, ,)) (SBAR (S (NP (EX there)) (VP (VBP are) (NP (NP (NNS thousands)) (PP (IN of) (NP (PRP them))))))))) (. .)))"
TRUMP "They're leaving, and they're leaving in bigger numbers than ever." 10 28 14 8 8 "(ROOT (S (S (NP (PRP They)) (VP (VBP 're) (VP (VBG leaving)))) (, ,) (CC and) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG leaving) (PP (IN in) (NP (NP (JJR bigger) (NNS numbers)) (PP (IN than) (NP (RB ever)))))))) (. .)))"
TRUMP "And what you do is you say, fine, you want to go to Mexico or some other country, good luck." 20 49 24 11 10 "(ROOT (S (CC And) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBP do) (SBAR (S (VP (VBZ is) (SBAR (S (NP (PRP you)) (VP (VBP say)))))))))) (, ,) (ADJP (JJ fine)) (, ,) (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB go) (PP (TO to) (NP (NP (NNP Mexico)) (CC or) (NP (NP (DT some) (JJ other) (NN country)) (, ,) (NP (JJ good) (NN luck))))))))) (. .)))"
TRUMP We wish you a lot of luck. 7 16 8 2 5 (ROOT (S (NP (PRP We)) (VP (VBP wish) (NP (PRP you)) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN luck))))) (. .)))
TRUMP "But if you think you're going to make your air conditioners or your cars or your cookies or whatever you make and bring them into our country without a tax, you're wrong." 32 68 36 11 15 "(ROOT (S (CC But) (SBAR (IN if) (S (NP (PRP you)) (VP (VBP think) (SBAR (SBAR (S (NP (PRP you)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB make) (NP (NP (PRP$ your) (NN air) (NNS conditioners)) (CC or) (NP (NP (PRP$ your) (NNS cars)) (CC or) (NP (PRP$ your) (NNS cookies))))))))))) (CC or) (SBAR (WHNP (WDT whatever)) (S (NP (PRP you)) (VP (VB make) (CC and) (VB bring) (NP (PRP them)) (PP (IN into) (NP (PRP$ our) (NN country))) (PP (IN without) (NP (DT a) (NN tax)))))))))) (, ,) (NP (PRP you)) (VP (VBP 're) (ADJP (JJ wrong))) (. .)))"
TRUMP "And once you say you're going to have to tax them coming in, and our politicians never do this, because they have special interests and the special interests want those companies to leave, because in many cases, they own the companies." 41 93 47 20 16 "(ROOT (S (S (CC And) (ADVP (RB once)) (NP (PRP you)) (VP (VBP say) (SBAR (S (NP (PRP you)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB have) (S (VP (TO to) (VP (VB tax) (S (NP (PRP them)) (VP (VBG coming) (PRT (RP in)))))))))))))))) (, ,) (CC and) (S (NP (PRP$ our) (NNS politicians)) (ADVP (RB never)) (VP (VBP do) (NP (NP (DT this)) (, ,) (SBAR (IN because) (S (S (NP (PRP they)) (VP (VBP have) (NP (JJ special) (NNS interests)))) (CC and) (S (NP (DT the) (JJ special) (NNS interests)) (VP (VBP want) (S (NP (DT those) (NNS companies)) (VP (TO to) (VP (VB leave)))) (, ,) (SBAR (IN because) (S (PP (IN in) (NP (JJ many) (NNS cases))) (, ,) (NP (PRP they)) (VP (VBP own) (NP (DT the) (NNS companies)))))))))))) (. .)))"
TRUMP "So what I'm saying is, we can stop them from leaving." 11 29 14 6 6 "(ROOT (S (IN So) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG saying) (VP (VBZ is)))))) (, ,) (NP (PRP we)) (VP (MD can) (VP (VB stop) (NP (PRP them)) (PP (IN from) (S (VP (VBG leaving)))))) (. .)))"
TRUMP We have to stop them from leaving. 7 18 8 5 8 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB stop) (NP (PRP them)) (PP (IN from) (S (VP (VBG leaving)))))))) (. .)))
TRUMP "And that's a big, big factor." 6 13 9 3 3 "(ROOT (S (CC And) (NP (DT that)) (VP (VBZ 's) (NP (DT a) (JJ big) (, ,) (JJ big) (NN factor))) (. .)))"
HOLT Let me let Secretary Clinton get in here. 8 19 9 5 8 (ROOT (S (VP (VB Let) (S (NP (PRP me)) (VP (VB let) (S (NP (NNP Secretary) (NNP Clinton)) (VP (VB get) (PP (IN in) (NP (RB here)))))))) (. .)))
CLINTON "Well, let's stop for a second and remember where we were eight years ago." 14 34 17 6 10 "(ROOT (S (INTJ (UH Well)) (, ,) (VP (VB let) (S (NP (POS 's)) (VP (VP (VB stop) (PP (IN for) (NP (DT a) (NN second)))) (CC and) (VP (VB remember) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (VBD were) (ADVP (NP (CD eight) (NNS years)) (RB ago))))))))) (. .)))"
CLINTON "We had the worst financial crisis, the Great Recession, the worst since the 1930s." 14 27 17 6 6 "(ROOT (S (NP (PRP We)) (VP (VBD had) (NP (NP (DT the) (JJS worst) (JJ financial) (NN crisis)) (, ,) (NP (DT the) (JJ Great) (NN Recession)) (, ,) (NP (NP (DT the) (JJS worst)) (PP (IN since) (NP (DT the) (NNS 1930s)))))) (. .)))"
CLINTON "That was in large part because of tax policies that slashed taxes on the wealthy, failed to invest in the middle class, took their eyes off of Wall Street, and created a perfect storm." 34 67 38 17 13 "(ROOT (S (NP (DT That)) (VP (VBD was) (PP (IN in) (NP (NP (JJ large) (NN part)) (PP (RB because) (IN of) (NP (NN tax) (NNS policies))) (SBAR (WHNP (WDT that)) (S (VP (VP (VBD slashed) (NP (NNS taxes)) (PP (IN on) (NP (DT the) (JJ wealthy)))) (, ,) (VP (VBD failed) (S (VP (TO to) (VP (VB invest) (PP (IN in) (NP (DT the) (JJ middle) (NN class))))))) (, ,) (VP (VBD took) (NP (PRP$ their) (NNS eyes)) (PRT (RP off)) (PP (IN of) (NP (NNP Wall) (NNP Street)))) (, ,) (CC and) (VP (VBD created) (NP (DT a) (JJ perfect) (NN storm))))))))) (. .)))"
CLINTON "In fact, Donald was one of the people who rooted for the housing crisis." 14 32 16 5 10 "(ROOT (S (PP (IN In) (NP (NN fact))) (, ,) (NP (NNP Donald)) (VP (VBD was) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBN rooted) (PP (IN for) (NP (DT the) (NN housing) (NN crisis)))))))))) (. .)))"
CLINTON "He said, back in 2006, ""Gee, I hope it does collapse, because then I can go in and buy some and make some money""." 24 59 31 9 14 "(ROOT (S (NP (PRP He)) (VP (VBD said) (, ,) (PP (ADVP (RB back)) (IN in) (NP (CD 2006))) (, ,) (S (`` ``) (NP (NNP Gee)) (, ,) (NP (PRP I)) (VP (VBP hope) (SBAR (S (NP (PRP it)) (VP (VBZ does) (NP (NN collapse)) (, ,) (SBAR (IN because) (S (ADVP (RB then)) (NP (PRP I)) (VP (MD can) (VP (VP (VB go) (PRT (RP in))) (CC and) (VP (VP (VB buy) (NP (DT some))) (CC and) (VP (VB make) (NP (DT some) (NN money)))))))))))) ('' ''))) (. .)))"
CLINTON "Well, it did collapse." 4 11 6 1 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP it)) (VP (VBD did) (NP (NN collapse))) (. .)))"
TRUMP "That's called business, by the way." 6 16 9 3 5 "(ROOT (S (NP (DT That)) (VP (VBZ 's) (VP (VBN called) (NP (NN business)) (, ,) (PP (IN by) (NP (DT the) (NN way))))) (. .)))"
CLINTON Nine million people — nine million people lost their jobs. 10 19 11 1 4 (ROOT (NP (NP (QP (CD Nine) (CD million)) (NNS people)) (: --) (NP (NP (QP (CD nine) (CD million)) (NNS people)) (VP (VBN lost) (NP (PRP$ their) (NNS jobs)))) (. .)))
CLINTON Five million people lost their homes. 6 12 7 1 3 (ROOT (S (NP (QP (CD Five) (CD million)) (NNS people)) (VP (VBD lost) (NP (PRP$ their) (NNS homes))) (. .)))
CLINTON And $13 trillion in family wealth was wiped out. 9 20 11 3 4 (ROOT (S (CC And) (NP (NP (QP ($ $) (CD 13) (CD trillion))) (PP (IN in) (NP (NN family) (NN wealth)))) (VP (VBD was) (VP (VBN wiped) (PRT (RP out)))) (. .)))
CLINTON "Now, we have come back from that abyss." 8 18 10 4 5 "(ROOT (S (ADVP (RB Now)) (, ,) (NP (PRP we)) (VP (VBP have) (VP (VBN come) (PRT (RP back)) (PP (IN from) (NP (DT that) (NNS abyss))))) (. .)))"
CLINTON And it has not been easy. 6 12 7 4 4 (ROOT (S (CC And) (NP (PRP it)) (VP (VBZ has) (RB not) (VP (VBN been) (ADJP (JJ easy)))) (. .)))
CLINTON "So we're now on the precipice of having a potentially much better economy, but the last thing we need to do is to go back to the policies that failed us in the first place." 35 77 38 20 28 "(ROOT (S (IN So) (NP (PRP we)) (VP (VBP 're) (ADVP (RB now)) (PP (IN on) (NP (NP (DT the) (NN precipice)) (PP (IN of) (S (VP (VBG having) (NP (NP (DT a) (ADJP (RB potentially) (RB much) (JJR better)) (NN economy)) (, ,) (CC but) (NP (NP (DT the) (JJ last) (NN thing)) (SBAR (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB do) (SBAR (S (VP (VBZ is) (S (VP (TO to) (VP (VB go) (PRT (RP back)) (PP (TO to) (NP (NP (DT the) (NNS policies)) (SBAR (WHNP (WDT that)) (S (VP (VBD failed) (NP (PRP us)) (PP (IN in) (NP (DT the) (JJ first) (NN place)))))))))))))))))))))))))))) (. .)))"
CLINTON "Independent experts have looked at what I've proposed and looked at what Donald's proposed, and basically they've said this, that if his tax plan, which would blow up the debt by over $5 trillion and would in some instances disadvantage middle-class families compared to the wealthy, were to go into effect, we would lose 3." 55 124 65 25 17 "(ROOT (S (S (NP (JJ Independent) (NNS experts)) (VP (VBP have) (VP (VBN looked) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP 've) (VP (VBN proposed) (CC and) (VBN looked) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (NNP Donald) (POS 's)) (VP (VBD proposed))))))))))))) (, ,) (CC and) (S (ADVP (RB basically)) (NP (PRP they)) (VP (VBP 've) (VP (VBN said) (NP (DT this)) (, ,) (SBAR (IN that) (S (SBAR (IN if) (S (NP (NP (PRP$ his) (NN tax) (NN plan)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VP (MD would) (VP (VB blow) (PRT (RP up)) (NP (DT the) (NN debt)) (PP (IN by) (NP (QP (IN over) ($ $) (CD 5) (CD trillion)))))) (CC and) (VP (MD would)) (NP (ADJP (PP (IN in) (NP (DT some) (NNS instances) (NN disadvantage))) (NN middle-class)) (NNS families)) (PP (VBN compared) (PP (TO to) (NP (DT the) (JJ wealthy))))))) (, ,)) (VP (VBD were) (S (VP (TO to) (VP (VB go) (PP (IN into) (NP (NN effect))))))))) (, ,) (NP (PRP we)) (VP (MD would) (VP (VB lose) (NP (CD 3))))))))) (. .)))"
CLINTON 5 million jobs and maybe have another recession. 8 14 9 1 3 (ROOT (S (NP (QP (CD 5) (CD million)) (NNS jobs) (CC and) (NNS maybe)) (VP (VBP have) (NP (DT another) (NN recession))) (. .)))
CLINTON "They've looked at my plans and they've said, OK, if we can do this, and I intend to get it done, we will have 10 million more new jobs, because we will be making investments where we can grow the economy." 41 100 49 16 16 "(ROOT (S (S (S (NP (PRP They)) (VP (VBP 've) (VP (VBN looked) (PP (IN at) (NP (PRP$ my) (NNS plans)))))) (CC and) (S (NP (PRP they)) (VP (VBP 've) (VP (VBN said) (, ,) (ADVP (UH OK)) (, ,) (SBAR (IN if) (S (NP (PRP we)) (VP (MD can) (VP (VB do) (NP (DT this)))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP intend) (S (VP (TO to) (VP (VB get) (S (NP (PRP it)) (VP (VBN done))) (PRN (, ,) (S (NP (PRP we)) (VP (MD will) (VP (VB have) (NP (ADJP (NP (QP (CD 10) (CD million))) (JJR more)) (JJ new) (NNS jobs))))) (, ,)) (SBAR (IN because) (S (NP (PRP we)) (VP (MD will) (VP (VB be) (VP (VBG making) (NP (NNS investments)) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (MD can) (VP (VB grow) (NP (DT the) (NN economy)))))))))))))))) (. .)))"
CLINTON Take clean energy. 3 7 4 2 3 (ROOT (S (VP (VB Take) (NP (JJ clean) (NN energy))) (. .)))
CLINTON Some country is going to be the clean- energy superpower of the 21st century. 14 27 16 8 9 (ROOT (S (NP (DT Some) (NN country)) (VP (VBZ is) (VP (VBG going) (S (VP (TO to) (VP (VB be) (NP (NP (DT the) (JJ clean) (JJ -) (NN energy) (NN superpower)) (PP (IN of) (NP (DT the) (JJ 21st) (NN century))))))))) (. .)))
CLINTON Donald thinks that climate change is a hoax perpetrated by the Chinese. 12 25 13 4 9 (ROOT (S (NP (NNP Donald)) (VP (VBZ thinks) (SBAR (IN that) (S (NP (NN climate) (NN change)) (VP (VBZ is) (NP (NP (DT a) (NN hoax)) (VP (VBN perpetrated) (PP (IN by) (NP (DT the) (NNPS Chinese))))))))) (. .)))
CLINTON I think it's real. 4 14 6 3 6 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ real)))))) (. .)))
TRUMP I did not. 3 7 4 2 2 (ROOT (S (NP (PRP I)) (VP (VBD did) (RB not)) (. .)))
TRUMP I did not. 3 7 4 2 2 (ROOT (S (NP (PRP I)) (VP (VBD did) (RB not)) (. .)))
TRUMP I do not say that. 5 11 6 3 4 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB not) (VP (VB say) (NP (DT that)))) (. .)))
CLINTON I think science is real. 5 14 6 3 6 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (NN science)) (VP (VBZ is) (ADJP (JJ real)))))) (. .)))
TRUMP I do not say that. 5 11 6 3 4 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB not) (VP (VB say) (NP (DT that)))) (. .)))
CLINTON "And I think it's important that we grip this and deal with it, both at home and abroad." 18 41 21 6 13 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ important)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBZ grip) (NP (NP (DT this) (CC and) (NN deal)) (PP (IN with) (NP (NP (PRP it)) (, ,) (UCP (DT both) (ADVP (IN at) (NN home)) (CC and) (NP (RB abroad))))))))))))) (. .)))"
CLINTON And here's what we can do. 6 17 8 3 6 (ROOT (S (CC And) (NP (RB here)) (VP (VBZ 's) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (MD can) (VP (VB do)))))) (. .)))
CLINTON We can deploy a half a billion more solar panels. 10 20 11 3 7 (ROOT (S (NP (PRP We)) (VP (MD can) (VP (VB deploy) (NP (ADJP (NP (QP (DT a) (PDT half)) (QP (DT a) (CD billion))) (RBR more)) (JJ solar) (NNS panels)))) (. .)))
CLINTON We can have enough clean energy to power every home. 10 21 11 5 6 (ROOT (S (NP (PRP We)) (VP (MD can) (VP (VB have) (NP (NP (ADJP (RB enough) (JJ clean)) (NN energy)) (PP (TO to) (NP (NN power)))) (ADVP (DT every) (NN home)))) (. .)))
CLINTON We can build a new modern electric grid. 8 14 9 4 4 (ROOT (S (NP (PRP We)) (VP (MD can) (VP (VB build) (NP (DT a) (JJ new) (JJ modern) (JJ electric) (NN grid)))) (. .)))
CLINTON That's a lot of jobs; that's a lot of new economic activity. 12 31 16 6 6 (ROOT (S (S (NP (DT That)) (VP (VBZ 's) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS jobs)))))) (: ;) (S (NP (DT that)) (VP (VBZ 's) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (JJ new) (JJ economic) (NN activity)))))) (. .)))
CLINTON "So I've tried to be very specific about what we can and should do, and I am determined that we're going to get the economy really moving again, building on the progress we've made over the last eight years, but never going back to what got us in trouble in the first place." 53 120 60 31 23 "(ROOT (S (IN So) (S (S (NP (PRP I)) (VP (VBP 've) (VP (VBN tried) (S (VP (TO to) (VP (VB be) (ADJP (RB very) (JJ specific) (PP (IN about) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (MD can) (CC and) (MD should) (VP (VB do))))))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP am) (VP (VBN determined) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB get) (NP (NP (DT the) (NN economy)) (VP (ADVP (RB really)) (VP (VBG moving) (ADVP (RB again))) (, ,) (VP (VBG building) (PP (IN on) (NP (NP (DT the) (NN progress)) (SBAR (S (NP (PRP we)) (VP (VBP 've) (VP (VBN made) (PP (IN over) (NP (DT the) (JJ last) (CD eight) (NNS years))))))))))))))))))))))) (, ,) (CC but) (S (ADVP (RB never)) (VP (VBG going) (PRT (RP back)) (PP (TO to) (SBAR (WHNP (WP what)) (S (VP (VBD got) (NP (PRP us)) (PP (IN in) (NP (NN trouble))) (PP (IN in) (NP (DT the) (JJ first) (NN place))))))))) (. .)))"
HOLT Mr. Trump? 2 3 2 0 1 (ROOT (NP (NNP Mr.) (NNP Trump)))
TRUMP She talks about solar panels. 5 11 6 3 4 (ROOT (S (NP (PRP She)) (VP (VBZ talks) (PP (IN about) (NP (JJ solar) (NNS panels)))) (. .)))
TRUMP "We invested in a solar company, our country." 8 17 10 3 5 "(ROOT (S (NP (PRP We)) (VP (VBD invested) (PP (IN in) (NP (NP (DT a) (JJ solar) (NN company)) (, ,) (NP (PRP$ our) (NN country))))) (. .)))"
TRUMP That was a disaster. 4 9 5 1 3 (ROOT (S (NP (DT That)) (VP (VBD was) (NP (DT a) (NN disaster))) (. .)))
TRUMP They lost plenty of money on that one. 8 18 9 4 5 (ROOT (S (NP (PRP They)) (VP (VBD lost) (NP (NP (RB plenty)) (PP (IN of) (NP (NN money)))) (PP (IN on) (NP (DT that) (NN one)))) (. .)))
TRUMP "Now, look, I'm a great believer in all forms of energy, but we're putting a lot of people out of work." 21 52 27 11 9 "(ROOT (S (S (S (INTJ (RB Now)) (, ,) (VP (VB look))) (, ,) (NP (PRP I)) (VP (VBP 'm) (NP (NP (DT a) (JJ great) (NN believer)) (PP (IN in) (NP (NP (DT all) (NNS forms)) (PP (IN of) (NP (NN energy)))))))) (, ,) (CC but) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG putting) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (NNS people)) (PP (RB out) (IN of) (NP (NN work))))))))) (. .)))"
TRUMP Our energy policies are a disaster. 6 11 7 1 3 (ROOT (S (NP (PRP$ Our) (NN energy) (NNS policies)) (VP (VBP are) (NP (DT a) (NN disaster))) (. .)))
TRUMP "Our country is losing so much in terms of energy, in terms of paying off our debt." 17 37 19 9 9 "(ROOT (S (NP (PRP$ Our) (NN country)) (VP (VBZ is) (VP (VBG losing) (ADVP (RB so) (RB much)) (PP (IN in) (NP (NP (NNS terms)) (PP (IN of) (NP (NN energy))))) (, ,) (PP (IN in) (NP (NP (NNS terms)) (PP (IN of) (S (VP (VBG paying) (PRT (RP off)) (NP (PRP$ our) (NN debt))))))))) (. .)))"
TRUMP You can't do what you're looking to do with $20 trillion in debt. 13 36 17 8 14 (ROOT (S (NP (PRP You)) (VP (MD ca) (RB n't) (VP (VB do) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBP 're) (VP (VBG looking) (S (VP (TO to) (VP (VB do) (PP (IN with) (NP (NP (QP ($ $) (CD 20) (CD trillion))) (PP (IN in) (NP (NN debt)))))))))))))) (. .)))
TRUMP "The Obama administration, from the time they've come in, is over 230 years' worth of debt, and he's topped it." 20 51 27 11 10 "(ROOT (S (S (NP (NP (DT The) (JJ Obama) (NN administration)) (, ,) (PP (IN from) (NP (NP (DT the) (NN time)) (SBAR (S (NP (PRP they)) (VP (VBP 've) (VP (VBN come) (PP (IN in)))))))) (, ,)) (VP (VBZ is) (PP (IN over) (NP (NP (CD 230) (NNS years)) ('' ') (PP (JJ worth) (IN of) (NP (NN debt))))))) (, ,) (CC and) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBN topped) (NP (PRP it))))) (. .)))"
TRUMP "He's doubled it in a course of almost eight years, seven-and-a-half years, to be semi- exact." 16 39 21 10 8 "(ROOT (S (NP (PRP He)) (VP (VBZ 's) (VP (VBN doubled) (NP (PRP it)) (PP (IN in) (NP (NP (DT a) (NN course)) (PP (IN of) (NP (NP (RB almost) (CD eight) (NNS years)) (, ,) (NP (JJ seven-and-a-half) (NNS years)) (, ,))))) (S (VP (TO to) (VP (VB be) (ADJP (ADJP (JJ semi)) (: -) (ADJP (JJ exact)))))))) (. .)))"
TRUMP So I will tell you this. 6 13 7 1 4 (ROOT (S (IN So) (NP (PRP I)) (VP (MD will) (VP (VB tell) (NP (PRP you)) (NP (DT this)))) (. .)))
TRUMP We have to do a much better job at keeping our jobs. 12 25 13 7 9 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB do) (NP (DT a) (ADJP (RB much) (JJR better)) (NN job)) (PP (IN at) (S (VP (VBG keeping) (NP (PRP$ our) (NNS jobs))))))))) (. .)))
TRUMP "And we have to do a much better job at giving companies incentives to build new companies or to expand, because they're not doing it." 25 54 28 15 14 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB do) (NP (DT a) (ADJP (RB much) (JJR better)) (NN job)) (PP (IN at) (S (VP (VBG giving) (NP (NNS companies)) (NP (NNS incentives) (S (VP (VP (TO to) (VP (VB build) (NP (JJ new) (NNS companies)))) (CC or) (VP (TO to) (VP (VB expand)))))) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (VBP 're) (RB not) (VP (VBG doing) (NP (PRP it))))))))))))) (. .)))"
TRUMP "And all you have to do is look at Michigan and look at Ohio and look at all of these places where so many of their jobs and their companies are just leaving, they're gone." 35 79 38 19 12 "(ROOT (S (S (CC And) (NP (NP (DT all)) (SBAR (S (NP (PRP you)) (VP (VBP have) (S (VP (TO to) (VP (VB do)))))))) (VP (VBZ is) (S (VP (VP (VB look) (PP (IN at) (NP (NNP Michigan)))) (CC and) (VP (VB look) (PP (IN at) (NP (NNP Ohio)))) (CC and) (VP (VB look) (PP (IN at) (NP (NP (DT all)) (PP (IN of) (NP (DT these) (NNS places))))) (SBAR (WHADVP (WRB where)) (S (NP (NP (RB so) (JJ many)) (PP (IN of) (NP (NP (PRP$ their) (NNS jobs)) (CC and) (NP (PRP$ their) (NNS companies))))) (VP (VBP are) (ADVP (RB just)) (VP (VBG leaving)))))))))) (, ,) (NP (PRP they)) (VP (VBP 're) (VP (VBN gone))) (. .)))"
TRUMP "And, Hillary, I'd just ask you this." 7 20 11 3 5 "(ROOT (S (CC And) (, ,) (ADVP (RB Hillary)) (, ,) (NP (PRP I)) (VP (MD 'd) (ADVP (RB just)) (VP (VB ask) (S (NP (PRP you)) (NP (DT this))))) (. .)))"
TRUMP You've been doing this for 30 years. 7 18 9 4 7 (ROOT (S (NP (PRP You)) (VP (VBP 've) (VP (VBN been) (VP (VBG doing) (NP (NP (DT this)) (PP (IN for) (NP (CD 30) (NNS years))))))) (. .)))
TRUMP Why are you just thinking about these solutions right now? 10 19 10 6 5 (ROOT (SBARQ (WHADVP (WRB Why)) (SQ (VBP are) (NP (PRP you)) (VP (ADVP (RB just)) (VBG thinking) (PP (IN about) (NP (DT these) (NNS solutions))) (ADVP (RB right) (RB now))))))
TRUMP "For 30 years, you've been doing it, and now you're just starting to think of solutions." 16 41 21 11 9 "(ROOT (S (PP (IN For) (NP (CD 30) (NNS years))) (, ,) (S (NP (PRP you)) (VP (VBP 've) (VP (VBN been) (VP (VBG doing) (NP (PRP it)))))) (, ,) (CC and) (S (ADVP (RB now)) (NP (PRP you)) (VP (VBP 're) (ADVP (RB just)) (VP (VBG starting) (S (VP (TO to) (VP (VB think) (PP (IN of) (NP (NNS solutions))))))))) (. .)))"
CLINTON "Well, actually." 2 7 4 1 2 "(ROOT (FRAG (INTJ (UH Well)) (, ,) (ADVP (RB actually)) (. .)))"
TRUMP I will bring — excuse me. 6 14 7 2 5 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VP (VB bring)) (: --) (VP (VB excuse) (NP (PRP me))))) (. .)))
TRUMP I will bring back jobs. 5 12 6 1 4 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB bring) (PRT (RP back)) (NP (NNS jobs)))) (. .)))
TRUMP You can't bring back jobs. 5 13 7 2 4 (ROOT (S (NP (PRP You)) (VP (MD ca) (RB n't) (VP (VB bring) (PRT (RP back)) (NP (NNS jobs)))) (. .)))
CLINTON "Well, actually, I have thought about this quite a bit." 10 24 13 6 7 "(ROOT (S (INTJ (UH Well)) (, ,) (ADVP (RB actually)) (, ,) (NP (PRP I)) (VP (VBP have) (VP (VBN thought) (PP (IN about) (NP (NP (DT this)) (ADVP (RB quite) (NP (DT a) (RB bit))))))) (. .)))"
TRUMP "Yeah, for 30 years." 4 10 6 1 3 "(ROOT (FRAG (INTJ (UH Yeah)) (, ,) (PP (IN for) (NP (CD 30) (NNS years)) (. .))))"
CLINTON "And I have — well, not quite that long." 9 19 11 5 4 "(ROOT (S (S (CC And) (NP (PRP I)) (VP (VBP have))) (: --) (FRAG (INTJ (UH well)) (, ,) (ADVP (ADVP (RB not) (RB quite) (RB that)) (RB long))) (. .)))"
CLINTON I think my husband did a pretty good job in the 1990s. 12 25 13 5 8 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP$ my) (NN husband)) (VP (VBD did) (NP (NP (DT a) (ADJP (RB pretty) (JJ good)) (NN job)) (PP (IN in) (NP (DT the) (NNS 1990s)))))))) (. .)))
CLINTON I think a lot about what worked and how we can make it work again. 15 37 16 6 12 (ROOT (S (NP (PRP I)) (VP (VBP think) (NP (NP (DT a) (NN lot)) (PP (IN about) (SBAR (SBAR (WHNP (WP what)) (S (VP (VBD worked)))) (CC and) (SBAR (WHADVP (WRB how)) (S (NP (PRP we)) (VP (MD can) (VP (VB make) (S (NP (PRP it)) (VP (VB work) (ADVP (RB again)))))))))))) (. .)))
TRUMP "Well, he approved NAFTA." 4 11 6 1 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP he)) (VP (VBD approved) (NP (NNP NAFTA))) (. .)))"
CLINTON "million new jobs, a balanced budget." 6 11 8 2 2 "(ROOT (NP (NP (CD million) (JJ new) (NNS jobs)) (, ,) (NP (DT a) (JJ balanced) (NN budget)) (. .)))"
TRUMP "He approved NAFTA, which is the single worst trade deal ever approved in this country." 15 32 17 7 10 "(ROOT (S (NP (PRP He)) (VP (VBD approved) (NP (NP (NNP NAFTA)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ is) (NP (NP (DT the) (JJ single) (JJS worst) (NN trade) (NN deal)) (VP (ADVP (RB ever)) (VBN approved) (PP (IN in) (NP (DT this) (NN country)))))))))) (. .)))"
CLINTON Incomes went up for everybody. 5 12 6 2 4 (ROOT (S (NP (NNS Incomes)) (VP (VBD went) (PRT (RP up)) (PP (IN for) (NP (NN everybody)))) (. .)))
CLINTON "Manufacturing jobs went up also in the 1990s, if we're actually going to look at the facts." 17 38 20 9 11 "(ROOT (S (NP (NNP Manufacturing) (NNS jobs)) (VP (VBD went) (PRT (RP up)) (PP (ADVP (RB also)) (IN in) (NP (DT the) (NNS 1990s))) (, ,) (SBAR (IN if) (S (NP (PRP we)) (VP (VBP 're) (ADVP (RB actually)) (VP (VBG going) (S (VP (TO to) (VP (VB look) (PP (IN at) (NP (DT the) (NNS facts))))))))))) (. .)))"
CLINTON "When I was in the Senate, I had a number of trade deals that came before me, and I held them all to the same test." 26 57 29 10 9 "(ROOT (S (S (SBAR (WHADVP (WRB When)) (S (NP (PRP I)) (VP (VBD was) (PP (IN in) (NP (DT the) (NNP Senate)))))) (, ,) (NP (PRP I)) (VP (VBD had) (NP (NP (DT a) (NN number)) (PP (IN of) (NP (NN trade) (NNS deals))) (SBAR (WHNP (WDT that)) (S (VP (VBD came) (PP (IN before) (NP (PRP me))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBD held) (NP (PRP them)) (PP (ADVP (DT all)) (TO to) (NP (DT the) (JJ same) (NN test))))) (. .)))"
CLINTON Will they create jobs in America? 6 12 6 3 4 (ROOT (SINV (VBZ Will) (NP (PRP they)) (VP (VB create) (NP (NNS jobs)) (PP (IN in) (NP (NNP America))))))
CLINTON Will they raise incomes in America? 6 12 6 3 4 (ROOT (SINV (VBZ Will) (NP (PRP they)) (VP (VB raise) (NP (NNS incomes)) (PP (IN in) (NP (NNP America))))))
CLINTON And are they good for our national security? 8 13 8 4 4 (ROOT (SINV (CC And) (VBP are) (NP (PRP they)) (ADJP (JJ good) (PP (IN for) (NP (PRP$ our) (JJ national) (NN security))))))
CLINTON Some of them I voted for. 6 15 7 3 4 (ROOT (S (NP (NP (DT Some)) (PP (IN of) (NP (PRP them)))) (NP (PRP I)) (VP (VBD voted) (PP (IN for))) (. .)))
CLINTON "The biggest one, a multinational one known as CAFTA, I voted against." 12 26 15 6 6 "(ROOT (S (NP (NP (DT The) (JJS biggest) (NN one)) (, ,) (NP (NP (DT a) (JJ multinational) (NN one)) (VP (VBN known) (PP (IN as) (NP (NNP CAFTA))))) (, ,)) (NP (PRP I)) (VP (VBD voted) (PP (IN against))) (. .)))"
CLINTON And because I hold the same standards as I look at all of these trade deals. 16 32 17 5 11 (ROOT (FRAG (CC And) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP hold) (NP (DT the) (JJ same) (NNS standards)) (SBAR (IN as) (S (NP (PRP I)) (VP (VBP look) (PP (IN at) (NP (NP (DT all)) (PP (IN of) (NP (DT these) (NN trade) (NNS deals))))))))))) (. .)))
CLINTON But let's not assume that trade is the only challenge we have in the economy. 15 34 17 7 13 (ROOT (S (CC But) (VP (VB let) (NP (PRP 's)) (RB not) (VP (VB assume) (SBAR (IN that) (S (NP (NN trade)) (VP (VBZ is) (NP (NP (DT the) (JJ only) (NN challenge)) (SBAR (S (NP (PRP we)) (VP (VBP have) (VP (PP (IN in) (NP (DT the) (NN economy))))))))))))) (. .)))
CLINTON "I think it is a part of it, and I've said what I'm going to do." 16 45 20 9 11 "(ROOT (S (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ is) (NP (NP (DT a) (NN part)) (PP (IN of) (NP (PRP it))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP 've) (VP (VBD said) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB do))))))))))) (. .)))"
CLINTON I'm going to have a special prosecutor. 7 17 9 5 7 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB have) (NP (DT a) (JJ special) (NN prosecutor))))))) (. .)))
CLINTON "We're going to enforce the trade deals we have, and we're going to hold people accountable." 16 44 20 10 11 "(ROOT (S (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB enforce) (NP (NP (DT the) (NN trade) (NNS deals)) (SBAR (S (NP (PRP we)) (VP (VBP have))))))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB hold) (S (NP (NNS people)) (ADJP (JJ accountable))))))))) (. .)))"
CLINTON "When I was secretary of state, we actually increased American exports globally 30 percent." 14 33 16 6 7 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP I)) (VP (VBD was) (NP (NP (NN secretary)) (PP (IN of) (NP (NN state))))))) (, ,) (NP (PRP we)) (ADVP (RB actually)) (VP (VBD increased) (S (NP (JJ American) (NNS exports)) (ADVP (RB globally)) (NP (CD 30) (NN percent)))) (. .)))"
CLINTON We increased them to China 50 percent. 7 14 8 3 4 (ROOT (S (NP (PRP We)) (VP (VBD increased) (NP (PRP them)) (PP (TO to) (NP (NNP China) (CD 50) (NN percent)))) (. .)))
CLINTON So I know how to really work to get new jobs and to get exports that helped to create more new jobs. 22 49 23 14 15 (ROOT (S (IN So) (NP (PRP I)) (VP (VBP know) (SBAR (WHADVP (WRB how)) (S (VP (VP (TO to) (ADVP (RB really)) (VP (VB work) (S (VP (TO to) (VP (VB get) (NP (JJ new) (NNS jobs))))))) (CC and) (VP (TO to) (VP (VB get) (NP (NP (NNS exports)) (SBAR (WHNP (WDT that)) (S (VP (VBD helped) (S (VP (TO to) (VP (VB create) (NP (JJR more) (JJ new) (NNS jobs))))))))))))))) (. .)))
HOLT Very quickly. 2 6 3 2 3 (ROOT (S (VP (VB Very) (ADVP (RB quickly))) (. .)))
TRUMP But you haven't done it in 30 years or 26 years or any number you want to. 17 36 19 7 10 (ROOT (S (CC But) (NP (PRP you)) (VP (VBP have) (RB n't) (VP (VBN done) (NP (PRP it)) (PP (IN in) (NP (NP (NP (CD 30) (NNS years)) (CC or) (NP (CD 26) (NNS years))) (CC or) (NP (NP (DT any) (NN number)) (SBAR (S (NP (PRP you)) (VP (VBP want) (PP (TO to)))))))))) (. .)))
CLINTON "Well, I've been a senator, Donald." 6 18 10 2 5 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (NP (NP (DT a) (NN senator)) (, ,) (NP (NNP Donald))))) (. .)))"
TRUMP You haven't done it. 4 11 6 3 4 (ROOT (S (NP (PRP You)) (VP (VBP have) (RB n't) (VP (VBN done) (NP (PRP it)))) (. .)))
TRUMP You haven't done it. 4 11 6 3 4 (ROOT (S (NP (PRP You)) (VP (VBP have) (RB n't) (VP (VBN done) (NP (PRP it)))) (. .)))
CLINTON And I have been a secretary of state. 8 17 9 3 6 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP have) (VP (VBN been) (NP (NP (DT a) (NN secretary)) (PP (IN of) (NP (NN state)))))) (. .)))
TRUMP Excuse me. 2 6 3 1 3 (ROOT (S (VP (VB Excuse) (NP (PRP me))) (. .)))
CLINTON And I have done a lot. 6 12 7 2 4 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP have) (VP (VBN done) (NP (DT a) (NN lot)))) (. .)))
TRUMP "Your husband signed NAFTA, which was one of the worst things that ever happened to the manufacturing industry." 18 41 20 9 14 "(ROOT (S (NP (PRP$ Your) (NN husband)) (VP (VBD signed) (NP (NP (NNP NAFTA)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD was) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS worst) (NNS things)) (SBAR (WHNP (WDT that)) (S (ADVP (RB ever)) (VP (VBN happened) (PP (TO to) (NP (DT the) (VBG manufacturing) (NN industry)))))))))))))) (. .)))"
CLINTON "Well, that's your opinion." 4 12 7 1 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (DT that)) (VP (VBZ 's) (NP (PRP$ your) (NN opinion))) (. .)))"
CLINTON That is your opinion. 4 9 5 1 3 (ROOT (S (NP (DT That)) (VP (VBZ is) (NP (PRP$ your) (NN opinion))) (. .)))
TRUMP "You go to New England, you go to Ohio, Pennsylvania, you go anywhere you want, Secretary Clinton, and you will see devastation where manufacture is down 30, 40, sometimes 50 percent." 31 76 39 13 9 "(ROOT (S (S (NP (PRP You)) (VP (VBP go) (PP (TO to) (NP (NNP New) (NNP England))))) (, ,) (S (NP (PRP you)) (VP (VBP go) (PP (TO to) (NP (NNP Ohio) (, ,) (NNP Pennsylvania))))) (, ,) (S (NP (PRP you)) (VP (VBP go) (ADVP (RB anywhere) (SBAR (S (NP (PRP you)) (VP (VBP want))))) (, ,) (S (NP (NNP Secretary) (NNP Clinton))))) (, ,) (CC and) (S (NP (PRP you)) (VP (MD will) (VP (VB see) (NP (NN devastation)) (SBAR (WHADVP (WRB where)) (S (NP (NN manufacture)) (VP (VBZ is) (ADVP (RB down) (NP (CD 30))) (, ,) (FRAG (NP (CD 40)) (, ,) (ADVP (RB sometimes)) (NP (CD 50) (NN percent))))))))) (. .)))"
TRUMP "NAFTA is the worst trade deal maybe ever signed anywhere, but certainly ever signed in this country." 17 36 19 10 9 "(ROOT (S (NP (NNP NAFTA)) (VP (VBZ is) (NP (NP (DT the) (JJS worst) (NN trade) (NN deal)) (SBAR (S (VP (VP (ADVP (RB maybe)) (ADVP (RB ever)) (VBD signed) (NP (RB anywhere))) (, ,) (CC but) (ADVP (RB certainly)) (VP (ADVP (RB ever)) (VBD signed) (PP (IN in) (NP (DT this) (NN country))))))))) (. .)))"
TRUMP And now you want to approve Trans-Pacific Partnership. 8 17 9 4 6 (ROOT (S (CC And) (ADVP (RB now)) (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB approve) (NP (NNP Trans-Pacific) (NNP Partnership)))))) (. .)))
TRUMP You were totally in favor of it. 7 17 8 4 6 (ROOT (S (NP (PRP You)) (VP (VBD were) (ADVP (RB totally)) (PP (IN in) (NP (NP (NN favor)) (PP (IN of) (NP (PRP it)))))) (. .)))
TRUMP "Then you heard what I was saying, how bad it is, and you said, I can't win that debate." 19 48 24 9 11 "(ROOT (S (S (S (ADVP (RB Then)) (NP (PRP you)) (VP (VBD heard) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBD was) (VP (VBG saying) (, ,) (SBAR (WHADJP (WRB how) (JJ bad)) (S (NP (PRP it)) (VP (VBZ is)))))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBD said)))) (, ,) (NP (PRP I)) (VP (MD ca) (RB n't) (VP (VB win) (NP (DT that) (NN debate)))) (. .)))"
TRUMP "But you know that if you did win, you would approve that, and that will be almost as bad as NAFTA." 21 48 24 9 10 "(ROOT (S (CC But) (NP (PRP you)) (VP (VBP know) (SBAR (SBAR (IN that) (S (SBAR (IN if) (S (NP (PRP you)) (VP (VBD did) (VP (VB win))))) (, ,) (NP (PRP you)) (VP (MD would) (VP (VB approve) (NP (DT that)))))) (, ,) (CC and) (SBAR (WHNP (WDT that)) (S (VP (MD will) (VP (VB be) (ADJP (ADJP (RB almost) (RB as) (JJ bad)) (PP (IN as) (NP (NNP NAFTA)))))))))) (. .)))"
TRUMP Nothing will ever top NAFTA. 5 12 6 2 4 (ROOT (S (NP (NN Nothing)) (VP (MD will) (ADVP (RB ever)) (VP (VB top) (NP (NNP NAFTA)))) (. .)))
CLINTON "Well, that is just not accurate." 6 14 8 4 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (DT that)) (VP (VBZ is) (ADVP (RB just)) (RB not) (ADJP (JJ accurate))) (. .)))"
CLINTON I was against it once it was finally negotiated and the terms were laid out. 15 33 16 7 8 (ROOT (S (S (NP (PRP I)) (VP (VBD was) (PP (IN against) (NP (PRP it))) (SBAR (IN once) (S (NP (PRP it)) (VP (VBD was) (VP (ADVP (RB finally)) (VBN negotiated))))))) (CC and) (S (NP (DT the) (NNS terms)) (VP (VBD were) (VP (VBN laid) (PRT (RP out))))) (. .)))
CLINTON I wrote about that in. 5 12 6 3 4 (ROOT (S (NP (PRP I)) (VP (VBD wrote) (PP (IN about) (NP (DT that))) (PP (IN in))) (. .)))
TRUMP You called it the gold standard. 6 13 7 2 4 (ROOT (S (NP (PRP You)) (VP (VBD called) (S (NP (PRP it)) (NP (DT the) (JJ gold) (NN standard)))) (. .)))
TRUMP You called it the gold standard of trade deals. 9 19 10 3 6 (ROOT (S (NP (PRP You)) (VP (VBD called) (S (NP (PRP it)) (NP (NP (DT the) (JJ gold) (NN standard)) (PP (IN of) (NP (NN trade) (NNS deals)))))) (. .)))
TRUMP You said it's the finest deal you've ever seen. 9 27 12 6 10 (ROOT (S (NP (PRP You)) (VP (VBD said) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (DT the) (JJS finest) (NN deal)) (SBAR (S (NP (PRP you)) (VP (VBP 've) (ADVP (RB ever)) (VP (VBN seen)))))))))) (. .)))
CLINTON No. 1 3 2 0 1 (ROOT (INTJ (UH No) (. .)))
TRUMP "And then you heard what I said about it, and all of a sudden you were against it." 18 40 20 8 8 "(ROOT (S (S (CC And) (ADVP (RB then)) (NP (PRP you)) (VP (VBD heard) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBD said) (PP (IN about) (NP (PRP it)))))))) (, ,) (CC and) (S (NP (NP (DT all)) (PP (IN of) (NP (DT a) (JJ sudden) (NN you)))) (VP (VBD were) (PP (IN against) (NP (PRP it))))) (. .)))"
CLINTON "Well, Donald, I know you live in your own reality, but that is not the facts." 16 38 20 6 8 "(ROOT (S (FRAG (INTJ (UH Well)) (, ,) (NP (NNP Donald))) (, ,) (NP (PRP I)) (VP (VBP know) (SBAR (SBAR (S (NP (PRP you)) (VP (VBP live) (PP (IN in) (NP (PRP$ your) (JJ own) (NN reality)))))) (, ,) (CC but) (SBAR (WHNP (WDT that)) (S (VP (VBZ is) (RB not) (NP (DT the) (NNS facts))))))) (. .)))"
CLINTON "The facts are — I did say I hoped it would be a good deal, but when it was negotiated." 20 49 22 8 15 "(ROOT (S (S (NP (DT The) (NNS facts)) (VP (VBP are))) (: --) (S (NP (PRP I)) (VP (VBD did) (SBAR (SBAR (S (VP (VBP say) (SBAR (S (NP (PRP I)) (VP (VBD hoped) (SBAR (S (NP (PRP it)) (VP (MD would) (VP (VB be) (NP (DT a) (JJ good) (NN deal)))))))))))) (, ,) (CC but) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (VBD was) (VP (VBN negotiated)))))))) (. .)))"
TRUMP Not. 1 3 2 1 1 (ROOT (ADVP (RB Not) (. .)))
CLINTON "which I was not responsible for, I concluded it wasn't." 10 27 13 7 6 "(ROOT (S (SBAR (WHNP (WDT which)) (S (NP (PRP I)) (VP (VBD was) (RB not) (ADJP (JJ responsible) (PP (IN for)))))) (, ,) (NP (PRP I)) (VP (VBD concluded) (SBAR (S (NP (PRP it)) (VP (VBD was) (RB n't))))) (. .)))"
CLINTON I wrote about that in my book. 7 16 8 3 6 (ROOT (S (NP (PRP I)) (VP (VBD wrote) (PP (IN about) (NP (NP (DT that)) (PP (IN in) (NP (PRP$ my) (NN book)))))) (. .)))
TRUMP So is it President Obama's fault? 6 13 7 2 3 (ROOT (SINV (VP (ADVP (RB So)) (VBZ is) (NP (PRP it))) (NP (NP (NNP President) (NNP Obama) (POS 's)) (NN fault))))
CLINTON before you even announced. 4 10 5 3 2 (ROOT (S (ADVP (RB before)) (NP (PRP you)) (ADVP (RB even)) (VP (VBD announced)) (. .)))
TRUMP Is it President Obama's fault? 5 11 6 1 3 (ROOT (SINV (VP (VBZ Is) (NP (PRP it))) (NP (NP (NNP President) (NNP Obama) (POS 's)) (NN fault))))
CLINTON "Look, there are differences." 4 12 6 2 3 "(ROOT (S (S (VP (VB Look))) (, ,) (NP (EX there)) (VP (VBP are) (NP (NNS differences))) (. .)))"
TRUMP "Secretary, is it President Obama's fault?" 6 14 8 2 3 "(ROOT (SINV (ADVP (RB Secretary)) (, ,) (VP (VBZ is) (NP (PRP it))) (NP (NP (NNP President) (NNP Obama) (POS 's)) (NN fault))))"
CLINTON There are. 2 6 3 1 2 (ROOT (S (NP (EX There)) (VP (VBP are)) (. .)))
TRUMP Because he's pushing it. 4 13 6 2 6 (ROOT (FRAG (SBAR (IN Because) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBG pushing) (NP (PRP it)))))) (. .)))
CLINTON "There are different views about what's good for our country, our economy, and our leadership in the world." 18 41 22 7 13 "(ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (JJ different) (NNS views)) (PP (IN about) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (ADJP (JJ good) (PP (IN for) (NP (NP (PRP$ our) (NN country)) (, ,) (NP (PRP$ our) (NN economy)) (, ,) (CC and) (NP (NP (PRP$ our) (NN leadership)) (PP (IN in) (NP (DT the) (NN world))))))))))))) (. .)))"
CLINTON And I think it's important to look at what we need to do to get the economy going again. 19 48 21 13 22 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ important) (S (VP (TO to) (VP (VB look) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB do) (S (VP (TO to) (VP (VB get) (NP (NP (DT the) (NN economy)) (VP (VBG going) (ADVP (RB again)))))))))))))))))))))) (. .)))
CLINTON "That's why I said new jobs with rising incomes, investments, not in more tax cuts that would add $5 trillion to the debt." 23 53 28 10 10 "(ROOT (S (NP (DT That)) (VP (VBZ 's) (NP (SBAR (WHADVP (WRB why)) (S (NP (PRP I)) (VP (VBD said) (NP (JJ new) (NNS jobs)) (PP (IN with) (NP (VBG rising) (NNS incomes)))))) (, ,) (NP (NNS investments)) (, ,) (CONJP (RB not) (IN in)) (NP (NP (JJR more) (NN tax) (NNS cuts)) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB add) (NP (QP ($ $) (CD 5) (CD trillion))) (PP (TO to) (NP (DT the) (NN debt)))))))))) (. .)))"
TRUMP But you have no plan. 5 10 6 1 3 (ROOT (S (CC But) (NP (PRP you)) (VP (VBP have) (NP (DT no) (NN plan))) (. .)))
CLINTON "But in — oh, but I do." 7 15 9 2 3 "(ROOT (S (CC But) (ADVP (RB in)) (: --) (S (INTJ (UH oh)) (, ,) (CC but) (NP (PRP I)) (VP (VBP do))) (. .)))"
TRUMP "Secretary, you have no plan." 5 12 7 1 3 "(ROOT (S (NP (NNP Secretary)) (, ,) (NP (PRP you)) (VP (VBP have) (NP (DT no) (NN plan))) (. .)))"
CLINTON "In fact, I have written a book about it." 9 21 11 4 6 "(ROOT (S (PP (IN In) (NP (NN fact))) (, ,) (NP (PRP I)) (VP (VBP have) (VP (VBN written) (NP (NP (DT a) (NN book)) (PP (IN about) (NP (PRP it)))))) (. .)))"
CLINTON "It's called ""Stronger Together""." 4 13 8 3 4 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (VP (VBN called) (`` ``) (NP (JJR Stronger) (NNS Together)) ('' ''))) (. .)))
CLINTON You can pick it up tomorrow at a bookstore. 9 19 10 3 5 (ROOT (S (NP (PRP You)) (VP (MD can) (VP (VB pick) (NP (PRP it)) (ADVP (RB up)) (NP (NN tomorrow)) (PP (IN at) (NP (DT a) (NN bookstore))))) (. .)))
TRUMP That's about all you've. 4 15 7 2 5 (ROOT (S (NP (DT That)) (VP (VBZ 's) (ADVP (IN about) (DT all)) (SBAR (S (NP (PRP you)) (VP (VBP 've))))) (. .)))
HOLT "Folks, we're going to." 4 13 7 5 4 "(ROOT (S (ADVP (RB Folks)) (, ,) (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (PP (TO to)))) (. .)))"
CLINTON or at an airport near you. 6 13 7 2 5 (ROOT (FRAG (CC or) (PP (IN at) (NP (NP (DT an) (NN airport)) (PP (IN near) (NP (PRP you)))) (. .))))
HOLT We're going to move to. 5 15 7 6 7 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB move) (PP (TO to))))))) (. .)))
CLINTON "But it's because I see this — we need to have strong growth, fair growth, sustained growth." 17 41 21 8 13 "(ROOT (S (CC But) (NP (PRP it)) (VP (VBZ 's) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP see) (NP (NP (DT this)) (PRN (: --) (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB have) (NP (JJ strong) (NN growth))))))) (, ,) (NP (NP (JJ fair) (NN growth)) (, ,) (NP (JJ sustained) (NN growth))))))))) (. .)))"
CLINTON We also have to look at how we help families balance the responsibilities at home and the responsibilities at business. 20 46 21 9 15 (ROOT (S (NP (PRP We)) (ADVP (RB also)) (VP (VBP have) (S (VP (TO to) (VP (VB look) (PP (IN at) (SBAR (WHADVP (WRB how)) (S (NP (PRP we)) (VP (VBP help) (S (NP (NNS families)) (VP (VB balance) (NP (NP (NP (DT the) (NNS responsibilities)) (PP (IN at) (NP (NN home)))) (CC and) (NP (NP (DT the) (NNS responsibilities)) (PP (IN at) (NP (NN business))))))))))))))) (. .)))
CLINTON So we have a very robust set of plans. 9 18 10 4 5 (ROOT (S (IN So) (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (ADJP (RB very) (JJ robust)) (NN set)) (PP (IN of) (NP (NNS plans))))) (. .)))
CLINTON "And people have looked at both of our plans, have concluded that mine would create 10 million jobs and yours would lose us 3." 24 52 26 8 10 "(ROOT (SINV (S (CC And) (NP (NNS people)) (VP (VBP have) (VP (VBN looked) (PP (IN at) (NP (NP (DT both)) (PP (IN of) (NP (PRP$ our) (NNS plans)))))))) (, ,) (VP (VBP have) (VP (VBN concluded) (SBAR (IN that) (S (S (NP (PRP mine)) (VP (MD would) (VP (VB create) (NP (QP (CD 10) (CD million)) (NNS jobs))))) (CC and) (S (NP (NNP yours)) (VP (MD would) (VP (VB lose) (NP (PRP us))))))))) (NP (CD 3)) (. .)))"
CLINTON "5 million jobs, and explode the debt which would have a recession." 12 28 14 3 9 "(ROOT (S (NP (QP (CD 5) (CD million))) (VP (VP (VBZ jobs)) (, ,) (CC and) (VP (VB explode) (NP (NP (DT the) (NN debt)) (SBAR (WHNP (WDT which)) (S (VP (MD would) (VP (VB have) (NP (DT a) (NN recession))))))))) (. .)))"
TRUMP You are going to approve one of the biggest tax cuts in history. 13 28 14 7 11 (ROOT (S (NP (PRP You)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB approve) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS biggest) (NN tax) (NNS cuts)) (PP (IN in) (NP (NN history))))))))))) (. .)))
TRUMP You are going to approve one of the biggest tax increases in history. 13 28 14 7 11 (ROOT (S (NP (PRP You)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB approve) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS biggest) (NN tax) (NNS increases)) (PP (IN in) (NP (NN history))))))))))) (. .)))
TRUMP You are going to drive business out. 7 17 8 4 7 (ROOT (S (NP (PRP You)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB drive) (NP (NN business)) (PRT (RP out))))))) (. .)))
TRUMP "Your regulations are a disaster, and you're going to increase regulations all over the place." 15 33 18 6 9 "(ROOT (S (S (NP (PRP$ Your) (NNS regulations)) (VP (VBP are) (NP (DT a) (NN disaster)))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB increase) (NP (NNS regulations)) (PP (DT all) (IN over) (NP (DT the) (NN place))))))))) (. .)))"
TRUMP "And by the way, my tax cut is the biggest since Ronald Reagan." 13 24 15 4 5 "(ROOT (S (CC And) (PP (IN by) (NP (DT the) (NN way))) (, ,) (NP (PRP$ my) (NN tax) (NN cut)) (VP (VBZ is) (NP (NP (DT the) (JJS biggest)) (PP (IN since) (NP (NNP Ronald) (NNP Reagan))))) (. .)))"
TRUMP I'm very proud of it. 5 13 7 4 5 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (ADJP (RB very) (JJ proud) (PP (IN of) (NP (PRP it))))) (. .)))
TRUMP It will create tremendous numbers of new jobs. 8 17 9 4 6 (ROOT (S (NP (PRP It)) (VP (MD will) (VP (VB create) (NP (NP (JJ tremendous) (NNS numbers)) (PP (IN of) (NP (JJ new) (NNS jobs)))))) (. .)))
TRUMP "But regulations, you are going to regulate these businesses out of existence." 12 26 14 5 8 "(ROOT (S (CC But) (NP (NNS regulations)) (, ,) (NP (PRP you)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB regulate) (NP (DT these) (NNS businesses)) (PRT (RP out)) (PP (IN of) (NP (NN existence)))))))) (. .)))"
TRUMP "When I go around — Lester, I tell you this, I've been all over." 14 36 18 5 6 "(ROOT (S (S (SBAR (WHADVP (WRB When)) (S (NP (PRP I)) (VP (VBP go) (ADVP (RB around)) (: --) (NP (NNP Lester))))) (, ,) (NP (PRP I)) (VP (VBP tell) (S (NP (PRP you)) (NP (DT this))))) (, ,) (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (ADVP (DT all) (RP over)))) (. .)))"
TRUMP "And when I go around, despite the tax cut, the thing — the things that business as in people like the most is the fact that I'm cutting regulation." 29 61 33 9 7 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBP go) (PRT (RP around))))) (, ,) (PP (IN despite) (NP (DT the) (NN tax) (NN cut))) (, ,) (NP (NP (DT the) (NN thing)) (PRN (: --) (S (NP (DT the) (NNS things)) (PP (ADVP (NP (DT that) (NN business)) (RB as)) (IN in) (NP (NNS people))) (PP (IN like) (NP (DT the) (JJS most)))))) (VP (VBZ is) (NP (DT the) (NN fact)) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG cutting) (NP (NN regulation))))))) (. .)))"
TRUMP "You have regulations on top of regulations, and new companies cannot form and old companies are going out of business." 20 46 23 10 8 "(ROOT (S (S (NP (PRP You)) (VP (VBP have) (NP (NP (NNS regulations)) (PP (IN on) (NP (NP (NN top)) (PP (IN of) (NP (NNS regulations)))))))) (, ,) (CC and) (S (S (NP (JJ new) (NNS companies)) (VP (MD can) (RB not) (VP (VB form)))) (CC and) (S (NP (JJ old) (NNS companies)) (VP (VBP are) (VP (VBG going) (PRT (RP out)) (PP (IN of) (NP (NN business))))))) (. .)))"
TRUMP And you want to increase the regulations and make them even worse. 12 25 13 6 8 (ROOT (S (CC And) (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VP (VB increase) (NP (DT the) (NNS regulations))) (CC and) (VP (VB make) (S (NP (PRP them)) (ADJP (RB even) (JJR worse)))))))) (. .)))
TRUMP I'm going to cut regulations. 5 15 7 4 7 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB cut) (NP (NNS regulations))))))) (. .)))
TRUMP "I'm going to cut taxes big league, and you're going to raise taxes big league, end of story." 18 46 23 11 10 "(ROOT (S (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB cut) (NP (NNS taxes)) (ADVP (JJ big) (NN league)))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB raise) (NP (NNS taxes)) (NP (JJ big) (NN league)) (, ,) (NP (NP (NN end)) (PP (IN of) (NP (NN story)))))))))) (. .)))"
HOLT "Let me get you to pause right there, because we're going to move into — we're going to move into the next segment." 23 57 27 17 15 "(ROOT (S (S (VP (VB Let) (SBAR (S (NP (PRP me)) (VP (VBP get) (NP (PRP you)) (PP (TO to) (NP (NN pause))) (ADVP (ADVP (RB right) (RB there)) (, ,) (SBAR (IN because) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB move) (PP (IN into))))))))))))))) (: --) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB move) (PP (IN into) (NP (DT the) (JJ next) (NN segment))))))))) (. .)))"
HOLT We're going to talk taxes. 5 15 7 4 7 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB talk) (NP (NNS taxes))))))) (. .)))
CLINTON That can't — that can't be left to stand. 9 24 12 6 8 (ROOT (S (S (NP (DT That)) (VP (MD ca) (RB n't))) (: --) (S (NP (DT that)) (VP (MD ca) (RB n't) (VP (VB be) (VP (VBN left) (S (VP (TO to) (VP (VB stand)))))))) (. .)))
HOLT Please just take 30 seconds and then we're going to go on. 12 30 14 7 11 (ROOT (S (INTJ (UH Please)) (VP (ADVP (RB just)) (VB take) (NP (NP (CD 30) (NNS seconds)) (CC and) (ADVP (RB then)) (SBAR (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB go) (PRT (RP on))))))))))) (. .)))
CLINTON "I kind of assumed that there would be a lot of these charges and claims, and so." 17 33 19 4 9 "(ROOT (S (NP (PRP I)) (ADVP (NN kind) (IN of)) (VP (VBD assumed) (SBAR (IN that) (S (NP (EX there)) (VP (MD would) (VP (VB be) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (DT these) (NNS charges) (CC and) (NNS claims))) (, ,) (CC and) (ADVP (RB so)))))))) (. .)))"
TRUMP Facts. 1 3 2 0 1 (ROOT (NP (NNS Facts) (. .)))
CLINTON "So we have taken the home page of my website, HillaryClinton.com, and we've turned it into a fact-checker." 18 40 22 6 8 "(ROOT (S (CC So) (S (NP (PRP we)) (VP (VBP have) (VP (VBN taken) (NP (NP (DT the) (NN home) (NN page)) (PP (IN of) (NP (NP (PRP$ my) (NN website)) (, ,) (NP (NNP HillaryClinton.com)))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP 've) (VP (VBN turned) (NP (PRP it)) (PP (IN into) (NP (DT a) (NN fact-checker)))))) (. .)))"
CLINTON "So if you want to see in real-time what the facts are, please go and take a look." 18 40 20 9 14 "(ROOT (S (CC So) (SBAR (IN if) (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB see) (PP (IN in) (NP (NP (JJ real-time)) (SBAR (WHNP (WP what)) (S (NP (DT the) (NNS facts)) (VP (VBP are) (PRN (, ,) (INTJ (VB please)))))))))))))) (VP (VB go) (CC and) (VB take) (NP (DT a) (NN look))) (. .)))"
CLINTON Because what I have proposed. 5 12 6 3 3 (ROOT (S (PP (IN Because) (NP (WP what))) (NP (PRP I)) (VP (VBP have) (VP (VBN proposed))) (. .)))
TRUMP "And take a look at mine, also, and you'll see." 10 26 14 4 6 "(ROOT (S (CC And) (S (VP (VB take) (NP (NP (DT a) (NN look)) (PP (IN at) (NP (NN mine)))) (, ,) (ADVP (RB also)))) (, ,) (CC and) (S (NP (PRP you)) (VP (MD 'll) (VP (VB see)))) (. .)))"
CLINTON "would not add a penny to the debt, and your plans would add $5 trillion to the debt." 18 36 21 7 6 "(ROOT (S (S (VP (MD would) (RB not) (VP (VB add) (NP (DT a) (NN penny)) (PP (TO to) (NP (DT the) (NN debt)))))) (, ,) (CC and) (S (NP (PRP$ your) (NNS plans)) (VP (MD would) (VP (VB add) (NP (QP ($ $) (CD 5) (CD trillion))) (PP (TO to) (NP (DT the) (NN debt)))))) (. .)))"
CLINTON What I have proposed would cut regulations and streamline them for small businesses. 13 29 14 6 6 (ROOT (S (SBAR (WHNP (WP What)) (S (NP (PRP I)) (VP (VBP have) (VP (VBN proposed))))) (VP (MD would) (VP (VP (VB cut) (NP (NNS regulations))) (CC and) (VP (VB streamline) (NP (PRP them)) (PP (IN for) (NP (JJ small) (NNS businesses)))))) (. .)))
CLINTON "What I have proposed would be paid for by raising taxes on the wealthy, because they have made all the gains in the economy." 24 52 26 12 11 "(ROOT (S (SBAR (WHNP (WP What)) (S (NP (PRP I)) (VP (VBP have) (VP (VBN proposed))))) (VP (MD would) (VP (VB be) (VP (VBN paid) (PP (IN for) (PP (IN by) (S (VP (VBG raising) (NP (NNS taxes)) (PP (IN on) (NP (DT the) (JJ wealthy))))))) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (VBP have) (VP (VBN made) (NP (NP (PDT all) (DT the) (NNS gains)) (PP (IN in) (NP (DT the) (NN economy))))))))))) (. .)))"
CLINTON And I think it's time that the wealthy and corporations paid their fair share to support this country. 18 39 20 7 12 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (NN time)) (SBAR (IN that) (S (NP (NP (DT the) (JJ wealthy)) (CC and) (NP (NNS corporations))) (VP (VBD paid) (NP (PRP$ their) (JJ fair) (NN share)) (S (VP (TO to) (VP (VB support) (NP (DT this) (NN country)))))))))))) (. .)))
HOLT "Well, you just opened the next segment." 7 15 9 3 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP you)) (ADVP (RB just)) (VP (VBD opened) (NP (DT the) (JJ next) (NN segment))) (. .)))"
TRUMP "Well, could I just finish — I think I.." 9 20 11 3 5 "(ROOT (SQ (INTJ (UH Well)) (, ,) (MD could) (NP (PRP I)) (ADVP (RB just)) (VP (VB finish) (: --) (S (NP (PRP I)) (VP (VB think) (NP (NN I.))))) (. .)))"
HOLT I'm going to give you a chance right here. 9 21 11 6 7 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB give) (NP (PRP you)) (NP (DT a) (NN chance))))) (ADVP (RB right) (RB here)))) (. .)))
TRUMP "I think I should — you go to her website, and you take a look at her website." 18 41 20 6 7 "(ROOT (S (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP I)) (VP (MD should)))))) (: --) (S (S (NP (PRP you)) (VP (VBP go) (PP (TO to) (NP (PRP$ her) (NN website))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBP take) (NP (NP (DT a) (NN look)) (PP (IN at) (NP (PRP$ her) (NN website))))))) (. .)))"
HOLT with a new 15-minute segment. 5 9 6 3 3 (ROOT (FRAG (PP (IN with) (NP (DT a) (JJ new) (JJ 15-minute) (NN segment))) (. .)))
TRUMP She's going to raise taxes $1. 6 18 9 4 7 (ROOT (S (NP (PRP She)) (VP (VBZ 's) (VP (VBG going) (S (VP (TO to) (VP (VB raise) (NP (NNS taxes)) (NP ($ $) (CD 1))))))) (. .)))
TRUMP 3 trillion. 2 4 3 1 1 (ROOT (NP (CD 3) (RB trillion) (. .)))
HOLT "Mr. Trump, I'm going to." 5 14 8 4 4 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (PP (TO to)))) (. .)))"
TRUMP And look at her website. 5 10 6 2 4 (ROOT (S (CC And) (VP (VB look) (PP (IN at) (NP (PRP$ her) (NN website)))) (. .)))
TRUMP You know what? 3 7 3 1 3 (ROOT (S (NP (PRP You)) (VP (VBP know) (NP (WP what)))))
TRUMP It's no difference than this. 5 14 7 2 5 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (NP (DT no) (NN difference)) (PP (IN than) (NP (DT this))))) (. .)))
TRUMP She's telling us how to fight ISIS. 7 20 9 4 8 (ROOT (S (NP (PRP She)) (VP (VBZ 's) (VP (VBG telling) (NP (PRP us)) (SBAR (WHADVP (WRB how)) (S (VP (TO to) (VP (VB fight) (NP (NNS ISIS)))))))) (. .)))
TRUMP Just go to her website. 5 11 6 4 4 (ROOT (S (ADVP (RB Just)) (VP (VB go) (PP (TO to) (NP (PRP$ her) (NN website)))) (. .)))
TRUMP She tells you how to fight ISIS on her website. 10 23 11 4 8 (ROOT (S (NP (PRP She)) (VP (VBZ tells) (NP (PRP you)) (SBAR (WHADVP (WRB how)) (S (VP (TO to) (VP (VB fight) (NP (NNS ISIS)) (PP (IN on) (NP (PRP$ her) (NN website)))))))) (. .)))
TRUMP I don't think General Douglas MacArthur would like that too much. 11 25 13 6 9 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB think) (SBAR (S (NP (NNP General) (NNP Douglas) (NNP MacArthur)) (VP (MD would) (VP (VB like) (S (NP (DT that)) (ADJP (RB too) (JJ much))))))))) (. .)))
HOLT "The next segment, we're continuing." 5 13 8 3 3 "(ROOT (S (NP (DT The) (JJ next) (NN segment)) (, ,) (NP (PRP we)) (VP (VBP 're) (VP (VBG continuing))) (. .)))"
CLINTON "Well, at least I have a plan to fight ISIS." 10 22 12 4 7 "(ROOT (S (INTJ (UH Well)) (, ,) (ADVP (IN at) (JJS least)) (NP (PRP I)) (VP (VBP have) (NP (DT a) (NN plan) (S (VP (TO to) (VP (VB fight) (NP (NNS ISIS))))))) (. .)))"
HOLT achieving prosperity. 2 6 3 1 3 (ROOT (S (VP (VBG achieving) (NP (NN prosperity))) (. .)))
TRUMP "No, no, you're telling the enemy everything you want to do." 11 29 15 5 10 "(ROOT (S (INTJ (UH No) (, ,) (UH no)) (, ,) (NP (PRP you)) (VP (VBP 're) (VP (VBG telling) (NP (NP (DT the) (NN enemy) (NN everything)) (SBAR (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB do)))))))))) (. .)))"
CLINTON "No, we're not." 3 10 6 2 2 "(ROOT (S (INTJ (UH No)) (, ,) (NP (PRP we)) (VP (VBP 're) (RB not)) (. .)))"
CLINTON "No, we're not." 3 10 6 2 2 "(ROOT (S (INTJ (UH No)) (, ,) (NP (PRP we)) (VP (VBP 're) (RB not)) (. .)))"
TRUMP "See, you're telling the enemy everything you want to do." 10 28 13 6 10 "(ROOT (S (S (VP (VB See))) (, ,) (NP (PRP you)) (VP (VBP 're) (VP (VBG telling) (NP (NP (DT the) (NN enemy) (NN everything)) (SBAR (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB do)))))))))) (. .)))"
TRUMP No wonder you've been fighting — no wonder you've been fighting ISIS your entire adult life. 16 36 19 12 7 (ROOT (S (NP (RB No) (VB wonder) (SBAR (S (NP (PRP you)) (VP (VBP 've) (VP (VBN been) (VP (VBG fighting))))))) (: --) (NP (RB no) (VB wonder) (SBAR (S (NP (PRP you)) (VP (VBP 've) (VP (VBN been) (VP (VBG fighting))))))) (VP (VBZ ISIS) (NP (PRP$ your) (JJ entire) (NN adult) (NN life))) (. .)))
CLINTON "That's a — that's — go to the — please, fact checkers, get to work." 15 42 20 8 10 "(ROOT (S (NP (DT That)) (VP (VBZ 's) (NP (NP (SYM a)) (PRN (: --) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's)))) (: --)) (SBAR (S (S (VP (VB go) (PP (TO to) (NP (NP (DT the) (: --) (NNS please)) (, ,) (NP (NN fact) (NNS checkers)) (, ,))))) (VP (VBP get) (S (VP (TO to) (VP (VB work))))))))) (. .)))"
HOLT "OK, you are unpacking a lot here." 7 16 9 3 4 "(ROOT (S (INTJ (UH OK)) (, ,) (NP (PRP you)) (VP (VBP are) (VP (VBG unpacking) (NP (DT a) (NN lot)) (ADVP (RB here)))) (. .)))"
HOLT And we're still on the issue of achieving prosperity. 9 22 11 5 8 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP 're) (ADVP (RB still)) (PP (IN on) (NP (NP (DT the) (NN issue)) (PP (IN of) (S (VP (VBG achieving) (NP (NN prosperity)))))))) (. .)))
HOLT And I want to talk about taxes. 7 16 8 4 7 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB talk) (PP (IN about) (NP (NNS taxes))))))) (. .)))
HOLT The fundamental difference between the two of you concerns the wealthy. 11 22 12 5 6 (ROOT (S (NP (NP (DT The) (JJ fundamental) (NN difference)) (PP (IN between) (NP (NP (DT the) (CD two)) (PP (IN of) (NP (PRP you)))))) (VP (VBZ concerns) (NP (DT the) (JJ wealthy))) (. .)))
HOLT "Secretary Clinton, you're calling for a tax increase on the wealthiest Americans." 12 25 15 5 7 "(ROOT (S (NP (NNP Secretary) (NNP Clinton)) (, ,) (NP (PRP you)) (VP (VBP 're) (VP (VBG calling) (PP (IN for) (NP (NP (DT a) (NN tax) (NN increase)) (PP (IN on) (NP (DT the) (JJS wealthiest) (NNS Americans))))))) (. .)))"
HOLT I'd like you to further defend that. 7 19 9 4 7 (ROOT (S (NP (PRP I)) (VP (MD 'd) (VP (VB like) (S (NP (PRP you)) (VP (TO to) (VP (ADVP (RBR further)) (VB defend) (NP (DT that))))))) (. .)))
HOLT "And, Mr. Trump, you're calling for tax cuts for the wealthy." 11 25 15 5 7 "(ROOT (S (CC And) (, ,) (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP you)) (VP (VBP 're) (VP (VBG calling) (PP (IN for) (NP (NP (NN tax) (NNS cuts)) (PP (IN for) (NP (DT the) (JJ wealthy))))))) (. .)))"
HOLT I'd like you to defend that. 6 17 8 3 7 (ROOT (S (NP (PRP I)) (VP (MD 'd) (VP (VB like) (S (NP (PRP you)) (VP (TO to) (VP (VB defend) (NP (DT that))))))) (. .)))
HOLT "And this next two-minute answer goes to you, Mr. Trump." 10 19 12 5 5 "(ROOT (S (CC And) (NP (DT this) (JJ next) (JJ two-minute) (NN answer)) (VP (VBZ goes) (PP (TO to) (NP (NP (PRP you)) (, ,) (NP (NNP Mr.) (NNP Trump))))) (. .)))"
TRUMP "Well, I'm really calling for major jobs, because the wealthy are going create tremendous jobs." 15 35 19 10 10 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP 'm) (ADVP (RB really)) (VP (VBG calling) (PP (IN for) (NP (JJ major) (NNS jobs))) (, ,) (SBAR (IN because) (S (NP (DT the) (JJ wealthy)) (VP (VBP are) (VP (VBG going) (S (VP (VB create) (NP (JJ tremendous) (NNS jobs)))))))))) (. .)))"
TRUMP They're going to expand their companies. 6 16 8 4 7 (ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB expand) (NP (PRP$ their) (NNS companies))))))) (. .)))
TRUMP They're going to do a tremendous job. 7 17 9 5 7 (ROOT (S (NP (PRP They)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB do) (NP (DT a) (JJ tremendous) (NN job))))))) (. .)))
TRUMP I'm getting rid of the carried interest provision. 8 17 10 5 6 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG getting) (ADJP (JJ rid) (PP (IN of) (NP (DT the) (JJ carried) (NN interest) (NN provision)))))) (. .)))
TRUMP "And if you really look, it's not a tax — it's really not a great thing for the wealthy." 19 41 23 10 6 "(ROOT (S (S (CC And) (SBAR (IN if) (S (NP (PRP you)) (ADVP (RB really)) (VP (VBP look)))) (, ,) (NP (PRP it)) (VP (VBZ 's) (RB not) (NP (DT a) (NN tax)))) (: --) (S (NP (PRP it)) (VP (VBZ 's) (ADVP (RB really)) (NP (NP (RB not) (DT a) (JJ great) (NN thing)) (PP (IN for) (NP (DT the) (JJ wealthy)))))) (. .)))"
TRUMP It's a great thing for the middle class. 8 17 10 4 5 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (NP (DT a) (JJ great) (NN thing)) (PP (IN for) (NP (DT the) (JJ middle) (NN class))))) (. .)))
TRUMP It's a great thing for companies to expand. 8 20 10 5 8 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (NP (DT a) (JJ great) (NN thing)) (PP (IN for) (NP (NNS companies) (S (VP (TO to) (VP (VB expand)))))))) (. .)))
TRUMP "And when these people are going to put billions and billions of dollars into companies, and when they're going to bring $2." 22 53 26 10 12 "(ROOT (FRAG (CC And) (SBAR (SBAR (WHADVP (WRB when)) (S (NP (DT these) (NNS people)) (VP (VBP are) (VP (VBG going) (S (VP (TO to) (VP (VB put) (NP (NP (NNS billions) (CC and) (NNS billions)) (PP (IN of) (NP (NNS dollars)))) (PP (IN into) (NP (NNS companies)))))))))) (, ,) (CC and) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB bring) (NP ($ $) (CD 2)))))))))) (. .)))"
TRUMP "5 trillion back from overseas, where they can't bring the money back, because politicians like Secretary Clinton won't allow them to bring the money back, because the taxes are so onerous, and the bureaucratic red tape, so what — is so bad." 42 90 50 21 18 "(ROOT (S (S (NP (QP (CD 5) (CD trillion))) (VP (VBP back) (PP (IN from) (NP (RB overseas))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP they)) (VP (MD ca) (RB n't) (VP (VB bring) (NP (DT the) (NN money)) (ADVP (RB back)) (, ,) (SBAR (IN because) (S (NP (NP (NNS politicians)) (PP (IN like) (NP (NNP Secretary) (NNP Clinton)))) (VP (MD wo) (RB n't) (VP (VB allow) (S (NP (PRP them)) (VP (TO to) (VP (VB bring) (NP (DT the) (NN money)) (ADVP (RB back)) (, ,) (SBAR (IN because) (S (NP (DT the) (NNS taxes)) (VP (VBP are) (ADJP (RB so) (JJ onerous)))))))))))))))))) (, ,) (CC and) (S (NP (NP (DT the) (JJ bureaucratic) (JJ red) (NN tape)) (, ,) (RB so) (NP (WP what)) (: --)) (VP (VBZ is) (ADJP (RB so) (JJ bad)))) (. .)))"
TRUMP "So what they're doing is they're leaving our country, and they're, believe it or not, leaving because taxes are too high and because some of them have lots of money outside of our country." 34 86 41 16 13 "(ROOT (S (CC So) (SBAR (WHNP (WP what)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG doing))))) (VP (VBZ is) (SBAR (SBAR (S (S (NP (PRP they)) (VP (VBP 're) (VP (VBG leaving) (NP (PRP$ our) (NN country))))) (, ,) (CC and) (S (NP (PRP they)) (VP (VP (VBP 're)) (PRN (, ,) (S (VP (VB believe) (NP (PRP it)) (CC or) (RB not))) (, ,)) (S (VP (VBG leaving) (SBAR (IN because) (S (NP (NNS taxes)) (VP (VBP are) (ADJP (RB too) (JJ high))))))))))) (CC and) (SBAR (IN because) (S (NP (NP (DT some)) (PP (IN of) (NP (PRP them)))) (VP (VBP have) (NP (NP (NNS lots)) (PP (IN of) (NP (NP (NN money) (NN outside)) (PP (IN of) (NP (PRP$ our) (NN country))))))))))) (. .)))"
TRUMP "And instead of bringing it back and putting the money to work, because they can't work out a deal to — and everybody agrees it should be brought back." 29 61 32 14 9 "(ROOT (S (CC And) (S (VP (CONJP (RB instead) (IN of)) (VP (VBG bringing) (NP (PRP it)) (ADVP (RB back))) (CC and) (VP (VBG putting) (NP (DT the) (NN money)) (PP (TO to) (NP (NN work))) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (MD ca) (RB n't) (VP (VB work) (PRT (RP out)) (NP (DT a) (NN deal)) (PP (TO to))))))))) (: --) (CC and) (S (NP (NN everybody)) (VP (VBZ agrees) (SBAR (S (NP (PRP it)) (VP (MD should) (VP (VB be) (VP (VBN brought) (ADVP (RB back))))))))) (. .)))"
TRUMP "Instead of that, they're leaving our country to get their money, because they can't bring their money back into our country, because of bureaucratic red tape, because they can't get together." 31 68 39 17 16 "(ROOT (S (PP (RB Instead) (IN of) (NP (DT that))) (, ,) (NP (PRP they)) (VP (VBP 're) (VP (VBG leaving) (NP (PRP$ our) (NN country) (S (VP (TO to) (VP (VB get) (NP (PRP$ their) (NN money)) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (MD ca) (RB n't) (VP (VB bring) (NP (PRP$ their) (NN money)) (PRT (RP back)) (PP (PP (IN into) (NP (PRP$ our) (NN country))) (, ,) (RB because) (PP (IN of) (NP (JJ bureaucratic) (JJ red) (NN tape)))) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (MD ca) (RB n't) (VP (VB get) (ADVP (RB together)))))))))))))))) (. .)))"
TRUMP Because we have — we have a president that can't sit them around a table and get them to approve something. 21 47 23 8 12 (ROOT (S (SBAR (IN Because) (S (NP (PRP we)) (VP (VBP have)))) (: --) (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (NN president)) (SBAR (WHNP (WDT that)) (S (VP (MD ca) (RB n't) (VP (VP (VB sit) (NP (PRP them)) (PP (IN around) (NP (DT a) (NN table)))) (CC and) (VP (VB get) (S (NP (PRP them)) (VP (TO to) (VP (VB approve) (NP (NN something)))))))))))) (. .)))
TRUMP And here's the thing. 4 10 6 2 3 (ROOT (S (CC And) (NP (RB here)) (VP (VBZ 's) (NP (DT the) (NN thing))) (. .)))
TRUMP "Republicans and Democrats agree that this should be done, $2." 10 23 13 3 8 "(ROOT (S (NP (NNPS Republicans) (CC and) (NNPS Democrats)) (VP (VBP agree) (SBAR (IN that) (S (NP (DT this)) (VP (MD should) (VP (VB be) (VP (VBN done) (, ,) (NP ($ $) (CD 2)))))))) (. .)))"
TRUMP 5 trillion. 2 4 3 1 1 (ROOT (NP (CD 5) (RB trillion) (. .)))
TRUMP I happen to think it's double that. 7 20 9 5 9 (ROOT (S (NP (PRP I)) (VP (VBP happen) (S (VP (TO to) (VP (VB think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (RB double) (NP (DT that))))))))) (. .)))
TRUMP "It's probably $5 trillion that we can't bring into our country, Lester." 12 33 17 5 10 "(ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADVP (RB probably)) (NP (NP (QP ($ $) (CD 5) (CD trillion))) (SBAR (IN that) (S (NP (PRP we)) (VP (MD ca) (RB n't) (VP (VB bring) (PP (IN into) (NP (NP (PRP$ our) (NN country)) (, ,) (NP (NNP Lester)))))))))) (. .)))"
TRUMP "And with a little leadership, you'd get it in here very quickly, and it could be put to use on the inner cities and lots of other things, and it would be beautiful." 33 68 38 17 13 "(ROOT (S (CC And) (PP (IN with) (NP (DT a) (JJ little) (NN leadership))) (, ,) (S (NP (PRP you)) (VP (MD 'd) (VP (VB get) (NP (PRP it)) (PP (IN in) (NP (RB here))) (ADVP (RB very) (RB quickly))))) (, ,) (CC and) (S (S (NP (PRP it)) (VP (MD could) (VP (VB be) (VP (VBN put) (S (VP (TO to) (VP (VB use) (PP (IN on) (NP (NP (DT the) (JJ inner) (NNS cities) (CC and) (NNS lots)) (PP (IN of) (NP (JJ other) (NNS things)))))))))))) (, ,) (CC and) (S (NP (PRP it)) (VP (MD would) (VP (VB be) (ADJP (JJ beautiful)))))) (. .)))"
TRUMP But we have no leadership. 5 10 6 1 3 (ROOT (S (CC But) (NP (PRP we)) (VP (VBP have) (NP (DT no) (NN leadership))) (. .)))
TRUMP "And honestly, that starts with Secretary Clinton." 7 15 9 3 4 "(ROOT (S (CC And) (ADVP (RB honestly)) (, ,) (NP (DT that)) (VP (VBZ starts) (PP (IN with) (NP (NNP Secretary) (NNP Clinton)))) (. .)))"
HOLT All right. 2 4 3 0 1 (ROOT (NP (DT All) (NN right) (. .)))
HOLT "You have two minutes of the same question to defend tax increases on the wealthiest Americans, Secretary Clinton." 18 35 20 7 11 "(ROOT (S (NP (PRP You)) (VP (VBP have) (NP (NP (CD two) (NNS minutes)) (PP (IN of) (NP (DT the) (JJ same) (NN question) (S (VP (TO to) (VP (VB defend) (NP (NN tax) (NNS increases)) (PP (IN on) (NP (NP (DT the) (JJS wealthiest) (NNPS Americans)) (, ,) (NP (NNP Secretary) (NNP Clinton))))))))))) (. .)))"
CLINTON "I have a feeling that by, the end of this evening, I'm going to be blamed for everything that's ever happened." 21 56 26 12 13 "(ROOT (S (S (NP (PRP I)) (VP (VP (VBP have) (NP (NP (DT a) (NN feeling)) (SBAR (IN that) (FRAG (PP (IN by)))))) (, ,) (NP (NP (DT the) (NN end)) (PP (IN of) (NP (DT this) (NN evening)))))) (, ,) (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB be) (VP (VBN blamed) (PP (IN for) (NP (NP (NN everything)) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (ADVP (RB ever)) (VP (VBN happened))))))))))))) (. .)))"
TRUMP Why not? 2 4 2 1 2 (ROOT (FRAG (WHADVP (WRB Why) (RB not))))
CLINTON Why not? 2 4 2 1 2 (ROOT (FRAG (WHADVP (WRB Why) (RB not))))
CLINTON "Yeah, why not?" 3 7 4 1 2 "(ROOT (FRAG (INTJ (UH Yeah)) (, ,) (NP (NN why) (RB not))))"
CLINTON "You know, just join the debate by saying more crazy things." 11 25 13 7 9 "(ROOT (S (NP (PRP You)) (VP (VBP know) (, ,) (ADVP (RB just)) (S (VP (VB join) (NP (DT the) (NN debate)) (PP (IN by) (S (VP (VBG saying) (NP (ADJP (RBR more) (JJ crazy)) (NNS things)))))))) (. .)))"
CLINTON "Now, let me say this, it is absolutely the case." 10 26 13 5 7 "(ROOT (S (S (INTJ (RB Now)) (, ,) (VP (VB let) (SBAR (S (NP (PRP me)) (VP (VBP say) (NP (DT this))))))) (, ,) (NP (PRP it)) (VP (VBZ is) (ADVP (RB absolutely)) (NP (DT the) (NN case))) (. .)))"
TRUMP There's nothing crazy about not letting our companies bring their money back into their country. 15 32 17 8 10 (ROOT (S (NP (EX There)) (VP (VBZ 's) (ADJP (ADJP (NN nothing) (JJ crazy)) (PP (IN about) (S (RB not) (VP (VBG letting) (S (NP (PRP$ our) (NNS companies)) (VP (VB bring) (NP (PRP$ their) (NN money)) (ADVP (RB back)) (PP (IN into) (NP (PRP$ their) (NN country)))))))))) (. .)))
HOLT "This is — this is Secretary Clinton's two minutes, please." 10 25 13 3 6 "(ROOT (S (S (NP (DT This)) (VP (VBZ is))) (: --) (S (NP (DT this)) (VP (VP (VBZ is) (NP (NP (NNP Secretary) (NNP Clinton) (POS 's)) (CD two) (NNS minutes))) (PRN (, ,) (INTJ (VB please))))) (. .)))"
TRUMP Yes. 1 3 2 0 1 (ROOT (INTJ (UH Yes) (. .)))
CLINTON "Yeah, well, let's start the clock again, Lester." 8 22 13 3 5 "(ROOT (S (INTJ (UH Yeah) (, ,) (UH well)) (, ,) (VP (VB let) (S (NP (POS 's)) (VP (VB start) (NP (DT the) (NN clock)) (ADVP (RB again)) (, ,) (NP (NNP Lester))))) (. .)))"
CLINTON We've looked at your tax proposals. 6 14 8 3 5 (ROOT (S (NP (PRP We)) (VP (VBP 've) (VP (VBN looked) (PP (IN at) (NP (PRP$ your) (NN tax) (NNS proposals))))) (. .)))
CLINTON "I don't see changes in the corporate tax rates or the kinds of proposals you're referring to that would cause the repatriation, bringing back of money that's stranded overseas." 29 70 34 16 12 "(ROOT (S (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB see) (NP (NP (NP (NNS changes)) (PP (IN in) (NP (DT the) (JJ corporate) (NN tax) (NNS rates)))) (CC or) (NP (NP (DT the) (NNS kinds)) (PP (IN of) (NP (NNS proposals)))))))) (NP (PRP you)) (VP (VBP 're) (VP (VBG referring) (PP (TO to) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB cause) (NP (DT the) (NN repatriation))))))) (, ,) (S (VP (VBG bringing) (PRT (RP back)) (PP (IN of) (NP (NP (NN money)) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (VP (VBN stranded) (ADVP (RB overseas)))))))))))) (. .)))"
CLINTON I happen to support that. 5 13 6 3 6 (ROOT (S (NP (PRP I)) (VP (VBP happen) (S (VP (TO to) (VP (VB support) (NP (DT that)))))) (. .)))
TRUMP Then you didn't read it. 5 12 7 4 4 (ROOT (S (RB Then) (NP (PRP you)) (VP (VBD did) (RB n't) (VP (VB read) (NP (PRP it)))) (. .)))
CLINTON I happen to — I happen to support that in a way that will actually work to our benefit. 19 44 20 11 15 (ROOT (S (S (NP (PRP I)) (VP (VBP happen) (PP (TO to)))) (: --) (S (NP (PRP I)) (VP (VBP happen) (S (VP (TO to) (VP (VB support) (NP (NP (DT that)) (PP (IN in) (NP (NP (DT a) (NN way)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (ADVP (RB actually)) (VP (VB work) (PP (TO to) (NP (PRP$ our) (NN benefit))))))))))))))) (. .)))
CLINTON "But when I look at what you have proposed, you have what is called now the Trump loophole, because it would so advantage you and the business you do." 29 68 32 11 12 "(ROOT (S (CC But) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBP have) (VP (VBN proposed))))))))) (, ,) (NP (PRP you)) (VP (VBP have) (NP (SBAR (WHNP (WP what)) (S (VP (VBZ is) (VP (VBN called) (ADVP (RB now)) (NP (DT the) (NNP Trump) (NN loophole)) (, ,) (SBAR (IN because) (S (NP (PRP it)) (VP (MD would) (ADVP (RB so)) (VP (VB advantage) (NP (PRP you)))))))))) (CC and) (NP (NP (DT the) (NN business)) (SBAR (S (NP (PRP you)) (VP (VBP do))))))) (. .)))"
CLINTON You've proposed an approach that has a. 7 19 8 4 8 (ROOT (S (NP (PRP You)) (VP (VBP 've) (VP (VBN proposed) (NP (NP (DT an) (NN approach)) (SBAR (WHNP (WDT that)) (S (VP (VBZ has) (VP (VBN a.))))))))))
TRUMP Who gave it that name? 5 11 5 1 4 (ROOT (SBARQ (WHNP (WP Who)) (SQ (VP (VBD gave) (NP (PRP it)) (NP (DT that) (NN name))))))
TRUMP The first I've — who gave it that name? 9 19 10 3 6 (ROOT (S (NP (DT The) (JJ first) (NN I)) (VP (VBP 've) (: --) (SBAR (WHNP (WP who)) (S (VP (VBD gave) (NP (PRP it)) (NP (DT that) (NN name))))))))
HOLT "Mr. Trump, this is Secretary Clinton's two minutes." 8 17 11 1 4 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (DT this)) (VP (VBZ is) (NP (NP (NNP Secretary) (NNP Clinton) (POS 's)) (CD two) (NNS minutes))) (. .)))"
CLINTON $4 billion tax benefit for your family. 7 15 9 2 4 (ROOT (S (NP (QP ($ $) (CD 4) (CD billion)) (NN tax)) (VP (VBP benefit) (PP (IN for) (NP (PRP$ your) (NN family)))) (. .)))
CLINTON And when you look at what you are proposing. 9 23 10 4 9 (ROOT (FRAG (CC And) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBP are) (VP (VBG proposing))))))))) (. .)))
TRUMP How much? 2 4 2 1 2 (ROOT (FRAG (WHADJP (WRB How) (JJ much))))
TRUMP How much for my family? 5 9 5 2 3 (ROOT (FRAG (WHADVP (WRB How) (RB much)) (PP (IN for) (NP (PRP$ my) (NN family)))))
CLINTON it is. 2 6 3 1 2 (ROOT (S (NP (PRP it)) (VP (VBZ is)) (. .)))
TRUMP "Lester, how much?" 3 7 4 2 2 "(ROOT (FRAG (SBAR (RB Lester)) (, ,) (WHADVP (WRB how) (RB much))))"
CLINTON "as I said, trumped-up trickle-down." 5 14 7 2 4 "(ROOT (S (SBAR (IN as) (S (NP (PRP I)) (VP (VBD said)))) (, ,) (NP (NN trumped-up)) (VP (VBZ trickle-down)) (. .)))"
CLINTON Trickle-down did not work. 4 9 5 3 3 (ROOT (S (NP (NNP Trickle-down)) (VP (VBD did) (RB not) (VP (VB work))) (. .)))
CLINTON "It got us into the mess we were in, in 2008 and 2009." 13 29 15 5 9 "(ROOT (S (NP (PRP It)) (VP (VBD got) (NP (PRP us)) (PP (IN into) (NP (NP (DT the) (NN mess)) (SBAR (S (NP (PRP we)) (VP (VBD were) (ADVP (RB in)) (, ,) (PP (IN in) (NP (CD 2008) (CC and) (CD 2009))))))))) (. .)))"
CLINTON Slashing taxes on the wealthy hasn't worked. 7 16 9 6 4 (ROOT (S (NP (NP (VBG Slashing) (NNS taxes)) (PP (IN on) (NP (DT the) (JJ wealthy)))) (VP (VBZ has) (RB n't) (VP (VBN worked))) (. .)))
CLINTON "And a lot of really smart, wealthy people know that." 10 20 12 5 5 "(ROOT (S (CC And) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (ADJP (RB really) (JJ smart) (, ,) (JJ wealthy)) (NNS people)))) (VP (VBP know) (NP (DT that))) (. .)))"
CLINTON "And they are saying, hey, we need to do more to make the contributions we should be making to rebuild the middle class." 23 53 26 14 18 "(ROOT (S (S (CC And) (NP (PRP they)) (VP (VBP are) (VP (VBG saying) (, ,) (ADVP (RB hey))))) (, ,) (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB do) (NP (JJR more)) (S (VP (TO to) (VP (VB make) (NP (NP (DT the) (NNS contributions)) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB be) (VP (VBG making) (S (VP (TO to) (VP (VB rebuild) (NP (DT the) (JJ middle) (NN class)))))))))))))))))) (. .)))"
CLINTON I don't think top-down works in America. 7 16 9 5 5 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB think) (NP (JJ top-down) (NNS works)) (PP (IN in) (NP (NNP America))))) (. .)))
CLINTON "I think building the middle class, investing in the middle class, making college debt-free so more young people can get their education, helping people refinance their — their debt from college at a lower rate." 35 71 39 16 12 "(ROOT (S (NP (PRP I)) (VP (VBP think) (S (VP (VP (VBG building) (NP (DT the) (JJ middle) (NN class))) (, ,) (VP (VBG investing) (PP (IN in) (NP (DT the) (JJ middle) (NN class)))) (, ,) (VP (VBG making) (S (NP (NN college) (NN debt-free)) (ADJP (RB so) (RBR more) (SBAR (S (NP (JJ young) (NNS people)) (VP (MD can) (VP (VB get) (NP (PRP$ their) (NN education))))))))) (, ,) (VP (VBG helping) (S (NP (NNS people)) (VP (VP (VB refinance) (NP (PRP$ their))) (: --) (VP (NP (PRP$ their) (NN debt)) (PP (IN from) (NP (NN college))))))) (PP (IN at) (NP (DT a) (JJR lower) (NN rate)))))) (. .)))"
CLINTON Those are the kinds of things that will really boost the economy. 12 28 13 4 10 (ROOT (S (NP (DT Those)) (VP (VBP are) (NP (NP (DT the) (NNS kinds)) (PP (IN of) (NP (NP (NNS things)) (SBAR (WHNP (WDT that)) (S (VP (MD will) (ADVP (RB really)) (VP (VB boost) (NP (DT the) (NN economy)))))))))) (. .)))
CLINTON "Broad-based, inclusive growth is what we need in America, not more advantages for people at the very top." 18 38 21 10 9 "(ROOT (S (NP (JJ Broad-based) (, ,) (JJ inclusive) (NN growth)) (VP (VBZ is) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP need) (PP (IN in) (NP (NP (NNP America)) (, ,) (RB not) (NP (JJR more) (NNS advantages)))) (PP (IN for) (NP (NP (NNS people)) (PP (IN at) (NP (DT the) (JJ very) (NN top))))))))) (. .)))"
HOLT "Mr. Trump, we're." 3 10 6 1 2 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP we)) (VP (VBP 're)) (. .)))"
TRUMP Typical politician. 2 4 3 1 1 (ROOT (NP (JJ Typical) (NN politician) (. .)))
TRUMP "All talk, no action." 4 9 6 0 2 "(ROOT (NP (NP (DT All) (NN talk)) (, ,) (NP (DT no) (NN action)) (. .)))"
TRUMP "Sounds good, doesn't work." 4 12 7 5 3 "(ROOT (S (ADVP (RB Sounds)) (ADJP (JJ good)) (, ,) (VP (VBZ does) (RB n't) (VP (VB work))) (. .)))"
TRUMP Never going to happen. 4 11 5 3 5 (ROOT (NP (NP (NNP Never)) (VP (VBG going) (S (VP (TO to) (VP (VB happen))))) (. .)))
TRUMP Our country is suffering because people like Secretary Clinton have made such bad decisions in terms of our jobs and in terms of what's going on. 26 57 28 14 16 (ROOT (S (NP (PRP$ Our) (NN country)) (VP (VBZ is) (VP (VBG suffering) (SBAR (IN because) (S (NP (NP (NNS people)) (PP (IN like) (NP (NNP Secretary) (NNP Clinton)))) (VP (VBP have) (VP (VBN made) (NP (JJ such) (JJ bad) (NNS decisions)) (PP (PP (IN in) (NP (NP (NNS terms)) (PP (IN of) (NP (PRP$ our) (NNS jobs))))) (CC and) (PP (IN in) (NP (NP (NNS terms)) (PP (IN of) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG going) (PRT (RP on)))))))))))))))) (. .)))
TRUMP "Now, look, we have the worst revival of an economy since the Great Depression." 14 30 17 6 7 "(ROOT (S (S (INTJ (RB Now)) (, ,) (VP (VB look))) (, ,) (NP (PRP we)) (VP (VBP have) (NP (NP (DT the) (JJS worst) (NN revival)) (PP (IN of) (NP (NP (DT an) (NN economy)) (PP (IN since) (NP (DT the) (NNP Great) (NNP Depression))))))) (. .)))"
TRUMP And believe me: We're in a bubble right now. 9 22 12 5 5 (ROOT (S (CC And) (S (VP (VB believe) (NP (PRP me)))) (: :) (S (NP (PRP We)) (VP (VBP 're) (PP (IN in) (NP (DT a) (NN bubble))) (ADVP (RB right) (RB now)))) (. .)))
TRUMP "And the only thing that looks good is the stock market, but if you raise interest rates even a little bit, that's going to come crashing down." 27 59 31 12 10 "(ROOT (S (S (CC And) (NP (NP (DT the) (JJ only) (NN thing)) (SBAR (WHNP (WDT that)) (S (VP (VBZ looks) (ADJP (JJ good)))))) (VP (VBZ is) (NP (DT the) (NN stock) (NN market)))) (, ,) (CC but) (S (SBAR (IN if) (S (NP (PRP you)) (VP (VBP raise) (NP (NN interest) (NNS rates)) (PRT (JJ even)) (NP (DT a) (JJ little) (NN bit))))) (, ,) (NP (DT that)) (VP (VBZ 's) (VP (VBG going) (S (VP (TO to) (VP (VB come) (S (VP (VBG crashing) (PRT (RP down)))))))))) (. .)))"
TRUMP "We are in a big, fat, ugly bubble." 8 16 11 5 4 "(ROOT (S (NP (PRP We)) (VP (VBP are) (PP (IN in) (NP (DT a) (JJ big) (, ,) (JJ fat) (, ,) (JJ ugly) (NN bubble)))) (. .)))"
TRUMP And we better be awfully careful. 6 12 7 4 3 (ROOT (S (CC And) (NP (PRP we)) (ADVP (RB better)) (VP (VB be) (ADJP (RB awfully) (JJ careful))) (. .)))
TRUMP And we have a Fed that's doing political things. 9 22 11 4 8 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (NNP Fed)) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (VP (VBG doing) (NP (JJ political) (NNS things)))))))) (. .)))
TRUMP This Janet Yellen of the Fed. 6 13 7 1 4 (ROOT (NP (NP (DT This)) (NP (NP (NNP Janet) (NNP Yellen)) (PP (IN of) (NP (DT the) (NNP Fed)))) (. .)))
TRUMP The Fed is doing political — by keeping the interest rates at this level. 14 26 15 6 7 (ROOT (S (NP (DT The) (NNP Fed)) (VP (VBZ is) (VP (VBG doing) (NP (JJ political)) (: --) (PP (IN by) (S (VP (VBG keeping) (NP (DT the) (NN interest) (NNS rates))))) (PP (IN at) (NP (DT this) (NN level))))) (. .)))
TRUMP "And believe me: The day Obama goes off, and he leaves, and goes out to the golf course for the rest of his life to play golf, when they raise interest rates, you're going to see some very bad things happen, because the Fed is not doing their job." 49 107 57 21 24 "(ROOT (S (CC And) (S (VP (VB believe) (NP (PRP me)))) (: :) (S (NP (DT The) (NN day) (NN Obama)) (VP (VBZ goes) (PRT (RP off)))) (, ,) (CC and) (S (NP (PRP he)) (VP (VP (VBZ leaves)) (, ,) (CC and) (VP (VBZ goes) (PRT (RP out)) (PP (TO to) (NP (DT the) (NN golf) (NN course)))) (PP (IN for) (NP (NP (DT the) (NN rest)) (PP (IN of) (NP (PRP$ his) (NN life) (S (VP (TO to) (VP (VB play) (NP (NP (NN golf)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBP raise) (NP (NN interest) (NNS rates)) (PRN (, ,) (S (NP (PRP you)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB see) (S (NP (DT some) (ADJP (RB very) (JJ bad)) (NNS things)) (VP (VB happen))))))))) (, ,)) (SBAR (IN because) (S (NP (DT the) (NNP Fed)) (VP (VBZ is) (RB not) (VP (VBG doing) (NP (PRP$ their) (NN job))))))))))))))))))) (. .)))"
TRUMP The Fed is being more political than Secretary Clinton. 9 17 10 5 5 (ROOT (S (NP (DT The) (NNP Fed)) (VP (VBZ is) (VP (VBG being) (ADJP (RBR more) (JJ political)) (PP (IN than) (NP (NNP Secretary) (NNP Clinton))))) (. .)))
HOLT "Mr. Trump, we're talking about the burden that Americans have to pay, yet you have not released your tax returns." 20 45 24 10 11 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (PRN (, ,) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG talking) (PP (IN about) (NP (DT the) (NN burden))) (SBAR (IN that) (S (NP (NNPS Americans)) (VP (VBP have) (S (VP (TO to) (VP (VB pay)))))))))) (, ,)) (ADVP (RB yet)) (NP (PRP you)) (VP (VBP have) (RB not) (VP (VBN released) (NP (PRP$ your) (NN tax) (NNS returns)))) (. .)))"
HOLT And the reason nominees have released their returns for decades is so that voters will know if their potential president owes money to — who he owes it to and any business conflicts. 33 64 34 11 19 (ROOT (S (CC And) (NP (DT the) (NN reason) (NNS nominees)) (VP (VBP have) (VP (VBN released) (NP (PRP$ their) (NNS returns)) (SBAR (IN for) (S (NP (NNS decades)) (VP (VBZ is) (SBAR (RB so) (IN that) (S (NP (NNS voters)) (VP (MD will) (VP (VB know) (SBAR (IN if) (S (NP (PRP$ their) (JJ potential) (NN president)) (VP (VBZ owes) (NP (NN money)) (PP (TO to)) (: --) (NP (SBAR (WHNP (WP who)) (S (NP (PRP he)) (VP (VBZ owes) (S (NP (PRP it)) (VP (TO to)))))) (CC and) (NP (DT any) (NN business) (NNS conflicts))))))))))))))) (. .)))
HOLT Don't Americans have a right to know if there are any conflicts of interest? 14 34 15 7 15 (ROOT (SINV (VP (VBP Do) (RB n't)) (NP (NP (NNS Americans)) (SBAR (S (VP (VBP have) (NP (DT a) (NN right) (S (VP (TO to) (VP (VB know) (SBAR (IN if) (S (NP (EX there)) (VP (VBP are) (NP (NP (DT any) (NNS conflicts)) (PP (IN of) (NP (NN interest)))))))))))))))))
TRUMP I don't mind releasing — I'm under a routine audit. 10 25 13 7 6 (ROOT (S (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB mind) (S (VP (VBG releasing)))))) (: --) (S (NP (PRP I)) (VP (VBP 'm) (PP (IN under) (NP (DT a) (JJ routine) (NN audit))))) (. .)))
TRUMP And it'll be released. 4 11 6 2 4 (ROOT (S (CC And) (NP (PRP it)) (VP (MD 'll) (VP (VB be) (VP (VBN released)))) (. .)))
TRUMP "And — as soon as the audit's finished, it will be released." 12 28 15 6 5 "(ROOT (S (CC And) (SBAR (PRN (: --) (ADVP (RB as) (RB soon)) (PP (IN as) (NP (DT the) (NN audit)))) (S (NP (PRP 's)) (VP (VBD finished)))) (, ,) (NP (PRP it)) (VP (MD will) (VP (VB be) (VP (VBN released)))) (. .)))"
TRUMP "But you will learn more about Donald Trump by going down to the federal elections, where I filed a 104-page essentially financial statement of sorts, the forms that they have." 30 63 33 14 15 "(ROOT (S (CC But) (NP (PRP you)) (VP (MD will) (VP (VB learn) (NP (JJR more)) (PP (IN about) (NP (NNP Donald) (NNP Trump))) (PP (IN by) (S (VP (VBG going) (PRT (RP down)) (PP (TO to) (NP (NP (DT the) (JJ federal) (NNS elections)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP I)) (VP (VBD filed) (NP (NP (DT a) (JJ 104-page) (ADJP (RB essentially) (JJ financial)) (NN statement)) (PP (IN of) (NP (NP (NNS sorts)) (, ,) (NP (DT the) (NNS forms))))) (SBAR (IN that) (S (NP (PRP they)) (VP (VBP have)))))))))))))) (. .)))"
TRUMP "It shows income — in fact, the income — I just looked today — the income is filed at $694 million for this past year, $694 million." 27 60 32 9 11 "(ROOT (S (NP (PRP It)) (VP (VBZ shows) (NP (NP (NN income)) (SBAR (S (PRN (: --) (PP (IN in) (NP (NP (NN fact)) (, ,) (NP (DT the) (NN income)))) (: --)) (S (NP (PRP I)) (ADVP (RB just)) (VP (VBD looked) (NP (NN today)))) (: --) (S (NP (DT the) (NN income)) (VP (VBZ is) (VP (VBN filed) (PP (IN at) (NP (QP ($ $) (CD 694) (CD million)))) (PP (IN for) (NP (NP (DT this) (JJ past) (NN year)) (, ,) (NP ($ $) (CD 694) (CD million))))))))))) (. .)))"
TRUMP "If you would have told me I was going to make that 15 or 20 years ago, I would have been very surprised." 23 49 25 11 12 "(ROOT (S (SBAR (IN If) (S (NP (PRP you)) (VP (MD would) (VP (VB have) (VP (VBN told) (NP (PRP me))))))) (NP (PRP I)) (VP (VBD was) (VP (VBG going) (S (VP (TO to) (VP (VB make) (SBAR (IN that) (S (ADVP (NP (QP (CD 15) (CC or) (CD 20)) (NNS years)) (RB ago)) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB have) (VP (VBN been) (ADJP (RB very) (JJ surprised)))))))))))) (. .)))"
TRUMP But that's the kind of thinking that our country needs. 10 24 12 4 9 (ROOT (S (CC But) (NP (DT that)) (VP (VBZ 's) (NP (NP (DT the) (NN kind)) (PP (IN of) (S (VP (VBG thinking) (SBAR (IN that) (S (NP (PRP$ our) (NN country)) (VP (VBZ needs))))))))) (. .)))
TRUMP "When we have a country that's doing so badly, that's being ripped off by every single country in the world, it's the kind of thinking that our country needs, because everybody — Lester, we have a trade deficit with all of the countries that we do business with, of almost $800 billion a year." 54 130 64 22 19 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (NN country)) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (VP (VBG doing) (ADVP (ADVP (RB so) (RB badly)) (, ,) (SBAR (WHNP (WDT that)) (S (VP (VBZ 's) (VP (VBG being) (VP (VBN ripped) (PRT (RP off)) (PP (IN by) (NP (NP (DT every) (JJ single) (NN country)) (PP (IN in) (NP (DT the) (NN world))))))))))))))))))) (, ,) (NP (PRP it)) (VP (VBZ 's) (NP (NP (DT the) (NN kind)) (PP (IN of) (S (VP (VBG thinking) (SBAR (IN that) (S (NP (PRP$ our) (NN country)) (VP (VBZ needs) (SBAR (S (PRN (, ,) (SBAR (IN because) (FRAG (NP (NP (NN everybody)) (: --) (NP (NNP Lester))))) (, ,)) (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (NN trade) (NN deficit)) (PP (IN with) (NP (NP (DT all)) (PP (IN of) (NP (DT the) (NNS countries)))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP do) (NP (NN business)) (PP (IN with)))))))))))))) (, ,) (PP (IN of) (NP (NP (QP (RB almost) ($ $) (CD 800) (CD billion))) (NP (DT a) (NN year)))))) (. .)))"
TRUMP You know what that is? 5 13 5 2 5 (ROOT (S (NP (PRP You)) (VP (VBP know) (SBAR (WHNP (WP what)) (S (NP (DT that)) (VP (VBZ is)))))))
TRUMP "That means, who's negotiating these trade deals?" 7 18 9 3 5 "(ROOT (SBARQ (S (NP (DT That)) (VP (VBZ means))) (, ,) (WHNP (WP who)) (SQ (VP (VBZ 's) (VP (VBG negotiating) (NP (DT these) (NN trade) (NNS deals)))))))"
TRUMP We have people that are political hacks negotiating our trade deals. 11 25 12 4 9 (ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (NP (NP (JJ political) (NNS hacks)) (VP (VBG negotiating) (NP (PRP$ our) (NN trade) (NNS deals))))))))) (. .)))
HOLT The IRS says an audit. 5 10 6 1 3 (ROOT (S (NP (DT The) (NNP IRS)) (VP (VBZ says) (NP (DT an) (NN audit))) (. .)))
TRUMP Excuse me. 2 6 3 1 3 (ROOT (S (VP (VB Excuse) (NP (PRP me))) (. .)))
HOLT of your taxes — you're perfectly free to release your taxes during an audit. 14 28 16 7 8 (ROOT (S (PP (IN of) (NP (PRP$ your) (NNS taxes))) (: --) (NP (PRP you)) (VP (VBP 're) (ADJP (RB perfectly) (JJ free) (S (VP (TO to) (VP (VB release) (NP (PRP$ your) (NNS taxes)) (PP (IN during) (NP (DT an) (NN audit)))))))) (. .)))
HOLT "And so the question, does the public's right to know outweigh your personal." 13 27 16 5 8 "(ROOT (S (CC And) (ADVP (IN so) (NP (DT the) (NN question))) (, ,) (VP (VBZ does) (NP (NP (DT the) (NN public) (POS 's)) (NN right) (S (VP (TO to) (VP (VB know) (VP (VB outweigh) (NP (PRP$ your) (JJ personal)))))))) (. .)))"
TRUMP "Well, I told you, I will release them as soon as the audit." 13 29 16 5 5 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBD told) (NP (PRP you)))) (, ,) (NP (PRP I)) (VP (MD will) (VP (VB release) (NP (PRP them)) (ADVP (RB as) (RB soon)) (PP (IN as) (NP (DT the) (NN audit))))) (. .)))"
TRUMP "Look, I've been under audit almost for 15 years." 9 22 12 6 5 "(ROOT (S (S (VP (VB Look))) (, ,) (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (PP (IN under) (NP (NN audit) (RB almost))) (PP (IN for) (NP (CD 15) (NNS years))))) (. .)))"
TRUMP I know a lot of wealthy people that have never been audited. 12 27 13 7 8 (ROOT (S (NP (PRP I)) (VP (VBP know) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (JJ wealthy) (NNS people))) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (ADVP (RB never)) (VP (VBN been) (VP (VBN audited)))))))) (. .)))
TRUMP "I said, do you get audited?" 6 14 7 4 5 "(ROOT (S (NP (PRP I)) (VP (VBD said) (, ,) (SQ (VBP do) (NP (PRP you)) (VP (VB get) (VP (VBN audited)))))))"
TRUMP I get audited almost every year. 6 12 7 3 4 (ROOT (S (NP (PRP I)) (VP (VBP get) (VP (VBN audited) (NP (RB almost) (DT every) (NN year)))) (. .)))
TRUMP "And in a way, I should be complaining." 8 17 10 3 4 "(ROOT (S (CC And) (PP (IN in) (NP (DT a) (NN way))) (, ,) (NP (PRP I)) (VP (MD should) (VP (VB be) (VP (VBG complaining)))) (. .)))"
TRUMP I'm not even complaining. 4 11 6 4 3 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (RB not) (ADVP (RB even)) (VP (VBG complaining))) (. .)))
TRUMP I don't mind it. 4 11 6 3 4 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB mind) (NP (PRP it)))) (. .)))
TRUMP It's almost become a way of life. 7 18 9 4 6 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADVP (RB almost)) (VP (VBN become) (NP (NP (DT a) (NN way)) (PP (IN of) (NP (NN life)))))) (. .)))
TRUMP I get audited by the IRS. 6 13 7 3 5 (ROOT (S (NP (PRP I)) (VP (VBP get) (VP (VBN audited) (PP (IN by) (NP (DT the) (NNP IRS))))) (. .)))
TRUMP But other people don't. 4 9 6 3 2 (ROOT (S (CC But) (NP (JJ other) (NNS people)) (VP (VBP do) (RB n't)) (. .)))
TRUMP I will say this. 4 10 5 1 4 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB say) (NP (DT this)))) (. .)))
TRUMP We have a situation in this country that has to be taken care of. 14 32 15 7 13 (ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (DT a) (NN situation)) (PP (IN in) (NP (NP (DT this) (NN country)) (SBAR (WHNP (WDT that)) (S (VP (VBZ has) (S (VP (TO to) (VP (VB be) (VP (VBN taken) (NP (VB care) (IN of))))))))))))) (. .)))
TRUMP "I will release my tax returns — against my lawyer's wishes — when she releases her 33,000 e-mails that have been deleted." 22 46 24 6 12 "(ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB release) (NP (PRP$ my) (NN tax) (NNS returns)) (PRN (: --) (PP (IN against) (NP (NP (PRP$ my) (NN lawyer) (POS 's)) (NNS wishes))) (: --)) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBZ releases) (NP (NP (PRP$ her) (CD 33,000) (NNS e-mails)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (VP (VBN been) (VP (VBN deleted)))))))))))) (. .)))"
TRUMP "As soon as she releases them, I will release." 9 21 11 4 6 "(ROOT (S (ADVP (RB As) (RB soon) (SBAR (IN as) (S (NP (PRP she)) (VP (VBZ releases) (NP (PRP them)))))) (, ,) (NP (PRP I)) (VP (MD will) (VP (VB release))) (. .)))"
TRUMP I will release my tax returns. 6 12 7 1 4 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB release) (NP (PRP$ my) (NN tax) (NNS returns)))) (. .)))
TRUMP "And that's against — my lawyers, they say, ""Don't do it""." 11 32 18 6 5 "(ROOT (S (S (CC And) (NP (DT that)) (VP (VBZ 's) (PP (IN against)))) (: --) (S (NP (PRP$ my) (NNS lawyers)) (PRN (, ,) (S (NP (PRP they)) (VP (VBP say))) (, ,) (`` ``)) (VP (VBP Do) (RB n't) (VP (VB do) (NP (PRP it) ('' ''))))) (. .)))"
TRUMP I will tell you this. 5 12 6 1 4 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB tell) (NP (PRP you)) (NP (DT this)))) (. .)))
TRUMP "No — in fact, watching shows, they're reading the papers." 10 25 14 4 4 "(ROOT (S (NP (DT No) (PRN (: --) (PP (IN in))) (NN fact)) (, ,) (S (VP (VBG watching) (NP (NNS shows)))) (, ,) (NP (PRP they)) (VP (VBP 're) (VP (VBG reading) (NP (DT the) (NNS papers)))) (. .)))"
TRUMP "Almost every lawyer says, you don't release your returns until the audit's complete." 13 30 17 7 7 "(ROOT (S (S (NP (RB Almost) (DT every) (NN lawyer)) (VP (VBZ says))) (, ,) (NP (PRP you)) (VP (VBP do) (RB n't) (VP (VB release) (NP (PRP$ your) (NNS returns)) (SBAR (IN until) (S (NP (DT the) (NN audit)) (VP (VBZ 's) (ADJP (JJ complete))))))) (. .)))"
TRUMP "When the audit's complete, I'll do it." 7 22 11 3 5 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (DT the) (NN audit)) (VP (VBZ 's) (ADJP (JJ complete))))) (, ,) (NP (PRP I)) (VP (MD 'll) (VP (VB do) (NP (PRP it)))) (. .)))"
TRUMP But I would go against them if she releases her e-mails. 11 23 12 3 7 (ROOT (S (CC But) (NP (PRP I)) (VP (MD would) (VP (VB go) (PP (IN against) (NP (PRP them))) (SBAR (IN if) (S (NP (PRP she)) (VP (VBZ releases) (NP (PRP$ her) (NNS e-mails))))))) (. .)))
HOLT So it's negotiable? 3 8 4 2 3 (ROOT (S (CC So) (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ negotiable)))))
TRUMP "It's not negotiable, no." 4 12 7 3 3 "(ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (RB not) (JJ negotiable)) (, ,) (INTJ (UH no))) (. .)))"
TRUMP Let her release the e-mails. 5 12 6 2 5 (ROOT (S (VP (VB Let) (S (NP (PRP her)) (VP (VB release) (NP (DT the) (NNS e-mails))))) (. .)))
TRUMP "Why did she delete 33,000." 5 12 6 2 4 "(ROOT (SBARQ (WHADVP (WRB Why)) (SQ (VBD did) (NP (PRP she)) (VP (VB delete) (NP (CD 33,000)))) (. .)))"
HOLT "Well, I'll let her answer that." 6 18 9 2 6 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (MD 'll) (VP (VB let) (S (NP (PRP her)) (VP (VB answer) (NP (DT that)))))) (. .)))"
HOLT But let me just admonish the audience one more time. 10 20 11 4 5 (ROOT (S (CC But) (VP (VB let) (NP (PRP me)) (ADVP (RB just)) (VP (VB admonish) (NP (DT the) (NN audience)) (ADVP (NP (CD one)) (RBR more)) (NP (NN time)))) (. .)))
HOLT There was an agreement. 4 9 5 1 3 (ROOT (S (NP (EX There)) (VP (VBD was) (NP (DT an) (NN agreement))) (. .)))
HOLT "We did ask you to be silent, so it would be helpful for us." 14 33 16 8 8 "(ROOT (S (S (NP (PRP We)) (VP (VBD did) (VP (VB ask) (S (NP (PRP you)) (VP (TO to) (VP (VB be) (ADJP (JJ silent)))))))) (, ,) (IN so) (S (NP (PRP it)) (VP (MD would) (VP (VB be) (ADJP (JJ helpful) (PP (IN for) (NP (PRP us))))))) (. .)))"
HOLT Secretary Clinton? 2 3 2 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton)))
CLINTON "Well, I think you've seen another example of bait-and- switch here." 11 32 15 7 11 "(ROOT (S (ADVP (RB Well)) (PRN (, ,) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP you)) (VP (VBP 've) (VP (VBN seen) (NP (NP (DT another) (NN example)) (PP (IN of) (NP (NN bait-and)))))))))) (, -)) (VP (VB switch) (ADVP (RB here))) (. .)))"
CLINTON "For 40 years, everyone running for president has released their tax returns." 12 25 14 5 5 "(ROOT (S (PP (IN For) (NP (CD 40) (NNS years))) (, ,) (NP (NP (NN everyone)) (VP (VBG running) (PP (IN for) (NP (NN president))))) (VP (VBZ has) (VP (VBN released) (NP (PRP$ their) (NN tax) (NNS returns)))) (. .)))"
CLINTON "You can go and see nearly, I think, 39, 40 years of our tax returns, but everyone has done it." 20 46 25 7 8 "(ROOT (S (S (NP (PRP You)) (VP (MD can) (VP (VB go) (CC and) (VB see) (ADVP (RB nearly))))) (PRN (, ,) (S (NP (PRP I)) (VP (VBP think) (, ,) (NP (CD 39)) (, ,) (S (NP (NP (CD 40) (NNS years)) (PP (IN of) (NP (PRP$ our) (NN tax) (NNS returns))))))) (, ,)) (CC but) (S (NP (NN everyone)) (VP (VBZ has) (VP (VBN done) (NP (PRP it))))) (. .)))"
CLINTON We know the IRS has made clear there is no prohibition on releasing it when you're under audit. 18 47 20 9 15 (ROOT (S (NP (PRP We)) (VP (VBP know) (SBAR (S (NP (DT the) (NNP IRS)) (VP (VBZ has) (VP (VBN made) (S (ADJP (JJ clear)) (SBAR (S (NP (EX there)) (VP (VBZ is) (NP (NP (DT no) (NN prohibition)) (PP (IN on) (S (VP (VBG releasing) (NP (PRP it)))))))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP 're) (PP (IN under) (NP (NN audit))))))))))) (. .)))
CLINTON "So you've got to ask yourself, why won't he release his tax returns?" 13 31 16 7 9 "(ROOT (SBARQ (SBAR (RB So) (S (NP (PRP you)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB ask) (NP (PRP yourself))))))))) (, ,) (WHADVP (WRB why)) (SQ (MD wo) (RB n't) (NP (PRP he)) (VP (VB release) (NP (PRP$ his) (NN tax) (NNS returns))))))"
CLINTON And I think there may be a couple of reasons. 10 23 11 3 9 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (EX there)) (VP (MD may) (VP (VB be) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (NNS reasons))))))))) (. .)))
CLINTON "First, maybe he's not as rich as he says he is." 11 28 14 8 8 "(ROOT (S (ADVP (RB First)) (, ,) (ADVP (RB maybe)) (NP (PRP he)) (VP (VBZ 's) (RB not) (ADJP (RB as) (JJ rich)) (SBAR (IN as) (S (NP (PRP he)) (VP (VBZ says) (SBAR (S (NP (PRP he)) (VP (VBZ is)))))))) (. .)))"
CLINTON "Second, maybe he's not as charitable as he claims to be." 11 27 14 8 8 "(ROOT (S (ADVP (LS Second)) (, ,) (ADVP (RB maybe)) (NP (PRP he)) (VP (VBZ 's) (RB not) (ADJP (RB as) (JJ charitable)) (SBAR (IN as) (S (NP (PRP he)) (VP (VBZ claims) (S (VP (TO to) (VP (VB be)))))))) (. .)))"
CLINTON "Third, we don't know all of his business dealings, but we have been told through investigative reporting that he owes about $650 million to Wall Street and foreign banks." 29 61 34 14 11 "(ROOT (S (S (ADVP (LS Third)) (, ,) (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB know) (NP (NP (DT all)) (PP (IN of) (NP (PRP$ his) (NN business) (NNS dealings))))))) (, ,) (CC but) (S (NP (PRP we)) (VP (VBP have) (VP (VBN been) (VP (VBN told) (PP (IN through) (NP (JJ investigative) (NN reporting))) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ owes) (NP (QP (RB about) ($ $) (CD 650) (CD million))) (PP (TO to) (NP (NP (NNP Wall) (NNP Street)) (CC and) (NP (JJ foreign) (NNS banks))))))))))) (. .)))"
CLINTON "Or maybe he doesn't want the American people, all of you watching tonight, to know that he's paid nothing in federal taxes, because the only years that anybody's ever seen were a couple of years when he had to turn them over to state authorities when he was trying to get a casino license, and they showed he didn't pay any federal income tax." 64 147 73 34 28 "(ROOT (S (S (CC Or) (ADVP (RB maybe)) (NP (PRP he)) (VP (VBZ does) (RB n't) (VP (VB want) (S (NP (NP (DT the) (JJ American) (NNS people)) (, ,) (NP (NP (DT all)) (PP (IN of) (S (NP (PRP you)) (VP (VBG watching) (NP (RB tonight)))))) (, ,)) (VP (TO to) (VP (VB know) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBN paid) (NP (NP (NN nothing)) (PP (IN in) (NP (JJ federal) (NNS taxes)))) (, ,) (SBAR (IN because) (S (NP (NP (DT the) (JJ only) (NNS years)) (SBAR (IN that) (S (NP (NN anybody)) (VP (VBZ 's) (ADVP (RB ever)) (VP (VBN seen)))))) (VP (VBD were) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (NP (NNS years)) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD had) (S (VP (TO to) (VP (VB turn) (NP (PRP them)) (PRT (RP over)) (PP (TO to) (NP (NN state) (NNS authorities)))))) (SBAR (WHADVP (WRB when)) (S (NP (PRP he)) (VP (VBD was) (VP (VBG trying) (S (VP (TO to) (VP (VB get) (NP (DT a) (NN casino) (NN license)))))))))))))))))))))))))))) (, ,) (CC and) (S (NP (PRP they)) (VP (VBD showed) (SBAR (S (NP (PRP he)) (VP (VBD did) (RB n't) (VP (VB pay) (NP (DT any) (JJ federal) (NN income) (NN tax)))))))) (. .)))"
TRUMP That makes me smart. 4 11 5 2 4 (ROOT (S (NP (DT That)) (VP (VBZ makes) (S (NP (PRP me)) (ADJP (JJ smart)))) (. .)))
CLINTON "So if he's paid zero, that means zero for troops, zero for vets, zero for schools or health." 18 44 23 6 7 "(ROOT (S (IN So) (SBAR (IN if) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBN paid) (NP (CD zero)))))) (, ,) (NP (DT that)) (VP (VBZ means) (NP (CD zero)) (PP (IN for) (NP (NP (NNS troops)) (, ,) (NP (NP (CD zero)) (PP (IN for) (NP (NNS vets)))) (, ,) (NP (NP (CD zero)) (PP (IN for) (NP (NNS schools) (CC or) (NN health))))))) (. .)))"
CLINTON "And I think probably he's not all that enthusiastic about having the rest of our country see what the real reasons are, because it must be something really important, even terrible, that he's trying to hide." 36 83 42 20 13 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (S (ADVP (RB probably)) (NP (PRP he)) (VP (VBZ 's) (RB not) (ADJP (ADVP (DT all) (DT that)) (JJ enthusiastic) (PP (IN about) (S (VP (VBG having) (S (NP (NP (DT the) (NN rest)) (PP (IN of) (NP (PRP$ our) (NN country)))) (VP (VB see) (SBAR (WHNP (WP what)) (S (NP (DT the) (JJ real) (NNS reasons)) (VP (VBP are)))))))))))) (, ,) (SBAR (IN because) (S (NP (PRP it)) (VP (MD must) (VP (VB be) (NP (NP (NN something)) (ADJP (ADJP (RB really) (JJ important)) (, ,) (ADJP (RB even) (JJ terrible)) (, ,))) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBG trying) (S (VP (TO to) (VP (VB hide))))))))))))) (. .)))"
CLINTON "And the financial disclosure statements, they don't give you the tax rate." 12 22 15 4 4 "(ROOT (S (CC And) (NP (DT the) (JJ financial) (NN disclosure) (NNS statements)) (, ,) (NP (PRP they)) (VP (VBP do) (RB n't) (VP (VB give) (NP (PRP you)) (NP (DT the) (NN tax) (NN rate)))) (. .)))"
CLINTON They don't give you all the details that tax returns would. 11 23 13 3 6 (ROOT (S (NP (PRP They)) (VP (VBP do) (RB n't) (VP (VB give) (NP (PRP you)) (NP (PDT all) (DT the) (NNS details)) (SBAR (IN that) (S (NP (NN tax) (NNS returns)) (VP (MD would)))))) (. .)))
CLINTON And it just seems to me that this is something that the American people deserve to see. 17 36 18 9 11 (ROOT (S (CC And) (NP (PRP it)) (ADVP (RB just)) (VP (VBZ seems) (PP (TO to) (NP (PRP me))) (SBAR (IN that) (S (NP (DT this)) (VP (VBZ is) (NP (NN something)) (SBAR (IN that) (S (NP (DT the) (JJ American) (NNS people)) (VP (VBP deserve) (S (VP (TO to) (VP (VB see))))))))))) (. .)))
CLINTON "And I have no reason to believe that he's ever going to release his tax returns, because there's something he's hiding." 21 54 26 11 14 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP have) (NP (DT no) (NN reason) (S (VP (TO to) (VP (VB believe) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ 's) (ADVP (RB ever)) (VP (VBG going) (S (VP (TO to) (VP (VB release) (NP (PRP$ his) (NN tax) (NNS returns))))))))))))) (, ,) (SBAR (IN because) (S (NP (EX there)) (VP (VBZ 's) (NP (NP (NN something)) (SBAR (S (NP (PRP he)) (VP (VBZ 's) (VP (VBG hiding)))))))))) (. .)))"
CLINTON And we'll guess. 3 9 5 1 3 (ROOT (S (CC And) (NP (PRP we)) (VP (MD 'll) (VP (VB guess))) (. .)))
CLINTON We'll keep guessing at what it might be that he's hiding. 11 32 14 6 14 (ROOT (S (NP (PRP We)) (VP (MD 'll) (VP (VB keep) (S (VP (VBG guessing) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (MD might) (VP (VB be) (SBAR (IN that) (S (NP (PRP he)) (VP (VBZ 's) (VP (VBG hiding)))))))))))))) (. .)))
CLINTON "But I think the question is, were he ever to get near the White House, what would be those conflicts?" 20 44 22 8 17 "(ROOT (S (CC But) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (DT the) (NN question)) (VP (VBZ is) (, ,) (SQ (VBD were) (NP (PRP he)) (SBAR (RB ever) (S (VP (TO to) (VP (VB get) (PP (IN near) (NP (NP (DT the) (NNP White) (NNP House)) (, ,) (SBAR (WHNP (WP what)) (S (VP (MD would) (VP (VB be) (NP (DT those) (NNS conflicts)))))))))))))))))))"
CLINTON Who does he owe money to? 6 13 6 4 4 (ROOT (SBARQ (WHNP (WP Who)) (SQ (VBZ does) (NP (PRP he)) (VP (VB owe) (NP (NN money)) (PP (TO to))))))
CLINTON "Well, he owes you the answers to that, and he should provide them." 13 31 16 4 6 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (PRP he)) (VP (VBZ owes) (NP (PRP you)) (NP (NP (DT the) (NNS answers)) (PP (TO to) (NP (DT that)))))) (, ,) (CC and) (S (NP (PRP he)) (VP (MD should) (VP (VB provide) (NP (PRP them))))) (. .)))"
HOLT He also — he also raised the issue of your e-mails. 11 24 12 4 6 (ROOT (NP (NP (NP (PRP He)) (ADVP (RB also))) (: --) (S (NP (PRP he)) (ADVP (RB also)) (VP (VBD raised) (NP (NP (DT the) (NN issue)) (PP (IN of) (NP (PRP$ your) (NNS e-mails)))))) (. .)))
HOLT Do you want to respond to that? 7 18 7 6 10 (ROOT (S (VP (VB Do) (SBAR (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB respond) (PP (TO to) (NP (DT that))))))))))))
CLINTON I do. 2 6 3 1 2 (ROOT (S (NP (PRP I)) (VP (VBP do)) (. .)))
CLINTON "You know, I made a mistake using a private e- mail." 11 27 14 4 8 "(ROOT (S (NP (PRP You)) (VP (VBP know) (PRN (, ,) (S (NP (PRP I)) (VP (VBD made) (NP (DT a) (NN mistake)) (S (VP (VBG using) (NP (DT a) (JJ private)) (X (SYM e)))))) (, -)) (NP (NN mail))) (. .)))"
TRUMP That's for sure. 3 10 5 3 4 (ROOT (S (NP (DT That)) (VP (VBZ 's) (PP (IN for) (ADJP (JJ sure)))) (. .)))
CLINTON "And if I had to do it over again, I would, obviously, do it differently." 15 36 19 7 8 "(ROOT (S (CC And) (SBAR (IN if) (S (NP (PRP I)) (VP (VBD had) (S (VP (TO to) (VP (VB do) (NP (PRP it)) (PRT (RP over)) (ADVP (RB again)))))))) (, ,) (NP (PRP I)) (VP (MD would) (, ,) (ADVP (RB obviously)) (, ,) (VP (VB do) (NP (PRP it)) (ADVP (RB differently)))) (. .)))"
CLINTON But I'm not going to make any excuses. 8 18 10 5 7 (ROOT (S (CC But) (NP (PRP I)) (VP (VBP 'm) (RB not) (VP (VBG going) (S (VP (TO to) (VP (VB make) (NP (DT any) (NNS excuses))))))) (. .)))
CLINTON "It was a mistake, and I take responsibility for that." 10 24 12 3 6 "(ROOT (S (S (NP (PRP It)) (VP (VBD was) (NP (DT a) (NN mistake)))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP take) (NP (NP (NN responsibility)) (PP (IN for) (NP (DT that)))))) (. .)))"
HOLT Mr. Trump? 2 3 2 0 1 (ROOT (NP (NNP Mr.) (NNP Trump)))
TRUMP That was more than a mistake. 6 13 7 3 4 (ROOT (S (NP (DT That)) (VP (VBD was) (ADJP (JJR more)) (PP (IN than) (NP (DT a) (NN mistake)))) (. .)))
TRUMP That was done purposely. 4 10 5 3 4 (ROOT (S (NP (DT That)) (VP (VBD was) (VP (VBN done) (ADVP (RB purposely)))) (. .)))
TRUMP OK? 1 2 1 0 1 (ROOT (INTJ (UH OK)))
TRUMP That was not a mistake. 5 10 6 2 3 (ROOT (S (NP (DT That)) (VP (VBD was) (RB not) (NP (DT a) (NN mistake))) (. .)))
TRUMP That was done purposely. 4 10 5 3 4 (ROOT (S (NP (DT That)) (VP (VBD was) (VP (VBN done) (ADVP (RB purposely)))) (. .)))
TRUMP "When you have your staff taking the Fifth Amendment, taking the Fifth so they're not prosecuted, when you have the man that set up the illegal server taking the Fifth, I think it's disgraceful." 34 81 40 13 14 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP you)) (VP (VBP have) (NP (NP (PRP$ your) (NN staff)) (VP (VP (VBG taking) (NP (DT the) (NNP Fifth) (NNP Amendment))) (, ,) (VP (VBG taking) (NP (DT the) (NNP Fifth))) (SBAR (IN so) (S (NP (PRP they)) (VP (VBP 're) (RB not) (VP (VBN prosecuted))))))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP have) (NP (NP (DT the) (NN man)) (SBAR (WHNP (WDT that)) (S (VP (VBD set) (PRT (RP up)) (NP (NP (DT the) (JJ illegal) (NN server)) (VP (VBG taking) (NP (DT the) (NNP Fifth)))))))))))))) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ disgraceful)))))) (. .)))"
TRUMP "And believe me, this country thinks it's — really thinks it's disgraceful, also." 13 37 18 8 11 "(ROOT (S (S (CC And) (VP (VB believe) (NP (PRP me)))) (, ,) (NP (DT this) (NN country)) (VP (VBZ thinks) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (: --) (SQ (ADVP (RB really)) (VP (VBZ thinks) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ disgraceful)) (, ,) (ADVP (RB also))))))))))) (. .)))"
TRUMP "As far as my tax returns, you don't learn that much from tax returns." 14 28 17 9 5 "(ROOT (S (PP (IN As) (ADVP (RB far) (PP (IN as) (NP (PRP$ my) (NN tax) (NNS returns))))) (, ,) (NP (PRP you)) (VP (VBP do) (RB n't) (VP (VB learn) (ADVP (RB that) (RB much)) (PP (IN from) (NP (NN tax) (NNS returns))))) (. .)))"
TRUMP That I can tell you. 5 12 6 1 4 (ROOT (S (NP (DT That)) (NP (PRP I)) (VP (MD can) (VP (VB tell) (NP (PRP you)))) (. .)))
TRUMP You learn a lot from financial disclosure. 7 14 8 3 4 (ROOT (S (NP (PRP You)) (VP (VBP learn) (NP (DT a) (NN lot)) (PP (IN from) (NP (JJ financial) (NN disclosure)))) (. .)))
TRUMP And you should go down and take a look at that. 11 22 12 3 6 (ROOT (S (CC And) (NP (PRP you)) (VP (MD should) (VP (VP (VB go) (PRT (RP down))) (CC and) (VP (VB take) (NP (DT a) (NN look)) (PP (IN at) (NP (DT that)))))) (. .)))
TRUMP "The other thing, I'm extremely underleveraged." 6 14 9 4 3 "(ROOT (S (NP (DT The) (JJ other) (NN thing)) (, ,) (NP (PRP I)) (VP (VBP 'm) (ADJP (RB extremely) (JJ underleveraged))) (. .)))"
TRUMP "The report that said $650 — which, by the way, a lot of friends of mine that know my business say, boy, that's really not a lot of money." 29 69 36 10 14 "(ROOT (NP (DT The) (NN report) (SBAR (WHNP (WDT that)) (S (VP (VBD said) (NP ($ $) (CD 650)) (: --) (S (SBAR (WHNP (WDT which)) (S (, ,) (PP (IN by) (NP (DT the) (NN way))) (, ,) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (NNS friends)) (PP (IN of) (NP (NN mine))) (SBAR (WHNP (WDT that)) (S (VP (VBP know) (NP (PRP$ my) (NN business)))))))) (VP (VBP say)))) (, ,) (INTJ (UH boy)) (, ,) (NP (DT that)) (VP (VBZ 's) (ADVP (RB really)) (NP (NP (RB not) (DT a) (NN lot)) (PP (IN of) (NP (NN money))))))))) (. .)))"
TRUMP It's not a lot of money relative to what I had. 11 28 13 7 10 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (RB not) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (NN money)) (ADVP (JJ relative) (PP (TO to) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBD had)))))))))) (. .)))
TRUMP "The buildings that were in question, they said in the same report, which was — actually, it wasn't even a bad story, to be honest with you, but the buildings are worth $3." 33 78 41 17 12 "(ROOT (S (NP (NP (DT The) (NNS buildings)) (SBAR (WHNP (WDT that)) (S (VP (VBD were) (PP (IN in) (NP (NN question))))))) (, ,) (S (NP (PRP they)) (VP (VBD said) (PP (IN in) (NP (NP (DT the) (JJ same) (NN report)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD was) (ADVP (: --) (ADVP (RB actually)) (, ,) (S (NP (PRP it)) (VP (VBD was) (RB n't) (ADVP (RB even)) (NP (DT a) (JJ bad) (NN story)))))))))) (, ,) (S (VP (TO to) (VP (VB be) (ADJP (JJ honest) (PP (IN with) (NP (PRP you))))))))) (, ,) (CC but) (S (NP (DT the) (NNS buildings)) (VP (VBP are) (ADJP (JJ worth) (NP ($ $) (CD 3))))) (. .)))"
TRUMP 9 billion. 2 5 3 0 2 (ROOT (FRAG (NP (CD 9) (CD billion)) (. .)))
TRUMP And the $650 isn't even on that. 7 17 10 4 4 (ROOT (S (CC And) (NP (DT the) (QP ($ $) (CD 650))) (VP (VBZ is) (RB n't) (ADVP (RB even)) (PP (IN on) (NP (DT that)))) (. .)))
TRUMP But it's not $650. 4 11 7 2 3 (ROOT (S (CC But) (NP (PRP it)) (VP (VBZ 's) (RB not) (NP ($ $) (CD 650))) (. .)))
TRUMP It's much less than that. 5 14 7 4 5 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (ADJP (RB much) (JJR less)) (PP (IN than) (NP (DT that))))) (. .)))
TRUMP "But I could give you a list of banks, I would — if that would help you, I would give you a list of banks." 25 57 28 5 8 "(ROOT (S (S (CC But) (S (NP (PRP I)) (VP (MD could) (VP (VB give) (NP (PRP you)) (NP (NP (DT a) (NN list)) (PP (IN of) (NP (NNS banks))))))) (, ,) (S (NP (PRP I)) (VP (MD would)))) (: --) (S (SBAR (IN if) (S (NP (DT that)) (VP (MD would) (VP (VB help) (NP (PRP you)))))) (, ,) (NP (PRP I)) (VP (MD would) (VP (VB give) (NP (PRP you)) (NP (NP (DT a) (NN list)) (PP (IN of) (NP (NNS banks))))))) (. .)))"
TRUMP "These are very fine institutions, very fine banks." 8 18 10 5 5 "(ROOT (S (NP (DT These)) (VP (VBP are) (NP (NP (ADJP (RB very) (JJ fine)) (NNS institutions)) (, ,) (NP (ADJP (RB very) (JJ fine)) (NNS banks)))) (. .)))"
TRUMP I could do that very quickly. 6 13 7 3 4 (ROOT (S (NP (PRP I)) (VP (MD could) (VP (VB do) (NP (DT that)) (ADVP (RB very) (RB quickly)))) (. .)))
TRUMP I am very underleveraged. 4 9 5 3 3 (ROOT (S (NP (PRP I)) (VP (VBP am) (ADJP (RB very) (JJ underleveraged))) (. .)))
TRUMP I have a great company. 5 10 6 2 3 (ROOT (S (NP (PRP I)) (VP (VBP have) (NP (DT a) (JJ great) (NN company))) (. .)))
TRUMP I have a tremendous income. 5 10 6 2 3 (ROOT (S (NP (PRP I)) (VP (VBP have) (NP (DT a) (JJ tremendous) (NN income))) (. .)))
TRUMP And the reason I say that is not in a braggadocios way. 12 21 13 5 7 (ROOT (S (CC And) (NP (DT the) (NN reason) (NN I)) (VP (VBP say) (SBAR (IN that) (S (VP (VBZ is) (RB not) (PP (IN in) (NP (DT a) (JJ braggadocios) (NN way))))))) (. .)))
TRUMP It's because it's about time that this country had somebody running it that has an idea about money. 18 46 21 7 15 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (SBAR (IN because) (S (NP (PRP it)) (VP (VBZ 's) (PP (IN about) (NP (NN time))) (SBAR (IN that) (S (NP (DT this) (NN country)) (VP (VBD had) (NP (NP (NN somebody)) (VP (VBG running) (NP (PRP it))) (SBAR (WHNP (WDT that)) (S (VP (VBZ has) (NP (NP (DT an) (NN idea)) (PP (IN about) (NP (NN money))))))))))))))) (. .)))
TRUMP "When we have $20 trillion in debt, and our country's a mess, you know, it's one thing to have $20 trillion in debt and our roads are good and our bridges are good and everything's in great shape, our airports." 40 99 50 15 17 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (S (NP (PRP we)) (VP (VBP have) (NP (NP (QP ($ $) (CD 20) (CD trillion))) (PP (IN in) (NP (NN debt)))))) (, ,) (CC and) (S (NP (PRP$ our) (NN country)) (VP (VBZ 's) (NP (DT a) (NN mess)))))) (, ,) (NP (PRP you)) (VP (VBP know) (PRN (, ,) (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (CD one) (NN thing)) (SBAR (S (VP (TO to) (VP (VB have) (NP (NP (QP ($ $) (CD 20) (CD trillion))) (PP (IN in) (S (S (NP (NP (NN debt)) (CC and) (NP (PRP$ our) (NNS roads))) (VP (VBP are) (ADJP (JJ good)))) (CC and) (S (NP (PRP$ our) (NNS bridges)) (VP (VBP are) (ADJP (JJ good)))) (CC and) (S (NP (NN everything)) (VP (VBZ 's) (PP (IN in) (NP (JJ great) (NN shape))))))))))))))) (, ,)) (NP (PRP$ our) (NNS airports))) (. .)))"
TRUMP Our airports are like from a third world country. 9 16 10 4 5 (ROOT (S (NP (PRP$ Our) (NNS airports)) (VP (VBP are) (VP (JJ like) (PP (IN from) (NP (DT a) (JJ third) (NN world) (NN country))))) (. .)))
TRUMP "You land at LaGuardia, you land at Kennedy, you land at LAX, you land at Newark, and you come in from Dubai and Qatar and you see these incredible — you come in from China, you see these incredible airports, and you land — we've become a third world country." 50 109 58 19 8 "(ROOT (S (S (S (NP (PRP You)) (VP (VB land) (PP (IN at) (NP (NNP LaGuardia))))) (, ,) (S (NP (PRP you)) (VP (VB land) (PP (IN at) (NP (NNP Kennedy))))) (, ,) (S (NP (PRP you)) (VP (VB land) (PP (IN at) (NP (NNP LAX))))) (, ,) (S (S (NP (PRP you)) (VP (VB land) (PP (IN at) (NP (NNP Newark))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBP come) (PRT (RP in)) (PP (IN from) (NP (NNP Dubai) (CC and) (NNP Qatar)))))) (CC and) (S (NP (PRP you)) (VP (VBP see) (NP (DT these) (JJ incredible)) (: --) (S (NP (PRP you)) (VP (VB come) (PRT (RP in)) (PP (IN from) (NP (NNP China))))))) (, ,) (S (NP (PRP you)) (VP (VBP see) (NP (DT these) (JJ incredible) (NNS airports)))) (, ,) (CC and) (S (NP (PRP you)) (NP (NN land)))) (: --) (S (NP (PRP we)) (VP (VBP 've) (VP (VBN become) (NP (DT a) (JJ third) (NN world) (NN country))))) (. .)))"
TRUMP So the worst of all things has happened. 8 16 9 4 4 (ROOT (S (IN So) (NP (NP (DT the) (JJS worst)) (PP (IN of) (NP (DT all) (NNS things)))) (VP (VBZ has) (VP (VBN happened))) (. .)))
TRUMP "We owe $20 trillion, and we're a mess." 8 22 12 2 5 "(ROOT (S (S (NP (PRP We)) (VP (VBP owe) (NP (QP ($ $) (CD 20) (CD trillion))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP 're) (NP (DT a) (NN mess)))) (. .)))"
TRUMP We haven't even started. 4 11 6 4 3 (ROOT (S (NP (PRP We)) (VP (VBP have) (RB n't) (ADVP (RB even)) (VP (VBN started))) (. .)))
TRUMP "And we've spent $6 trillion in the Middle East, according to a report that I just saw." 17 38 21 9 9 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP 've) (VP (VBN spent) (NP (QP ($ $) (CD 6) (CD trillion))) (PP (IN in) (NP (DT the) (NNP Middle) (NNP East))) (, ,) (PP (VBG according) (PP (TO to) (NP (NP (DT a) (NN report)) (SBAR (IN that) (S (NP (PRP I)) (ADVP (RB just)) (VP (VBD saw))))))))) (. .)))"
TRUMP "Whether it's 6 or 5, but it looks like it's 6, $6 trillion in the Middle East, we could have rebuilt our country twice." 24 59 31 7 12 "(ROOT (S (SBAR (IN Whether) (S (S (NP (PRP it)) (VP (VBZ 's) (NP (QP (CD 6) (CC or) (CD 5))))) (, ,) (CC but) (S (NP (PRP it)) (VP (VBZ looks) (SBAR (IN like) (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (CD 6)) (, ,) (NP (NP (QP ($ $) (CD 6) (CD trillion))) (PP (IN in) (NP (DT the) (NNP Middle) (NNP East)))))))))))) (, ,) (NP (PRP we)) (VP (MD could) (VP (VB have) (VP (VBN rebuilt) (NP (PRP$ our) (NN country)) (ADVP (RB twice))))) (. .)))"
TRUMP And it's really a shame. 5 12 7 2 3 (ROOT (S (CC And) (NP (PRP it)) (VP (VBZ 's) (ADVP (RB really)) (NP (DT a) (NN shame))) (. .)))
TRUMP And it's politicians like Secretary Clinton that have caused this problem. 11 27 13 4 10 (ROOT (S (CC And) (NP (PRP it)) (VP (VBZ 's) (NP (NP (NNS politicians)) (PP (IN like) (NP (NP (NNP Secretary) (NNP Clinton)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (VP (VBN caused) (NP (DT this) (NN problem)))))))))) (. .)))
TRUMP Our country has tremendous problems. 5 10 6 2 3 (ROOT (S (NP (PRP$ Our) (NN country)) (VP (VBZ has) (NP (JJ tremendous) (NNS problems))) (. .)))
TRUMP We're a debtor nation. 4 10 6 1 3 (ROOT (S (NP (PRP We)) (VP (VBP 're) (NP (DT a) (NN debtor) (NN nation))) (. .)))
TRUMP We're a serious debtor nation. 5 11 7 2 3 (ROOT (S (NP (PRP We)) (VP (VBP 're) (NP (DT a) (JJ serious) (NN debtor) (NN nation))) (. .)))
TRUMP "And we have a country that needs new roads, new tunnels, new bridges, new airports, new schools, new hospitals." 19 41 25 8 8 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (NP (NP (DT a) (NN country)) (SBAR (WHNP (WDT that)) (S (VP (VBZ needs) (NP (NP (JJ new) (NNS roads)) (, ,) (NP (JJ new) (NNS tunnels)) (, ,) (NP (JJ new) (NNS bridges)) (, ,) (NP (JJ new) (NNS airports)) (, ,) (NP (JJ new) (NNS schools)) (, ,) (NP (JJ new) (NNS hospitals)))))))) (. .)))"
TRUMP "And we don't have the money, because it's been squandered on so many of your ideas." 16 36 20 10 12 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB have) (NP (DT the) (NN money)) (, ,) (SBAR (IN because) (S (NP (PRP it)) (VP (VBZ 's) (VP (VBN been) (VP (VBN squandered) (PP (IN on) (NP (NP (RB so) (JJ many)) (PP (IN of) (NP (PRP$ your) (NNS ideas)))))))))))) (. .)))"
HOLT We'll let you respond and we'll move on to the next segment. 12 30 15 6 6 (ROOT (S (S (NP (PRP We)) (VP (MD 'll) (VP (VB let) (S (NP (PRP you)) (VP (VB respond)))))) (CC and) (S (NP (PRP we)) (VP (MD 'll) (VP (VB move) (PRT (RP on)) (PP (TO to) (NP (DT the) (JJ next) (NN segment)))))) (. .)))
CLINTON And maybe because you haven't paid any federal income tax for a lot of years. 15 29 17 7 9 (ROOT (FRAG (CC And) (RB maybe) (SBAR (IN because) (S (NP (PRP you)) (VP (VBP have) (RB n't) (VP (VBN paid) (NP (DT any) (JJ federal) (NN income) (NN tax)) (PP (IN for) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS years)))))))) (. .))))
CLINTON And the other thing I think is important. 8 18 9 4 5 (ROOT (S (CC And) (NP (NP (DT the) (JJ other) (NN thing)) (SBAR (S (NP (PRP I)) (VP (VBP think))))) (VP (VBZ is) (ADJP (JJ important))) (. .)))
TRUMP "It would be squandered, too, believe me." 7 19 10 4 7 "(ROOT (S (NP (PRP It)) (VP (MD would) (VP (VB be) (VP (VBN squandered) (, ,) (ADVP (RB too)) (, ,) (S (VP (VB believe) (NP (PRP me))))))) (. .)))"
CLINTON "is if your — if your main claim to be president of the United States is your business, then I think we should talk about that." 26 55 28 10 12 "(ROOT (S (S (VP (VBZ is) (SBAR (IN if) (S (NP (PRP your)) (: --) (SBAR (IN if) (S (NP (PRP$ your) (JJ main) (NN claim)) (VP (TO to) (VP (VB be) (NP (NP (NN president)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States)))))))) (VP (VBZ is) (NP (PRP$ your) (NN business))))))) (, ,) (ADVP (RB then)) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB talk) (PP (IN about) (NP (DT that)))))))) (. .)))"
CLINTON "You know, your campaign manager said that you built a lot of businesses on the backs of little guys." 19 40 21 7 9 "(ROOT (S (S (NP (PRP You)) (VP (VBP know))) (, ,) (NP (PRP$ your) (NN campaign) (NN manager)) (VP (VBD said) (SBAR (IN that) (S (NP (PRP you)) (VP (VBD built) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS businesses)))) (PP (IN on) (NP (NP (DT the) (NNS backs)) (PP (IN of) (NP (JJ little) (NNS guys))))))))) (. .)))"
CLINTON "And, indeed, I have met a lot of the people who were stiffed by you and your businesses, Donald." 19 44 23 7 13 "(ROOT (S (CC And) (, ,) (ADVP (RB indeed)) (, ,) (NP (PRP I)) (VP (VBP have) (VP (VBN met) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (NP (DT the) (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBD were) (VP (VBN stiffed) (PP (IN by) (NP (PRP you)))))))) (CC and) (NP (NP (PRP$ your) (NNS businesses)) (, ,) (NP (NNP Donald)))))))) (. .)))"
CLINTON "I've met dishwashers, painters, architects, glass installers, marble installers, drapery installers, like my dad was, who you refused to pay when they finished the work that you asked them to do." 31 77 40 12 18 "(ROOT (S (NP (PRP I)) (VP (VBP 've) (VP (VBN met) (NP (NP (NP (NNS dishwashers)) (, ,) (NP (NNS painters)) (, ,) (NP (NNS architects)) (, ,) (NP (NN glass) (NNS installers)) (, ,) (NP (NN marble) (NNS installers)) (, ,) (NP (JJ drapery) (NNS installers)) (, ,) (PP (IN like) (NP (PRP$ my) (NN dad)))) (VP (VBD was))) (, ,) (SBAR (WHNP (WP who)) (S (NP (PRP you)) (VP (VBD refused) (S (VP (TO to) (VP (VB pay) (SBAR (WHADVP (WRB when)) (S (NP (PRP they)) (VP (VBD finished) (NP (DT the) (NN work)) (SBAR (IN that) (S (NP (PRP you)) (VP (VBD asked) (S (NP (PRP them)) (VP (TO to) (VP (VB do)))))))))))))))))) (. .)))"
CLINTON We have an architect in the audience who designed one of your clubhouses at one of your golf courses. 19 41 20 6 12 (ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (DT an) (NN architect)) (PP (IN in) (NP (NP (DT the) (NN audience)) (SBAR (WHNP (WP who)) (S (VP (VBD designed) (NP (NP (CD one)) (PP (IN of) (NP (PRP$ your) (NNS clubhouses)))) (PP (IN at) (NP (NP (CD one)) (PP (IN of) (NP (PRP$ your) (NN golf) (NNS courses)))))))))))) (. .)))
CLINTON It's a beautiful facility. 4 10 6 2 3 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (DT a) (JJ beautiful) (NN facility))) (. .)))
CLINTON It immediately was put to use. 6 15 7 5 6 (ROOT (S (NP (PRP It)) (ADVP (RB immediately)) (VP (VBD was) (VP (VBN put) (S (VP (TO to) (VP (VB use)))))) (. .)))
CLINTON "And you wouldn't pay what the man needed to be paid, what he was charging you to do." 18 44 21 10 13 "(ROOT (S (CC And) (NP (PRP you)) (VP (MD would) (RB n't) (VP (VB pay) (SBAR (WHNP (WP what)) (S (NP (DT the) (NN man)) (VP (VBD needed) (S (VP (TO to) (VP (VB be) (VP (VBN paid))))) (, ,) (SBAR (WHNP (WP what)) (S (NP (PRP he)) (VP (VBD was) (VP (VBG charging) (S (NP (PRP you)) (VP (TO to) (VP (VB do))))))))))))) (. .)))"
TRUMP Maybe he didn't do a good job and I was unsatisfied with his work. 14 29 16 8 6 (ROOT (S (S (ADVP (RB Maybe)) (NP (PRP he)) (VP (VBD did) (RB n't) (VP (VB do) (NP (DT a) (JJ good) (NN job))))) (CC and) (S (NP (PRP I)) (VP (VBD was) (VP (VBN unsatisfied) (PP (IN with) (NP (PRP$ his) (NN work)))))) (. .)))
CLINTON "Well, to." 2 7 4 0 2 "(ROOT (FRAG (INTJ (UH Well)) (, ,) (ADVP (IN to)) (. .)))"
TRUMP "Which our country should do, too." 6 16 8 2 5 "(ROOT (FRAG (SBAR (WHNP (WDT Which)) (S (NP (PRP$ our) (NN country)) (VP (MD should) (VP (VB do))))) (, ,) (ADVP (RB too)) (. .)))"
CLINTON "Do the thousands of people that you have stiffed over the course of your business not deserve some kind of apology from someone who has taken their labor, taken the goods that they produced, and then refused to pay them?" 40 86 42 18 19 "(ROOT (S (VP (VB Do) (NP (NP (DT the) (NNS thousands)) (PP (IN of) (NP (NNS people)))) (SBAR (IN that) (S (NP (PRP you)) (VP (VBP have) (VP (VBN stiffed) (PP (IN over) (NP (NP (DT the) (NN course)) (PP (IN of) (NP (PRP$ your) (NN business))))) (S (RB not) (VP (VB deserve) (NP (NP (DT some) (NN kind)) (PP (IN of) (NP (NN apology)))) (PP (IN from) (NP (NP (NN someone)) (SBAR (WHNP (WP who)) (S (VP (VBZ has) (VP (VP (VBN taken) (NP (PRP$ their) (NN labor))) (, ,) (VP (VBN taken) (NP (DT the) (NNS goods)) (SBAR (IN that) (S (NP (PRP they)) (VP (VBD produced))))) (, ,) (CC and) (VP (ADVP (RB then)) (VBN refused) (S (VP (TO to) (VP (VB pay) (NP (PRP them)))))))))))))))))))))"
CLINTON I can only say that I'm certainly relieved that my late father never did business with you. 17 38 19 9 12 (ROOT (S (NP (PRP I)) (VP (MD can) (ADVP (RB only)) (VP (VB say) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP 'm) (ADVP (RB certainly)) (VP (VBN relieved) (SBAR (IN that) (S (NP (PRP$ my) (JJ late) (NN father)) (ADVP (RB never)) (VP (VBD did) (NP (NN business)) (PP (IN with) (NP (PRP you)))))))))))) (. .)))
CLINTON "He provided a good middle-class life for us, but the people he worked for, he expected the bargain to be kept on both sides." 24 50 27 10 10 "(ROOT (S (S (NP (PRP He)) (VP (VBD provided) (NP (DT a) (JJ good) (NN middle-class) (NN life)) (PP (IN for) (NP (PRP us))))) (, ,) (CC but) (S (NP (DT the) (NNS people)) (PRN (S (NP (PRP he)) (VP (VBD worked) (PP (IN for)))) (, ,)) (NP (PRP he)) (VP (VBD expected) (NP (DT the) (NN bargain) (S (VP (TO to) (VP (VB be) (VP (VBN kept) (PP (IN on) (NP (DT both) (NNS sides)))))))))) (. .)))"
CLINTON "And when we talk about your business, you've taken business bankruptcy six times." 13 29 16 4 6 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (NP (PRP we)) (VP (VBP talk) (PP (IN about) (NP (PRP$ your) (NN business)))))) (, ,) (NP (PRP you)) (VP (VBP 've) (VP (VBN taken) (NP (NN business) (NN bankruptcy)) (NP (CD six) (NNS times)))) (. .)))"
CLINTON There are a lot of great businesspeople that have never taken bankruptcy once. 13 29 14 7 8 (ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (JJ great) (NN businesspeople))) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (ADVP (RB never)) (VP (VBN taken) (NP (NN bankruptcy)) (ADVP (RB once)))))))) (. .)))
CLINTON You call yourself the King of Debt. 7 17 8 2 6 (ROOT (S (NP (PRP You)) (VP (VBP call) (S (NP (PRP yourself)) (NP (NP (DT the) (NNP King)) (PP (IN of) (NP (NNP Debt)))))) (. .)))
CLINTON You talk about leverage. 4 10 5 2 4 (ROOT (S (NP (PRP You)) (VP (VBP talk) (PP (IN about) (NP (NN leverage)))) (. .)))
CLINTON You even at one time suggested that you would try to negotiate down the national debt of the United States. 20 40 21 8 12 (ROOT (S (NP (PRP You)) (ADVP (RB even) (PP (IN at) (NP (CD one) (NN time)))) (VP (VBD suggested) (SBAR (IN that) (S (NP (PRP you)) (VP (MD would) (VP (VB try) (S (VP (TO to) (VP (VB negotiate) (PRT (RP down)) (NP (NP (DT the) (JJ national) (NN debt)) (PP (IN of) (NP (DT the) (NNP United) (NNPS States)))))))))))) (. .)))
TRUMP Wrong. 1 4 2 1 2 (ROOT (FRAG (ADJP (JJ Wrong)) (. .)))
TRUMP Wrong. 1 4 2 1 2 (ROOT (FRAG (ADJP (JJ Wrong)) (. .)))
CLINTON "Well, sometimes there's not a direct transfer of skills from business to government, but sometimes what happened in business would be really bad for government." 25 58 29 15 10 "(ROOT (S (INTJ (UH Well)) (, ,) (ADVP (RB sometimes)) (NP (EX there)) (VP (VP (VBZ 's) (RB not) (NP (NP (DT a) (JJ direct) (NN transfer)) (PP (IN of) (NP (NP (NNS skills)) (PP (IN from) (NP (NP (NN business)) (PP (TO to) (NP (NN government))))))))) (, ,) (CC but) (ADVP (RB sometimes)) (SBAR (WHNP (WP what)) (S (S (VP (VBN happened) (PP (IN in) (NP (NN business))))) (VP (MD would) (VP (VB be) (ADJP (RB really) (JJ bad) (PP (IN for) (NP (NN government))))))))) (. .)))"
HOLT Let's let Mr. Trump. 4 10 6 1 3 (ROOT (S (NP (NNP Let) (POS 's)) (VP (VBP let) (NP (NNP Mr.) (NNP Trump))) (. .)))
CLINTON And we need to be very clear about that. 9 19 10 6 8 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB be) (ADJP (RB very) (JJ clear) (PP (IN about) (NP (DT that)))))))) (. .)))
TRUMP "So, yeah, I think — I do think it's time." 10 26 14 5 6 "(ROOT (S (S (ADVP (RB So)) (, ,) (ADVP (RB yeah)) (, ,) (NP (PRP I)) (VP (VBP think))) (: --) (S (NP (PRP I)) (VP (VBP do) (VP (VB think) (NP (NP (PRP it) (POS 's)) (NN time))))) (. .)))"
TRUMP "Look, it's all words, it's all sound bites." 8 23 13 5 4 "(ROOT (S (S (S (VP (VB Look))) (, ,) (NP (PRP it)) (VP (VBZ 's) (NP (DT all) (NNS words)))) (, ,) (NP (PRP it)) (VP (VBZ 's) (RB all) (NP (JJ sound) (NNS bites))) (. .)))"
TRUMP I built an unbelievable company. 5 10 6 2 3 (ROOT (S (NP (PRP I)) (VP (VBD built) (NP (DT an) (JJ unbelievable) (NN company))) (. .)))
TRUMP "Some of the greatest assets anywhere in the world, real estate assets anywhere in the world, beyond the United States, in Europe, lots of different places." 26 53 31 11 7 "(ROOT (FRAG (NP (NP (DT Some)) (PP (IN of) (NP (NP (DT the) (JJS greatest) (NNS assets)) (ADVP (RB anywhere) (PP (IN in) (NP (DT the) (NN world))))))) (, ,) (PP (ADVP (NP (JJ real) (NN estate) (NNS assets)) (RB anywhere)) (IN in) (NP (DT the) (NN world))) (, ,) (PP (IN beyond) (NP (DT the) (NNP United) (NNPS States))) (, ,) (PP (IN in) (NP (NP (NNP Europe)) (, ,) (NP (NP (NNS lots)) (PP (IN of) (NP (JJ different) (NNS places)))))) (. .)))"
TRUMP It's an unbelievable company. 4 10 6 2 3 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (DT an) (JJ unbelievable) (NN company))) (. .)))
TRUMP "But on occasion, four times, we used certain laws that are there." 12 29 15 5 7 "(ROOT (S (CC But) (PP (IN on) (NP (NP (NN occasion)) (, ,) (NP (CD four) (NNS times)))) (, ,) (NP (PRP we)) (VP (VBD used) (NP (NP (JJ certain) (NNS laws)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADVP (RB there))))))) (. .)))"
TRUMP "And when Secretary Clinton talks about people that didn't get paid, first of all, they did get paid a lot, but taken advantage of the laws of the nation." 29 68 34 14 13 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (NP (NNP Secretary) (NNP Clinton)) (VP (VBZ talks) (PP (IN about) (NP (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBD did) (RB n't) (VP (VB get) (VP (VBN paid) (, ,) (ADVP (RB first)))))))) (PP (IN of) (NP (DT all)))))))) (, ,) (NP (PRP they)) (VP (VBD did) (VP (VB get) (S (VP (VP (VBN paid) (NP (DT a) (NN lot))) (, ,) (CC but) (VP (VBN taken) (NP (NP (NN advantage)) (PP (IN of) (NP (NP (DT the) (NNS laws)) (PP (IN of) (NP (DT the) (NN nation))))))))))) (. .)))"
TRUMP "Now, if you want to change the laws, you've been there a long time, change the laws." 17 41 22 9 8 "(ROOT (S (ADVP (RB Now)) (, ,) (SBAR (IN if) (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB change) (NP (DT the) (NNS laws)))))))) (PRN (, ,) (S (NP (PRP you)) (VP (VBP 've) (VP (VBN been) (ADVP (RB there)) (NP (DT a) (JJ long) (NN time))))) (, ,)) (VP (VBP change) (NP (DT the) (NNS laws))) (. .)))"
TRUMP But I take advantage of the laws of the nation because I'm running a company. 15 33 17 5 7 (ROOT (S (CC But) (NP (PRP I)) (VP (VBP take) (NP (NP (NN advantage)) (PP (IN of) (NP (NP (DT the) (NNS laws)) (PP (IN of) (NP (DT the) (NN nation)))))) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG running) (NP (DT a) (NN company))))))) (. .)))
TRUMP "My obligation right now is to do well for myself, my family, my employees, for my companies." 17 36 21 7 9 "(ROOT (S (NP (PRP$ My) (NN obligation) (NN right)) (ADVP (RB now)) (VP (VBZ is) (S (VP (TO to) (VP (VB do) (ADVP (RB well)) (PP (IN for) (NP (NP (PRP myself)) (, ,) (NP (PRP$ my) (NN family)) (, ,) (NP (PRP$ my) (NNS employees)) (, ,) (PP (IN for) (NP (PRP$ my) (NNS companies))))))))) (. .)))"
TRUMP And that's what I do. 5 15 7 2 5 (ROOT (S (CC And) (NP (DT that)) (VP (VBZ 's) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBP do))))) (. .)))
TRUMP But what she doesn't say is that tens of thousands of people that are unbelievably happy and that love me. 20 47 22 9 12 (ROOT (S (CC But) (SBAR (WHNP (WP what)) (S (NP (PRP she)) (VP (VBZ does) (RB n't) (VP (VB say))))) (VP (VBZ is) (SBAR (IN that) (S (NP (NP (NP (QP (NNS tens) (IN of) (NNS thousands))) (PP (IN of) (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADJP (RB unbelievably) (JJ happy)))))))) (CC and) (NP (DT that))) (VP (VBP love) (NP (PRP me)))))) (. .)))
TRUMP I'll give you an example. 5 13 7 1 4 (ROOT (S (NP (PRP I)) (VP (MD 'll) (VP (VB give) (NP (PRP you)) (NP (DT an) (NN example)))) (. .)))
TRUMP "We're just opening up on Pennsylvania Avenue right next to the White House, so if I don't get there one way, I'm going to get to Pennsylvania Avenue another." 29 64 35 18 10 "(ROOT (S (S (NP (PRP We)) (VP (VBP 're) (ADVP (RB just)) (VP (VBG opening) (PRT (RP up)) (PP (IN on) (NP (NNP Pennsylvania) (NNP Avenue))) (ADVP (RB right) (JJ next) (PP (TO to) (NP (DT the) (NNP White) (NNP House))))))) (, ,) (IN so) (S (SBAR (IN if) (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB get) (NP (RB there) (CD one) (NN way)))))) (, ,) (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB get) (PP (TO to) (NP (NP (NNP Pennsylvania) (NNP Avenue)) (NP (DT another)))))))))) (. .)))"
TRUMP But we're opening the Old Post Office. 7 14 9 2 4 (ROOT (S (CC But) (NP (PRP we)) (VP (VBP 're) (VP (VBG opening) (NP (DT the) (NNP Old) (NNP Post) (NNP Office)))) (. .)))
TRUMP "Under budget, ahead of schedule, saved tremendous money." 8 19 11 5 4 "(ROOT (S (PP (IN Under) (NP (NN budget))) (, ,) (ADVP (RB ahead) (PP (IN of) (NP (NN schedule)))) (, ,) (VP (VBD saved) (NP (JJ tremendous) (NN money))) (. .)))"
TRUMP I'm a year ahead of schedule. 6 15 8 3 5 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (NP (NP (DT a) (NN year)) (PP (RB ahead) (IN of) (NP (NN schedule))))) (. .)))
TRUMP And that's what this country should be doing. 8 20 10 3 7 (ROOT (S (CC And) (NP (DT that)) (VP (VBZ 's) (SBAR (WHNP (WP what)) (S (NP (DT this) (NN country)) (VP (MD should) (VP (VB be) (VP (VBG doing))))))) (. .)))
TRUMP We build roads and they cost two and three and four times what they're supposed to cost. 17 40 19 6 12 (ROOT (S (S (NP (PRP We)) (VP (VBP build) (NP (NNS roads)))) (CC and) (S (NP (PRP they)) (VP (VBD cost) (NP (NP (CD two)) (CC and) (NP (NP (CD three) (CC and) (CD four) (NNS times)) (SBAR (WHNP (WP what)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBN supposed) (S (VP (TO to) (VP (VB cost)))))))))))) (. .)))
TRUMP "We buy products for our military and they come in at costs that are so far above what they were supposed to be, because we don't have people that know what they're doing." 33 84 37 18 17 "(ROOT (S (S (NP (PRP We)) (VP (VBP buy) (NP (NP (NNS products)) (PP (IN for) (NP (PRP$ our) (NN military)))))) (CC and) (S (NP (PRP they)) (VP (VBP come) (PRT (RP in)) (PP (IN at) (NP (NP (NNS costs)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADVP (RB so) (RB far) (PP (IN above) (SBAR (WHNP (WP what)) (S (NP (PRP they)) (VP (VBD were) (VP (VBN supposed) (S (VP (TO to) (VP (VB be))))))))))))))) (, ,) (SBAR (IN because) (S (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB have) (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP know) (SBAR (WHNP (WP what)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG doing))))))))))))))) (. .)))"
TRUMP "When we look at the budget, the budget is bad to a large extent because we have people that have no idea as to what to do and how to buy." 31 70 33 15 16 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP we)) (VP (VBP look) (PP (IN at) (NP (DT the) (NN budget)))))) (, ,) (NP (DT the) (NN budget)) (VP (VBZ is) (ADJP (JJ bad) (PP (TO to) (NP (DT a) (JJ large) (NN extent)))) (SBAR (SBAR (IN because) (S (NP (PRP we)) (VP (VBP have) (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (NP (NP (DT no) (NN idea)) (PP (IN as) (TO to) (SBAR (WHNP (WP what)) (S (VP (TO to) (VP (VB do)))))))))))))) (CC and) (SBAR (WHADVP (WRB how)) (S (VP (TO to) (VP (VB buy))))))) (. .)))"
TRUMP The Trump International is way under budget and way ahead of schedule. 12 22 13 4 5 (ROOT (S (NP (DT The) (NNP Trump) (NNP International)) (VP (VBZ is) (NP (NP (NN way)) (PP (IN under) (NP (NN budget) (CC and) (NN way))) (PP (RB ahead) (IN of) (NP (NN schedule))))) (. .)))
TRUMP And we should be able to do that for our country. 11 24 12 5 10 (ROOT (S (CC And) (NP (PRP we)) (VP (MD should) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB do) (NP (NP (DT that)) (PP (IN for) (NP (PRP$ our) (NN country)))))))))) (. .)))
HOLT "Well, we're well behind schedule, so I want to move to our next segment." 14 34 18 9 8 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (PRP we)) (VP (VBP 're) (ADVP (RB well)) (PP (IN behind) (NP (NN schedule))))) (, ,) (IN so) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB move) (PP (TO to) (NP (PRP$ our) (JJ next) (NN segment)))))))) (. .)))"
HOLT We move into our next segment talking about America's direction. 10 22 12 5 8 (ROOT (S (NP (PRP We)) (VP (VBP move) (PP (IN into) (NP (NP (PRP$ our) (JJ next) (NN segment)) (VP (VBG talking) (PP (IN about) (NP (NP (NNP America) (POS 's)) (NN direction))))))) (. .)))
HOLT And let's start by talking about race. 7 17 9 4 7 (ROOT (S (CC And) (NP (NNP let) (POS 's)) (VP (VBP start) (PP (IN by) (S (VP (VBG talking) (PP (IN about) (NP (NN race))))))) (. .)))
HOLT "The share of Americans who say race relations are bad in this country is the highest it's been in decades, much of it amplified by shootings of African-Americans by police, as we've seen recently in Charlotte and Tulsa." 38 93 43 19 18 "(ROOT (S (NP (NP (DT The) (NN share)) (PP (IN of) (NP (NP (NNS Americans)) (SBAR (WHNP (WP who)) (S (VP (VBP say) (SBAR (S (NP (NN race) (NNS relations)) (VP (VBP are) (ADJP (JJ bad) (PP (IN in) (NP (DT this) (NN country))))))))))))) (VP (VBZ is) (NP (NP (DT the) (JJS highest)) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (VP (VBN been) (PP (IN in) (NP (NP (NNS decades)) (, ,) (SBAR (WHNP (WHNP (JJ much)) (WHPP (IN of) (WHNP (PRP it)))) (S (VP (VBN amplified) (PP (IN by) (NP (NP (NNS shootings)) (PP (IN of) (NP (NNPS African-Americans))))) (PP (IN by) (NP (NN police))) (, ,) (SBAR (IN as) (S (NP (PRP we)) (VP (VBP 've) (VP (VBN seen) (ADVP (RB recently)) (PP (IN in) (NP (NNP Charlotte) (CC and) (NNP Tulsa)))))))))))))))))) (. .)))"
HOLT "Race has been a big issue in this campaign, and one of you is going to have to bridge a very wide and bitter gap." 25 51 27 14 12 "(ROOT (S (S (NP (NNP Race)) (VP (VBZ has) (VP (VBN been) (NP (NP (DT a) (JJ big) (NN issue)) (PP (IN in) (NP (DT this) (NN campaign))))))) (, ,) (CC and) (S (NP (NP (CD one)) (PP (IN of) (NP (PRP you)))) (VP (VBZ is) (VP (VBG going) (S (VP (TO to) (VP (VB have) (S (VP (TO to) (VP (VB bridge) (NP (DT a) (ADJP (RB very) (JJ wide) (CC and) (JJ bitter)) (NN gap))))))))))) (. .)))"
HOLT So how do you heal the divide? 7 14 7 3 4 (ROOT (SBARQ (WHADVP (ADVP (RB So)) (WRB how)) (SQ (VBP do) (NP (PRP you)) (VP (VB heal) (NP (DT the) (NN divide))))))
HOLT "Secretary Clinton, you get two minutes on this." 8 18 10 2 5 "(ROOT (S (NP (NNP Secretary) (NNP Clinton)) (, ,) (NP (PRP you)) (VP (VBP get) (NP (NP (CD two) (NNS minutes)) (PP (IN on) (NP (DT this))))) (. .)))"
CLINTON "Well, you're right." 3 11 6 2 3 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP you)) (VP (VBP 're) (ADJP (JJ right))) (. .)))"
CLINTON Race remains a significant challenge in our country. 8 16 9 3 5 (ROOT (S (NP (NNP Race)) (VP (VBZ remains) (NP (NP (DT a) (JJ significant) (NN challenge)) (PP (IN in) (NP (PRP$ our) (NN country))))) (. .)))
CLINTON "Unfortunately, race still determines too much, often determines where people live, determines what kind of education in their public schools they can get, and, yes, it determines how they're treated in the criminal justice system." 35 84 43 18 11 "(ROOT (S (ADVP (RB Unfortunately)) (PRN (, ,) (S (NP (NN race)) (VP (ADVP (RB still)) (VBZ determines) (ADJP (RB too) (JJ much)))) (, ,)) (ADVP (RB often)) (VP (VBZ determines) (S (S (SBAR (WHADVP (WRB where)) (S (NP (NNS people)) (VP (VBP live)))) (, ,) (VP (VBZ determines) (SBAR (WHNP (WP what) (NN kind) (PP (IN of) (NP (NP (NN education)) (PP (IN in) (NP (PRP$ their) (JJ public) (NNS schools)))))) (S (NP (PRP they)) (VP (MD can) (VP (VB get)))))) (, ,)) (CC and) (, ,) (INTJ (UH yes)) (, ,) (S (NP (PRP it)) (VP (VBZ determines) (SBAR (WHADVP (WRB how)) (S (NP (PRP they)) (VP (VBP 're) (VP (VBN treated) (PP (IN in) (NP (DT the) (JJ criminal) (NN justice) (NN system))))))))))) (. .)))"
CLINTON We've just seen those two tragic examples in both Tulsa and Charlotte. 12 23 14 5 6 (ROOT (S (NP (PRP We)) (VP (VBP 've) (ADVP (RB just)) (VP (VBN seen) (NP (NP (DT those) (CD two) (JJ tragic) (NNS examples)) (PP (IN in) (NP (DT both) (NNP Tulsa) (CC and) (NNP Charlotte)))))) (. .)))
CLINTON And we've got to do several things at the same time. 11 23 13 7 8 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB do) (NP (JJ several) (NNS things)) (PP (IN at) (NP (DT the) (JJ same) (NN time)))))))) (. .)))
CLINTON We have to restore trust between communities and the police. 10 23 11 4 9 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB restore) (NP (NP (NN trust)) (PP (IN between) (NP (NP (NNS communities)) (CC and) (NP (DT the) (NN police))))))))) (. .)))
CLINTON "We have to work to make sure that our police are using the best training, the best techniques, that they're well prepared to use force only when necessary." 28 65 32 17 21 "(ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB work) (S (VP (TO to) (VP (VB make) (ADJP (JJ sure)) (SBAR (IN that) (S (NP (PRP$ our) (NN police)) (VP (VBP are) (VP (VBG using) (NP (NP (DT the) (JJS best) (NN training)) (, ,) (NP (DT the) (JJS best) (NNS techniques)) (, ,) (SBAR (IN that) (S (NP (PRP they)) (VP (VBP 're) (ADVP (RB well)) (ADJP (JJ prepared) (S (VP (TO to) (VP (VB use) (NP (NN force))))))))))))))))) (ADVP (RB only)) (SBAR (WHADVP (WRB when)) (S (ADJP (JJ necessary)))))))) (. .)))"
CLINTON "Everyone should be respected by the law, and everyone should respect the law." 13 28 15 4 7 "(ROOT (S (S (NP (NN Everyone)) (VP (MD should) (VP (VB be) (VP (VBN respected) (PP (IN by) (NP (DT the) (NN law))))))) (, ,) (CC and) (S (NP (NN everyone)) (VP (MD should) (VP (VB respect) (NP (DT the) (NN law))))) (. .)))"
CLINTON "Right now, that's not the case in a lot of our neighborhoods." 12 26 15 6 7 "(ROOT (S (ADVP (RB Right) (RB now)) (, ,) (NP (DT that)) (VP (VBZ 's) (RB not) (NP (NP (DT the) (NN case)) (PP (IN in) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (PRP$ our) (NNS neighborhoods))))))) (. .)))"
CLINTON "So I have, ever since the first day of my campaign, called for criminal justice reform." 16 31 19 8 6 "(ROOT (S (IN So) (NP (PRP I)) (VP (VBP have) (, ,) (PP (ADVP (RB ever)) (IN since) (NP (NP (DT the) (JJ first) (NN day)) (PP (IN of) (NP (PRP$ my) (NN campaign))))) (, ,) (VP (VBN called) (PP (IN for) (NP (JJ criminal) (NN justice) (NN reform))))) (. .)))"
CLINTON I've laid out a platform that I think would begin to remedy some of the problems we have in the criminal justice system. 23 52 25 10 17 (ROOT (S (S (NP (PRP I)) (VP (VBP 've) (VP (VBN laid) (PRT (RP out)) (NP (DT a) (NN platform)) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (VP (MD would) (VP (VB begin) (S (VP (TO to) (VP (VB remedy) (NP (NP (DT some)) (PP (IN of) (NP (DT the) (NNS problems))))))))))))))))) (NP (PRP we)) (VP (VBP have) (VP (PP (IN in) (NP (DT the) (JJ criminal) (NN justice) (NN system))))) (. .)))
CLINTON "But we also have to recognize, in addition to the challenges that we face with policing, there are so many good, brave police officers who equally want reform." 28 66 32 17 17 "(ROOT (S (CC But) (NP (PRP we)) (ADVP (RB also)) (VP (VBP have) (S (VP (TO to) (VP (VB recognize) (, ,) (PP (IN in) (NP (NP (NN addition)) (PP (TO to) (NP (DT the) (NNS challenges))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP face) (PP (IN with) (S (VP (VBG policing) (PRN (, ,) (S (NP (EX there)) (VP (VBP are) (ADJP (RB so) (RB many) (JJ good)))) (, ,)) (S (ADJP (JJ brave)) (NP (NP (NN police) (NNS officers)) (SBAR (WHNP (WP who)) (S (ADVP (RB equally)) (VP (VBP want) (NP (NN reform))))))))))))))))) (. .)))"
CLINTON So we have to bring communities together in order to begin working on that as a mutual goal. 18 38 19 10 15 (ROOT (S (IN So) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB bring) (NP (NNS communities)) (ADVP (RB together)) (SBAR (IN in) (NN order) (S (VP (TO to) (VP (VB begin) (S (VP (VBG working) (PP (IN on) (NP (NP (DT that)) (PP (IN as) (NP (DT a) (JJ mutual) (NN goal))))))))))))))) (. .)))
CLINTON And we've got to get guns out of the hands of people who should not have them. 17 40 19 8 15 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB get) (NP (NNS guns)) (PRT (RP out)) (PP (IN of) (NP (NP (DT the) (NNS hands)) (PP (IN of) (NP (NP (NNS people)) (SBAR (WHNP (WP who)) (S (VP (MD should) (RB not) (VP (VB have) (NP (PRP them))))))))))))))) (. .)))
CLINTON "The gun epidemic is the leading cause of death of young African- American men, more than the next nine causes put together." 22 44 25 10 8 "(ROOT (S (S (NP (DT The) (NN gun) (NN epidemic)) (VP (VBZ is) (NP (NP (DT the) (VBG leading) (NN cause)) (PP (IN of) (NP (NP (NN death)) (PP (IN of) (NP (JJ young) (NNP African)))))))) (: -) (S (NP (NP (JJ American) (NNS men)) (, ,) (NP (QP (JJR more) (IN than) (NP (DT the) (JJ next) (CD nine))) (NNS causes))) (VP (VBD put) (ADVP (RB together)))) (. .)))"
CLINTON "So we have to do two things, as I said." 10 23 12 4 6 "(ROOT (S (IN So) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB do) (NP (CD two) (NNS things))))) (, ,) (SBAR (IN as) (S (NP (PRP I)) (VP (VBD said))))) (. .)))"
CLINTON We have to restore trust. 5 13 6 3 6 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB restore) (NP (NN trust)))))) (. .)))
CLINTON We have to work with the police. 7 16 8 4 7 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB work) (PP (IN with) (NP (DT the) (NN police))))))) (. .)))
CLINTON We have to make sure they respect the communities and the communities respect them. 14 32 15 6 12 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB make) (ADJP (JJ sure) (SBAR (S (NP (PRP they)) (VP (VB respect) (S (NP (NP (DT the) (NNS communities)) (CC and) (NP (DT the) (NNS communities))) (VP (VB respect) (NP (PRP them)))))))))))) (. .)))
CLINTON "And we have to tackle the plague of gun violence, which is a big contributor to a lot of the problems that we're seeing today." 25 56 28 11 16 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB tackle) (NP (NP (DT the) (NN plague)) (PP (IN of) (NP (NP (NN gun) (NN violence)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBZ is) (NP (NP (DT a) (JJ big) (NN contributor)) (PP (TO to) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (DT the) (NNS problems)))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG seeing) (NP (NN today)))))))))))))))) (. .)))"
HOLT "All right, Mr. Trump, you have two minutes." 8 18 11 1 4 "(ROOT (NP (NP (DT All) (NN right)) (, ,) (NP (NNP Mr.) (NNP Trump)) (, ,) (S (NP (PRP you)) (VP (VBP have) (NP (CD two) (NNS minutes)))) (. .)))"
HOLT How do you heal the divide? 6 12 6 2 4 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP do) (NP (PRP you)) (VP (VB heal) (NP (DT the) (NN divide))))))
TRUMP "Well, first of all, Secretary Clinton doesn't want to use a couple of words, and that's law and order." 19 47 25 9 10 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (NP (JJ first)) (PP (IN of) (NP (NP (DT all)) (, ,) (NP (NNP Secretary) (NNP Clinton))))) (VP (VBZ does) (RB n't) (VP (VB want) (S (VP (TO to) (VP (VB use) (NP (NP (DT a) (NN couple)) (PP (IN of) (NP (NNS words)))))))))) (, ,) (CC and) (S (NP (DT that)) (VP (VBZ 's) (NP (NN law) (CC and) (NN order)))) (. .)))"
TRUMP And we need law and order. 6 11 7 1 3 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP need) (NP (NN law) (CC and) (NN order))) (. .)))
TRUMP "If we don't have it, we're not going to have a country." 12 30 16 8 7 "(ROOT (S (SBAR (IN If) (S (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB have) (NP (PRP it)))))) (, ,) (NP (PRP we)) (VP (VBP 're) (RB not) (VP (VBG going) (S (VP (TO to) (VP (VB have) (NP (DT a) (NN country))))))) (. .)))"
TRUMP "And when I look at what's going on in Charlotte, a city I love, a city where I have investments, when I look at what's going on throughout various parts of our country, whether it's — I mean, I can just keep naming them all day long — we need law and order in our country." 56 136 65 22 29 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG going) (PRT (RP on)) (PP (IN in) (NP (NNP Charlotte))) (, ,) (NP (NP (DT a) (NN city)) (SBAR (S (NP (PRP I)) (VP (VBP love) (, ,) (NP (NP (DT a) (NN city)) (SBAR (WHADVP (WRB where)) (S (NP (PRP I)) (VP (VBP have) (NP (NNS investments)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG going) (PRT (RP on)) (PP (IN throughout) (NP (NP (JJ various) (NNS parts)) (PP (IN of) (NP (PRP$ our) (NN country))))) (, ,) (SBAR (IN whether) (S (NP (PRP it)) (VP (VBZ 's)))))))))))))))))))))))))))) (PRN (: --) (S (NP (PRP I)) (VP (VBP mean) (, ,) (SBAR (S (NP (PRP I)) (VP (MD can) (ADVP (RB just)) (VP (VB keep) (S (VP (VBG naming) (NP (PRP them)) (ADVP (NP (DT all) (NN day)) (RB long)))))))))) (: --)) (NP (PRP we)) (VP (VBP need) (NP (NP (NN law) (CC and) (NN order)) (PP (IN in) (NP (PRP$ our) (NN country))))) (. .)))"
TRUMP "I just got today the, as you know, the endorsement of the Fraternal Order of Police, we just — just came in." 22 48 26 8 8 "(ROOT (S (S (NP (PRP I)) (ADVP (RB just)) (VP (VBD got) (NP (NN today) (DT the)) (PRN (, ,) (SBAR (IN as) (S (NP (PRP you)) (VP (VBP know)))) (, ,)) (NP (NP (DT the) (NN endorsement)) (PP (IN of) (NP (NP (DT the) (NNP Fraternal) (NNP Order)) (PP (IN of) (NP (NNP Police)))))))) (, ,) (NP (PRP we)) (VP (ADVP (RB just) (: --) (RB just)) (VBD came) (PRT (RP in))) (. .)))"
TRUMP "We have endorsements from, I think, almost every police group, very — I mean, a large percentage of them in the United States." 23 52 28 9 10 "(ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (NNS endorsements)) (PP (IN from) (PRN (, ,) (S (NP (PRP I)) (VP (VBP think))) (, ,)) (NP (NP (NP (RB almost) (DT every) (NN police) (NN group)) (, ,) (NP (JJ very)) (PRN (: --) (S (NP (PRP I)) (VP (VBP mean))) (, ,) (NP (NP (DT a) (JJ large) (NN percentage)) (PP (IN of) (NP (PRP them)))))) (PP (IN in) (NP (DT the) (NNP United) (NNPS States))))))) (. .)))"
TRUMP "We have a situation where we have our inner cities, African- Americans, Hispanics are living in he'll because it's so dangerous." 21 55 27 8 10 "(ROOT (S (S (NP (PRP We)) (VP (VBP have) (NP (NP (DT a) (NN situation)) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (VBP have) (NP (NP (NP (PRP$ our) (JJ inner) (NNS cities)) (, ,) (NP (NNP African))) (: -) (NP (NNS Americans))))))))) (, ,) (NP (NNPS Hispanics)) (VP (VBP are) (VP (VBG living) (SBAR (IN in) (S (NP (PRP he)) (VP (MD 'll)))) (SBAR (IN because) (S (NP (PRP it)) (VP (VBZ 's) (ADJP (RB so) (JJ dangerous))))))) (. .)))"
TRUMP "You walk down the street, you get shot." 8 19 10 2 4 "(ROOT (S (S (NP (PRP You)) (VP (VBP walk) (PRT (RP down)) (NP (DT the) (NN street)))) (, ,) (NP (PRP you)) (VP (VBP get) (NP (NN shot))) (. .)))"
TRUMP "In Chicago, they've had thousands of shootings, thousands since January 1st." 11 30 15 5 9 "(ROOT (S (PP (IN In) (NP (NNP Chicago))) (, ,) (NP (PRP they)) (VP (VBP 've) (VP (VBN had) (NP (NP (NNS thousands)) (PP (IN of) (NP (NP (NNS shootings)) (, ,) (NP (NP (NNS thousands)) (PP (IN since) (NP (NNP January) (CD 1st))))))))) (. .)))"
TRUMP Thousands of shootings. 3 8 4 1 3 (ROOT (NP (NP (NNS Thousands)) (PP (IN of) (NP (NNS shootings))) (. .)))
TRUMP "And I'm saying, where is this?" 6 17 8 3 7 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP 'm) (VP (VBG saying) (, ,) (SBAR (WHADVP (WRB where)) (S (VP (VBZ is) (NP (DT this)))))))))"
TRUMP Is this a war-torn country? 5 9 5 2 3 (ROOT (SINV (VP (VBZ Is) (NP (DT this))) (NP (DT a) (JJ war-torn) (NN country))))
TRUMP What are we doing? 4 9 4 2 3 (ROOT (SBARQ (WHNP (WP What)) (SQ (VBP are) (NP (PRP we)) (VP (VBG doing)))))
TRUMP And we have to stop the violence. 7 15 8 3 6 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB stop) (NP (DT the) (NN violence)))))) (. .)))
TRUMP We have to bring back law and order. 8 17 9 3 6 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB bring) (PRT (RP back)) (NP (NN law) (CC and) (NN order)))))) (. .)))
TRUMP "In a place like Chicago, where thousands of people have been killed, thousands over the last number of years, in fact, almost 4,000 have been killed since Barack Obama became president, over — almost 4,000 people in Chicago have been killed." 41 93 47 21 11 "(ROOT (S (PP (IN In) (NP (NP (DT a) (NN place)) (PP (IN like) (NP (NNP Chicago))))) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (NP (NNS thousands)) (PP (IN of) (NP (NNS people)))) (VP (VBP have) (VP (VBN been) (VP (VP (VBN killed)) (, ,) (VP (NP (NNS thousands)) (PP (IN over) (NP (NP (DT the) (JJ last) (NN number)) (PP (IN of) (NP (NNS years)))))) (, ,) (PP (IN in) (NP (NN fact)))))))) (, ,) (NP (QP (RB almost) (CD 4,000))) (VP (VB have) (VP (VBN been) (VP (VBN killed) (SBAR (IN since) (S (NP (NNP Barack) (NNP Obama)) (VP (VBD became) (NP (NN president)) (, ,) (ADVP (RB over)))))))) (: --) (S (NP (NP (QP (RB almost) (CD 4,000)) (NNS people)) (PP (IN in) (NP (NNP Chicago)))) (VP (VBP have) (VP (VBN been) (VP (VBN killed))))) (. .)))"
TRUMP We have to bring back law and order. 8 17 9 3 6 (ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB bring) (PRT (RP back)) (NP (NN law) (CC and) (NN order)))))) (. .)))
TRUMP "Now, whether or not in a place like Chicago you do stop and frisk, which worked very well, Mayor Giuliani is here, worked very well in New York." 28 60 33 14 9 "(ROOT (S (ADVP (RB Now)) (, ,) (SBAR (IN whether) (PRN (CC or) (PP (RB not) (IN in) (NP (NP (DT a) (NN place)) (PP (IN like) (NP (NNP Chicago)))))) (S (NP (PRP you)) (VP (VBP do) (NP (NP (NN stop) (CC and) (NN frisk)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD worked) (ADVP (RB very) (RB well))))))))) (, ,) (NP (NNP Mayor) (NNP Giuliani)) (VP (VBZ is) (NP (NP (RB here)) (, ,) (VP (VBN worked) (ADVP (RB very) (RB well)) (PP (IN in) (NP (NNP New) (NNP York)))))) (. .)))"
TRUMP It brought the crime rate way down. 7 13 8 1 3 (ROOT (S (NP (PRP It)) (VP (VBD brought) (NP (DT the) (NN crime) (NN rate)) (ADVP (NN way) (IN down))) (. .)))
TRUMP But you take the gun away from criminals that shouldn't be having it. 13 30 15 6 10 (ROOT (S (CC But) (NP (PRP you)) (VP (VBP take) (PP (ADVP (NP (DT the) (NN gun)) (RB away)) (IN from) (NP (NP (NNS criminals)) (SBAR (WHNP (WDT that)) (S (VP (MD should) (RB n't) (VP (VB be) (VP (VBG having) (NP (PRP it)))))))))) (. .)))
TRUMP We have gangs roaming the street. 6 14 7 2 5 (ROOT (S (NP (PRP We)) (VP (VBP have) (NP (NP (NNS gangs)) (VP (VBG roaming) (NP (DT the) (NN street))))) (. .)))
TRUMP "And in many cases, they're illegally here, illegal immigrants." 9 20 13 6 3 "(ROOT (S (CC And) (PP (IN in) (NP (JJ many) (NNS cases))) (, ,) (NP (PRP they)) (VP (VBP 're) (ADVP (RB illegally) (RB here)) (, ,) (NP (JJ illegal) (NNS immigrants))) (. .)))"
TRUMP And they have guns. 4 9 5 1 3 (ROOT (S (CC And) (NP (PRP they)) (VP (VBP have) (NP (NNS guns))) (. .)))
TRUMP And they shoot people. 4 9 5 1 3 (ROOT (S (CC And) (NP (PRP they)) (VP (VBP shoot) (NP (NNS people))) (. .)))
TRUMP And we have to be very strong. 7 15 8 5 6 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB be) (ADJP (RB very) (JJ strong)))))) (. .)))
TRUMP And we have to be very vigilant. 7 15 8 5 6 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB be) (ADJP (RB very) (JJ vigilant)))))) (. .)))
TRUMP We have to be — we have to know what we're doing. 12 33 14 8 10 (ROOT (S (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB be)))))) (: --) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB know) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG doing)))))))))) (. .)))
TRUMP "Right now, our police, in many cases, are afraid to do anything." 12 28 16 8 7 "(ROOT (S (ADVP (RB Right) (RB now)) (, ,) (NP (NP (PRP$ our) (NN police)) (, ,) (PP (IN in) (NP (JJ many) (NNS cases))) (, ,)) (VP (VBP are) (ADJP (JJ afraid) (S (VP (TO to) (VP (VB do) (NP (NN anything))))))) (. .)))"
TRUMP "We have to protect our inner cities, because African-American communities are being decimated by crime, decimated." 16 36 19 10 10 "(ROOT (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB protect) (NP (PRP$ our) (JJ inner) (NNS cities))))) (, ,) (SBAR (IN because) (S (NP (JJ African-American) (NNS communities)) (VP (VBP are) (VP (VBG being) (VP (VBN decimated) (PP (IN by) (NP (NP (NN crime)) (, ,) (VP (VBN decimated)))))))))) (. .)))"
HOLT "Your two — your two minutes expired, but I do want to follow up." 14 32 16 5 11 "(ROOT (FRAG (NP (CD Your) (CD two)) (: --) (S (S (NP (PRP$ your) (CD two) (NNS minutes)) (VP (VBD expired))) (, ,) (CC but) (S (NP (PRP I)) (VP (VBP do) (SBAR (S (VP (VBP want) (S (VP (TO to) (VP (VB follow) (PRT (RP up))))))))))) (. .)))"
HOLT "Stop-and-frisk was ruled unconstitutional in New York, because it largely singled out black and Hispanic young men." 17 35 19 9 8 "(ROOT (S (NP (NNP Stop-and-frisk)) (VP (VBD was) (VP (VBN ruled) (S (ADJP (JJ unconstitutional))) (PP (IN in) (NP (NNP New) (NNP York))) (, ,) (SBAR (IN because) (S (NP (PRP it)) (ADVP (RB largely)) (VP (VBD singled) (PRT (RP out)) (NP (ADJP (JJ black) (CC and) (JJ Hispanic)) (JJ young) (NNS men))))))) (. .)))"
TRUMP "No, you're wrong." 3 11 6 2 3 "(ROOT (S (INTJ (UH No)) (, ,) (NP (PRP you)) (VP (VBP 're) (ADJP (JJ wrong))) (. .)))"
TRUMP "It went before a judge, who was a very against-police judge." 11 25 13 5 9 "(ROOT (S (NP (PRP It)) (VP (VBD went) (PP (IN before) (NP (NP (DT a) (NN judge)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD was) (NP (DT a) (ADJP (RB very) (JJ against-police)) (NN judge)))))))) (. .)))"
TRUMP It was taken away from her. 6 14 7 3 5 (ROOT (S (NP (PRP It)) (VP (VBD was) (VP (VBN taken) (PRT (RP away)) (PP (IN from) (NP (PRP her))))) (. .)))
TRUMP "And our mayor, our new mayor, refused to go forward with the case." 13 27 16 6 7 "(ROOT (S (CC And) (NP (NP (PRP$ our) (NN mayor)) (, ,) (NP (PRP$ our) (JJ new) (NN mayor)) (, ,)) (VP (VBD refused) (S (VP (TO to) (VP (VB go) (ADVP (RB forward)) (PP (IN with) (NP (DT the) (NN case))))))) (. .)))"
TRUMP They would have won an appeal. 6 13 7 2 5 (ROOT (S (NP (PRP They)) (VP (MD would) (VP (VB have) (VP (VBN won) (NP (DT an) (NN appeal))))) (. .)))
TRUMP "If you look at it, throughout the country, there are many places where it's allowed." 15 38 19 7 7 "(ROOT (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (NP (PRP it)))))) (, ,) (PP (IN throughout) (NP (DT the) (NN country))) (, ,) (NP (EX there)) (VP (VBP are) (NP (NP (JJ many) (NNS places)) (SBAR (WHADVP (WRB where)) (S (NP (PRP it)) (VP (VBZ 's) (VP (VBN allowed))))))) (. .)))"
HOLT The argument is that it's a form of racial profiling. 10 23 12 4 8 (ROOT (S (NP (DT The) (NN argument)) (VP (VBZ is) (SBAR (IN that) (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (DT a) (NN form)) (PP (IN of) (NP (JJ racial) (NN profiling)))))))) (. .)))
TRUMP "No, the argument is that we have to take the guns away from these people that have them and they are bad people that shouldn't have them." 27 63 30 10 15 "(ROOT (S (INTJ (UH No)) (, ,) (NP (DT the) (NN argument)) (VP (VBZ is) (SBAR (IN that) (S (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB take) (NP (DT the) (NNS guns)) (PRT (RP away)) (PP (IN from) (NP (NP (DT these) (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP have) (NP (PRP them)))))))))))) (CC and) (S (NP (PRP they)) (VP (VBP are) (NP (NP (JJ bad) (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (MD should) (RB n't) (VP (VB have) (NP (PRP them)))))))))))) (. .)))"
TRUMP These are felons. 3 8 4 1 3 (ROOT (S (NP (DT These)) (VP (VBP are) (NP (NNS felons))) (. .)))
TRUMP "These are people that are bad people that shouldn't be — when you have 3,000 shootings in Chicago from January 1st, when you have 4,000 people killed in Chicago by guns, from the beginning of the presidency of Barack Obama, his hometown, you have to have stop-and-frisk." 47 111 53 18 17 "(ROOT (S (S (NP (DT These)) (VP (VBP are) (NP (NP (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (NP (NP (JJ bad) (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (MD should) (RB n't) (VP (VB be)))))))))))) (: --) (S (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP have) (NP (NP (CD 3,000) (NNS shootings)) (PP (IN in) (NP (NP (NNP Chicago)) (PP (IN from) (NP (NNP January) (CD 1st)))))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP have) (NP (NP (CD 4,000) (NNS people)) (VP (VBN killed) (PP (IN in) (NP (NNP Chicago))) (PP (IN by) (NP (NNS guns))) (, ,) (PP (IN from) (NP (NP (DT the) (NN beginning)) (PP (IN of) (NP (NP (DT the) (NN presidency)) (PP (IN of) (NP (NP (NNP Barack) (NNP Obama)) (, ,) (NP (PRP$ his) (NN hometown)))))))))))))))) (, ,) (NP (PRP you)) (VP (VBP have) (S (VP (TO to) (VP (VB have) (NP (NN stop-and-frisk))))))) (. .)))"
TRUMP You need more police. 4 9 5 2 3 (ROOT (S (NP (PRP You)) (VP (VBP need) (NP (JJR more) (NNS police))) (. .)))
TRUMP "You need a better community, you know, relation." 8 20 11 4 7 "(ROOT (S (NP (PRP You)) (VP (VBP need) (NP (DT a) (ADJP (RBR better) (JJ community) (PRN (, ,) (S (NP (PRP you)) (VP (VBP know))) (, ,))) (NN relation))) (. .)))"
TRUMP You don't have good community relations in Chicago. 8 18 10 5 6 (ROOT (S (NP (PRP You)) (VP (VBP do) (RB n't) (VP (VB have) (NP (NP (JJ good) (NN community) (NNS relations)) (PP (IN in) (NP (NNP Chicago)))))) (. .)))
TRUMP It's terrible. 2 8 4 2 3 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (JJ terrible))) (. .)))
TRUMP I have property there. 4 10 5 2 3 (ROOT (S (NP (PRP I)) (VP (VBP have) (NP (NN property)) (NP (RB there))) (. .)))
TRUMP It's terrible what's going on in Chicago. 7 22 10 5 8 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (JJ terrible)) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG going) (PRT (RP on)) (PP (IN in) (NP (NNP Chicago)))))))) (. .)))
TRUMP "But when you look — and Chicago's not the only — you go to Ferguson, you go to so many different places." 22 47 25 13 8 "(ROOT (S (CC But) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP look)))) (PRN (: --) (CC and) (S (NP (NNP Chicago)) (VP (VBZ 's) (RB not) (NP (DT the) (RB only)))) (: --)) (NP (PRP you)) (VP (VBP go) (PP (TO to) (NP (NNP Ferguson))) (, ,) (SBAR (S (NP (PRP you)) (VP (VBP go) (PP (TO to) (NP (ADJP (RB so) (JJ many)) (JJ different) (NNS places))))))) (. .)))"
TRUMP You need better relationships. 4 9 5 2 3 (ROOT (S (NP (PRP You)) (VP (VBP need) (NP (JJR better) (NNS relationships))) (. .)))
TRUMP I agree with Secretary Clinton on this. 7 16 8 3 6 (ROOT (S (NP (PRP I)) (VP (VBP agree) (PP (IN with) (NP (NP (NNP Secretary) (NNP Clinton)) (PP (IN on) (NP (DT this)))))) (. .)))
TRUMP "You need better relationships between the communities and the police, because in some cases, it's not good." 17 37 21 7 6 "(ROOT (S (NP (PRP You)) (VP (VBP need) (NP (NP (JJR better) (NNS relationships)) (PP (IN between) (NP (NP (DT the) (NNS communities)) (CC and) (NP (DT the) (NN police))))) (, ,) (SBAR (IN because) (S (PP (IN in) (NP (DT some) (NNS cases))) (, ,) (NP (PRP it)) (VP (VBZ 's) (RB not) (ADJP (JJ good)))))) (. .)))"
TRUMP "But you look at Dallas, where the relationships were really studied, the relationships were really a beautiful thing, and then five police officers were killed one night very violently." 29 58 33 13 9 "(ROOT (S (CC But) (NP (PRP you)) (VP (VBP look) (PP (IN at) (NP (NNP Dallas))) (, ,) (SBAR (WHADVP (WRB where)) (S (S (NP (DT the) (NNS relationships)) (VP (VBD were) (VP (ADVP (RB really)) (VBN studied)))) (, ,) (S (NP (DT the) (NNS relationships)) (VP (VBD were) (ADVP (RB really)) (NP (DT a) (JJ beautiful) (NN thing)))) (, ,) (CC and) (RB then) (S (NP (CD five) (NN police) (NNS officers)) (VP (VBD were) (VP (VBN killed) (ADVP (NP (CD one) (NN night)) (RB very)) (ADVP (RB violently)))))))) (. .)))"
TRUMP So there's some bad things going on. 7 16 9 3 5 (ROOT (S (IN So) (NP (EX there)) (VP (VBZ 's) (NP (NP (DT some) (JJ bad) (NNS things)) (VP (VBG going) (PRT (RP on))))) (. .)))
TRUMP Some really bad things. 4 8 5 2 2 (ROOT (NP (NP (DT Some)) (NP (RB really) (JJ bad) (NNS things)) (. .)))
HOLT Secretary Clinton. 2 4 3 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton) (. .)))
TRUMP "But we need — Lester, we need law and order." 10 20 12 2 4 "(ROOT (S (S (CC But) (NP (PRP we)) (VP (VBP need) (: --) (NP (NNP Lester)))) (, ,) (NP (PRP we)) (VP (VBP need) (NP (NN law) (CC and) (NN order))) (. .)))"
TRUMP "And we need law and order in the inner cities, because the people that are most affected by what's happening are African-American and Hispanic people." 25 53 28 12 14 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP need) (NP (NP (NN law) (CC and) (NN order)) (PP (IN in) (NP (DT the) (JJ inner) (NNS cities)))) (, ,) (SBAR (IN because) (S (NP (NP (DT the) (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADJP (RBS most) (JJ affected) (PP (IN by) (SBAR (WHNP (WP what)) (S (VP (VBZ 's) (VP (VBG happening))))))))))) (VP (VBP are) (NP (ADJP (JJ African-American) (CC and) (JJ Hispanic)) (NNS people)))))) (. .)))"
TRUMP And it's very unfair to them what our politicians are allowing to happen. 13 30 15 9 9 (ROOT (S (CC And) (NP (PRP it)) (VP (VBZ 's) (ADJP (RB very) (JJ unfair) (PP (TO to) (NP (PRP them)))) (SBAR (WHNP (WP what)) (S (NP (PRP$ our) (NNS politicians)) (VP (VBP are) (VP (VBG allowing) (S (VP (TO to) (VP (VB happen))))))))) (. .)))
HOLT Secretary Clinton? 2 3 2 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton)))
CLINTON "Well, I've heard — I've heard Donald say this at his rallies, and it's really unfortunate that he paints such a dire negative picture of black communities in our country." 30 69 36 15 11 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP 've) (VP (VBN heard)))) (: --) (S (S (NP (PRP I)) (VP (VBP 've) (VP (VBN heard) (SBAR (S (NP (NNP Donald)) (VP (VBP say) (NP (NP (DT this)) (PP (IN at) (NP (PRP$ his) (NNS rallies)))))))))) (, ,) (CC and) (S (NP (PRP it)) (VP (VBZ 's) (ADJP (RB really) (JJ unfortunate)) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD paints) (NP (NP (PDT such) (DT a) (JJ dire) (JJ negative) (NN picture)) (PP (IN of) (NP (JJ black) (NNS communities)))) (PP (IN in) (NP (PRP$ our) (NN country))))))))) (. .)))"
TRUMP Ugh. 1 4 2 1 2 (ROOT (S (VP (VB Ugh)) (. .)))
CLINTON "You know, the vibrancy of the black church, the black businesses that employ so many people, the opportunities that so many families are working to provide for their kids." 29 61 33 14 18 "(ROOT (S (NP (PRP You)) (VP (VBP know) (, ,) (NP (NP (DT the) (NN vibrancy)) (PP (IN of) (NP (NP (DT the) (JJ black) (NN church)) (, ,) (NP (NP (DT the) (JJ black) (NNS businesses)) (SBAR (WHNP (WDT that)) (S (VP (VBP employ) (NP (NP (ADJP (RB so) (JJ many)) (NNS people)) (, ,) (NP (DT the) (NNS opportunities))) (SBAR (IN that) (S (NP (RB so) (JJ many) (NNS families)) (VP (VBP are) (VP (VBG working) (S (VP (TO to) (VP (VB provide) (PP (IN for) (NP (PRP$ their) (NNS kids)))))))))))))))))) (. .)))"
CLINTON There's a lot that we should be proud of and we should be supporting and lifting up. 17 39 19 7 9 (ROOT (S (S (NP (EX There)) (VP (VBZ 's) (NP (DT a) (NN lot)) (SBAR (IN that) (S (NP (PRP we)) (VP (MD should) (VP (VB be) (ADJP (JJ proud) (PP (IN of))))))))) (CC and) (S (NP (PRP we)) (VP (MD should) (VP (VB be) (VP (VP (VBG supporting)) (CC and) (VP (VBG lifting) (PRT (RP up))))))) (. .)))
CLINTON But we do always have to make sure we keep people safe. 12 29 13 8 12 (ROOT (S (CC But) (NP (PRP we)) (VP (VBP do) (ADVP (RB always)) (VP (VB have) (S (VP (TO to) (VP (VB make) (ADJP (JJ sure) (SBAR (S (NP (PRP we)) (VP (VB keep) (S (NP (NNS people)) (ADJP (JJ safe)))))))))))) (. .)))
CLINTON "There are the right ways of doing it, and then there are ways that are ineffective." 16 39 18 8 8 "(ROOT (S (S (NP (EX There)) (VP (VBP are) (NP (NP (DT the) (JJ right) (NNS ways)) (PP (IN of) (S (VP (VBG doing) (NP (PRP it)))))))) (, ,) (CC and) (S (ADVP (RB then)) (NP (EX there)) (VP (VBP are) (NP (NP (NNS ways)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADJP (JJ ineffective)))))))) (. .)))"
CLINTON "Stop-and-frisk was found to be unconstitutional and, in part, because it was ineffective." 13 33 16 8 12 "(ROOT (S (NP (NNP Stop-and-frisk)) (VP (VBD was) (VP (VBN found) (S (VP (TO to) (VP (VP (VB be) (ADJP (JJ unconstitutional))) (CC and) (, ,) (PP (IN in) (NP (NP (NN part)) (, ,) (SBAR (IN because) (S (NP (PRP it)) (VP (VBD was) (ADJP (JJ ineffective)))))))))))) (. .)))"
CLINTON It did not do what it needed to do. 9 22 10 6 9 (ROOT (S (NP (PRP It)) (VP (VBD did) (RB not) (VP (VB do) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (VBD needed) (S (VP (TO to) (VP (VB do))))))))) (. .)))
CLINTON "Now, I believe in community policing." 6 14 8 3 4 "(ROOT (S (ADVP (RB Now)) (, ,) (NP (PRP I)) (VP (VBP believe) (PP (IN in) (NP (NN community) (NNS policing)))) (. .)))"
CLINTON "And, in fact, violent crime is one-half of what it was in 1991." 13 31 16 6 9 "(ROOT (S (CC And) (, ,) (PP (IN in) (NP (NN fact))) (, ,) (NP (JJ violent) (NN crime)) (VP (VBZ is) (NP (NP (NN one-half)) (PP (IN of) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (VBD was) (PP (IN in) (NP (CD 1991))))))))) (. .)))"
CLINTON Property crime is down 40 percent. 6 12 7 2 4 (ROOT (S (NP (NNP Property) (NN crime)) (VP (VBZ is) (ADVP (RB down) (NP (CD 40) (NN percent)))) (. .)))
CLINTON We just don't want to see it creep back up. 10 24 12 9 9 (ROOT (S (NP (PRP We)) (ADVP (RB just)) (VP (VBP do) (RB n't) (VP (VB want) (S (VP (TO to) (VP (VB see) (S (NP (PRP it)) (VP (VB creep) (ADVP (RB back) (RB up))))))))) (. .)))
CLINTON We've had 25 years of very good cooperation. 8 19 10 5 7 (ROOT (S (NP (PRP We)) (VP (VBP 've) (VP (VBN had) (NP (NP (CD 25) (NNS years)) (PP (IN of) (NP (ADJP (RB very) (JJ good)) (NN cooperation)))))) (. .)))
CLINTON "But there were some problems, some unintended consequences." 8 16 10 2 4 "(ROOT (S (CC But) (NP (EX there)) (VP (VBD were) (NP (NP (DT some) (NNS problems)) (, ,) (NP (DT some) (JJ unintended) (NNS consequences)))) (. .)))"
CLINTON Too many young African-American and Latino men ended up in jail for nonviolent offenses. 14 23 15 7 4 (ROOT (S (NP (RB Too) (JJ many) (JJ young) (NNP African-American) (CC and) (NNP Latino) (NNS men)) (VP (VBD ended) (PRT (RP up)) (PP (IN in) (NP (NN jail))) (PP (IN for) (NP (JJ nonviolent) (NNS offenses)))) (. .)))
CLINTON "And it's just a fact that if you're a young African-American man and you do the same thing as a young white man, you are more likely to be arrested, charged, convicted, and incarcerated." 34 69 41 19 11 "(ROOT (S (CC And) (NP (PRP it)) (VP (VBZ 's) (ADVP (RB just)) (NP (DT a) (NN fact)) (SBAR (IN that) (S (SBAR (IN if) (S (S (NP (PRP you)) (VP (VBP 're) (NP (DT a) (JJ young) (JJ African-American) (NN man)))) (CC and) (S (NP (PRP you)) (VP (VBP do) (NP (DT the) (JJ same) (NN thing)) (PP (IN as) (NP (DT a) (JJ young) (JJ white) (NN man))))))) (, ,) (NP (PRP you)) (VP (VBP are) (ADJP (ADJP (RBR more) (JJ likely) (S (VP (TO to) (VP (VB be) (VP (VBN arrested) (, ,) (VBN charged) (, ,) (VBN convicted) (, ,)))))) (CC and) (ADJP (JJ incarcerated))))))) (. .)))"
CLINTON So we've got to address the systemic racism in our criminal justice system. 13 25 15 7 8 (ROOT (S (IN So) (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB address) (NP (DT the) (JJ systemic) (NN racism)) (PP (IN in) (NP (PRP$ our) (JJ criminal) (NN justice) (NN system)))))))) (. .)))
CLINTON We cannot just say law and order. 7 15 9 3 4 (ROOT (S (NP (PRP We)) (VP (MD can) (RB not) (ADVP (RB just)) (VP (VB say) (NP (NN law) (CC and) (NN order)))) (. .)))
CLINTON "We have to say — we have to come forward with a plan that is going to divert people from the criminal justice system, deal with mandatory minimum sentences, which have put too many people away for too long for doing too little." 43 95 46 29 31 "(ROOT (S (S (NP (PRP We)) (VP (VBP have) (S (VP (TO to) (VP (VB say)))))) (: --) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB come) (ADVP (RB forward)) (PP (IN with) (NP (NP (DT a) (NN plan)) (SBAR (WHNP (WDT that)) (S (VP (VBZ is) (VP (VBG going) (S (VP (TO to) (VP (VB divert) (NP (NNS people)) (PP (IN from) (NP (NP (DT the) (JJ criminal) (NN justice) (NN system)) (, ,) (NP (NP (NN deal)) (PP (IN with) (NP (NP (JJ mandatory) (JJ minimum) (NNS sentences)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBP have) (VP (VBN put) (NP (NP (ADJP (RB too) (JJ many)) (NNS people)) (PP (RB away) (IN for) (ADJP (ADJP (RB too) (JJ long)) (PP (IN for) (S (VP (VBG doing) (ADJP (RB too) (JJ little))))))))))))))))))))))))))))))) (. .)))"
CLINTON We need to have more second chance programs. 8 16 9 5 6 (ROOT (S (NP (PRP We)) (VP (VBP need) (S (VP (TO to) (VP (VB have) (NP (JJR more) (JJ second) (NN chance) (NNS programs)))))) (. .)))
CLINTON I'm glad that we're ending private prisons in the federal system; I want to see them ended in the state system. 21 49 25 12 10 (ROOT (S (S (NP (PRP I)) (VP (VBP 'm) (ADJP (JJ glad) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG ending) (NP (JJ private) (NNS prisons)) (PP (IN in) (NP (DT the) (JJ federal) (NN system)))))))))) (: ;) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB see) (S (NP (PRP them)) (VP (VBN ended) (PP (IN in) (NP (DT the) (NN state) (NN system)))))))))) (. .)))
CLINTON You shouldn't have a profit motivation to fill prison cells with young Americans. 13 26 15 6 8 (ROOT (S (NP (PRP You)) (VP (MD should) (RB n't) (VP (VB have) (S (NP (DT a) (NN profit) (NN motivation)) (VP (TO to) (VP (VB fill) (NP (NN prison) (NNS cells)) (PP (IN with) (NP (JJ young) (NNS Americans)))))))) (. .)))
CLINTON So there are some positive ways we can work on this. 11 24 12 4 9 (ROOT (S (IN So) (NP (EX there)) (VP (VBP are) (NP (NP (DT some) (JJ positive) (NNS ways)) (SBAR (S (NP (PRP we)) (VP (MD can) (VP (VB work) (PP (IN on) (NP (DT this))))))))) (. .)))
CLINTON And I believe strongly that commonsense gun safety measures would assist us. 12 23 13 4 7 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP believe) (ADVP (RB strongly)) (SBAR (IN that) (S (NP (JJ commonsense) (NN gun) (NN safety) (NNS measures)) (VP (MD would) (VP (VB assist) (NP (PRP us))))))) (. .)))
CLINTON "Right now — and this is something Donald has supported, along with the gun lobby — right now, we've got too many military- style weapons on the streets." 28 61 33 14 12 "(ROOT (S (ADVP (RB Right) (RB now)) (PRN (: --) (CC and) (S (NP (DT this)) (VP (VBZ is) (NP (NP (NN something)) (SBAR (S (NP (NNP Donald)) (VP (VBZ has) (VP (VBN supported) (, ,) (ADVP (IN along) (PP (IN with) (NP (DT the) (NN gun) (NN lobby))))))))))) (: --)) (S (ADVP (RB right) (RB now)) (, ,) (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (NP (ADJP (RB too) (JJ many)) (NN military))))) (: -) (S (NP (NN style)) (VP (VBZ weapons) (PP (IN on) (NP (DT the) (NNS streets))))) (. .)))"
CLINTON "In a lot of places, our police are outgunned." 9 20 11 4 5 "(ROOT (S (PP (IN In) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS places))))) (, ,) (NP (PRP$ our) (NN police)) (VP (VBP are) (VP (VBN outgunned))) (. .)))"
CLINTON "We need comprehensive background checks, and we need to keep guns out of the hands of those who will do harm." 21 48 23 8 15 "(ROOT (S (S (NP (PRP We)) (VP (VBP need) (NP (JJ comprehensive) (NN background) (NNS checks)))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB keep) (NP (NNS guns)) (PRT (RP out)) (PP (IN of) (NP (NP (DT the) (NNS hands)) (PP (IN of) (NP (NP (DT those)) (SBAR (WHNP (WP who)) (S (VP (MD will) (VP (VB do) (NP (NN harm))))))))))))))) (. .)))"
CLINTON And we finally need to pass a prohibition on anyone who's on the terrorist watch list from being able to buy a gun in our country. 26 56 28 14 20 (ROOT (S (CC And) (NP (PRP we)) (ADVP (RB finally)) (VP (VBP need) (S (VP (TO to) (VP (VB pass) (NP (DT a) (NN prohibition)) (PP (IN on) (NP (NP (NN anyone)) (SBAR (WHNP (WP who)) (S (VP (VBZ 's) (PP (IN on) (NP (DT the) (JJ terrorist) (NN watch) (NN list))) (PP (IN from) (S (VP (VBG being) (ADJP (JJ able) (S (VP (TO to) (VP (VB buy) (NP (NP (DT a) (NN gun)) (PP (IN in) (NP (PRP$ our) (NN country)))))))))))))))))))) (. .)))
CLINTON "If you're too dangerous to fly, you are too dangerous to buy a gun." 14 33 17 10 8 "(ROOT (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP 're) (ADJP (RB too) (JJ dangerous) (S (VP (TO to) (VP (VB fly)))))))) (, ,) (NP (PRP you)) (VP (VBP are) (ADJP (RB too) (JJ dangerous) (S (VP (TO to) (VP (VB buy) (NP (DT a) (NN gun))))))) (. .)))"
CLINTON "So there are things we can do, and we ought to do it in a bipartisan way." 17 39 19 6 12 "(ROOT (S (IN So) (NP (EX there)) (VP (VBP are) (NP (NP (NNS things)) (SBAR (S (S (NP (PRP we)) (VP (MD can) (VP (VB do)))) (, ,) (CC and) (S (NP (PRP we)) (VP (MD ought) (S (VP (TO to) (VP (VB do) (NP (PRP it)) (PP (IN in) (NP (DT a) (JJ bipartisan) (NN way)))))))))))) (. .)))"
HOLT "Secretary Clinton, last week, you said we've got to do everything possible to improve policing, to go right at implicit bias." 21 54 26 15 17 "(ROOT (NP (NP (NNP Secretary) (NNP Clinton)) (, ,) (S (NP (JJ last) (NN week)) (, ,) (NP (PRP you)) (VP (VBD said) (SBAR (S (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB do) (S (NP (NN everything)) (ADJP (JJ possible) (S (VP (TO to) (VP (VB improve) (S (VP (VBG policing))))))))))) (, ,) (S (VP (TO to) (VP (VB go) (ADVP (RB right)) (PP (IN at) (NP (JJ implicit) (NN bias)))))))))))) (. .)))"
HOLT Do you believe that police are implicitly biased against black people? 11 25 11 7 11 (ROOT (S (VP (VB Do) (SBAR (S (NP (PRP you)) (VP (VBP believe) (SBAR (IN that) (S (NP (NNS police)) (VP (VBP are) (ADVP (RB implicitly)) (VP (VBN biased) (PP (IN against) (NP (JJ black) (NNS people)))))))))))))
CLINTON "Lester, I think implicit bias is a problem for everyone, not just police." 13 30 16 7 9 "(ROOT (S (ADVP (RB Lester)) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (JJ implicit) (NN bias)) (VP (VBZ is) (NP (NP (DT a) (NN problem)) (PP (IN for) (NP (NP (NN everyone)) (, ,) (RB not) (RB just) (NP (NNS police))))))))) (. .)))"
CLINTON "I think, unfortunately, too many of us in our great country jump to conclusions about each other." 17 36 20 11 6 "(ROOT (S (NP (PRP I)) (VP (VP (VBP think)) (, ,) (ADVP (RB unfortunately)) (, ,) (VP (ADJP (RB too) (JJ many) (PP (IN of) (NP (PRP us)))) (PP (IN in) (NP (PRP$ our) (JJ great) (NN country) (NN jump)))) (PP (TO to) (NP (NP (NNS conclusions)) (PP (IN about) (NP (DT each) (JJ other)))))) (. .)))"
CLINTON "And therefore, I think we need all of us to be asking hard questions about, you know, why am I feeling this way?" 23 53 26 11 16 "(ROOT (S (CC And) (ADVP (RB therefore)) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP need) (S (NP (NP (DT all)) (PP (IN of) (NP (PRP us)))) (VP (TO to) (VP (VB be) (VP (VBG asking) (NP (JJ hard) (NNS questions)) (SBAR (IN about) (, ,) (S (NP (PRP you)) (VP (VBP know) (, ,) (SBARQ (WHADVP (WRB why)) (SQ (VBP am) (NP (PRP I)) (VP (VBG feeling) (NP (DT this) (NN way))))))))))))))))))"
CLINTON "But when it comes to policing, since it can have literally fatal consequences, I have said, in my first budget, we would put money into that budget to help us deal with implicit bias by retraining a lot of our police officers." 42 89 47 20 11 "(ROOT (SINV (S (CC But) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (VBZ comes) (S (VP (TO to) (VP (VB policing))))))) (, ,) (S (SBAR (IN since) (S (NP (PRP it)) (VP (MD can) (VP (VB have) (NP (RB literally) (JJ fatal) (NNS consequences)))))) (, ,) (NP (PRP I)) (VP (VBP have) (VP (VBD said)))) (, ,) (S (PP (IN in) (NP (PRP$ my) (JJ first) (NN budget))) (, ,) (NP (PRP we)) (VP (MD would) (VP (VB put) (NP (NN money)) (PP (IN into) (NP (DT that) (NN budget) (S (VP (TO to) (VP (VB help) (NP (PRP us))))))))))) (VP (VBP deal) (PP (IN with) (NP (JJ implicit) (NN bias))) (PP (IN by) (NP (VBG retraining)))) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (PRP$ our) (NN police) (NNS officers)))) (. .)))"
CLINTON "I've met with a group of very distinguished, experienced police chiefs a few weeks ago." 15 31 18 9 9 "(ROOT (S (NP (PRP I)) (VP (VBP 've) (VP (VBN met) (PP (IN with) (NP (NP (DT a) (NN group)) (PP (IN of) (NP (NP (ADJP (RB very) (JJ distinguished) (, ,) (JJ experienced)) (NN police) (NNS chiefs)) (ADVP (NP (DT a) (JJ few) (NNS weeks)) (RB ago)))))))) (. .)))"
CLINTON They admit it's an issue. 5 15 7 2 6 (ROOT (S (NP (PRP They)) (VP (VBP admit) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (DT an) (NN issue)))))) (. .)))
CLINTON They've got a lot of concerns. 6 16 8 3 6 (ROOT (S (NP (PRP They)) (VP (VBP 've) (VP (VBN got) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS concerns)))))) (. .)))
CLINTON "Mental health is one of the biggest concerns, because now police are having to handle a lot of really difficult mental health problems on the street." 26 52 28 13 16 "(ROOT (S (NP (NNP Mental) (NN health)) (VP (VBZ is) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS biggest) (NNS concerns)) (, ,) (SBAR (IN because) (S (ADVP (RB now)) (NP (NNS police)) (VP (VBP are) (VP (VBG having) (S (VP (TO to) (VP (VB handle) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (ADJP (RB really) (JJ difficult)) (JJ mental) (NN health) (NNS problems)))) (PP (IN on) (NP (DT the) (NN street)))))))))))))) (. .)))"
CLINTON "They want support, they want more training, they want more assistance." 11 27 14 5 4 "(ROOT (S (S (NP (PRP They)) (VP (VBP want) (NP (NN support)))) (, ,) (S (NP (PRP they)) (VP (VBP want) (NP (JJR more) (NN training)))) (, ,) (S (NP (PRP they)) (VP (VBP want) (NP (JJR more) (NN assistance)))) (. .)))"
CLINTON And I think the federal government could be in a position where we would offer and provide that. 18 36 19 6 11 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (DT the) (JJ federal) (NN government)) (VP (MD could) (VP (VB be) (PP (IN in) (NP (DT a) (NN position))) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (MD would) (VP (VB offer) (CC and) (VB provide) (NP (DT that))))))))))) (. .)))
HOLT Mr. Trump. 2 4 3 0 1 (ROOT (NP (NNP Mr.) (NNP Trump) (. .)))
TRUMP I'd like to respond to that. 6 17 8 5 8 (ROOT (S (NP (PRP I)) (VP (MD 'd) (VP (VB like) (S (VP (TO to) (VP (VB respond) (PP (TO to) (NP (DT that)))))))) (. .)))
HOLT Please. 1 3 2 0 1 (ROOT (INTJ (UH Please) (. .)))
TRUMP "First of all, I agree, and a lot of people even within my own party want to give certain rights to people on watch lists and no- fly lists." 29 61 33 15 12 "(ROOT (S (ADVP (JJ First) (PP (IN of) (NP (DT all)))) (, ,) (S (NP (PRP I)) (VP (VBP agree))) (, ,) (CC and) (S (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (NNS people)) (PP (RB even) (IN within) (NP (PRP$ my) (JJ own) (NN party)))))) (VP (VBP want) (S (VP (TO to) (VP (VB give) (NP (JJ certain) (NNS rights)) (PP (TO to) (NP (UCP (NP (NP (NNS people)) (PP (IN on) (NP (NN watch) (NNS lists)))) (CC and) (ADVP (RB no) (: -))) (NN fly) (NNS lists)))))))) (. .)))"
TRUMP I agree with you. 4 10 5 2 4 (ROOT (S (NP (PRP I)) (VP (VBP agree) (PP (IN with) (NP (PRP you)))) (. .)))
TRUMP "When a person is on a watch list or a no-fly list, and I have the endorsement of the NRA, which I'm very proud of." 25 55 29 9 13 "(ROOT (FRAG (SBAR (WHADVP (WRB When)) (S (S (NP (DT a) (NN person)) (VP (VBZ is) (PP (IN on) (NP (NP (DT a) (NN watch) (NN list)) (CC or) (NP (DT a) (JJ no-fly) (NN list)))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP have) (NP (NP (DT the) (NN endorsement)) (PP (IN of) (NP (NP (DT the) (NNP NRA)) (, ,) (SBAR (WHNP (WDT which)) (S (NP (PRP I)) (VP (VBP 'm) (ADJP (RB very) (JJ proud) (PP (IN of))))))))))))) (. .)))"
TRUMP "These are very, very good people, and they're protecting the Second Amendment." 12 27 16 6 5 "(ROOT (S (S (NP (DT These)) (VP (VBP are) (NP (ADJP (RB very) (, ,) (RB very) (JJ good)) (NNS people)))) (, ,) (CC and) (S (NP (PRP they)) (VP (VBP 're) (VP (VBG protecting) (NP (DT the) (NNP Second) (NNP Amendment))))) (. .)))"
TRUMP But I think we have to look very strongly at no-fly lists and watch lists. 15 32 16 9 11 (ROOT (S (CC But) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VP (VB look) (ADVP (RB very) (RB strongly)) (PP (IN at) (NP (JJ no-fly) (NNS lists)))) (CC and) (VP (VB watch) (NP (NNS lists)))))))))) (. .)))
TRUMP "And when people are on there, even if they shouldn't be on there, we'll help them, we'll help them legally, we'll help them get off." 25 68 34 13 10 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (S (NP (NNS people)) (VP (VBP are) (PP (IN on) (NP (RB there))))) (, ,) (S (SBAR (RB even) (IN if) (S (NP (PRP they)) (VP (MD should) (RB n't) (VP (VB be) (PP (IN on) (NP (RB there))))))) (, ,) (NP (PRP we)) (VP (MD 'll) (VP (VB help) (NP (PRP them))))) (, ,) (S (NP (PRP we)) (VP (MD 'll) (VP (VB help) (NP (PRP them)) (ADVP (RB legally))))))) (, ,) (NP (PRP we)) (VP (MD 'll) (VP (VB help) (S (NP (PRP them)) (VP (VB get) (PRT (RP off)))))) (. .)))"
TRUMP But I tend to agree with that quite strongly. 9 19 10 6 7 (ROOT (S (CC But) (NP (PRP I)) (VP (VBP tend) (S (VP (TO to) (VP (VB agree) (PP (IN with) (NP (DT that))) (ADVP (RB quite) (RB strongly)))))) (. .)))
TRUMP I do want to bring up the fact that you were the one that brought up the words super-predator about young black youth. 23 48 24 9 13 (ROOT (S (NP (PRP I)) (VP (VBP do) (VP (VB want) (S (VP (TO to) (VP (VB bring) (PRT (RP up)) (NP (DT the) (NN fact))))) (SBAR (IN that) (S (NP (PRP you)) (VP (VBD were) (NP (NP (DT the) (NN one)) (SBAR (WHNP (WDT that)) (S (VP (VBD brought) (PRT (RP up)) (NP (NP (DT the) (NNS words) (NN super-predator)) (PP (IN about) (NP (JJ young) (JJ black) (NN youth))))))))))))) (. .)))
TRUMP "And that's a term that I think was a — it's — it's been horribly met, as you know." 19 52 24 9 17 "(ROOT (S (CC And) (NP (DT that)) (VP (VBZ 's) (NP (DT a) (NN term)) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (VP (VBD was) (NP (NP (SYM a)) (PRN (: --) (S (NP (PRP it)) (VP (VBZ 's))) (: --)) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (VP (VBN been) (VP (ADVP (RB horribly)) (VBN met) (, ,) (SBAR (IN as) (S (NP (PRP you)) (VP (VBP know))))))))))))))))) (. .)))"
TRUMP I think you've apologized for it. 6 18 8 4 8 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP you)) (VP (VBP 've) (VP (VBN apologized) (PP (IN for) (NP (PRP it)))))))) (. .)))
TRUMP But I think it was a terrible thing to say. 10 22 11 5 9 (ROOT (S (CC But) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBD was) (NP (DT a) (JJ terrible) (NN thing) (S (VP (TO to) (VP (VB say))))))))) (. .)))
TRUMP "And when it comes to stop-and-frisk, you know, you're talking about takes guns away." 14 37 18 8 7 "(ROOT (S (CC And) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (VBZ comes) (S (VP (TO to) (VP (VB stop-and-frisk))))))) (PRN (, ,) (S (NP (PRP you)) (VP (VBP know))) (, ,)) (NP (PRP you)) (VP (VBP 're) (VP (VBG talking) (ADVP (NP (QP (RB about) (CD takes)) (NNS guns)) (RB away)))) (. .)))"
TRUMP "Well, I'm talking about taking guns away from gangs and people that use them." 14 35 17 6 12 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP 'm) (VP (VBG talking) (PP (IN about) (S (VP (VBG taking) (NP (NNS guns)) (PRT (RP away)) (PP (IN from) (NP (NP (NNS gangs) (CC and) (NNS people)) (SBAR (WHNP (WDT that)) (S (VP (VBP use) (NP (PRP them)))))))))))) (. .)))"
TRUMP "And I don't think — I really don't think you disagree with me on this, if you want to know the truth." 22 51 26 13 13 "(ROOT (S (S (CC And) (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB think)))) (: --) (S (NP (PRP I)) (ADVP (RB really)) (VP (VBP do) (RB n't) (VP (VB think) (S (NP (PRP you)) (VP (VB disagree) (PP (IN with) (NP (PRP me))) (PP (IN on) (NP (DT this))) (, ,) (SBAR (IN if) (S (NP (PRP you)) (VP (VBP want) (S (VP (TO to) (VP (VB know) (NP (DT the) (NN truth))))))))))))) (. .)))"
TRUMP "I think maybe there's a political reason why you can't say it, but I really don't believe — in New York City, stop-and-frisk, we had 2,200 murders, and stop-and-frisk brought it down to 500 murders." 35 83 43 16 13 "(ROOT (S (S (NP (PRP I)) (VP (VBP think) (SBAR (S (S (ADVP (RB maybe)) (NP (EX there)) (VP (VBZ 's) (NP (NP (DT a) (JJ political) (NN reason)) (SBAR (WHADVP (WRB why)) (S (NP (PRP you)) (VP (MD ca) (RB n't) (VP (VB say) (NP (PRP it))))))))) (, ,) (CC but) (S (NP (PRP I)) (ADVP (RB really)) (VP (VBP do) (RB n't) (VP (VB believe)))))))) (: --) (S (S (PP (IN in) (NP (NP (NNP New) (NNP York)) (ADJP (NNP City) (, ,) (JJ stop-and-frisk)))) (, ,) (NP (PRP we)) (VP (VBD had) (NP (CD 2,200) (NNS murders)))) (, ,) (CC and) (S (NP (NN stop-and-frisk)) (VP (VBD brought) (NP (PRP it)) (PRT (RP down)) (PP (TO to) (NP (CD 500) (NNS murders)))))) (. .)))"
TRUMP Five hundred murders is a lot of murders. 8 17 9 2 5 (ROOT (S (NP (QP (CD Five) (CD hundred)) (NNS murders)) (VP (VBZ is) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NNS murders))))) (. .)))
TRUMP "It's hard to believe, 500 is like supposed to be good?" 11 31 13 9 16 "(ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (JJ hard) (S (VP (TO to) (VP (VB believe) (, ,) (SBAR (S (NP (CD 500)) (VP (VBZ is) (SBAR (IN like) (S (VP (VBN supposed) (S (VP (TO to) (VP (VB be) (ADJP (JJ good))))))))))))))))))"
TRUMP "But we went from 2,200 to 500." 7 15 8 4 4 "(ROOT (S (CC But) (NP (PRP we)) (VP (VBD went) (PP (IN from) (NP (CD 2,200))) (PP (TO to) (NP (CD 500)))) (. .)))"
TRUMP And it was continued on by Mayor Bloomberg. 8 16 9 3 5 (ROOT (S (CC And) (NP (PRP it)) (VP (VBD was) (VP (VBN continued) (PRT (RP on)) (PP (IN by) (NP (NNP Mayor) (NNP Bloomberg))))) (. .)))
TRUMP And it was terminated by current mayor. 7 14 8 4 5 (ROOT (S (CC And) (NP (PRP it)) (VP (VBD was) (VP (VBN terminated) (PP (IN by) (NP (JJ current) (NN mayor))))) (. .)))
TRUMP But stop-and- frisk had a tremendous impact on the safety of New York City. 14 26 16 6 7 (ROOT (S (CC But) (NP (JJ stop-and) (JJ -) (NN frisk)) (VP (VBD had) (NP (NP (DT a) (JJ tremendous) (NN impact)) (PP (IN on) (NP (NP (DT the) (NN safety)) (PP (IN of) (NP (NNP New) (NNP York) (NNP City))))))) (. .)))
TRUMP Tremendous beyond belief. 3 8 4 1 3 (ROOT (NP (NP (NNS Tremendous)) (PP (IN beyond) (NP (NN belief))) (. .)))
TRUMP "So when you say it has no impact, it really did." 11 27 13 4 8 "(ROOT (S (IN So) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP say) (SBAR (S (NP (PRP it)) (VP (VBZ has) (NP (DT no) (NN impact)))))))) (, ,) (NP (PRP it)) (ADVP (RB really)) (VP (VBD did)) (. .)))"
TRUMP "It had a very, very big impact." 7 14 9 4 4 "(ROOT (S (NP (PRP It)) (VP (VBD had) (NP (DT a) (ADJP (RB very) (, ,) (RB very) (JJ big)) (NN impact))) (. .)))"
CLINTON "Well, it's also fair to say, if we're going to talk about mayors, that under the current mayor, crime has continued to drop, including murders." 25 64 33 18 11 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP it)) (VP (VBZ 's) (ADVP (RB also)) (ADJP (JJ fair) (S (VP (TO to) (VP (VB say))))) (, ,) (SBAR (IN if) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB talk) (PP (IN about) (NP (NNS mayors)))))))))) (, ,) (SBAR (IN that) (S (PP (IN under) (NP (DT the) (JJ current) (NN mayor))) (, ,) (NP (NN crime)) (VP (VBZ has) (VP (VBN continued) (S (VP (TO to) (VP (VB drop)))) (, ,) (PP (VBG including) (NP (NNS murders)))))))) (. .)))"
CLINTON So there is. 3 7 4 1 2 (ROOT (S (IN So) (NP (EX there)) (VP (VBZ is)) (. .)))
TRUMP "No, you're wrong." 3 11 6 2 3 "(ROOT (S (INTJ (UH No)) (, ,) (NP (PRP you)) (VP (VBP 're) (ADJP (JJ wrong))) (. .)))"
TRUMP You're wrong. 2 8 4 2 3 (ROOT (S (NP (PRP You)) (VP (VBP 're) (ADJP (JJ wrong))) (. .)))
CLINTON "No, I'm not." 3 10 6 2 2 "(ROOT (S (INTJ (UH No)) (, ,) (NP (PRP I)) (VP (VBP 'm) (RB not)) (. .)))"
TRUMP Murders are up. 3 8 4 2 3 (ROOT (S (NP (NNS Murders)) (VP (VBP are) (ADVP (RB up))) (. .)))
TRUMP All right. 2 4 3 0 1 (ROOT (NP (DT All) (NN right) (. .)))
TRUMP You check it. 3 8 4 1 3 (ROOT (S (NP (PRP You)) (VP (VBP check) (NP (PRP it))) (. .)))
CLINTON New York — New York has done an excellent job. 10 18 11 3 5 (ROOT (NP (NP (NNP New) (NNP York)) (: --) (S (NP (NNP New) (NNP York)) (VP (VBZ has) (VP (VBN done) (NP (DT an) (JJ excellent) (NN job))))) (. .)))
CLINTON "And I give credit — I give credit across the board going back two mayors, two police chiefs, because it has worked." 22 46 25 6 9 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP give) (NP (NN credit)) (: --) (S (NP (PRP I)) (VP (VB give) (NP (NN credit)) (PP (IN across) (NP (NP (DT the) (NN board)) (VP (VBG going) (PRT (RP back)) (NP (NP (CD two) (NNS mayors)) (, ,) (NP (CD two) (NN police) (NNS chiefs)) (, ,))))) (SBAR (IN because) (S (NP (PRP it)) (VP (VBZ has) (VP (VBN worked)))))))) (. .)))"
CLINTON "And other communities need to come together to do what will work, as well." 14 32 16 9 13 "(ROOT (S (CC And) (NP (JJ other) (NNS communities)) (VP (VBP need) (S (VP (TO to) (VP (VB come) (PRT (RP together)) (S (VP (TO to) (VP (VB do) (SBAR (WHNP (WP what)) (S (VP (MD will) (VP (VB work) (, ,) (ADVP (RB as) (RB well))))))))))))) (. .)))"
CLINTON "Look, one murder is too many." 6 14 8 4 3 "(ROOT (S (S (VP (VB Look))) (, ,) (NP (CD one) (NN murder)) (VP (VBZ is) (ADJP (RB too) (JJ many))) (. .)))"
CLINTON But it is important that we learn about what has been effective. 12 28 13 7 11 (ROOT (S (CC But) (NP (PRP it)) (VP (VBZ is) (ADJP (JJ important)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP learn) (PP (IN about) (SBAR (WHNP (WP what)) (S (VP (VBZ has) (VP (VBN been) (ADJP (JJ effective))))))))))) (. .)))
CLINTON And not go to things that sound good that really did not have the kind of impact that we would want. 21 43 22 11 11 (ROOT (S (CC And) (RB not) (VP (VBP go) (PP (TO to) (NP (NNS things))) (NP (NP (DT that) (JJ sound) (NN good)) (SBAR (WHNP (WDT that)) (S (ADVP (RB really)) (VP (VBD did) (RB not) (VP (VB have) (NP (NP (DT the) (NN kind)) (PP (IN of) (NP (NN impact)))) (SBAR (IN that) (S (NP (PRP we)) (VP (MD would) (VP (VB want))))))))))) (. .)))
CLINTON Who disagrees with keeping neighborhoods safe? 6 16 6 4 8 (ROOT (SBARQ (WHNP (WP Who)) (SQ (VP (VBZ disagrees) (PP (IN with) (S (VP (VBG keeping) (S (NP (NNS neighborhoods)) (ADJP (JJ safe))))))))))
CLINTON "But let's also add, no one should disagree about respecting the rights of young men who live in those neighborhoods." 20 45 23 10 12 "(ROOT (S (S (CC But) (VP (VB let) (NP (PRP 's)) (ADVP (RB also)) (VP (VB add)))) (, ,) (NP (DT no) (NN one)) (VP (MD should) (VP (VB disagree) (PP (IN about) (S (VP (VBG respecting) (NP (NP (DT the) (NNS rights)) (PP (IN of) (NP (JJ young) (NNS men))) (SBAR (WHNP (WP who)) (S (VP (VBP live) (PP (IN in) (NP (DT those) (NNS neighborhoods)))))))))))) (. .)))"
CLINTON "And so we need to do a better job of working, again, with the communities, faith communities, business communities, as well as the police to try to deal with this problem." 31 67 37 16 15 "(ROOT (S (CC And) (ADVP (RB so)) (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB do) (NP (NP (NP (DT a) (JJR better) (NN job)) (PP (IN of) (S (VP (VBG working) (, ,) (ADVP (RB again)) (, ,) (PP (IN with) (NP (NP (DT the) (NNS communities)) (, ,) (NP (NP (NN faith) (NNS communities)) (, ,) (NP (NN business) (NNS communities))))))))) (, ,) (CONJP (RB as) (RB well) (IN as)) (NP (DT the) (NN police) (S (VP (TO to) (VP (VB try) (S (VP (TO to) (VP (VB deal) (PP (IN with) (NP (DT this) (NN problem))))))))))))))) (. .)))"
HOLT This conversation is about race. 5 11 6 2 4 (ROOT (S (NP (DT This) (NN conversation)) (VP (VBZ is) (PP (IN about) (NP (NN race)))) (. .)))
HOLT "And so, Mr. Trump, I have to ask you for five." 11 25 14 5 7 "(ROOT (S (CC And) (ADVP (RB so)) (, ,) (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP I)) (VP (VBP have) (S (VP (TO to) (VP (VB ask) (NP (PRP you)) (PP (IN for) (NP (CD five))))))) (. .)))"
TRUMP "I'd like to just respond, if I might." 8 23 11 4 9 "(ROOT (S (NP (PRP I)) (VP (MD 'd) (VP (VB like) (S (VP (TO to) (VP (ADVP (RB just)) (VB respond) (, ,) (SBAR (IN if) (S (NP (PRP I)) (VP (MD might))))))))) (. .)))"
HOLT Please — 20 seconds. 4 8 5 0 2 (ROOT (NP (NP (NNP Please)) (: --) (NP (CD 20) (NNS seconds)) (. .)))
TRUMP I'd just like to respond. 5 15 7 4 6 (ROOT (S (NP (PRP I)) (VP (MD 'd) (ADVP (RB just)) (VP (VB like) (S (VP (TO to) (VP (VB respond)))))) (. .)))
HOLT "Please respond, then I've got a quick follow-up for you." 10 25 13 7 6 "(ROOT (S (S (INTJ (VB Please)) (VP (VB respond))) (, ,) (ADVP (RB then)) (NP (PRP I)) (VP (VBP 've) (VP (VBN got) (NP (NP (DT a) (JJ quick) (NN follow-up)) (PP (IN for) (NP (PRP you)))))) (. .)))"
TRUMP I will. 2 6 3 0 2 (ROOT (S (NP (PRP I)) (VP (MD will)) (. .)))
TRUMP "Look, the African-American community has been let down by our politicians." 11 23 13 6 6 "(ROOT (S (S (VP (VB Look))) (, ,) (NP (DT the) (JJ African-American) (NN community)) (VP (VBZ has) (VP (VBN been) (VP (VBN let) (PRT (RP down)) (PP (IN by) (NP (PRP$ our) (NNS politicians)))))) (. .)))"
TRUMP "They talk good around election time, like right now, and after the election, they said, see ya later, I'll see you in four years." 24 57 31 11 7 "(ROOT (S (S (S (NP (PRP They)) (VP (VBP talk) (ADJP (JJ good)) (PP (IN around) (NP (NN election) (NN time))) (, ,) (PP (IN like) (NP (NN right))) (ADVP (RB now)))) (, ,) (CC and) (S (PP (IN after) (NP (DT the) (NN election))) (, ,) (NP (PRP they)) (VP (VBD said) (, ,) (S (VP (VB see) (NP (PRP ya)) (ADVP (RB later))))))) (, ,) (NP (PRP I)) (VP (MD 'll) (VP (VB see) (NP (PRP you)) (PP (IN in) (NP (CD four) (NNS years))))) (. .)))"
TRUMP "The African-American community — because — look, the community within the inner cities has been so badly treated." 18 34 20 10 5 "(ROOT (S (S (NP (DT The) (JJ African-American) (NN community)) (PRN (: --) (PP (IN because)) (: --)) (VP (VBP look))) (, ,) (NP (NP (DT the) (NN community)) (PP (IN within) (NP (DT the) (JJ inner) (NNS cities)))) (VP (VBZ has) (VP (VBN been) (VP (ADVP (RB so) (RB badly)) (VBN treated)))) (. .)))"
TRUMP "They've been abused and used in order to get votes by Democrat politicians, because that's what it is." 18 43 22 9 14 "(ROOT (S (NP (PRP They)) (VP (VBP 've) (VP (VBN been) (VP (VBN abused) (CC and) (VBN used) (SBAR (IN in) (NN order) (S (VP (TO to) (VP (VB get) (NP (NNS votes)) (PP (IN by) (NP (NNP Democrat) (NNS politicians))) (, ,) (SBAR (IN because) (S (NP (DT that)) (VP (VBZ 's) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (VBZ is)))))))))))))) (. .)))"
TRUMP They've controlled these communities for up to 100 years. 9 20 11 4 7 (ROOT (S (NP (PRP They)) (VP (VBP 've) (VP (VBN controlled) (NP (NP (DT these) (NNS communities)) (PP (IN for) (NP (QP (IN up) (TO to) (CD 100)) (NNS years)))))) (. .)))
HOLT "Mr. Trump, let me." 4 10 6 1 3 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (VP (VB let) (NP (PRP me))) (. .)))"
CLINTON "Well, I — I do think." 6 17 8 2 5 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (NP (PRP I)) (PRN (: --) (S (NP (PRP I)) (VP (VBP do))))) (VP (VBP think)) (. .)))"
TRUMP "And I will tell you, you look at the inner cities — and I just left Detroit, and I just left Philadelphia, and I just — you know, you've seen me, I've been all over the place." 37 88 45 15 7 "(ROOT (S (S (S (CC And) (NP (PRP I)) (VP (MD will) (VP (VB tell) (NP (PRP you))))) (, ,) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (NP (DT the) (JJ inner) (NNS cities))))) (: --) (CC and) (S (S (NP (PRP I)) (ADVP (RB just)) (VP (VBD left) (NP (NNP Detroit)))) (, ,) (CC and) (S (NP (PRP I)) (ADVP (RB just)) (VP (VBD left) (NP (NNP Philadelphia))))) (, ,) (CC and) (S (NP (PRP I)) (VP (ADVP (RB just))))) (: --) (S (NP (PRP you)) (VP (VBP know))) (, ,) (S (NP (PRP you)) (VP (VBP 've) (VP (VBN seen) (NP (PRP me))))) (, ,) (S (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (NP (NP (DT all)) (PP (IN over) (NP (DT the) (NN place))))))) (. .)))"
TRUMP "You decided to stay home, and that's OK." 8 23 11 5 7 "(ROOT (S (S (NP (PRP You)) (VP (VBD decided) (S (VP (TO to) (VP (VB stay) (NP (NN home))))))) (, ,) (CC and) (S (NP (DT that)) (VP (VBZ 's) (ADJP (JJ OK)))) (. .)))"
TRUMP "But I will tell you, I've been all over." 9 22 12 3 5 "(ROOT (S (S (CC But) (NP (PRP I)) (VP (MD will) (VP (VB tell) (NP (PRP you))))) (, ,) (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (ADVP (DT all) (RP over)))) (. .)))"
TRUMP And I've met some of the greatest people I'll ever meet within these communities. 14 34 17 7 12 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP 've) (VP (VBN met) (NP (NP (DT some)) (PP (IN of) (NP (NP (DT the) (JJS greatest) (NNS people)) (SBAR (S (NP (PRP I)) (VP (MD 'll) (ADVP (RB ever)) (VP (VB meet) (PP (IN within) (NP (DT these) (NNS communities)))))))))))) (. .)))
TRUMP "And they are very, very upset with what their politicians have told them and what their politicians have done." 19 40 21 9 9 "(ROOT (S (CC And) (NP (PRP they)) (VP (VBP are) (ADJP (RB very) (, ,) (RB very) (JJ upset)) (PP (IN with) (SBAR (SBAR (WHNP (WP what)) (S (NP (PRP$ their) (NNS politicians)) (VP (VBP have) (VP (VBN told) (NP (PRP them)))))) (CC and) (SBAR (WHNP (WP what)) (S (NP (PRP$ their) (NNS politicians)) (VP (VBP have) (VP (VBN done)))))))) (. .)))"
HOLT "Mr. Trump, I.." 3 8 5 0 2 "(ROOT (NP (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (NNP I.)) (. .)))"
CLINTON I think — I think — I think Donald just criticized me for preparing for this debate. 17 39 18 8 11 (ROOT (S (S (NP (PRP I)) (VP (VBP think))) (: --) (S (NP (PRP I)) (VP (VBP think))) (: --) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (NNP Donald)) (ADVP (RB just)) (VP (VBD criticized) (NP (PRP me)) (PP (IN for) (S (VP (VBG preparing) (PP (IN for) (NP (DT this) (NN debate))))))))))) (. .)))
CLINTON "And, yes, I did." 4 11 7 1 2 "(ROOT (S (CC And) (, ,) (INTJ (UH yes)) (, ,) (NP (PRP I)) (VP (VBD did)) (. .)))"
CLINTON And you know what else I prepared for? 8 17 8 4 6 (ROOT (S (CC And) (NP (PRP you)) (VP (VBP know) (SBAR (WHNP (WP what)) (S (NP (RB else) (PRP I)) (VP (VBN prepared) (PP (IN for))))))))
CLINTON I prepared to be president. 5 13 6 3 6 (ROOT (S (NP (PRP I)) (VP (VBD prepared) (S (VP (TO to) (VP (VB be) (NP (NN president)))))) (. .)))
CLINTON And I think that's a good thing. 7 16 9 3 6 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (IN that) (S (VP (VBZ 's) (NP (DT a) (JJ good) (NN thing)))))) (. .)))
HOLT "Mr. Trump, for five years, you perpetuated a false claim that the nation's first black president was not a natural-born citizen." 21 38 25 8 6 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (PP (IN for) (NP (CD five) (NNS years))) (, ,) (NP (PRP you)) (VP (VBD perpetuated) (NP (DT a) (JJ false) (NN claim)) (SBAR (IN that) (S (NP (NP (DT the) (NN nation) (POS 's)) (JJ first) (JJ black) (NN president)) (VP (VBD was) (RB not) (NP (DT a) (JJ natural-born) (NN citizen)))))) (. .)))"
HOLT You questioned his legitimacy. 4 9 5 1 3 (ROOT (S (NP (PRP You)) (VP (VBD questioned) (NP (PRP$ his) (NN legitimacy))) (. .)))
HOLT "In the last couple of weeks, you acknowledged what most Americans have accepted for years: The president was born in the United States." 23 49 26 11 9 "(ROOT (S (S (PP (IN In) (NP (NP (DT the) (JJ last) (NN couple)) (PP (IN of) (NP (NNS weeks))))) (, ,) (NP (PRP you)) (VP (VBD acknowledged) (SBAR (WHNP (WP what)) (S (NP (JJS most) (NNPS Americans)) (VP (VBP have) (VP (VBN accepted) (PP (IN for) (NP (NNS years))))))))) (: :) (S (NP (DT The) (NN president)) (VP (VBD was) (VP (VBN born) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))))) (. .)))"
HOLT Can you tell us what took you so long? 9 19 9 5 6 (ROOT (SINV (VBZ Can) (NP (PRP you)) (VP (VB tell) (NP (PRP us)) (SBAR (WHNP (WP what)) (S (VP (VBD took) (NP (PRP you)) (ADVP (RB so) (RB long))))))))
TRUMP "I'll tell you very — well, just very simple to say." 11 25 14 8 7 "(ROOT (S (NP (PRP I)) (VP (MD 'll) (VP (VP (VB tell) (NP (PRP you)) (ADVP (RB very) (: --) (RB well))) (, ,) (ADJP (RB just) (RB very) (JJ simple) (S (VP (TO to) (VP (VB say))))))) (. .)))"
TRUMP Sidney Blumenthal works for the campaign and close — very close friend of Secretary Clinton. 15 26 16 5 5 (ROOT (S (NP (NNP Sidney) (NNP Blumenthal)) (VP (VBZ works) (PP (IN for) (NP (DT the) (NN campaign) (CC and) (NN close))) (: --) (NP (NP (ADJP (RB very) (JJ close)) (NN friend)) (PP (IN of) (NP (NNP Secretary) (NNP Clinton))))) (. .)))
TRUMP "And her campaign manager, Patti Doyle, went to — during the campaign, her campaign against President Obama, fought very hard." 20 42 25 8 10 "(ROOT (S (CC And) (NP (NP (PRP$ her) (NN campaign) (NN manager)) (, ,) (NP (NNP Patti) (NNP Doyle)) (, ,)) (VP (VBD went) (PP (TO to)) (: --) (PP (IN during) (NP (NP (DT the) (NN campaign)) (, ,) (NP (NP (PRP$ her) (NN campaign)) (PP (IN against) (NP (NP (NNP President) (NNP Obama)) (, ,) (VP (VBN fought) (S (ADJP (RB very) (JJ hard)))))))))) (. .)))"
TRUMP "And you can go look it up, and you can check it out." 13 29 15 3 6 "(ROOT (S (CC And) (S (NP (PRP you)) (VP (MD can) (VP (VB go) (VP (VB look) (NP (PRP it)) (PRT (RP up)))))) (, ,) (CC and) (S (NP (PRP you)) (VP (MD can) (VP (VB check) (NP (PRP it)) (PRT (RP out))))) (. .)))"
TRUMP "And if you look at CNN this past week, Patti Solis Doyle was on Wolf Blitzer saying that this happened." 20 40 22 7 8 "(ROOT (S (CC And) (SBAR (IN if) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (NP (NNP CNN)) (NP (DT this) (JJ past) (NN week)))))) (, ,) (NP (NNP Patti) (NNPS Solis) (NNP Doyle)) (VP (VBD was) (PP (IN on) (NP (NP (NNP Wolf) (NNP Blitzer)) (VP (VBG saying) (SBAR (IN that) (S (NP (DT this)) (VP (VBD happened)))))))) (. .)))"
TRUMP "Blumenthal sent McClatchy, highly respected reporter at McClatchy, to Kenya to find out about it." 15 36 18 9 7 "(ROOT (S (NP (NNP Blumenthal)) (VP (VBD sent) (NP (NP (NNP McClatchy)) (, ,) (NP (NP (ADJP (RB highly) (JJ respected)) (NN reporter)) (PP (IN at) (NP (NNP McClatchy)))) (, ,)) (PP (TO to) (NP (NNP Kenya))) (S (VP (TO to) (VP (VB find) (PRT (RP out)) (PP (IN about) (NP (PRP it))))))) (. .)))"
TRUMP They were pressing it very hard. 6 14 7 4 5 (ROOT (S (NP (PRP They)) (VP (VBD were) (VP (VBG pressing) (S (NP (PRP it)) (ADJP (RB very) (JJ hard))))) (. .)))
TRUMP She failed to get the birth certificate. 7 15 8 3 6 (ROOT (S (NP (PRP She)) (VP (VBD failed) (S (VP (TO to) (VP (VB get) (NP (DT the) (NN birth) (NN certificate)))))) (. .)))
TRUMP "When I got involved, I didn't fail." 7 20 10 5 5 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP I)) (VP (VBD got) (ADJP (VBN involved))))) (, ,) (NP (PRP I)) (VP (VBD did) (RB n't) (VP (VB fail))) (. .)))"
TRUMP I got him to give the birth certificate. 8 17 9 3 6 (ROOT (S (NP (PRP I)) (VP (VBD got) (S (NP (PRP him)) (VP (TO to) (VP (VB give) (NP (DT the) (NN birth) (NN certificate)))))) (. .)))
TRUMP So I'm satisfied with it. 5 13 7 3 5 (ROOT (S (IN So) (NP (PRP I)) (VP (VBP 'm) (ADJP (VBN satisfied) (PP (IN with) (NP (PRP it))))) (. .)))
TRUMP And I'll tell you why I'm satisfied with it. 9 25 12 4 9 (ROOT (S (CC And) (NP (PRP I)) (VP (MD 'll) (VP (VB tell) (NP (PRP you)) (SBAR (WHADVP (WRB why)) (S (NP (PRP I)) (VP (VBP 'm) (ADJP (VBN satisfied) (PP (IN with) (NP (PRP it))))))))) (. .)))
HOLT That was. 2 6 3 1 2 (ROOT (S (NP (DT That)) (VP (VBD was)) (. .)))
TRUMP "Because I want to get on to defeating ISIS, because I want to get on to creating jobs, because I want to get on to having a strong border, because I want to get on to things that are very important to me and that are very important to the country." 51 116 55 34 34 "(ROOT (S (SBAR (IN Because) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP on)) (PP (TO to) (S (VP (VBG defeating) (NP (NNS ISIS))))) (, ,) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP on)) (PP (TO to) (S (VP (VBG creating) (NP (NNS jobs))))) (, ,) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP on)) (PP (TO to) (S (VP (VBG having) (NP (DT a) (JJ strong) (NN border))))) (, ,) (SBAR (IN because) (S (NP (PRP I)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (PRT (RP on)) (PP (TO to) (NP (NP (NNS things)) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (ADJP (RB very) (JJ important) (PP (TO to) (NP (NP (PRP me)) (CC and) (NP (DT that)))))))))))))))))))))))))))))))))) (VP (VBP are) (ADJP (RB very) (JJ important) (PP (TO to) (NP (DT the) (NN country))))) (. .)))"
HOLT I will let you respond. 5 13 6 2 5 (ROOT (S (NP (PRP I)) (VP (MD will) (VP (VB let) (S (NP (PRP you)) (VP (VB respond))))) (. .)))
HOLT It's important. 2 8 4 2 3 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (JJ important))) (. .)))
HOLT But I just want to get the answer here. 9 19 10 5 6 (ROOT (S (CC But) (NP (PRP I)) (ADVP (RB just)) (VP (VBP want) (S (VP (TO to) (VP (VB get) (NP (DT the) (NN answer)) (ADVP (RB here)))))) (. .)))
HOLT The birth certificate was produced in 2011. 7 14 8 3 5 (ROOT (S (NP (DT The) (NN birth) (NN certificate)) (VP (VBD was) (VP (VBN produced) (PP (IN in) (NP (CD 2011))))) (. .)))
HOLT "You've continued to tell the story and question the president's legitimacy in 2012, '13, '14, '15." 16 46 25 5 8 "(ROOT (S (NP (PRP You)) (VP (VBP 've) (VP (VP (VBN continued) (S (VP (TO to) (VP (VB tell) (NP (DT the) (NN story)))))) (CC and) (VP (NN question) (NP (NP (NP (DT the) (NN president) (POS 's)) (NN legitimacy)) (PP (IN in) (NP (CD 2012))))) (, ,) (VP ('' ') (NP (CD 13))) (, ,) (VP ('' ') (NP (CD 14))) (, ,) (VP ('' ') (NP (CD 15))))) (. .)))"
TRUMP Yeah. 1 3 2 0 1 (ROOT (INTJ (UH Yeah) (. .)))
HOLT as recently as January. 4 8 5 3 2 (ROOT (FRAG (ADVP (RB as) (RB recently) (RB as)) (NP (NNP January)) (. .)))
HOLT "So the question is, what changed your mind?" 8 17 9 2 4 "(ROOT (SBARQ (S (CC So) (NP (DT the) (NN question)) (VP (VBZ is))) (, ,) (WHNP (WP what)) (SQ (VP (VBD changed) (NP (PRP$ your) (NN mind))))))"
TRUMP "Well, nobody was pressing it, nobody was caring much about it." 11 27 14 6 5 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (NN nobody)) (VP (VBD was) (VP (VBG pressing) (NP (PRP it))))) (, ,) (NP (NN nobody)) (VP (VBD was) (VP (VBG caring) (ADVP (RB much)) (PP (IN about) (NP (PRP it))))) (. .)))"
TRUMP "I figured you'd ask the question tonight, of course." 9 24 12 3 8 "(ROOT (S (NP (PRP I)) (VP (VBD figured) (SBAR (S (NP (PRP you)) (VP (MD 'd) (VP (VB ask) (NP (DT the) (NN question)) (NP (NN tonight)) (, ,) (PP (IN of) (NP (NN course)))))))) (. .)))"
TRUMP But nobody was caring much about it. 7 15 8 4 5 (ROOT (S (CC But) (NP (NN nobody)) (VP (VBD was) (VP (VBG caring) (ADVP (RB much)) (PP (IN about) (NP (PRP it))))) (. .)))
TRUMP But I was the one that got him to produce the birth certificate. 13 28 14 4 10 (ROOT (S (CC But) (NP (PRP I)) (VP (VBD was) (NP (NP (DT the) (NN one)) (SBAR (WHNP (WDT that)) (S (VP (VBD got) (S (NP (PRP him)) (VP (TO to) (VP (VB produce) (NP (DT the) (NN birth) (NN certificate)))))))))) (. .)))
TRUMP And I think I did a good job. 8 17 9 3 6 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP I)) (VP (VBD did) (NP (DT a) (JJ good) (NN job)))))) (. .)))
TRUMP Secretary Clinton also fought it. 5 11 6 2 3 (ROOT (S (NP (NNP Secretary) (NNP Clinton)) (ADVP (RB also)) (VP (VBD fought) (NP (PRP it))) (. .)))
TRUMP "I mean, you know — now, everybody in mainstream is going to say, oh, that's not true." 17 45 23 11 10 "(ROOT (S (S (NP (PRP I)) (VP (VBP mean) (, ,) (S (NP (PRP you)) (VP (VB know) (: --) (ADVP (RB now)))))) (, ,) (NP (NP (NN everybody)) (PP (IN in) (NP (NN mainstream)))) (VP (VBZ is) (VP (VBG going) (S (VP (TO to) (VP (VB say) (, ,) (INTJ (UH oh)) (, ,) (SBAR (IN that) (S (VP (VBZ 's) (RB not) (ADJP (JJ true)))))))))) (. .)))"
TRUMP "Look, it's true." 3 12 6 3 3 "(ROOT (S (S (VP (VB Look))) (, ,) (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ true))) (. .)))"
TRUMP "Sidney Blumenthal sent a reporter — you just have to take a look at CNN, the last week, the interview with your former campaign manager." 25 49 28 9 11 "(ROOT (S (NP (NNP Sidney) (NNP Blumenthal)) (VP (VBD sent) (NP (NP (DT a) (NN reporter)) (PRN (: --) (S (NP (PRP you)) (ADVP (RB just)) (VP (VBP have) (S (VP (TO to) (VP (VB take) (NP (DT a) (NN look)) (PP (IN at) (NP (NNP CNN)))))))) (, ,) (NP (NP (DT the) (JJ last) (NN week)) (, ,) (NP (DT the) (NN interview)))) (PP (IN with) (NP (PRP$ your) (JJ former) (NN campaign) (NN manager))))) (. .)))"
TRUMP And she was involved. 4 9 5 2 3 (ROOT (S (CC And) (NP (PRP she)) (VP (VBD was) (VP (VBN involved))) (. .)))
TRUMP "But just like she can't bring back jobs, she can't produce." 11 27 15 5 7 "(ROOT (S (CC But) (ADVP (RB just) (SBAR (IN like) (S (NP (PRP she)) (VP (MD ca) (RB n't) (VP (VB bring) (PRT (RP back)) (NP (NNS jobs))))))) (, ,) (NP (PRP she)) (VP (MD ca) (RB n't) (VP (VB produce))) (. .)))"
HOLT I'm sorry. 2 8 4 2 3 (ROOT (S (NP (PRP I)) (VP (VBP 'm) (ADJP (JJ sorry))) (. .)))
HOLT "I'm just going to follow up — and I will let you respond to that, because there's a lot there." 20 49 24 11 10 "(ROOT (S (S (NP (PRP I)) (VP (VBP 'm) (ADVP (RB just)) (VP (VBG going) (S (VP (TO to) (VP (VB follow) (PRT (RP up)))))))) (: --) (CC and) (S (NP (PRP I)) (VP (MD will) (VP (VB let) (S (NP (PRP you)) (VP (VB respond) (PP (TO to) (NP (DT that))) (, ,) (SBAR (IN because) (S (NP (EX there)) (VP (VBZ 's) (NP (DT a) (NN lot)) (ADVP (RB there)))))))))) (. .)))"
HOLT But we're talking about racial healing in this segment. 9 20 11 5 7 (ROOT (S (CC But) (NP (PRP we)) (VP (VBP 're) (VP (VBG talking) (PP (IN about) (NP (NP (JJ racial) (NN healing)) (PP (IN in) (NP (DT this) (NN segment))))))) (. .)))
HOLT "What do you say to Americans, people of color who." 10 27 12 5 10 "(ROOT (SBARQ (WHNP (WP What)) (SQ (VBP do) (NP (PRP you)) (VP (VB say) (PP (TO to) (NP (NP (NNS Americans)) (, ,) (NP (NP (NNS people)) (PP (IN of) (NP (NP (NN color)) (SBAR (WHNP (WP who)))))))))) (. .)))"
TRUMP "Well, it was very — I say nothing." 8 20 10 3 4 "(ROOT (S (S (INTJ (UH Well)) (, ,) (NP (PRP it)) (VP (VBD was) (ADJP (JJ very)))) (: --) (S (NP (PRP I)) (VP (VBP say) (NP (NN nothing)))) (. .)))"
TRUMP "I say nothing, because I was able to get him to produce it." 13 33 15 7 14 "(ROOT (S (NP (PRP I)) (VP (VBP say) (NP (NP (NN nothing)) (, ,) (SBAR (IN because) (S (NP (PRP I)) (VP (VBD was) (ADJP (JJ able) (S (VP (TO to) (VP (VB get) (S (NP (PRP him)) (VP (TO to) (VP (VB produce) (NP (PRP it)))))))))))))) (. .)))"
TRUMP He should have produced it a long time before. 9 17 10 4 5 (ROOT (S (NP (PRP He)) (VP (MD should) (VP (VB have) (VP (VBN produced) (NP (PRP it)) (NP (DT a) (JJ long) (NN time) (RB before))))) (. .)))
TRUMP I say nothing. 3 8 4 1 3 (ROOT (S (NP (PRP I)) (VP (VBP say) (NP (NN nothing))) (. .)))
TRUMP But let me just tell you. 6 13 7 3 4 (ROOT (S (CC But) (VP (VB let) (NP (PRP me)) (ADVP (RB just)) (VP (VB tell) (NP (PRP you)))) (. .)))
TRUMP "When you talk about healing, I think that I've developed very, very good relationships over the last little while with the African-American community." 23 49 27 13 10 "(ROOT (S (SBAR (WHADVP (WRB When)) (S (NP (PRP you)) (VP (VBP talk) (PP (IN about) (NP (NN healing)))))) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP 've) (VP (VBN developed) (NP (ADJP (RB very) (, ,) (RB very) (JJ good)) (NNS relationships)) (PP (IN over) (NP (NP (DT the) (JJ last) (JJ little) (NN while)) (PP (IN with) (NP (DT the) (JJ African-American) (NN community)))))))))) (. .)))"
TRUMP I think you can see that. 6 16 7 2 7 (ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP you)) (VP (MD can) (VP (VB see) (NP (DT that))))))) (. .)))
TRUMP And I feel that they really wanted me to come to that conclusion. 13 28 14 7 10 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP feel) (SBAR (IN that) (S (NP (PRP they)) (ADVP (RB really)) (VP (VBD wanted) (S (NP (PRP me)) (VP (TO to) (VP (VB come) (PP (TO to) (NP (DT that) (NN conclusion)))))))))) (. .)))
TRUMP "And I think I did a great job and a great service not only for the country, but even for the president, in getting him to produce his birth certificate." 30 57 33 14 12 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP I)) (VP (VBD did) (NP (NP (DT a) (JJ great) (NN job)) (CC and) (NP (DT a) (JJ great) (NN service))) (PP (CONJP (RB not) (JJ only)) (PP (IN for) (NP (DT the) (NN country))) (, ,) (CC but) (RB even) (PP (IN for) (NP (DT the) (NN president)))) (, ,) (PP (IN in) (S (VP (VBG getting) (S (NP (PRP him)) (VP (TO to) (VP (VB produce) (NP (PRP$ his) (NN birth) (NN certificate)))))))))))) (. .)))"
HOLT Secretary Clinton? 2 3 2 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton)))
CLINTON "Well, just listen to what you heard." 7 19 9 5 6 "(ROOT (S (INTJ (UH Well)) (, ,) (ADVP (RB just)) (VP (VBP listen) (PP (TO to) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBD heard)))))) (. .)))"
CLINTON "And clearly, as Donald just admitted, he knew he was going to stand on this debate stage, and Lester Holt was going to be asking us questions, so he tried to put the whole racist birther lie to bed." 39 84 44 21 13 "(ROOT (S (CC And) (ADVP (RB clearly)) (, ,) (S (S (SBAR (IN as) (S (NP (NNP Donald)) (ADVP (RB just)) (VP (VBD admitted)))) (, ,) (NP (PRP he)) (VP (VBD knew) (SBAR (S (NP (PRP he)) (VP (VBD was) (VP (VBG going) (S (VP (TO to) (VP (VB stand) (PP (IN on) (NP (DT this) (NN debate) (NN stage)))))))))))) (, ,) (CC and) (S (NP (NNP Lester) (NNP Holt)) (VP (VBD was) (VP (VBG going) (S (VP (TO to) (VP (VB be) (VP (VBG asking) (NP (PRP us)) (NP (NNS questions)))))))))) (, ,) (IN so) (S (NP (PRP he)) (VP (VBD tried) (S (VP (TO to) (VP (VB put) (NP (DT the) (JJ whole) (JJ racist) (NN birther) (NN lie)) (PP (TO to) (NP (NN bed)))))))) (. .)))"
CLINTON But it can't be dismissed that easily. 7 17 9 4 7 (ROOT (S (CC But) (NP (PRP it)) (VP (MD ca) (RB n't) (VP (VB be) (VP (VBN dismissed) (SBAR (IN that) (FRAG (ADVP (RB easily))))))) (. .)))
CLINTON He has really started his political activity based on this racist lie that our first black president was not an American citizen. 22 38 23 13 10 (ROOT (S (NP (PRP He)) (VP (VBZ has) (ADVP (RB really)) (VP (VBN started) (NP (PRP$ his) (JJ political) (NN activity)) (PP (VBN based) (PP (IN on) (NP (NP (DT this) (JJ racist) (NN lie)) (SBAR (IN that) (S (NP (PRP$ our) (JJ first) (JJ black) (NN president)) (VP (VBD was) (RB not) (NP (DT an) (JJ American) (NN citizen)))))))))) (. .)))
CLINTON "There was absolutely no evidence for it, but he persisted, he persisted year after year, because some of his supporters, people that he was trying to bring into his fold, apparently believed it or wanted to believe it." 38 90 44 17 15 "(ROOT (S (S (S (NP (EX There)) (VP (VBD was) (ADVP (RB absolutely)) (NP (NP (DT no) (NN evidence)) (PP (IN for) (NP (PRP it)))))) (, ,) (CC but) (S (NP (PRP he)) (VP (VBD persisted)))) (, ,) (NP (PRP he)) (VP (VBD persisted) (NP (NN year)) (PP (IN after) (NP (NN year))) (, ,) (SBAR (IN because) (S (NP (NP (NP (DT some)) (PP (IN of) (NP (PRP$ his) (NNS supporters)))) (, ,) (NP (NP (NNS people)) (SBAR (IN that) (S (NP (PRP he)) (VP (VBD was) (VP (VBG trying) (S (VP (TO to) (VP (VB bring) (PP (IN into) (NP (PRP$ his) (NN fold))))))))))) (, ,)) (VP (VP (ADVP (RB apparently)) (VBD believed) (NP (PRP it))) (CC or) (VP (VBD wanted) (S (VP (TO to) (VP (VB believe) (NP (PRP it)))))))))) (. .)))"
CLINTON "But, remember, Donald started his career back in 1973 being sued by the Justice Department for racial discrimination because he would not rent apartments in one of his developments to African-Americans, and he made sure that the people who worked for him understood that was the policy." 47 101 51 21 14 "(ROOT (S (S (CC But) (, ,) (S (VP (VB remember))) (, ,) (NP (NNP Donald)) (VP (VBD started) (NP (PRP$ his) (NN career)) (ADVP (RB back)) (PP (IN in) (NP (NP (CD 1973)) (VP (VBG being) (VP (VBN sued) (PP (IN by) (NP (NP (DT the) (NNP Justice) (NNP Department)) (PP (IN for) (NP (JJ racial) (NN discrimination))))) (SBAR (IN because) (S (NP (PRP he)) (VP (MD would) (RB not) (VP (VB rent) (NP (NP (NNS apartments)) (PP (IN in) (NP (CD one))) (PP (IN of) (NP (PRP$ his) (NNS developments)))) (PP (TO to) (NP (NNPS African-Americans))))))))))))) (, ,) (CC and) (S (NP (PRP he)) (VP (VBD made) (ADJP (JJ sure)) (SBAR (IN that) (S (NP (NP (DT the) (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBD worked) (PP (IN for) (NP (PRP him))))))) (VP (VBD understood) (SBAR (IN that) (S (VP (VBD was) (NP (DT the) (NN policy)))))))))) (. .)))"
CLINTON He actually was sued twice by the Justice Department. 9 18 10 5 5 (ROOT (S (NP (PRP He)) (ADVP (RB actually)) (VP (VBD was) (VP (VBN sued) (ADVP (RB twice)) (PP (IN by) (NP (DT the) (NNP Justice) (NNP Department))))) (. .)))
CLINTON So he has a long record of engaging in racist behavior. 11 22 12 6 8 (ROOT (S (IN So) (NP (PRP he)) (VP (VBZ has) (NP (NP (DT a) (JJ long) (NN record)) (PP (IN of) (S (VP (VBG engaging) (PP (IN in) (NP (JJ racist) (NN behavior)))))))) (. .)))
CLINTON And the birther lie was a very hurtful one. 9 15 10 3 4 (ROOT (S (CC And) (NP (DT the) (NN birther) (NN lie)) (VP (VBD was) (NP (DT a) (ADJP (RB very) (JJ hurtful)) (NN one))) (. .)))
CLINTON "You know, Barack Obama is a man of great dignity." 10 22 12 4 5 "(ROOT (S (S (NP (PRP You)) (VP (VBP know))) (, ,) (NP (NNP Barack) (NNP Obama)) (VP (VBZ is) (NP (NP (DT a) (NN man)) (PP (IN of) (NP (JJ great) (NN dignity))))) (. .)))"
CLINTON And I could tell how much it bothered him and annoyed him that this was being touted and used against him. 21 43 22 9 14 (ROOT (S (CC And) (NP (PRP I)) (VP (MD could) (VP (VB tell) (SBAR (WHADJP (WRB how) (JJ much)) (S (NP (PRP it)) (VP (VP (VBD bothered) (NP (PRP him))) (CC and) (VP (VBD annoyed) (NP (PRP him)) (SBAR (IN that) (S (NP (DT this)) (VP (VBD was) (VP (VBG being) (VP (VBN touted) (CC and) (VBN used) (PP (IN against) (NP (PRP him)))))))))))))) (. .)))
CLINTON "But I like to remember what Michelle Obama said in her amazing speech at our Democratic National Convention: When they go low, we go high." 25 54 28 12 11 "(ROOT (S (S (CC But) (NP (PRP I)) (VP (VBP like) (S (VP (TO to) (VP (VB remember) (SBAR (WHNP (WP what)) (S (NP (NNP Michelle) (NNP Obama)) (VP (VBD said) (PP (IN in) (NP (PRP$ her) (JJ amazing) (NN speech))) (PP (IN at) (NP (PRP$ our) (JJ Democratic) (NNP National) (NNP Convention))))))))))) (: :) (S (SBAR (WHADVP (WRB When)) (S (NP (PRP they)) (VP (VBP go) (ADJP (JJ low))))) (, ,) (NP (PRP we)) (VP (VBP go) (ADJP (JJ high)))) (. .)))"
CLINTON "And Barack Obama went high, despite Donald Trump's best efforts to bring him down." 14 29 17 6 6 "(ROOT (S (CC And) (NP (NNP Barack) (NNP Obama)) (VP (VBD went) (ADVP (JJ high)) (, ,) (PP (IN despite) (NP (NP (NNP Donald) (NNP Trump) (POS 's)) (JJS best) (NNS efforts))) (S (VP (TO to) (VP (VB bring) (NP (PRP him)) (PRT (RP down)))))) (. .)))"
HOLT "Mr. Trump, you can respond and we're going to move on to the next segment." 15 34 18 8 9 "(ROOT (S (S (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP you)) (VP (MD can) (VP (VB respond)))) (CC and) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB move) (PRT (RP on)) (PP (TO to) (NP (DT the) (JJ next) (NN segment))))))))) (. .)))"
TRUMP I would love to respond. 5 13 6 3 6 (ROOT (S (NP (PRP I)) (VP (MD would) (VP (VB love) (S (VP (TO to) (VP (VB respond)))))) (. .)))
TRUMP "First of all, I got to watch in preparing for this some of your debates against Barack Obama." 18 41 20 10 13 "(ROOT (S (LST (JJ First)) (PP (IN of) (NP (DT all))) (, ,) (NP (PRP I)) (VP (VBD got) (S (VP (TO to) (VP (VB watch) (PP (IN in) (S (VP (VBG preparing) (PP (IN for) (NP (DT this))) (NP (NP (DT some)) (PP (IN of) (NP (NP (PRP$ your) (NNS debates)) (PP (IN against) (NP (NNP Barack) (NNP Obama))))))))))))) (. .)))"
TRUMP You treated him with terrible disrespect. 6 13 7 3 4 (ROOT (S (NP (PRP You)) (VP (VBD treated) (NP (PRP him)) (PP (IN with) (NP (JJ terrible) (NN disrespect)))) (. .)))
TRUMP And I watched the way you talk now about how lovely everything is and how wonderful you are. 18 40 19 8 10 (ROOT (S (CC And) (NP (PRP I)) (VP (VBD watched) (NP (DT the) (NN way)) (SBAR (SBAR (S (NP (PRP you)) (VP (VBP talk) (ADVP (RB now)) (PP (IN about) (SBAR (WHADVP (WRB how)) (S (NP (JJ lovely) (NN everything)) (VP (VBZ is)))))))) (CC and) (SBAR (WHADJP (WRB how) (JJ wonderful)) (S (NP (PRP you)) (VP (VBP are)))))) (. .)))
TRUMP It doesn't work that way. 5 12 7 3 4 (ROOT (S (NP (PRP It)) (VP (VBZ does) (RB n't) (VP (VB work) (NP (DT that) (NN way)))) (. .)))
TRUMP "You were after him, you were trying to — you even sent out or your campaign sent out pictures of him in a certain garb, very famous pictures." 28 61 31 14 7 "(ROOT (S (S (NP (PRP You)) (VP (VBD were) (PP (IN after) (NP (PRP him))))) (, ,) (S (S (NP (PRP you)) (VP (VBD were) (VP (VBG trying) (PP (TO to))))) (: --) (S (NP (PRP you)) (ADVP (RB even)) (VP (VBD sent) (PRT (RP out))))) (CC or) (S (NP (PRP$ your) (NN campaign)) (VP (VBD sent) (PRT (RP out)) (NP (NP (NNS pictures)) (PP (IN of) (NP (PRP him)))) (PP (IN in) (NP (NP (DT a) (JJ certain) (NN garb)) (, ,) (NP (ADJP (RB very) (JJ famous)) (NNS pictures)))))) (. .)))"
TRUMP I don't think you can deny that. 7 19 9 4 8 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB think) (SBAR (S (NP (PRP you)) (VP (MD can) (VP (VB deny) (NP (DT that)))))))) (. .)))
TRUMP "But just last week, your campaign manager said it was true." 11 22 13 5 6 "(ROOT (S (CC But) (NP (RB just) (JJ last) (NN week)) (, ,) (NP (PRP$ your) (NN campaign) (NN manager)) (VP (VBD said) (SBAR (S (NP (PRP it)) (VP (VBD was) (ADJP (JJ true)))))) (. .)))"
TRUMP "So when you tried to act holier than thou, it really doesn't work." 13 32 16 8 9 "(ROOT (S (IN So) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBD tried) (S (VP (TO to) (VP (VB act) (NP (NN holier)) (PP (IN than) (NP (PRP thou))))))))) (, ,) (NP (PRP it)) (ADVP (RB really)) (VP (VBZ does) (RB n't) (VP (VB work))) (. .)))"
TRUMP It really doesn't. 3 9 5 3 2 (ROOT (S (NP (PRP It)) (ADVP (RB really)) (VP (VBZ does) (RB n't)) (. .)))
TRUMP "Now, as far as the lawsuit, yes, when I was very young, I went into my father's company, had a real estate company in Brooklyn and Queens, and we, along with many, many other companies throughout the country — it was a federal lawsuit — were sued." 47 99 57 21 10 "(ROOT (S (S (ADVP (RB Now)) (, ,) (ADVP (RB as) (RB far) (SBAR (IN as) (S (NP (DT the) (NN lawsuit)) (, ,) (NP (NP (RB yes)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD was) (ADJP (RB very) (JJ young))))) (, ,)) (NP (PRP I)) (VP (VBD went) (PP (IN into) (NP (NP (PRP$ my) (NN father) (POS 's)) (NN company))))))) (, ,) (VP (VBD had) (NP (NP (DT a) (JJ real) (NN estate) (NN company)) (PP (IN in) (NP (NNP Brooklyn) (CC and) (NNP Queens)))))) (, ,) (CC and) (S (NP (PRP we)) (, ,) (ADVP (IN along) (PP (IN with) (ADJP (JJ many)))) (, ,) (NP (NP (NP (JJ many) (JJ other) (NNS companies)) (PP (IN throughout) (NP (DT the) (NN country)))) (PRN (: --) (S (NP (PRP it)) (VP (VBD was) (NP (DT a) (JJ federal) (NN lawsuit)))) (: --))) (VP (VBD were) (VP (VBN sued)))) (. .)))"
TRUMP We settled the suit with zero — with no admission of guilt. 12 26 13 5 8 (ROOT (S (NP (PRP We)) (VP (VBD settled) (NP (NP (DT the) (NN suit)) (PP (PP (IN with) (NP (CD zero))) (: --) (PP (IN with) (NP (NP (DT no) (NN admission)) (PP (IN of) (NP (NN guilt)))))))) (. .)))
TRUMP It was very easy to do. 6 14 7 5 6 (ROOT (S (NP (PRP It)) (VP (VBD was) (ADJP (RB very) (JJ easy) (S (VP (TO to) (VP (VB do)))))) (. .)))
TRUMP I notice you bring that up a lot. 8 18 9 4 6 (ROOT (S (NP (PRP I)) (VP (VBP notice) (S (NP (PRP you)) (VP (VB bring) (NP (DT that)) (ADVP (RB up) (NP (DT a) (RB lot)))))) (. .)))
TRUMP "And, you know, I also notice the very nasty commercials that you do on me in so many different ways, which I don't do on you." 26 59 31 14 13 "(ROOT (S (CC And) (PRN (, ,) (S (NP (PRP you)) (VP (VBP know))) (, ,)) (NP (PRP I)) (ADVP (RB also)) (VP (VBP notice) (NP (DT the) (ADJP (RB very) (JJ nasty)) (NNS commercials)) (SBAR (IN that) (S (NP (PRP you)) (VP (VBP do) (PRT (RP on)) (NP (PRP me)) (PP (IN in) (NP (NP (ADJP (RB so) (JJ many)) (JJ different) (NNS ways)) (, ,) (SBAR (WHNP (WDT which)) (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB do) (PP (IN on) (NP (PRP you))))))))))))) (. .)))"
TRUMP Maybe I'm trying to save the money. 7 18 9 5 7 (ROOT (S (ADVP (RB Maybe)) (NP (PRP I)) (VP (VBP 'm) (VP (VBG trying) (S (VP (TO to) (VP (VB save) (NP (DT the) (NN money))))))) (. .)))
TRUMP "But, frankly, I look — I look at that, and I say, isn't that amazing?" 15 38 20 9 7 "(ROOT (S (CC But) (SBAR (PRN (, ,) (ADVP (RB frankly)) (, ,)) (S (S (NP (PRP I)) (VP (VBP look))) (: --) (S (NP (PRP I)) (VP (VBP look) (PP (IN at) (NP (DT that))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP say))))) (, ,) (VP (VBZ is) (RB n't) (ADJP (RB that) (JJ amazing)))))"
TRUMP "Because I settled that lawsuit with no admission of guilt, but that was a lawsuit brought against many real estate firms, and it's just one of those things." 28 58 32 11 8 "(ROOT (S (SBAR (IN Because) (S (NP (PRP I)) (VP (VBD settled) (NP (DT that) (NN lawsuit)) (PP (IN with) (NP (NP (DT no) (NN admission)) (PP (IN of) (NP (NN guilt)))))))) (, ,) (S (CC but) (NP (DT that)) (VP (VBD was) (NP (NP (DT a) (NN lawsuit)) (VP (VBN brought) (PP (IN against) (NP (JJ many) (JJ real) (NN estate) (NNS firms))))))) (, ,) (CC and) (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (RB just) (CD one)) (PP (IN of) (NP (DT those) (NNS things)))))) (. .)))"
TRUMP I'll go one step further. 5 13 7 2 4 (ROOT (S (NP (PRP I)) (VP (MD 'll) (VP (VB go) (NP (CD one) (NN step)) (ADVP (RBR further)))) (. .)))
TRUMP "In Palm Beach, Florida, tough community, a brilliant community, a wealthy community, probably the wealthiest community there is in the world, I opened a club, and really got great credit for it." 32 64 40 13 5 "(ROOT (S (S (PP (IN In) (NP (NP (NNP Palm) (NNP Beach)) (, ,) (NP (NNP Florida)) (, ,) (NP (JJ tough) (NN community)) (, ,) (NP (DT a) (JJ brilliant) (NN community)) (, ,) (NP (DT a) (JJ wealthy) (NN community)) (, ,) (ADVP (RB probably)) (NP (DT the) (JJS wealthiest) (NN community)))) (NP (EX there)) (VP (VBZ is) (PP (IN in) (NP (DT the) (NN world))))) (, ,) (NP (PRP I)) (VP (VP (VBD opened) (NP (DT a) (NN club))) (, ,) (CC and) (VP (ADVP (RB really)) (VBD got) (NP (JJ great) (NN credit)) (PP (IN for) (NP (PRP it))))) (. .)))"
TRUMP "No discrimination against African- Americans, against Muslims, against anybody." 9 24 13 3 4 "(ROOT (NP (NP (NP (DT No) (NN discrimination)) (PP (IN against) (NP (NNP African)))) (: -) (NP (NP (NNS Americans)) (, ,) (PP (IN against) (NP (NNPS Muslims)))) (, ,) (PP (IN against) (NP (NN anybody))) (. .)))"
TRUMP And it's a tremendously successful club. 6 13 8 3 4 (ROOT (S (CC And) (NP (PRP it)) (VP (VBZ 's) (NP (DT a) (ADJP (RB tremendously) (JJ successful)) (NN club))) (. .)))
TRUMP And I'm so glad I did it. 7 18 9 4 7 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP 'm) (ADJP (RB so) (JJ glad) (SBAR (S (NP (PRP I)) (VP (VBD did) (NP (PRP it))))))) (. .)))
TRUMP And I have been given great credit for what I did. 11 24 12 6 8 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP have) (VP (VBN been) (VP (VBN given) (NP (JJ great) (NN credit)) (PP (IN for) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (VBD did)))))))) (. .)))
TRUMP "And I'm very, very proud of it." 7 16 10 5 4 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP 'm) (ADJP (RB very) (, ,) (RB very) (JJ proud)) (PP (IN of) (NP (PRP it)))) (. .)))"
TRUMP And that's the way I feel. 6 17 8 2 6 (ROOT (S (CC And) (NP (DT that)) (VP (VBZ 's) (NP (NP (DT the) (NN way)) (SBAR (S (NP (PRP I)) (VP (VBP feel)))))) (. .)))
TRUMP That is the true way I feel. 7 17 8 3 6 (ROOT (S (NP (DT That)) (VP (VBZ is) (NP (NP (DT the) (JJ true) (NN way)) (SBAR (S (NP (PRP I)) (VP (VBP feel)))))) (. .)))
HOLT "Our next segment is called ""Securing America""." 7 16 10 3 5 (ROOT (S (NP (PRP$ Our) (JJ next) (NN segment)) (VP (VBZ is) (VP (VBN called) (S (`` ``) (NP (NNP Securing) (NNP America)) ('' '')))) (. .)))
HOLT We want to start with a 21st century war happening every day in this country. 15 30 16 7 11 (ROOT (S (NP (PRP We)) (VP (VBP want) (S (VP (TO to) (VP (VB start) (PP (IN with) (NP (NP (DT a) (JJ 21st) (NN century) (NN war)) (VP (VBG happening) (NP (NP (DT every) (NN day)) (PP (IN in) (NP (DT this) (NN country))))))))))) (. .)))
HOLT "Our institutions are under cyber attack, and our secrets are being stolen." 12 25 14 5 5 "(ROOT (S (S (NP (PRP$ Our) (NNS institutions)) (VP (VBP are) (PP (IN under) (NP (NN cyber) (NN attack))))) (, ,) (CC and) (S (NP (PRP$ our) (NNS secrets)) (VP (VBP are) (VP (VBG being) (VP (VBN stolen))))) (. .)))"
HOLT "So my question is, who's behind it?" 7 18 9 3 5 "(ROOT (SBARQ (S (CC So) (NP (PRP$ my) (NN question)) (VP (VBZ is))) (, ,) (WHNP (WP who)) (SQ (VP (VBZ 's) (PP (IN behind) (NP (PRP it)))))))"
HOLT And how do we fight it? 6 15 6 2 7 (ROOT (FRAG (CC And) (S (VP (ADVP (WRB how)) (VBP do) (SBAR (S (NP (PRP we)) (VP (VB fight) (NP (PRP it)))))))))
HOLT "Secretary Clinton, this answer goes to you." 7 16 9 3 4 "(ROOT (S (NP (NP (NNP Secretary) (NNP Clinton)) (, ,) (NP (DT this) (NN answer))) (VP (VBZ goes) (PP (TO to) (NP (PRP you)))) (. .)))"
CLINTON "Well, I think cyber security, cyber warfare will be one of the biggest challenges facing the next president, because clearly we're facing at this point two different kinds of adversaries." 30 64 35 12 11 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP think) (NP (NN cyber) (NN security)) (PRN (, ,) (S (NP (NN cyber) (NN warfare)) (VP (MD will) (VP (VB be) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (JJS biggest) (NNS challenges)) (VP (VBG facing) (NP (DT the) (JJ next) (NN president))))))))) (, ,)) (SBAR (IN because) (S (ADVP (RB clearly)) (NP (PRP we)) (VP (VBP 're) (VP (VBG facing) (PP (IN at) (NP (DT this) (NN point))) (NP (NP (CD two) (JJ different) (NNS kinds)) (PP (IN of) (NP (NNS adversaries))))))))) (. .)))"
CLINTON There are the independent hacking groups that do it mostly for commercial reasons to try to steal information that they can use to make money. 25 54 26 13 20 (ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (DT the) (JJ independent) (NN hacking) (NNS groups)) (SBAR (WHNP (WDT that)) (S (VP (VBP do) (NP (PRP it)) (PP (RB mostly) (IN for) (NP (JJ commercial) (NNS reasons))) (S (VP (TO to) (VP (VB try) (S (VP (TO to) (VP (VB steal) (NP (NN information)) (SBAR (IN that) (S (NP (PRP they)) (VP (MD can) (VP (VB use) (S (VP (TO to) (VP (VB make) (NP (NN money)))))))))))))))))))) (. .)))
CLINTON "But increasingly, we are seeing cyber attacks coming from states, organs of states." 13 31 16 6 10 "(ROOT (S (CC But) (ADVP (RB increasingly)) (, ,) (NP (PRP we)) (VP (VBP are) (VP (VBG seeing) (NP (NN cyber) (NNS attacks)) (S (VP (VBG coming) (PP (IN from) (NP (NP (NNS states)) (, ,) (NP (NP (NNS organs)) (PP (IN of) (NP (NNS states)))))))))) (. .)))"
CLINTON The most recent and troubling of these has been Russia. 10 20 11 6 4 (ROOT (S (NP (NP (DT The) (ADJP (RBS most) (JJ recent) (CC and) (JJ troubling))) (PP (IN of) (NP (DT these)))) (VP (VBZ has) (VP (VBN been) (NP (NNP Russia)))) (. .)))
CLINTON "There's no doubt now that Russia has used cyber attacks against all kinds of organizations in our country, and I am deeply concerned about this." 25 54 28 11 14 "(ROOT (S (S (NP (EX There)) (VP (VBZ 's) (ADVP (DT no) (NN doubt) (SBAR (ADVP (RB now)) (IN that) (S (NP (NNP Russia)) (VP (VBZ has) (VP (VBN used) (NP (NN cyber) (NNS attacks)) (PP (IN against) (NP (NP (DT all) (NNS kinds)) (PP (IN of) (NP (NP (NNS organizations)) (PP (IN in) (NP (PRP$ our) (NN country)))))))))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP am) (ADJP (RB deeply) (VBN concerned) (PP (IN about) (NP (DT this)))))) (. .)))"
CLINTON "I know Donald's very praiseworthy of Vladimir Putin, but Putin is playing a really." 14 31 17 6 6 "(ROOT (S (S (NP (PRP I)) (VP (VBP know) (NP (NP (NP (NNP Donald) (POS 's)) (JJ very) (NN praiseworthy)) (PP (IN of) (NP (NNP Vladimir) (NNP Putin)))))) (, ,) (CC but) (S (NP (NNP Putin)) (VP (VBZ is) (VP (VBG playing) (NP (DT a) (RB really))))) (. .)))"
CLINTON "tough, long game here." 4 9 6 3 2 "(ROOT (NP (NP (JJ tough) (, ,) (JJ long) (NN game)) (NP (RB here)) (. .)))"
CLINTON "And one of the things he's done is to let loose cyber attackers to hack into government files, to hack into personal files, hack into the Democratic National Committee." 29 63 33 16 14 "(ROOT (S (CC And) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NNS things)) (SBAR (S (NP (PRP he)) (VP (VBZ 's) (VP (VBN done)))))))) (VP (VBZ is) (S (VP (TO to) (VP (VB let) (NP (JJ loose) (NN cyber) (NNS attackers)) (S (VP (TO to) (VP (VB hack) (PP (IN into) (NP (NN government) (NNS files))) (, ,) (S (VP (TO to) (VP (VB hack) (PP (IN into) (NP (NP (JJ personal) (NNS files)) (, ,) (NP (NN hack)))) (PP (IN into) (NP (DT the) (JJ Democratic) (NNP National) (NNP Committee))))))))))))) (. .)))"
CLINTON "And we recently have learned that, you know, that this is one of their preferred methods of trying to wreak havoc and collect information." 24 54 27 12 15 "(ROOT (S (CC And) (NP (PRP we)) (ADVP (RB recently)) (VP (VBP have) (VP (VBN learned) (SBAR (IN that) (, ,) (S (NP (PRP you)) (VP (VBP know)))) (, ,) (SBAR (IN that) (S (NP (DT this)) (VP (VBZ is) (NP (NP (CD one)) (PP (IN of) (NP (PRP$ their) (JJ preferred) (NNS methods))) (PP (IN of) (S (VP (VBG trying) (S (VP (TO to) (VP (VP (VB wreak) (NP (NN havoc))) (CC and) (VP (VB collect) (NP (NN information))))))))))))))) (. .)))"
CLINTON "We need to make it very clear — whether it's Russia, China, Iran or anybody else — the United States has much greater capacity." 24 52 28 10 11 "(ROOT (S (S (NP (PRP We)) (VP (VBP need) (S (VP (TO to) (VP (VB make) (S (NP (PRP it)) (ADJP (RB very) (JJ clear))) (: --) (SBAR (IN whether) (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (NNP Russia)) (, ,) (NP (NNP China)) (, ,) (NP (NNP Iran)) (CC or) (NP (NN anybody) (RB else))))))))))) (: --) (S (NP (DT the) (NNP United) (NNPS States)) (VP (VBZ has) (NP (ADJP (RB much) (JJR greater)) (NN capacity)))) (. .)))"
CLINTON "And we are not going to sit idly by and permit state actors to go after our information, our private-sector information or our public-sector information." 25 47 27 13 13 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP are) (RB not) (VP (VBG going) (S (VP (TO to) (VP (VP (VB sit) (ADVP (RB idly)) (PP (IN by))) (CC and) (VP (VB permit) (NP (NN state) (NNS actors)) (S (VP (TO to) (VP (VB go) (PP (IN after) (NP (NP (PRP$ our) (NN information)) (, ,) (NP (PRP$ our) (JJ private-sector) (NN information)) (CC or) (NP (PRP$ our) (JJ public-sector) (NN information))))))))))))) (. .)))"
CLINTON And we're going to have to make it clear that we don't want to use the kinds of tools that we have. 22 54 25 14 16 (ROOT (S (CC And) (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB have) (S (VP (TO to) (VP (VB make) (S (NP (PRP it)) (ADJP (JJ clear)))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB want) (S (VP (TO to) (VP (VB use) (NP (NP (DT the) (NNS kinds)) (PP (IN of) (NP (NNS tools))))))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP have))))))))))))) (. .)))
CLINTON We don't want to engage in a different kind of warfare. 11 25 13 8 10 (ROOT (S (NP (PRP We)) (VP (VBP do) (RB n't) (VP (VB want) (S (VP (TO to) (VP (VB engage) (PP (IN in) (NP (NP (DT a) (JJ different) (NN kind)) (PP (IN of) (NP (NN warfare)))))))))) (. .)))
CLINTON But we will defend the citizens of this country. 9 18 10 2 6 (ROOT (S (CC But) (NP (PRP we)) (VP (MD will) (VP (VB defend) (NP (NP (DT the) (NNS citizens)) (PP (IN of) (NP (DT this) (NN country)))))) (. .)))
CLINTON And the Russians need to understand that. 7 15 8 3 6 (ROOT (S (CC And) (NP (DT the) (NNPS Russians)) (VP (VBP need) (S (VP (TO to) (VP (VB understand) (NP (DT that)))))) (. .)))
CLINTON "I think they've been treating it as almost a probing, how far would we go, how much would we do." 20 48 24 11 16 "(ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP they)) (VP (VBP 've) (VP (VBN been) (VP (VBG treating) (NP (PRP it)) (PP (IN as) (NP (NP (RB almost) (DT a)) (VP (VBD probing) (, ,) (SBARQ (WHADVP (WRB how) (RB far)) (SQ (MD would) (NP (PRP we)) (VP (VB go) (, ,) (SBARQ (WHADJP (WRB how) (JJ much)) (SQ (MD would) (NP (PRP we)) (VP (VB do)))))))))))))))) (. .)))"
CLINTON And that's why I was so — I was so shocked when Donald publicly invited Putin to hack into Americans. 20 48 22 11 11 (ROOT (S (S (CC And) (NP (DT that)) (VP (VBZ 's) (SBAR (WHADVP (WRB why)) (S (NP (PRP I)) (VP (VBD was) (ADVP (RB so))))))) (: --) (S (NP (PRP I)) (VP (VBD was) (ADJP (RB so) (JJ shocked)) (SBAR (WHADVP (WRB when)) (S (NP (NNP Donald)) (ADVP (RB publicly)) (VP (VBD invited) (S (NP (NNP Putin)) (VP (TO to) (VP (VB hack) (PP (IN into) (NP (NNPS Americans))))))))))) (. .)))
CLINTON That is just unacceptable. 4 9 5 3 3 (ROOT (S (NP (DT That)) (VP (VBZ is) (ADJP (RB just) (JJ unacceptable))) (. .)))
CLINTON It's one of the reasons why 50 national security officials who served in Republican information — in administrations. 18 39 20 8 12 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (NP (CD one)) (PP (IN of) (NP (NP (DT the) (NNS reasons)) (VP (VBG why) (NP (NP (CD 50) (JJ national) (NN security) (NNS officials)) (SBAR (WHNP (WP who)) (S (VP (VBN served) (PP (IN in) (NP (JJ Republican) (NN information)))))) (: --) (PP (IN in) (NP (NNS administrations))))))))) (. .)))
HOLT Your two minutes have expired. 5 10 6 2 3 (ROOT (S (NP (PRP$ Your) (CD two) (NNS minutes)) (VP (VBP have) (VP (VBN expired))) (. .)))
CLINTON have said that Donald is unfit to be the commander- in-chief. 11 25 13 7 11 (ROOT (S (VP (VB have) (VP (VBD said) (SBAR (IN that) (S (NP (NNP Donald)) (VP (VBZ is) (ADJP (JJ unfit) (S (VP (TO to) (VP (VB be) (NP (DT the) (NN commander) (: -) (JJ in-chief))))))))))) (. .)))
CLINTON It's comments like that that really worry people who understand the threats that we face. 15 41 17 6 15 (ROOT (S (NP (PRP It)) (VP (VBZ 's) (NP (NP (NNS comments)) (PP (IN like) (NP (NP (DT that)) (SBAR (WHNP (WDT that)) (S (ADVP (RB really)) (VP (VBP worry) (NP (NP (NNS people)) (SBAR (WHNP (WP who)) (S (VP (VBP understand) (NP (DT the) (NNS threats)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP face))))))))))))))) (. .)))
HOLT "Mr. Trump, you have two minutes and the same question." 10 19 12 2 4 "(ROOT (S (NP (NNP Mr.) (NNP Trump)) (, ,) (NP (PRP you)) (VP (VBP have) (NP (NP (CD two) (NNS minutes)) (CC and) (NP (DT the) (JJ same) (NN question)))) (. .)))"
HOLT Who's behind it? 3 9 4 2 4 (ROOT (SBARQ (WHNP (WP Who)) (SQ (VBZ 's) (PP (IN behind) (NP (PRP it))))))
HOLT And how do we fight it? 6 15 6 2 7 (ROOT (FRAG (CC And) (S (VP (ADVP (WRB how)) (VBP do) (SBAR (S (NP (PRP we)) (VP (VB fight) (NP (PRP it)))))))))
TRUMP "I do want to say that I was just endorsed — and more are coming next week — it will be over 200 admirals, many of them here — admirals and generals endorsed me to lead this country." 38 82 40 19 14 "(ROOT (S (S (NP (PRP I)) (VP (VBP do) (SBAR (S (VP (VBP want) (S (VP (TO to) (VP (VB say) (SBAR (IN that) (S (NP (PRP I)) (VP (VBD was) (VP (ADVP (RB just)) (VBN endorsed))))))))))))) (: --) (S (NP (QP (CC and) (JJR more))) (VP (VBP are) (VP (VBG coming) (NP (JJ next) (NN week))))) (: --) (S (NP (PRP it)) (VP (MD will) (VP (VB be) (PP (IN over) (NP (NP (CD 200) (NNS admirals)) (, ,) (NP (NP (JJ many)) (PP (IN of) (NP (PRP them)))))) (ADVP (RB here))))) (: --) (S (NP (NNS admirals) (CC and) (NNS generals)) (VP (VBD endorsed) (S (NP (PRP me)) (VP (TO to) (VP (VB lead) (NP (DT this) (NN country))))))) (. .)))"
TRUMP "That just happened, and many more are coming." 8 19 10 6 4 "(ROOT (S (S (NP (DT That)) (ADVP (RB just)) (VP (VBD happened))) (, ,) (CC and) (S (NP (RB many) (RBR more)) (VP (VBP are) (VP (VBG coming)))) (. .)))"
TRUMP And I'm very proud of it. 6 14 8 4 5 (ROOT (S (CC And) (NP (PRP I)) (VP (VBP 'm) (ADJP (RB very) (JJ proud) (PP (IN of) (NP (PRP it))))) (. .)))
TRUMP "In addition, I was just endorsed by ICE." 8 19 10 5 5 "(ROOT (S (PP (IN In) (NP (NN addition))) (, ,) (NP (PRP I)) (VP (VBD was) (ADVP (RB just)) (VP (VBN endorsed) (PP (IN by) (NP (NNP ICE))))) (. .)))"
TRUMP They've never endorsed anybody before on immigration. 7 18 9 5 6 (ROOT (S (NP (PRP They)) (VP (VBP 've) (ADVP (RB never)) (VP (VBN endorsed) (NP (NN anybody)) (PP (IN before) (PP (IN on) (NP (NN immigration)))))) (. .)))
TRUMP I was just endorsed by ICE. 6 14 7 4 5 (ROOT (S (NP (PRP I)) (VP (VBD was) (ADVP (RB just)) (VP (VBN endorsed) (PP (IN by) (NP (NNP ICE))))) (. .)))
TRUMP "I was just recently endorsed — 16,500 Border Patrol agents." 10 22 11 5 5 "(ROOT (S (S (NP (PRP I)) (VP (VBD was) (ADVP (RB just)) (VP (ADVP (RB recently)) (VBN endorsed)))) (: --) (S (NP (NNP 16,500) (NNP Border)) (VP (VBZ Patrol) (NP (NNS agents)))) (. .)))"
TRUMP "So when Secretary Clinton talks about this, I mean, I'll take the admirals and I'll take the generals any day over the political hacks that I see that have led our country so brilliantly over the last 10 years with their knowledge." 42 87 47 15 14 "(ROOT (S (IN So) (SBAR (WHADVP (WRB when)) (S (NP (NNP Secretary) (NNP Clinton)) (VP (VBZ talks) (PP (IN about) (NP (DT this)))))) (, ,) (S (NP (PRP I)) (VP (VBP mean))) (, ,) (S (NP (PRP I)) (VP (MD 'll) (VP (VB take) (NP (DT the) (NNS admirals))))) (CC and) (S (NP (PRP I)) (VP (MD 'll) (VP (VB take) (NP (NP (DT the) (NNS generals)) (NP (DT any) (NN day))) (PP (IN over) (NP (DT the) (JJ political) (NNS hacks))) (SBAR (IN that) (S (NP (PRP I)) (VP (VBP see) (SBAR (IN that) (S (VP (VBP have) (VP (VBN led) (NP (PRP$ our) (NN country)) (ADVP (ADVP (RB so) (RB brilliantly)) (PP (IN over) (NP (DT the) (JJ last) (CD 10) (NNS years)))) (PP (IN with) (NP (PRP$ their) (NN knowledge))))))))))))) (. .)))"
TRUMP OK? 1 2 1 0 1 (ROOT (INTJ (UH OK)))
TRUMP Because look at the mess that we're in. 8 20 10 5 5 (ROOT (SINV (PP (IN Because)) (VP (VBP look) (PP (IN at) (NP (DT the) (NN mess)))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 're) (PP (IN in))))) (. .)))
TRUMP Look at the mess that we're in. 7 18 9 4 6 (ROOT (S (VP (VB Look) (PP (IN at) (NP (DT the) (NN mess))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP 're) (PP (IN in)))))) (. .)))
TRUMP "As far as the cyber, I agree to parts of what Secretary Clinton said." 14 32 16 8 8 "(ROOT (S (PP (IN As) (ADVP (RB far) (PP (IN as) (NP (DT the) (NN cyber))))) (, ,) (NP (PRP I)) (VP (VBP agree) (PP (TO to) (NP (NP (NNS parts)) (PP (IN of) (SBAR (WHNP (WP what)) (S (NP (NNP Secretary) (NNP Clinton)) (VP (VBD said)))))))) (. .)))"
TRUMP "We should be better than anybody else, and perhaps we're not." 11 26 14 7 6 "(ROOT (S (S (NP (PRP We)) (VP (MD should) (VP (VB be) (ADJP (JJR better)) (PP (IN than) (NP (NN anybody) (RB else)))))) (, ,) (CC and) (S (ADVP (RB perhaps)) (NP (PRP we)) (VP (VBP 're) (RB not))) (. .)))"
TRUMP I don't think anybody knows it was Russia that broke into the DNC. 13 35 15 7 15 (ROOT (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB think) (SBAR (S (NP (NN anybody)) (VP (VBZ knows) (SBAR (S (NP (PRP it)) (VP (VBD was) (NP (NP (NNP Russia)) (SBAR (WHNP (WDT that)) (S (VP (VBD broke) (PP (IN into) (NP (DT the) (NNP DNC))))))))))))))) (. .)))
TRUMP "She's saying Russia, Russia, Russia, but I don't — maybe it was." 12 34 18 6 7 "(ROOT (S (S (S (NP (PRP She)) (VP (VBZ 's) (VP (VBG saying) (NP (NP (NNP Russia)) (, ,) (NP (NNP Russia) (, ,) (NNP Russia)))))) (, ,) (CC but) (S (NP (PRP I)) (VP (VBP do) (RB n't)))) (: --) (S (ADVP (RB maybe)) (NP (PRP it)) (VP (VBD was))) (. .)))"
TRUMP "I mean, it could be Russia, but it could also be China." 12 31 15 4 6 "(ROOT (S (S (NP (PRP I)) (VP (VBP mean))) (PRN (, ,) (S (NP (PRP it)) (VP (MD could) (VP (VB be) (NP (NNP Russia))))) (, ,)) (CC but) (S (NP (PRP it)) (VP (MD could) (ADVP (RB also)) (VP (VB be) (NP (NNP China))))) (. .)))"
TRUMP It could also be lots of other people. 8 18 9 4 6 (ROOT (S (NP (PRP It)) (VP (MD could) (ADVP (RB also)) (VP (VB be) (NP (NP (NNS lots)) (PP (IN of) (NP (JJ other) (NNS people)))))) (. .)))
TRUMP "It also could be somebody sitting on their bed that weighs 400 pounds, OK?" 14 33 15 5 12 "(ROOT (FRAG (S (NP (PRP It)) (ADVP (RB also)) (VP (MD could) (VP (VB be) (NP (NP (NN somebody)) (VP (VBG sitting) (PP (IN on) (NP (NP (PRP$ their) (NN bed)) (SBAR (WHNP (WDT that)) (S (VP (VBZ weighs) (NP (CD 400) (NNS pounds))))))))) (, ,) (ADVP (UH OK)))))))"
TRUMP You don't know who broke in to DNC. 8 21 10 7 9 (ROOT (S (NP (PRP You)) (VP (VBP do) (RB n't) (VP (VB know) (SBAR (WHNP (WP who)) (S (VP (VBD broke) (PP (IN in) (PP (TO to) (NP (NNP DNC))))))))) (. .)))
TRUMP But what did we learn with DNC? 7 16 7 3 7 (ROOT (S (CC But) (NP (WDT what)) (VP (VBD did) (SBAR (S (NP (PRP we)) (VP (VBP learn) (PP (IN with) (NP (NNP DNC)))))))))
TRUMP "We learned that Bernie Sanders was taken advantage of by your people, by Debbie Wasserman Schultz." 16 33 18 6 10 "(ROOT (S (NP (PRP We)) (VP (VBD learned) (SBAR (IN that) (S (NP (NNP Bernie) (NNP Sanders)) (VP (VBD was) (VP (VBN taken) (NP (NP (NN advantage)) (PP (IN of) (PP (IN by) (NP (PRP$ your) (NNS people))))) (, ,) (PP (IN by) (NP (NNP Debbie) (NNP Wasserman) (NNP Schultz)))))))) (. .)))"
TRUMP Look what happened to her. 5 14 6 4 7 (ROOT (S (VP (VB Look) (SBAR (WHNP (WP what)) (S (VP (VBD happened) (PP (TO to) (NP (PRP her))))))) (. .)))
TRUMP But Bernie Sanders was taken advantage of. 7 15 8 3 5 (ROOT (S (CC But) (NP (NNP Bernie) (NNP Sanders)) (VP (VBD was) (VP (VBN taken) (NP (NP (NN advantage)) (PP (IN of))))) (. .)))
TRUMP That's what we learned. 4 14 6 2 5 (ROOT (S (NP (DT That)) (VP (VBZ 's) (SBAR (WHNP (WP what)) (S (NP (PRP we)) (VP (VBD learned))))) (. .)))
TRUMP "Now, whether that was Russia, whether that was China, whether it was another country, we don't know, because the truth is, under President Obama we've lost control of things that we used to have control over." 36 90 45 16 19 "(ROOT (S (ADVP (RB Now)) (, ,) (SBAR (IN whether) (S (NP (DT that)) (VP (VBD was) (NP (NNP Russia)) (, ,) (SBAR (IN whether) (S (NP (DT that)) (VP (VBD was) (NP (NNP China)) (, ,) (SBAR (IN whether) (S (NP (PRP it)) (VP (VBD was) (NP (DT another) (NN country))))))))))) (, ,) (NP (PRP we)) (VP (VBP do) (RB n't) (VP (VB know) (, ,) (SBAR (IN because) (S (NP (DT the) (NN truth)) (VP (VBZ is) (, ,) (PP (IN under) (NP (NNP President) (NNP Obama))) (SBAR (S (NP (PRP we)) (VP (VBP 've) (VP (VBN lost) (NP (NP (NN control)) (PP (IN of) (NP (NNS things)))) (SBAR (IN that) (S (NP (PRP we)) (VP (VBD used) (S (VP (TO to) (VP (VB have) (S (VP (VB control) (PRT (RP over))))))))))))))))))) (. .)))"
TRUMP "We came in with the Internet, we came up with the Internet, and I think Secretary Clinton and myself would agree very much, when you look at what ISIS is doing with the Internet, they're beating us at our own game." 41 92 47 18 18 "(ROOT (S (S (NP (PRP We)) (VP (VBD came) (SBAR (S (S (S (PP (IN in) (PP (IN with) (NP (DT the) (NN Internet)))) (, ,) (NP (PRP we)) (VP (VBD came) (PRT (RP up)) (PP (IN with) (NP (DT the) (NN Internet))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP think) (NP (NNP Secretary) (NNP Clinton))))) (CC and) (S (NP (PRP myself)) (VP (MD would) (VP (VB agree) (ADJP (RB very) (JJ much)) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP you)) (VP (VBP look) (PP (IN at) (SBAR (WHNP (WP what)) (S (NP (NNS ISIS)) (VP (VBZ is) (VP (VBG doing) (PP (IN with) (NP (DT the) (NN Internet)))))))))))))))))) (, ,) (NP (PRP they)) (VP (VBP 're) (VP (VBG beating) (NP (PRP us)) (PP (IN at) (NP (PRP$ our) (JJ own) (NN game))))) (. .)))"
TRUMP ISIS. 1 3 2 0 1 (ROOT (NP (NNS ISIS) (. .)))
TRUMP "So we have to get very, very tough on cyber and cyber warfare." 13 24 15 7 7 "(ROOT (S (IN So) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB get) (ADJP (RB very) (, ,) (RB very) (JJ tough)) (PP (IN on) (NP (NN cyber) (CC and) (NN cyber) (NN warfare))))))) (. .)))"
TRUMP It is — it is a huge problem. 8 17 9 3 4 (ROOT (S (S (NP (PRP It)) (VP (VBZ is))) (: --) (S (NP (PRP it)) (VP (VBZ is) (NP (DT a) (JJ huge) (NN problem)))) (. .)))
TRUMP I have a son. 4 9 5 1 3 (ROOT (S (NP (PRP I)) (VP (VBP have) (NP (DT a) (NN son))) (. .)))
TRUMP He's 10 years old. 4 11 6 2 4 (ROOT (S (NP (PRP He)) (VP (VBZ 's) (ADJP (NP (CD 10) (NNS years)) (JJ old))) (. .)))
TRUMP He has computers. 3 8 4 1 3 (ROOT (S (NP (PRP He)) (VP (VBZ has) (NP (NNS computers))) (. .)))
TRUMP "He is so good with these computers, it's unbelievable." 9 22 12 6 6 "(ROOT (S (S (NP (PRP He)) (VP (VBZ is) (ADJP (RB so) (JJ good) (PP (IN with) (NP (DT these) (NNS computers)))))) (, ,) (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ unbelievable))) (. .)))"
TRUMP "The security aspect of cyber is very, very tough." 9 18 11 5 4 "(ROOT (S (NP (NP (DT The) (NN security) (NN aspect)) (PP (IN of) (NP (NN cyber)))) (VP (VBZ is) (ADJP (RB very) (, ,) (RB very) (JJ tough))) (. .)))"
TRUMP And maybe it's hardly doable. 5 12 7 4 3 (ROOT (S (CC And) (ADVP (RB maybe)) (NP (PRP it)) (VP (VBZ 's) (ADJP (RB hardly) (JJ doable))) (. .)))
TRUMP "But I will say, we are not doing the job we should be doing." 14 32 16 6 9 "(ROOT (S (S (CC But) (NP (PRP I)) (VP (MD will) (VP (VB say)))) (, ,) (NP (PRP we)) (VP (VBP are) (RB not) (VP (VBG doing) (NP (NP (DT the) (NN job)) (SBAR (S (NP (PRP we)) (VP (MD should) (VP (VB be) (VP (VBG doing))))))))) (. .)))"
TRUMP But that's true throughout our whole governmental society. 8 16 10 5 5 (ROOT (S (CC But) (NP (DT that)) (VP (VBZ 's) (ADJP (JJ true) (PP (IN throughout) (NP (PRP$ our) (JJ whole) (JJ governmental) (NN society))))) (. .)))
TRUMP "We have so many things that we have to do better, Lester, and certainly cyber is one of them." 19 44 22 11 10 "(ROOT (S (S (NP (PRP We)) (VP (VBP have) (NP (RB so) (JJ many) (NNS things)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB do) (ADVP (RBR better)))))))) (, ,) (ADVP (RB Lester)))) (, ,) (CC and) (S (ADVP (RB certainly)) (NP (NN cyber)) (VP (VBZ is) (NP (NP (CD one)) (PP (IN of) (NP (PRP them)))))) (. .)))"
HOLT Secretary Clinton? 2 3 2 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton)))
CLINTON "Well, I think there are a number of issues that we should be addressing." 14 35 16 5 13 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (EX there)) (VP (VBP are) (NP (NP (DT a) (NN number)) (PP (IN of) (NP (NP (NNS issues)) (SBAR (IN that) (S (NP (PRP we)) (VP (MD should) (VP (VB be) (VP (VBG addressing))))))))))))) (. .)))"
CLINTON I have put forth a plan to defeat ISIS. 9 20 10 5 7 (ROOT (S (NP (PRP I)) (VP (VBP have) (VP (VBN put) (ADVP (RB forth) (NP (DT a) (NN plan))) (S (VP (TO to) (VP (VB defeat) (NP (NNS ISIS))))))) (. .)))
CLINTON It does involve going after them online. 7 18 8 4 8 (ROOT (S (NP (PRP It)) (VP (VBZ does) (VP (VB involve) (S (VP (VBG going) (SBAR (IN after) (S (NP (PRP them)) (VP (VBZ online)))))))) (. .)))
CLINTON "I think we need to do much more with our tech companies to prevent ISIS and their operatives from being able to use the Internet to radicalize, even direct people in our country and Europe and elsewhere." 37 77 39 20 23 "(ROOT (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB do) (ADVP (RB much) (RBR more)) (PP (IN with) (NP (PRP$ our) (NN tech) (NNS companies))) (S (VP (TO to) (VP (VB prevent) (NP (NP (NNS ISIS)) (CC and) (NP (PRP$ their) (NNS operatives))) (PP (IN from) (S (VP (VBG being) (ADJP (JJ able) (S (VP (TO to) (VP (VB use) (NP (NP (DT the) (NN Internet) (S (VP (TO to) (VP (VB radicalize))))) (, ,) (RB even) (NP (NP (JJ direct) (NNS people)) (PP (IN in) (NP (PRP$ our) (NN country)))) (CC and) (NP (NP (NNP Europe)) (CC and) (NP (RB elsewhere))))))))))))))))))))) (. .)))"
CLINTON "But we also have to intensify our air strikes against ISIS and eventually support our Arab and Kurdish partners to be able to actually take out ISIS in Raqqa, end their claim of being a Caliphate." 36 72 38 17 16 "(ROOT (S (CC But) (NP (PRP we)) (ADVP (RB also)) (VP (VBP have) (S (VP (TO to) (VP (VP (VB intensify) (NP (PRP$ our) (NN air) (NNS strikes)) (PP (IN against) (NP (NNP ISIS)))) (CC and) (ADVP (RB eventually)) (VP (VB support) (NP (PRP$ our) (NNP Arab) (CC and) (NNP Kurdish) (NNS partners)) (S (VP (TO to) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (ADVP (RB actually)) (VB take) (PRT (RP out)) (NP (NP (NNS ISIS)) (PP (IN in) (NP (NNP Raqqa)))))))))))) (, ,) (VP (VB end) (NP (NP (PRP$ their) (NN claim)) (PP (IN of) (S (VP (VBG being) (NP (DT a) (NN Caliphate))))))))))) (. .)))"
CLINTON We're making progress. 3 10 5 2 4 (ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG making) (NP (NN progress)))) (. .)))
CLINTON Our military is assisting in Iraq. 6 13 7 3 5 (ROOT (S (NP (PRP$ Our) (NN military)) (VP (VBZ is) (VP (VBG assisting) (PP (IN in) (NP (NNP Iraq))))) (. .)))
CLINTON "And we're hoping that within the year we'll be able to push ISIS out of Iraq and then, you know, really squeeze them in Syria." 25 60 30 13 14 "(ROOT (S (CC And) (NP (PRP we)) (VP (VBP 're) (VP (VBG hoping) (SBAR (IN that) (S (S (PP (IN within) (NP (DT the) (NN year))) (NP (PRP we)) (VP (MD 'll) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB push) (NP (NNS ISIS)) (PRT (RP out)) (PP (IN of) (NP (NNP Iraq)))))))))) (CC and) (S (S (ADVP (RB then)) (, ,) (NP (PRP you)) (VP (VBP know))) (, ,) (ADVP (RB really)) (VP (VB squeeze) (NP (PRP them)) (PP (IN in) (NP (NNP Syria))))))))) (. .)))"
CLINTON "But we have to be cognizant of the fact that they've had foreign fighters coming to volunteer for them, foreign money, foreign weapons, so we have to make this the top priority." 32 71 37 18 18 "(ROOT (S (CC But) (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB be) (ADJP (JJ cognizant) (PP (IN of) (NP (DT the) (NN fact)))) (SBAR (IN that) (S (NP (PRP they)) (VP (VBP 've) (VP (VBN had) (NP (JJ foreign) (NNS fighters)) (S (VP (VBG coming) (S (VP (TO to) (VP (VB volunteer) (PP (IN for) (NP (NP (PRP them)) (, ,) (NP (NP (JJ foreign) (NN money)) (, ,) (NP (JJ foreign) (NNS weapons)))))))))) (, ,) (SBAR (IN so) (S (NP (PRP we)) (VP (VBP have) (S (VP (TO to) (VP (VB make) (NP (DT this) (DT the) (JJ top) (NN priority)))))))))))))))) (. .)))"
CLINTON And I would also do everything possible to take out their leadership. 12 26 13 5 9 (ROOT (S (CC And) (NP (PRP I)) (VP (MD would) (ADVP (RB also)) (VP (VB do) (S (NP (NN everything)) (ADJP (JJ possible) (S (VP (TO to) (VP (VB take) (PRT (RP out)) (NP (PRP$ their) (NN leadership))))))))) (. .)))
CLINTON "I was involved in a number of efforts to take out Al Qaida leadership when I was secretary of state, including, of course, taking out bin Laden." 27 63 31 12 15 "(ROOT (S (NP (PRP I)) (VP (VBD was) (VP (VBN involved) (PP (IN in) (NP (NP (DT a) (NN number)) (PP (IN of) (NP (NNS efforts))))) (S (VP (TO to) (VP (VB take) (PRT (RP out)) (NP (NP (NNP Al) (NNP Qaida) (NN leadership)) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD was) (NP (NP (NN secretary)) (PP (IN of) (NP (NN state))) (, ,) (PP (VBG including) (PRN (, ,) (PP (IN of) (NP (NN course))) (, ,)) (NP (NP (NN taking)) (PP (IN out) (NP (NNP bin) (NNP Laden))))))))))))))) (. .)))"
CLINTON "And I think we need to go after Baghdadi, as well, make that one of our organizing principles." 18 40 21 9 14 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP need) (S (VP (TO to) (VP (VB go) (SBAR (IN after) (S (NP (NNP Baghdadi)) (, ,) (ADVP (RB as) (RB well)) (, ,) (VP (VBP make) (NP (NP (DT that) (NN one)) (PP (IN of) (NP (PRP$ our) (VBG organizing) (NNS principles)))))))))))))) (. .)))"
CLINTON "Because we've got to defeat ISIS, and we've got to do everything we can to disrupt their propaganda efforts online." 20 50 24 11 10 "(ROOT (S (SBAR (IN Because) (S (S (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB defeat) (NP (NNS ISIS)))))))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB do) (NP (NN everything)))))))))) (NP (PRP we)) (VP (MD can) (S (VP (TO to) (VP (VB disrupt) (NP (PRP$ their) (NN propaganda) (NNS efforts)) (PP (NN online)))))) (. .)))"
HOLT "You mention ISIS, and we think of ISIS certainly as over there, but there are American citizens who have been inspired to commit acts of terror on American soil, the latest incident, of course, the bombings we just saw in New York and New Jersey, the knife attack at a mall in Minnesota, in the last year, deadly attacks in San Bernardino and Orlando." 64 137 73 27 21 "(ROOT (S (S (S (NP (PRP You)) (VP (VBP mention) (NP (NNS ISIS)))) (, ,) (CC and) (S (NP (PRP we)) (VP (VBP think) (PP (IN of) (NP (NNP ISIS))) (PP (ADVP (RB certainly)) (IN as) (IN over) (NP (RB there)))))) (, ,) (CC but) (S (NP (EX there)) (VP (VBP are) (NP (NP (JJ American) (NNS citizens)) (SBAR (WHNP (WP who)) (S (VP (VBP have) (VP (VBN been) (VP (VBN inspired) (S (VP (TO to) (VP (VB commit) (NP (NP (NNS acts)) (PP (IN of) (NP (NN terror)))) (PP (IN on) (NP (NP (JJ American) (NN soil)) (, ,) (NP (NP (DT the) (JJS latest) (NN incident)) (, ,) (PP (IN of) (NP (NN course))) (, ,) (NP (NP (DT the) (NNS bombings)) (SBAR (S (NP (PRP we)) (ADVP (RB just)) (VP (VBD saw) (PP (IN in) (NP (NNP New) (NNP York))))))) (CC and) (NP (NP (NNP New) (NNP Jersey)) (, ,) (NP (NP (DT the) (NN knife) (NN attack)) (PP (IN at) (NP (NP (DT a) (NN mall)) (PP (IN in) (NP (NNP Minnesota)))))) (, ,) (PP (IN in) (NP (NP (DT the) (JJ last) (NN year)) (, ,) (NP (NP (JJ deadly) (NNS attacks)) (PP (IN in) (NP (NNP San) (NNP Bernardino) (CC and) (NNP Orlando))))))))))))))))))))) (. .)))"
HOLT I'll ask this to both of you. 7 19 9 4 7 (ROOT (S (NP (PRP I)) (VP (MD 'll) (VP (VB ask) (NP (DT this)) (PP (TO to) (NP (NP (DT both)) (PP (IN of) (NP (PRP you))))))) (. .)))
HOLT "Tell us specifically how you would prevent homegrown attacks by American citizens, Mr. Trump?" 14 30 15 5 9 "(ROOT (S (VP (VB Tell) (NP (PRP us)) (ADVP (RB specifically)) (SBAR (WHADVP (WRB how)) (S (NP (PRP you)) (VP (MD would) (VP (VB prevent) (NP (NN homegrown) (NNS attacks)) (PP (IN by) (NP (NP (JJ American) (NNS citizens)) (, ,) (NP (NNP Mr.) (NNP Trump)))))))))))"
TRUMP "Well, first I have to say one thing, very important." 10 24 13 6 7 "(ROOT (S (INTJ (UH Well)) (, ,) (ADVP (RB first)) (NP (PRP I)) (VP (VBP have) (S (VP (TO to) (VP (VB say) (NP (NP (CD one) (NN thing)) (, ,) (ADJP (RB very) (JJ important))))))) (. .)))"
TRUMP Secretary Clinton is talking about taking out ISIS. 8 18 9 4 7 (ROOT (S (NP (NNP Secretary) (NNP Clinton)) (VP (VBZ is) (VP (VBG talking) (PP (IN about) (S (VP (VBG taking) (PRT (RP out)) (NP (NNS ISIS))))))) (. .)))
TRUMP We will take out ISIS. 5 14 8 1 4 (ROOT (S (`` ``) (NP (PRP We)) (VP (MD will) (VP (VB take) (PRT (RP out)) (NP (NNS ISIS)))) ('' '') (. .)))
TRUMP "Well, President Obama and Secretary Clinton created a vacuum the way they got out of Iraq, because they got out — what, they shouldn't have been in, but once they got in, the way they got out was a disaster." 40 92 47 12 17 "(ROOT (S (ADVP (RB Well)) (PRN (, ,) (S (NP (NNP President) (NNP Obama) (CC and) (NNP Secretary) (NNP Clinton)) (VP (VBD created) (NP (NP (DT a) (NN vacuum)) (NP (DT the) (NN way))) (SBAR (SBAR (S (NP (PRP they)) (VP (VBD got) (PRT (RP out)) (PP (IN of) (NP (NNP Iraq))) (, ,) (SBAR (IN because) (S (NP (PRP they)) (VP (VP (VBD got) (PRT (RP out))) (: --) (SBAR (WHNP (WP what)) (, ,) (S (NP (PRP they)) (VP (MD should) (RB n't) (VP (VB have) (VP (VBN been) (PP (IN in))))))))))))) (, ,) (CC but) (SBAR (IN once) (S (NP (PRP they)) (VP (VBD got) (PRT (RP in)))))))) (, ,)) (NP (NP (DT the) (NN way)) (SBAR (S (NP (PRP they)) (VP (VBD got) (PRT (RP out)))))) (VP (VBD was) (NP (DT a) (NN disaster))) (. .)))"
TRUMP And ISIS was formed. 4 9 5 2 3 (ROOT (S (CC And) (NP (NNS ISIS)) (VP (VBD was) (VP (VBN formed))) (. .)))
TRUMP So she talks about taking them out. 7 16 8 3 6 (ROOT (S (IN So) (NP (PRP she)) (VP (VBZ talks) (PP (IN about) (S (VP (VBG taking) (NP (PRP them)) (PRT (RP out)))))) (. .)))
TRUMP She's been doing it a long time. 7 16 9 4 5 (ROOT (S (NP (PRP She)) (VP (VBZ 's) (VP (VBN been) (VP (VBG doing) (NP (PRP it)) (NP (DT a) (JJ long) (NN time))))) (. .)))
TRUMP She's been trying to take them out for a long time. 11 25 13 7 9 (ROOT (S (NP (PRP She)) (VP (VBZ 's) (VP (VBN been) (VP (VBG trying) (S (VP (TO to) (VP (VB take) (NP (PRP them)) (PRT (RP out)) (PP (IN for) (NP (DT a) (JJ long) (NN time))))))))) (. .)))
TRUMP "But they wouldn't have even been formed if they left some troops behind, like 10,000 or maybe something more than that." 21 45 24 12 12 "(ROOT (S (CC But) (NP (PRP they)) (VP (MD would) (RB n't) (VP (VB have) (ADVP (RB even)) (VP (VBN been) (VP (VBN formed) (SBAR (IN if) (S (NP (PRP they)) (VP (VBD left) (NP (DT some) (NNS troops)) (ADVP (RB behind)) (, ,) (PP (PP (IN like) (NP (CD 10,000))) (CC or) (PP (ADVP (RB maybe)) (ADVP (NP (NN something)) (RBR more)) (IN than) (NP (DT that))))))))))) (. .)))"
TRUMP And then you wouldn't have had them. 7 16 9 4 5 (ROOT (S (CC And) (ADVP (RB then)) (NP (PRP you)) (VP (MD would) (RB n't) (VP (VB have) (VP (VBN had) (NP (PRP them))))) (. .)))
TRUMP "Or, as I've been saying for a long time, and I think you'll agree, because I said it to you once, had we taken the oil — and we should have taken the oil — ISIS would not have been able to form either, because the oil was their primary source of income." 53 117 61 25 15 "(ROOT (S (CC Or) (, ,) (SBAR (IN as) (S (S (NP (PRP I)) (VP (VBP 've) (VP (VBN been) (VP (VBG saying) (PP (IN for) (NP (DT a) (JJ long) (NN time))))))) (, ,) (CC and) (S (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP you)) (VP (MD 'll) (VP (VB agree) (PRN (, ,) (SBAR (IN because) (S (NP (PRP I)) (VP (VBD said) (NP (PRP it)) (PP (TO to) (NP (PRP you))) (ADVP (RB once))))) (, ,)) (SBAR (SINV (VBD had) (NP (PRP we)) (VP (VBN taken) (NP (DT the) (NN oil))))))))))))) (PRN (: --) (CC and) (S (NP (PRP we)) (VP (MD should) (VP (VB have) (VP (VBN taken) (NP (DT the) (NN oil)))))) (: --)) (NP (NNS ISIS)) (VP (MD would) (RB not) (VP (VB have) (VP (VBN been) (ADJP (JJ able) (S (VP (TO to) (VP (VB form) (ADVP (RB either)))))) (, ,) (SBAR (IN because) (S (NP (DT the) (NN oil)) (VP (VBD was) (NP (NP (PRP$ their) (JJ primary) (NN source)) (PP (IN of) (NP (NN income)))))))))) (. .)))"
TRUMP "And now they have the oil all over the place, including the oil — a lot of the oil in Libya, which was another one of her disasters." 28 56 31 9 13 "(ROOT (S (CC And) (ADVP (RB now)) (NP (PRP they)) (VP (VBP have) (NP (DT the) (NN oil)) (PP (DT all) (IN over) (NP (DT the) (NN place))) (, ,) (PP (VBG including) (NP (NP (DT the) (NN oil)) (: --) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NP (DT the) (NN oil)) (PP (IN in) (NP (NNP Libya))) (, ,) (SBAR (WHNP (WDT which)) (S (VP (VBD was) (NP (NP (DT another) (NN one)) (PP (IN of) (NP (PRP$ her) (NNS disasters))))))))))))) (. .)))"
HOLT Secretary Clinton? 2 3 2 0 1 (ROOT (NP (NNP Secretary) (NNP Clinton)))
CLINTON "Well, I hope the fact-checkers are turning up the volume and really working hard." 14 31 16 6 8 "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP I)) (VP (VBP hope) (SBAR (S (NP (DT the) (NNS fact-checkers)) (VP (VBP are) (VP (VP (VBG turning) (PRT (RP up)) (NP (DT the) (NN volume))) (CC and) (ADVP (RB really)) (VP (VBG working) (ADVP (RB hard)))))))) (. .)))"
CLINTON Donald supported the invasion of Iraq. 6 14 7 2 5 (ROOT (S (NP (NNP Donald)) (VP (VBD supported) (NP (NP (DT the) (NN invasion)) (PP (IN of) (NP (NNP Iraq))))) (. .)))
TRUMP Wrong. 1 4 2 1 2 (ROOT (FRAG (ADJP (JJ Wrong)) (. .)))
CLINTON That is absolutely proved over and over again. 8 16 9 4 4 (ROOT (S (NP (DT That)) (VP (VBZ is) (ADVP (RB absolutely)) (VP (VBN proved) (PRT (RP over) (CC and) (RP over)) (ADVP (RB again)))) (. .)))
TRUMP Wrong. 1 4 2 1 2 (ROOT (FRAG (ADJP (JJ Wrong)) (. .)))
TRUMP Wrong. 1 4 2 1 2 (ROOT (FRAG (ADJP (JJ Wrong)) (. .)))
CLINTON "He actually advocated for the actions we took in Libya and urged that Gadhafi be taken out, after actually doing some business with him one time." 26 57 28 12 13 "(ROOT (S (NP (PRP He)) (ADVP (RB actually)) (VP (VBD advocated) (PP (IN for) (NP (NP (DT the) (NNS actions)) (SBAR (S (NP (PRP we)) (VP (VP (VBD took) (PP (IN in) (NP (NNP Libya)))) (CC and) (VP (VBD urged) (SBAR (IN that) (S (NP (NNP Gadhafi)) (VP (VB be) (VP (VBN taken) (PRT (RP out)))))))))))) (, ,) (PP (IN after) (S (VP (ADVP (RB actually)) (VBG doing) (NP (DT some) (NN business)) (PP (IN with) (NP (PRP him))) (NP (CD one) (NN time)))))) (. .)))"
CLINTON "But the larger point — and he says this constantly — is George W. Bush made the agreement about when American troops would leave Iraq, not Barack Obama." 28 54 30 9 11 "(ROOT (S (CC But) (NP (NP (DT the) (JJR larger) (NN point)) (PRN (: --) (CC and) (S (NP (PRP he)) (VP (VBZ says) (NP (DT this)) (ADVP (RB constantly)))) (: --))) (VP (VBZ is) (NP (NP (NNP George) (NNP W.) (NNP Bush)) (VP (VBN made) (NP (DT the) (NN agreement)) (PP (IN about) (SBAR (WHADVP (WRB when)) (S (NP (JJ American) (NNS troops)) (VP (MD would) (VP (VB leave) (NP (NP (NNP Iraq)) (, ,) (RB not) (NP (NNP Barack) (NNP Obama))))))))))) (. .)))"
CLINTON "And the only way that American troops could have stayed in Iraq is to get an agreement from the then-Iraqi government that would have protected our troops, and the Iraqi government would not give that." 35 69 37 15 14 "(ROOT (S (S (CC And) (NP (NP (DT the) (JJ only) (NN way)) (SBAR (IN that) (S (NP (JJ American) (NNS troops)) (VP (MD could) (VP (VB have) (VP (VBN stayed) (PP (IN in) (NP (NNP Iraq))))))))) (VP (VBZ is) (S (VP (TO to) (VP (VB get) (NP (DT an) (NN agreement)) (PP (IN from) (NP (NP (DT the) (JJ then-Iraqi) (NN government)) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB have) (VP (VBN protected) (NP (PRP$ our) (NNS troops)))))))))))))) (, ,) (CC and) (S (NP (DT the) (JJ Iraqi) (NN government)) (VP (MD would) (RB not) (VP (VB give) (NP (DT that))))) (. .)))"
CLINTON "But let's talk about the question you asked, Lester." 9 24 12 3 7 "(ROOT (S (CC But) (NP (NP (NP (NNP let) (POS 's)) (NN talk)) (PP (IN about) (NP (NP (DT the) (NN question)) (SBAR (S (NP (PRP you)) (VP (VBD asked))))))) (, ,) (VP (VBZ Lester)) (. .)))"
CLINTON "The question you asked is, what do we do here in the United States?" 14 31 15 6 7 "(ROOT (S (NP (NP (DT The) (NN question)) (SBAR (S (NP (PRP you)) (VP (VBD asked))))) (VP (VBZ is) (, ,) (SBARQ (WHNP (WP what)) (SQ (VBP do) (NP (PRP we)) (VP (VB do) (ADVP (RB here)) (PP (IN in) (NP (DT the) (NNP United) (NNPS States)))))))))"
CLINTON That's the most important part of this. 7 17 9 4 5 (ROOT (S (NP (DT That)) (VP (VBZ 's) (NP (NP (DT the) (ADJP (RBS most) (JJ important)) (NN part)) (PP (IN of) (NP (DT this))))) (. .)))
CLINTON How do we prevent attacks? 5 11 5 2 4 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP do) (NP (PRP we)) (VP (VB prevent) (NP (NNS attacks))))))
CLINTON How do we protect our people? 6 12 6 2 4 (ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBP do) (NP (PRP we)) (VP (VB protect) (NP (PRP$ our) (NNS people))))))
CLINTON "And I think we've got to have an intelligence surge, where we are looking for every scrap of information." 19 45 22 9 17 "(ROOT (S (CC And) (NP (PRP I)) (VP (VBP think) (SBAR (S (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB have) (NP (DT an) (NN intelligence) (NN surge)) (, ,) (SBAR (WHADVP (WRB where)) (S (NP (PRP we)) (VP (VBP are) (VP (VBG looking) (PP (IN for) (NP (NP (DT every) (NN scrap)) (PP (IN of) (NP (NN information))))))))))))))))) (. .)))"
CLINTON "I was so proud of law enforcement in New York, in Minnesota, in New Jersey." 15 32 18 8 8 "(ROOT (S (NP (PRP I)) (VP (VBD was) (ADJP (RB so) (JJ proud) (PP (PP (IN of) (NP (NP (NN law) (NN enforcement)) (PP (IN in) (NP (NNP New) (NNP York))))) (, ,) (PP (IN in) (NP (NNP Minnesota))) (, ,))) (PP (IN in) (NP (NNP New) (NNP Jersey)))) (. .)))"
CLINTON "You know, they responded so quickly, so professionally to the attacks that occurred by Rahami." 15 36 18 10 9 "(ROOT (S (S (NP (PRP You)) (VP (VBP know))) (, ,) (NP (PRP they)) (VP (VBD responded) (ADVP (ADVP (RB so) (RB quickly)) (, ,) (RB so) (ADVP (RB professionally))) (PP (TO to) (NP (NP (DT the) (NNS attacks)) (SBAR (WHNP (WDT that)) (S (VP (VBD occurred) (PP (IN by) (NP (NNP Rahami))))))))) (. .)))"
CLINTON And they brought him down. 5 11 6 1 3 (ROOT (S (CC And) (NP (PRP they)) (VP (VBD brought) (NP (PRP him)) (PRT (RP down))) (. .)))
CLINTON "And we may find out more information because he is still alive, which may prove to be an intelligence benefit." 20 43 22 8 14 "(ROOT (S (CC And) (NP (PRP we)) (VP (MD may) (VP (VB find) (PRT (RP out)) (NP (JJR more) (NN information)) (SBAR (IN because) (S (NP (PRP he)) (VP (VBZ is) (ADVP (RB still)) (ADJP (JJ alive)) (, ,) (SBAR (WHNP (WDT which)) (S (VP (MD may) (VP (VB prove) (S (VP (TO to) (VP (VB be) (NP (DT an) (NN intelligence) (NN benefit)))))))))))))) (. .)))"
CLINTON "So we've got to do everything we can to vacuum up intelligence from Europe, from the Middle East." 18 43 21 8 15 "(ROOT (S (IN So) (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB do) (NP (NP (NN everything)) (SBAR (S (NP (PRP we)) (VP (MD can) (S (VP (TO to) (VP (VB vacuum) (PRT (RP up)) (NP (NN intelligence)) (PP (IN from) (NP (NNP Europe))) (, ,) (PP (IN from) (NP (DT the) (NNP Middle) (NNP East))))))))))))))) (. .)))"
CLINTON "That means we've got to work more closely with our allies, and that's something that Donald has been very dismissive of." 21 51 25 14 12 "(ROOT (S (S (NP (DT That)) (VP (VBZ means) (SBAR (S (NP (PRP we)) (VP (VBP 've) (VP (VBN got) (S (VP (TO to) (VP (VB work) (ADVP (RBR more) (RB closely)) (PP (IN with) (NP (PRP$ our) (NNS allies)))))))))))) (, ,) (CC and) (S (NP (DT that)) (VP (VBZ 's) (NP (NN something)) (SBAR (IN that) (S (NP (NNP Donald)) (VP (VBZ has) (VP (VBN been) (ADJP (RB very) (JJ dismissive)) (PP (IN of)))))))) (. .)))"
CLINTON "We're working with NATO, the longest military alliance in the history of the world, to really turn our attention to terrorism." 21 46 25 12 10 "(ROOT (S (NP (PRP We)) (VP (VBP 're) (VP (VBG working) (PP (IN with) (NP (NP (NNP NATO)) (, ,) (NP (NP (DT the) (JJS longest) (JJ military) (NN alliance)) (PP (IN in) (NP (NP (DT the) (NN history)) (PP (IN of) (NP (DT the) (NN world)))))))) (, ,) (S (VP (TO to) (VP (ADVP (RB really)) (VB turn) (NP (PRP$ our) (NN attention)) (PP (TO to) (NP (NN terrorism)))))))) (. .)))"