-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.json
More file actions
2330 lines (2330 loc) · 69.5 KB
/
Copy pathoutput.json
File metadata and controls
2330 lines (2330 loc) · 69.5 KB
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
[
{
"statement": "I'm actually the only person on this stage who has a plan that is about lifting up the middle class and working people.",
"real": "true",
"ai": "false",
"source": "An opinion - should not answer"
},
{
"statement": "I intend on extending a tax cut for those families of $6000, which is the largest child tax credit we have given in a",
"real": "true",
"ai": "false",
"source": "An opinion - should not answer"
},
{
"statement": "We have a shortage of homes and housing.",
"real": "true",
"ai": "true",
"source": "NPR"
},
{
"statement": "The cost of housing is too expensive for far too many people.",
"real": "true",
"ai": "true",
"source": "Harvard Business Review"
},
{
"statement": "The current child tax credit is the largest we've given in a long time.",
"real": "true",
"ai": "true",
"source": "https://www.whitehouse.gov/child-tax-credit/ - it has been 2k since 1997"
},
{
"statement": "The child tax credit will help families afford to buy a crib, a car seat, clothes for their children.",
"real": "true",
"ai": "true",
"source": "Common Sense"
},
{
"statement": "His plan would result in $5 trillion.",
"real": "true",
"ai": "false",
"source": "Reuters"
},
{
"statement": "My mother raised my small businesses.",
"real": "true",
"ai": "false",
"source": "Today"
},
{
"statement": "My opponent's plan is to provide a tax cut for billionaires and big corporations.",
"real": "true",
"ai": "true",
"source": "https://itep.org/corporate-taxes-before-and-after-the-trump-tax-law/ - trump has in the past"
},
{
"statement": "My opponent has a plan that I call the Trump Sales Tax, a 20% tax on everyday goods that you rely on to get through the day.",
"real": "true",
"ai": "false",
"source": "Forbes"
},
{
"statement": "Economists have said that Trump's sales tax would actually resolve for middle-class families in about $4000 more a year.",
"real": "false",
"ai": "false",
"source": "Market Watch"
},
{
"statement": "Other countries will pay the United States back after 75 years for what the US has done for the world.",
"real": "true",
"ai": "false",
"source": "Opinion"
},
{
"statement": "Families are paying $4000 more a year because of Trump's policies",
"real": "true",
"ai": "false",
"source": "https://www.investopedia.com/ask/answers/101314/what-does-current-cost-living-compare-20-years-ago.asp - cost of living has been rising, so while 4k a year is a reasonable guess."
},
{
"statement": "The tariff will be substantial in some cases.",
"real": "true",
"ai": "true",
"source": "Market Watch"
},
{
"statement": "Trump's policies and ideas are about middle-class people paying for tax cuts for billionaires",
"real": "true",
"ai": "false",
"source": "Center For American Progress"
},
{
"statement": "When I had it, I had tariffs and no inflation.",
"real": "true",
"ai": "false",
"source": "Center For American Progress"
},
{
"statement": "We have inflation like very few people have ever seen before.",
"real": "true",
"ai": "false",
"source": "Center For American Progress"
},
{
"statement": "Probably the worst in nations history.",
"real": "true",
"ai": "false",
"source": "Center For American Progress"
},
{
"statement": "We are doing tariffs on other countries.",
"real": "true",
"ai": "true",
"source": "foreignpolicy.com"
},
{
"statement": "China and other places are taking billions of dollars from the US.",
"real": "true",
"ai": "true",
"source": "United States Trade Representitive"
},
{
"statement": "Many things are 50, 60, 70, and 80% higher than a few years ago.",
"real": "true",
"ai": "true",
"source": "NBC"
},
{
"statement": "Towns throughout the United States are being taken over.",
"real": "false",
"ai": "false",
"source": "Common Sense"
},
{
"statement": "People are pouring into our country from prison, jail, from mental institutions and from insane asylums.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "Aurora, Colorado is being taken over.",
"real": "false",
"ai": "false",
"source": "Common Sense"
},
{
"statement": "Springfield, Ohio is being taken over.",
"real": "false",
"ai": "false",
"source": "Common Sense"
},
{
"statement": "They never took the tariff off.",
"real": "true",
"ai": "true",
"source": "https://taxfoundation.org/research/all/federal/trump-tariffs-biden-tariffs/ - the tariffs mostly remained "
},
{
"statement": "They never took the tariff off.",
"real": "true",
"ai": "true",
"source": "https://taxfoundation.org/research/all/federal/trump-tariffs-biden-tariffs/ - the tariffs mostly remained "
},
{
"statement": "What we have done is clean up Donald Trump Smith.",
"real": "true",
"ai": "false",
"source": "Doesn't make sense"
},
{
"statement": "What we have done is clean up Donald Trump Smith.",
"real": "true",
"ai": "false",
"source": "Doesn't make sense"
},
{
"statement": "What we have done is clean up Donald Trump Smith.",
"real": "true",
"ai": "false",
"source": "common sense"
},
{
"statement": "Donald Trump left us the worst public health epidemic in a century.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "Donald Trump left us the worst unemployment since the Great Depression.",
"real": "true",
"ai": "false",
"source": "USA Today"
},
{
"statement": "I haven't read it.",
"real": "true",
"ai": "true",
"source": "Shouldn't have answered"
},
{
"statement": "I have nothing to do with Russia",
"real": "false",
"ai": "false",
"source": "https://www.politico.com/magazine/story/2017/03/connections-trump-putin-russia-ties-chart-flynn-page-manafort-sessions-214868/ - trump has many ties to russia"
},
{
"statement": "We got hit with a pandemic.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "I have nothing to do with Project 2025.",
"real": "false",
"ai": "true",
"source": "CNN"
},
{
"statement": "We got hit with a pandemic.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "This is a group of people that got together, came up with some ideas.",
"real": "true",
"ai": "true",
"source": "Project 2025"
},
{
"statement": "The only jobs they got were bounced back jobs",
"real": "false",
"ai": "false",
"source": "snopes"
},
{
"statement": "The economy and market were higher than they were before the pandemic.",
"real": "true",
"ai": "true",
"source": "https://www.macrotrends.net/1319/dow-jones-100-year-historical-chart - it has been rising"
},
{
"statement": "Donald Trump's plan would exploit the deficit.",
"real": "true",
"ai": "true",
"source": "https://www.macrotrends.net/1319/dow-jones-100-year-historical-chart - it has been rising"
},
{
"statement": "Not since 1917 where 100 million people died has there been anything like it.",
"real": "true",
"ai": "false",
"source": "Britannica"
},
{
"statement": "Goldman Sachs has said that Donald Trump's plan would make the economy worse.",
"real": "true",
"ai": "true",
"source": "The Hill"
},
{
"statement": "I created one of the greatest economies in the history of the country",
"real": "false",
"ai": "false",
"source": "ny1.com"
},
{
"statement": "By the middle of next year, it would invite a recession.",
"real": "false",
"ai": "false",
"source": "Opinion"
},
{
"statement": "The Vice President brought up your tears.",
"real": "false",
"ai": "true",
"source": "doesn't make sense "
},
{
"statement": "You responded.",
"real": "false",
"ai": "true",
"source": "doesnt make sense"
},
{
"statement": "His economic plan would increase inflation.",
"real": "true",
"ai": "true",
"source": "https://abcnews.go.com/Business/harris-trump-debate-economists-assess-attacks-inflation-tariffs/story?id=113584629 - the tariffs will"
},
{
"statement": "I might double my plan to increase tariffs to 20% on goods coming into this country.",
"real": "true",
"ai": "true",
"source": "Trump himself, it's a claim."
},
{
"statement": "I might double my plan to increase tariffs to 20% on goods coming into this country.",
"real": "true",
"ai": "true",
"source": "Forbes"
},
{
"statement": "THEY WILL NOT HAVE HIGHER PRICES.",
"real": "false",
"ai": "false",
"source": "Goldman Sachs"
},
{
"statement": "The higher prices on gas and food will cost the typical family nearly $4000 a year.",
"real": "false",
"ai": "false",
"source": "abc new"
},
{
"statement": "Virtually no inflation.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "I had no inflation.",
"real": "false",
"ai": "false",
"source": "Common Sense"
},
{
"statement": "People can buy cereal, bacon, eggs, or anything else.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "They had the highest inflation perhaps in the history of our country.",
"real": "false",
"ai": "false",
"source": "https://tradingeconomics.com/united-states/inflation-cpi"
},
{
"statement": "We will take in billions of dollars. Hundreds of billions of dollars.",
"real": "true",
"ai": "false",
"source": "wlos"
},
{
"statement": "80, 85, and even 90% of people thought the Trump economy was great.",
"real": "false",
"ai": "false",
"source": "CBS"
},
{
"statement": "THEIR ECONOMY WAS TERRIBLE.",
"real": "false",
"ai": "false",
"source": "https://tradingeconomics.com/united-states/inflation-cpi - trump had higher infaltion"
},
{
"statement": "THEIR ECONOMY WAS TERRIBLE.",
"real": "false",
"ai": "false",
"source": "BBC"
},
{
"statement": "The Trump administration resulted in a trade deficit.",
"real": "true",
"ai": "true",
"source": "Politico"
},
{
"statement": "Vice President Harris has argued there will be higher prices on gas and food.",
"real": "true",
"ai": "true",
"source": "forbes.com"
},
{
"statement": "The Trump administration resulted in one of the highest trade deficits in American history.",
"real": "true",
"ai": "true",
"source": "politico - it was large"
},
{
"statement": "We need to invest in American-based technologies.",
"real": "false",
"ai": "true",
"source": "opinion"
},
{
"statement": "We need to win the race on AI quantum computing.",
"real": "false",
"ai": "true",
"source": "opinion"
},
{
"statement": "We need to support America's workforce.",
"real": "false",
"ai": "true",
"source": "opinion"
},
{
"statement": "We need to support computing.",
"real": "false",
"ai": "true",
"source": "opinion"
},
{
"statement": "He invited trade wars.",
"real": "true",
"ai": "true",
"source": "Personal Institute for International Economics"
},
{
"statement": "Donald Trump's presidency ended up selling American ships to China to help them improve and modernize their navy",
"real": "true",
"ai": "false",
"source": "forbes.com"
},
{
"statement": "Donald Trump invited trade wars.",
"real": "true",
"ai": "true",
"source": "personal institute for international economics"
},
{
"statement": "Donald Trump thanked President Xi Jinping for what he did.",
"real": "true",
"ai": "true",
"source": "CNBC.com"
},
{
"statement": "Donald Trump thanked President Xi Jinping for what he did.",
"real": "true",
"ai": "true",
"source": "true - wsj"
},
{
"statement": "President Xi Jinping did something",
"real": "true",
"ai": "true",
"source": "Objectively true"
},
{
"statement": "Donald Trump actually thanked President Xi Jinping.",
"real": "true",
"ai": "true",
"source": "WSJ"
},
{
"statement": "We hardly do Taiwan",
"real": "true",
"ai": "false",
"source": "doesn't make sense"
},
{
"statement": "Kamala Harris has changed her beliefs.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "XI WAS RESPONSIBLE FOR LACKING AND NOT GIVING US TRANSPARENCY ABOUT THE ORIGINS OF COVID.",
"real": "true",
"ai": "true",
"source": "nytimes"
},
{
"statement": "Everyone knows she is a Marxist.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "Kamala Harris believed everything she believed three and four years ago.",
"real": "false",
"ai": "false",
"source": "newsweek"
},
{
"statement": "It is 21 million people, not 15 million.",
"real": "false",
"ai": "false",
"source": "it was only around 12k https://www.migrationpolicy.org/article/biden-three-immigration-record"
},
{
"statement": "Millions and millions of people are pouring in monthly.",
"real": "false",
"ai": "false",
"source": "cbp.gov"
},
{
"statement": "Her father is a Marxist professor in economics.",
"real": "true",
"ai": "false",
"source": "Economic Times"
},
{
"statement": "They have and she has destroyed our country with policy that's insane.",
"real": "true",
"ai": "false",
"source": "opinion"
},
{
"statement": "Many of these people are criminals.",
"real": "false",
"ai": "false",
"source": "https://news.northwestern.edu/stories/2024/03/immigrants-are-significantly-less-likely-to-commit-crimes-than-the-us-born/ - oppsite"
},
{
"statement": "That's bigger than New York State, pouring in.",
"real": "false",
"ai": "false",
"source": "fact check"
},
{
"statement": "Trump said he would vote for a six-week abortion ban.",
"real": "true",
"ai": "true",
"source": "CBS news"
},
{
"statement": "YOU WERE ABLE TO KILL ROE V. WADE.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "The plan is, as you know, the vote is, they have abortion in the ninth month.",
"real": "true",
"ai": "false",
"source": "doesn't make sense without context"
},
{
"statement": "The very next day, you will reverse course, saying you would vote to support the ban.",
"real": "true",
"ai": "false",
"source": "opinion"
},
{
"statement": "We were able to do that.",
"real": "true",
"ai": "true",
"source": "Objectivly true"
},
{
"statement": "Trump initially said the six-week ban was too short.",
"real": "false",
"ai": "false",
"source": "Trump voiced support for a full ban"
},
{
"statement": "Her vice presidential pick says abortion in the ninth month is absolutely fine.",
"real": "false",
"ai": "false",
"source": "Star Tribune"
},
{
"statement": "States are voting on it for the first time.",
"real": "true",
"ai": "false",
"source": "CNN"
},
{
"statement": "This is an issue that has torn our country apart.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "Our country has been apart for 52 years.",
"real": "true",
"ai": "false",
"source": "opinion"
},
{
"statement": "The baby is born, no longer abortion because the baby is born is okay.",
"real": "false",
"ai": "true",
"source": "doesnt make sense"
},
{
"statement": "Every legal scholar, every Democrat, every Republican, liberal, conservative, they've all wanted this issue to be brought back.",
"real": "false",
"ai": "false",
"source": "doesn't make snese without context"
},
{
"statement": "There is no state in this country where it is legal to kill a baby after it's born.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "85% of Republicans believe in exceptions for incest and the life of the mother when it comes to abortion",
"real": "false",
"ai": "false",
"source": "Gallup news"
},
{
"statement": "There is no state in this country where it is legal to kill a baby after it's born.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "They (Trump and his administration) did exactly as they intended.",
"real": "true",
"ai": "true",
"source": "roe v Wade was overturned"
},
{
"statement": "Every legal scholar, every Democrat, every Republican, liberal, conservative, they've all wanted this issue to be brought back.",
"real": "false",
"ai": "false",
"source": "PBS"
},
{
"statement": "In over 20 states, there are Trump abortion bans, which make it harder for people to access abortion.",
"real": "true",
"ai": "true",
"source": "guttmacher insitutute"
},
{
"statement": "The government should not be telling a woman what to do with her body.",
"real": "false",
"ai": "true",
"source": "Opinion"
},
{
"statement": "Trump abortion bans make it criminal for a doctor or nurse to provide healthcare.",
"real": "true",
"ai": "true",
"source": "nytimes"
},
{
"statement": "They (Trump and his administration) intended to undo the protections of Roe v. Wade.",
"real": "true",
"ai": "true",
"source": "thehill.com"
},
{
"statement": "Pregnant women who want to carry to term are being denied care in emergency rooms.",
"real": "true",
"ai": "false",
"source": "common sense"
},
{
"statement": "Trump has abortion bans that make no exception for rape or incest.",
"real": "false",
"ai": "false",
"source": "kff"
},
{
"statement": "A 12 or 13-year-old survivor of incest being forced to carry a pregnancy to term is something they don't want.",
"real": "false",
"ai": "true",
"source": "common sense"
},
{
"statement": "If Donald Trump were to be re-elected, he will sign a national abortion ban.",
"real": "false",
"ai": "false",
"source": "cnn"
},
{
"statement": "Healthcare providers are afraid to provide care to pregnant women in an emergency room because they are afraid they might go to jail.",
"real": "true",
"ai": "true",
"source": "NYT"
},
{
"statement": "Congress passes a bill to put back in place the protections of Roe v. Wade.",
"real": "true",
"ai": "false",
"source": "https://degette.house.gov/media-center/press-releases/democrats-introduce-legislation-restore-roe-v-wade"
},
{
"statement": "I'm not signing a ban.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "Certain freedoms, in particular, the ones to make decisions about one's own body, should not be made by the government.",
"real": "false",
"ai": "true",
"source": "Opinion"
},
{
"statement": "We got what every legal scholar wanted it.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "Decisions about one's own body should not be made by the government.",
"real": "true",
"ai": "true",
"source": "Common view "
},
{
"statement": "The states are voting. It may take a little time, but...",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "This issue has torn our country apart for 52 years",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "I did something nobody thought was possible",
"real": "false",
"ai": "true",
"source": "opinion"
},
{
"statement": "THIS HAS BEEN TAKEN OVER BY THE STATES.",
"real": "true",
"ai": "true",
"source": "Roe v Wade made it a state decision "
},
{
"statement": "WON'T HAVE TO.",
"real": "false",
"ai": "true",
"source": "doesn't make sense"
},
{
"statement": "They wanted it back in the states",
"real": "true",
"ai": "true",
"source": "AP news"
},
{
"statement": "In his Project 2025, there would be a monitor that would be monitoring your pregnant is, your miscarriages.",
"real": "true",
"ai": "false",
"source": "project2025"
},
{
"statement": "Joe Biden spends all his time giving speeches.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "People who had to pay off their student loans would have lost to Trump",
"real": "true",
"ai": "false",
"source": "opinion"
},
{
"statement": "I WILL HAVE TO.",
"real": "false",
"ai": "true",
"source": "Doesn't make sense"
},
{
"statement": "ESPECIALLY NOW WITH ESSENTIALLY 50/50 IN BOTH THE SENATE AND THE HOUSE.",
"real": "false",
"ai": "true",
"source": "us website - leans towards republican by 9"
},
{
"statement": "Harris could not get student loans.",
"real": "false",
"ai": "false",
"source": "Common sense"
},
{
"statement": "The Democrats didn't get student loans.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "Now here in America is a woman carrying a pregnancy to term and asking for an abortion.",
"real": "true",
"ai": "false",
"source": "Common sense"
},
{
"statement": "JD Vance has said that you would veto a bill that would ban abortion after 15 weeks.",
"real": "true",
"ai": "true",
"source": "pbs.org"
},
{
"statement": "Nowhere in America is a woman carrying a pregnancy to term and asking for an abortion.",
"real": "false",
"ai": "false",
"source": "Moderator fact checked this during this debate"
},
{
"statement": "Couples who pray and dream of having a family are being denied IVF treatment.",
"real": "true",
"ai": "false",
"source": "House.gov"
},
{
"statement": "Working women who are working 1-2 jobs can barely afford childcare.",
"real": "true",
"ai": "true",
"source": "americanprogress.org"
},
{
"statement": "The economy was in a catastrophe before the coronavirus pandemic.",
"real": "false",
"ai": "false",
"source": "vox"
},
{
"statement": "People are having trouble affording healthcare.",
"real": "true",
"ai": "true",
"source": "cnn"
},
{
"statement": "I have been a leader.",
"real": "false",
"ai": "true",
"source": "shoudln't have answered"
},
{
"statement": "This issue has been on the ballot in red and blue states.",
"real": "true",
"ai": "true",
"source": "KFF"
},
{
"statement": "The majority of Americans believe in a woman's right to make decisions about her own body.",
"real": "true",
"ai": "true",
"source": "Gallup"
},
{
"statement": "You could do abortions in the seventh month, the eighth month, the ninth month, and probably after birth.",
"real": "false",
"ai": "false",
"source": "axios"
},
{
"statement": "When they got a very negative decision, I saw the people of Alabama and legislature two days later, voting.",
"real": "true",
"ai": "true",
"source": "cnn"
},
{
"statement": "President Biden posed tough new restrictions this past June.",
"real": "true",
"ai": "true",
"source": "white house .gov"
},
{
"statement": "The numbers have dropped significantly since then.",
"real": "true",
"ai": "true",
"source": "common sense "
},
{
"statement": "The Governor said, 'We put the baby aside, and then we determine what to do with the baby.'",
"real": "true",
"ai": "true",
"source": "Ralph Northam"
},
{
"statement": "I'm the only person on this stage who has prosecuted national organizations for terrorism.",
"real": "true",
"ai": "true",
"source": "Her job"
},
{
"statement": "Illegal border crossings reached a record high this past June.",
"real": "false",
"ai": "true",
"source": "CBS"
},
{
"statement": "The United States Congress, including some of the most conservative members, has prosecuted national organizations for the trafficking of drugs and human beings.",
"real": "true",
"ai": "true",
"source": "Common Sense"
},
{
"statement": "The United States Congress has prosecuted national organizations for the trafficking of drugs and human beings.",
"real": "false",
"ai": "true",
"source": "CBS"
},
{
"statement": "Conservative members of the United States Senate came up with a border security bill that I supported.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "The bill would have put 1500 more border agents on the border.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "The administration waited for 6 months to act.",
"real": "true",
"ai": "true",
"source": "https://doggett.house.gov/media/blog-post/timeline-trumps-coronavirus-responses - they even took actions against people raising alarms"
},
{
"statement": "The bill would have put 1500 more border agents on the border",
"real": "true",
"ai": "true",
"source": "senate"
},
{
"statement": "VE ALLOWED US TO STEM THE FLOW OF FENTANYL COMING INTO THE STEM THE FLOW OF FENTANYL COMING INTO THE UNITED STATES. COMING INTO THE UNITED STATES.",
"real": "true",
"ai": "false",
"source": "CNN"
},
{
"statement": "The surge of fentanyl in our country is a significant issue.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "Trump called up some folks in Congress and said 'kill the bill'.",
"real": "true",
"ai": "true",
"source": "common sense"
},
{
"statement": "The proposed bill would have provided resources to address the fentanyl crisis.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "This comes at a time when the people need relief.",
"real": "true",
"ai": "true",
"source": "CNN"
},
{
"statement": "He'd prefer to run on a problem instead of asking for a solution.",
"real": "false",
"ai": "true",
"source": "opinion "
},
{
"statement": "The people of our country need a leader who engages in solutions.",
"real": "false",
"ai": "true",
"source": "Opinion"
},
{
"statement": "The current president prefers to run on a problem instead of fixing it.",
"real": "false",
"ai": "false",
"source": "opinion"
},
{
"statement": "I have been a leader on fertilization, IVF.",
"real": "true",
"ai": "true",
"source": "prospect.org"
},
{
"statement": "A bill was proposed that would have provided more resources to address the fentanyl crisis.",
"real": "true",
"ai": "true",
"source": "Senator Bob Casey"
},
{
"statement": "Trump does not talk about the people at his rallies.",
"real": "false",
"ai": "false",
"source": "common sense"
},
{
"statement": "Biden is paying people to go to his rallies.",
"real": "false",
"ai": "false",
"source": "common sense; no president would participate in bribery"
},
{
"statement": "People don't leave my rallies.",
"real": "false",
"ai": "false",
"source": "wall Street journal"
},
{
"statement": "People in Springfield, Illinois are eating dogs.",
"real": "false",
"ai": "false",
"source": "common sense; i wasnt there to eat anything"
},
{
"statement": "The people are eating the pets of the people that live there.",
"real": "false",