-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNew_Trained_Data.arff
3104 lines (3102 loc) · 198 KB
/
New_Trained_Data.arff
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
@relation 'Input-weka.filters.unsupervised.attribute.StringToWordVector-R1-W500-prune-rate-1.0-C-T-I-N1-L-stemmerweka.core.stemmers.NullStemmer-stopwords-handlerweka.core.stopwords.Null-M1-tokenizerweka.core.tokenizers.NGramTokenizer -max 3 -min 1 -delimiters \" \\r\\n\\t.,;:\\\'\\\"()?!\"'
@attribute level {0,1,2,3}
@attribute #truth numeric
@attribute a numeric
@attribute 'a lebanese' numeric
@attribute 'a lebanese house' numeric
@attribute 'a week' numeric
@attribute 'a week away' numeric
@attribute acne numeric
@attribute afternoon numeric
@attribute 'afternoon appointments' numeric
@attribute 'afternoon appointments and' numeric
@attribute alike numeric
@attribute all numeric
@attribute 'all canadians' numeric
@attribute 'all canadians look' numeric
@attribute 'all you' numeric
@attribute 'all you can' numeric
@attribute always numeric
@attribute 'always getting' numeric
@attribute 'always getting offended' numeric
@attribute and numeric
@attribute 'and getting' numeric
@attribute 'and getting the' numeric
@attribute 'and knowledgeable' numeric
@attribute anyone numeric
@attribute 'anyone wear' numeric
@attribute 'anyone wear kbcc' numeric
@attribute 'anyone who' numeric
@attribute 'anyone who goes' numeric
@attribute appointments numeric
@attribute 'appointments and' numeric
@attribute 'appointments and getting' numeric
@attribute are numeric
@attribute 'are so' numeric
@attribute 'are so mature' numeric
@attribute asians numeric
@attribute 'asians don#t' numeric
@attribute 'asians don#t ever' numeric
@attribute ass numeric
@attribute 'ass beat' numeric
@attribute 'ass beat #truth' numeric
@attribute at numeric
@attribute 'at people' numeric
@attribute 'at people who' numeric
@attribute away numeric
@attribute be numeric
@attribute 'be safe' numeric
@attribute 'be safe tweeps' numeric
@attribute beat numeric
@attribute 'beat #truth' numeric
@attribute because numeric
@attribute 'because they' numeric
@attribute 'because they literally' numeric
@attribute before numeric
@attribute 'before you' numeric
@attribute 'before you even' numeric
@attribute birthday numeric
@attribute 'birthday is' numeric
@attribute 'birthday is exactly' numeric
@attribute by numeric
@attribute 'by something' numeric
@attribute can numeric
@attribute 'can do' numeric
@attribute 'can do is' numeric
@attribute canadians numeric
@attribute 'canadians look' numeric
@attribute 'canadians look alike' numeric
@attribute canceling numeric
@attribute 'canceling afternoon' numeric
@attribute 'canceling afternoon appointments' numeric
@attribute choice numeric
@attribute days numeric
@attribute 'days always' numeric
@attribute 'days always getting' numeric
@attribute didn#t numeric
@attribute 'didn#t think' numeric
@attribute 'didn#t think anyone' numeric
@attribute do numeric
@attribute 'do is' numeric
@attribute 'do is laugh' numeric
@attribute don#t numeric
@attribute 'don#t ever' numeric
@attribute 'don#t ever have' numeric
@attribute even numeric
@attribute 'even finish' numeric
@attribute 'even finish saying' numeric
@attribute ever numeric
@attribute 'ever have' numeric
@attribute 'ever have acne' numeric
@attribute 'ever notice' numeric
@attribute 'ever notice asians' numeric
@attribute exactly numeric
@attribute 'exactly a' numeric
@attribute 'exactly a week' numeric
@attribute finish numeric
@attribute 'finish saying' numeric
@attribute 'finish saying the' numeric
@attribute fudge numeric
@attribute 'fudge out' numeric
@attribute 'fudge out of' numeric
@attribute getting numeric
@attribute 'getting offended' numeric
@attribute 'getting offended by' numeric
@attribute 'getting the' numeric
@attribute 'getting the fudge' numeric
@attribute 'getting your' numeric
@attribute 'getting your ass' numeric
@attribute goes numeric
@attribute 'goes there' numeric
@attribute 'goes there is' numeric
@attribute going numeric
@attribute 'going to' numeric
@attribute 'going to move' numeric
@attribute goodnight numeric
@attribute 'goodnight all' numeric
@attribute had numeric
@attribute 'had no' numeric
@attribute 'had no other' numeric
@attribute hahaha numeric
@attribute 'hahaha when' numeric
@attribute 'hahaha when all' numeric
@attribute have numeric
@attribute 'have acne' numeric
@attribute here numeric
@attribute 'here be' numeric
@attribute 'here be safe' numeric
@attribute hold numeric
@attribute 'hold if' numeric
@attribute 'hold if you' numeric
@attribute house numeric
@attribute 'house hold' numeric
@attribute 'house hold if' numeric
@attribute i numeric
@attribute 'i didn#t' numeric
@attribute 'i didn#t think' numeric
@attribute i#m numeric
@attribute 'i#m going' numeric
@attribute 'i#m going to' numeric
@attribute if numeric
@attribute 'if you' numeric
@attribute 'if you say' numeric
@attribute in numeric
@attribute 'in a' numeric
@attribute 'in a lebanese' numeric
@attribute is numeric
@attribute 'is exactly' numeric
@attribute 'is exactly a' numeric
@attribute 'is laugh' numeric
@attribute 'is laugh at' numeric
@attribute 'is proud' numeric
@attribute 'is proud of' numeric
@attribute it numeric
@attribute 'it because' numeric
@attribute 'it because they' numeric
@attribute kbcc numeric
@attribute 'kbcc merchandise' numeric
@attribute 'kbcc merchandise like' numeric
@attribute knowledgeable numeric
@attribute laugh numeric
@attribute 'laugh at' numeric
@attribute 'laugh at people' numeric
@attribute lebanese numeric
@attribute 'lebanese house' numeric
@attribute 'lebanese house hold' numeric
@attribute like numeric
@attribute 'like i' numeric
@attribute 'like i didn#t' numeric
@attribute literally numeric
@attribute 'literally had' numeric
@attribute 'literally had no' numeric
@attribute look numeric
@attribute 'look alike' numeric
@attribute mature numeric
@attribute 'mature and' numeric
@attribute 'mature and knowledgeable' numeric
@attribute merchandise numeric
@attribute 'merchandise like' numeric
@attribute 'merchandise like i' numeric
@attribute move numeric
@attribute 'move out' numeric
@attribute 'move out before' numeric
@attribute my numeric
@attribute 'my birthday' numeric
@attribute 'my birthday is' numeric
@attribute no numeric
@attribute 'no other' numeric
@attribute 'no other choice' numeric
@attribute notice numeric
@attribute 'notice asians' numeric
@attribute 'notice asians don#t' numeric
@attribute of numeric
@attribute 'of here' numeric
@attribute 'of here be' numeric
@attribute 'of it' numeric
@attribute 'of it because' numeric
@attribute offended numeric
@attribute 'offended by' numeric
@attribute 'offended by something' numeric
@attribute other numeric
@attribute 'other choice' numeric
@attribute out numeric
@attribute 'out before' numeric
@attribute 'out before you' numeric
@attribute 'out of' numeric
@attribute 'out of here' numeric
@attribute 'out your' numeric
@attribute 'out your getting' numeric
@attribute people numeric
@attribute 'people these' numeric
@attribute 'people these days' numeric
@attribute 'people who' numeric
@attribute 'people who think' numeric
@attribute proud numeric
@attribute 'proud of' numeric
@attribute 'proud of it' numeric
@attribute safe numeric
@attribute 'safe tweeps' numeric
@attribute say numeric
@attribute 'say i#m' numeric
@attribute 'say i#m going' numeric
@attribute saying numeric
@attribute 'saying the' numeric
@attribute 'saying the word' numeric
@attribute so numeric
@attribute 'so mature' numeric
@attribute 'so mature and' numeric
@attribute something numeric
@attribute the numeric
@attribute 'the fudge' numeric
@attribute 'the fudge out' numeric
@attribute 'the word' numeric
@attribute 'the word out' numeric
@attribute there numeric
@attribute 'there is' numeric
@attribute 'there is proud' numeric
@attribute these numeric
@attribute 'these days' numeric
@attribute 'these days always' numeric
@attribute they numeric
@attribute 'they are' numeric
@attribute 'they are so' numeric
@attribute 'they literally' numeric
@attribute 'they literally had' numeric
@attribute think numeric
@attribute 'think anyone' numeric
@attribute 'think anyone who' numeric
@attribute 'think they' numeric
@attribute 'think they are' numeric
@attribute to numeric
@attribute 'to move' numeric
@attribute 'to move out' numeric
@attribute tweeps numeric
@attribute wear numeric
@attribute 'wear kbcc' numeric
@attribute 'wear kbcc merchandise' numeric
@attribute week numeric
@attribute 'week away' numeric
@attribute when numeric
@attribute 'when all' numeric
@attribute 'when all you' numeric
@attribute who numeric
@attribute 'who goes' numeric
@attribute 'who goes there' numeric
@attribute 'who think' numeric
@attribute 'who think they' numeric
@attribute why numeric
@attribute 'why would' numeric
@attribute 'why would anyone' numeric
@attribute word numeric
@attribute 'word out' numeric
@attribute 'word out your' numeric
@attribute would numeric
@attribute 'would anyone' numeric
@attribute 'would anyone wear' numeric
@attribute y#all numeric
@attribute 'y#all ever' numeric
@attribute 'y#all ever notice' numeric
@attribute you numeric
@attribute 'you can' numeric
@attribute 'you can do' numeric
@attribute 'you even' numeric
@attribute 'you even finish' numeric
@attribute 'you say' numeric
@attribute 'you say i#m' numeric
@attribute your numeric
@attribute 'your ass' numeric
@attribute 'your ass beat' numeric
@attribute 'your getting' numeric
@attribute 'your getting your' numeric
@attribute & numeric
@attribute - numeric
@attribute 2 numeric
@attribute 4 numeric
@attribute 'a bottle' numeric
@attribute 'a couple' numeric
@attribute 'a couple of' numeric
@attribute 'a day' numeric
@attribute 'a drink' numeric
@attribute 'a few' numeric
@attribute 'a fuck' numeric
@attribute 'a girl' numeric
@attribute 'a glass' numeric
@attribute 'a glass of' numeric
@attribute 'a night' numeric
@attribute 'a regular' numeric
@attribute 'a year' numeric
@attribute ability numeric
@attribute 'ability to' numeric
@attribute about numeric
@attribute 'about is' numeric
@attribute 'about the' numeric
@attribute 'about this' numeric
@attribute addicted numeric
@attribute ago numeric
@attribute alcohol numeric
@attribute 'all are' numeric
@attribute 'all my' numeric
@attribute 'all of' numeric
@attribute 'all the' numeric
@attribute 'all the same' numeric
@attribute 'all the time' numeric
@attribute alone numeric
@attribute along numeric
@attribute also numeric
@attribute am numeric
@attribute americans numeric
@attribute an numeric
@attribute 'and a' numeric
@attribute 'and all' numeric
@attribute 'and i' numeric
@attribute 'and my' numeric
@attribute 'and their' numeric
@attribute 'and then' numeric
@attribute another numeric
@attribute any numeric
@attribute anything numeric
@attribute 'are all' numeric
@attribute 'are always' numeric
@attribute 'are like' numeric
@attribute 'are not' numeric
@attribute 'are the' numeric
@attribute around numeric
@attribute as numeric
@attribute 'as a' numeric
@attribute 'as soon' numeric
@attribute 'as soon as' numeric
@attribute asian numeric
@attribute asked numeric
@attribute 'at a' numeric
@attribute 'at home' numeric
@attribute 'at the' numeric
@attribute back numeric
@attribute bar numeric
@attribute 'because i' numeric
@attribute been numeric
@attribute beer numeric
@attribute 'before i' numeric
@attribute being numeric
@attribute believe numeric
@attribute best numeric
@attribute better numeric
@attribute big numeric
@attribute black numeric
@attribute body numeric
@attribute bottle numeric
@attribute 'bottle of' numeric
@attribute 'bottle of wine' numeric
@attribute breakthrough numeric
@attribute bring numeric
@attribute business numeric
@attribute but numeric
@attribute 'but i' numeric
@attribute came numeric
@attribute 'can make' numeric
@attribute can#t numeric
@attribute cant numeric
@attribute close numeric
@attribute college numeric
@attribute come numeric
@attribute could numeric
@attribute couple numeric
@attribute 'couple of' numeric
@attribute crack numeric
@attribute crazy numeric
@attribute day numeric
@attribute did numeric
@attribute different numeric
@attribute difficult numeric
@attribute dinner numeric
@attribute dmt numeric
@attribute 'dmt experience' numeric
@attribute doesn#t numeric
@attribute 'don#t know' numeric
@attribute done numeric
@attribute doubt numeric
@attribute down numeric
@attribute drink numeric
@attribute 'drink i' numeric
@attribute drinking numeric
@attribute drinks numeric
@attribute drunk numeric
@attribute during numeric
@attribute early numeric
@attribute end numeric
@attribute enough numeric
@attribute 'enough to' numeric
@attribute equivalent numeric
@attribute 'equivalent drinking' numeric
@attribute etizolam numeric
@attribute every numeric
@attribute everyone numeric
@attribute experience numeric
@attribute family numeric
@attribute far numeric
@attribute fat numeric
@attribute feel numeric
@attribute 'feel like' numeric
@attribute feeling numeric
@attribute feelings numeric
@attribute few numeric
@attribute find numeric
@attribute first numeric
@attribute 'first time' numeric
@attribute follow numeric
@attribute for numeric
@attribute 'for a' numeric
@attribute 'for all' numeric
@attribute 'for the' numeric
@attribute forget numeric
@attribute found numeric
@attribute free numeric
@attribute friend numeric
@attribute friends numeric
@attribute friends# numeric
@attribute from numeric
@attribute 'from the' numeric
@attribute fuck numeric
@attribute fun numeric
@attribute gay numeric
@attribute get numeric
@attribute 'get that' numeric
@attribute gets numeric
@attribute girl numeric
@attribute girls numeric
@attribute give numeric
@attribute 'give a' numeric
@attribute glass numeric
@attribute 'glass of' numeric
@attribute 'glass of wine' numeric
@attribute go numeric
@attribute gonna numeric
@attribute good numeric
@attribute got numeric
@attribute guy numeric
@attribute guys numeric
@attribute 'guys who' numeric
@attribute 'had a' numeric
@attribute 'had to' numeric
@attribute half numeric
@attribute handle numeric
@attribute happened numeric
@attribute hard numeric
@attribute has numeric
@attribute hate numeric
@attribute 'have a' numeric
@attribute 'have been' numeric
@attribute having numeric
@attribute 'having a' numeric
@attribute he numeric
@attribute help numeric
@attribute her numeric
@attribute heroin numeric
@attribute hey numeric
@attribute high numeric
@attribute 'high school' numeric
@attribute hipsters numeric
@attribute his numeric
@attribute history numeric
@attribute hit numeric
@attribute home numeric
@attribute how numeric
@attribute 'how to' numeric
@attribute http numeric
@attribute human numeric
@attribute 'i also' numeric
@attribute 'i always' numeric
@attribute 'i am' numeric
@attribute 'i can' numeric
@attribute 'i could' numeric
@attribute 'i don#t' numeric
@attribute 'i don#t know' numeric
@attribute 'i drink' numeric
@attribute 'i feel' numeric
@attribute 'i feel like' numeric
@attribute 'i get' numeric
@attribute 'i had' numeric
@attribute 'i hate' numeric
@attribute 'i have' numeric
@attribute 'i have a' numeric
@attribute 'i just' numeric
@attribute 'i know' numeric
@attribute 'i really' numeric
@attribute 'i think' numeric
@attribute 'i took' numeric
@attribute 'i took a' numeric
@attribute 'i was' numeric
@attribute 'i was a' numeric
@attribute 'i wasn#t' numeric
@attribute 'i would' numeric
@attribute i#d numeric
@attribute i#ll numeric
@attribute i#ve numeric
@attribute idea numeric
@attribute 'if i' numeric
@attribute 'if you#re' numeric
@attribute ignorant numeric
@attribute 'ignorant people' numeric
@attribute im numeric
@attribute important numeric
@attribute 'in my' numeric
@attribute 'in the' numeric
@attribute instead numeric
@attribute 'instead of' numeric
@attribute into numeric
@attribute 'is a' numeric
@attribute 'is the' numeric
@attribute isn#t numeric
@attribute 'it is' numeric
@attribute 'it was' numeric
@attribute it#s numeric
@attribute its numeric
@attribute jane numeric
@attribute 'jane i' numeric
@attribute jane#s numeric
@attribute just numeric
@attribute keep numeric
@attribute kid numeric
@attribute kids numeric
@attribute know numeric
@attribute later numeric
@attribute law numeric
@attribute 'law of' numeric
@attribute 'law of equivalent' numeric
@attribute leave numeric
@attribute led numeric
@attribute left numeric
@attribute life numeric
@attribute 'like the' numeric
@attribute 'like to' numeric
@attribute 'like we' numeric
@attribute liquor numeric
@attribute little numeric
@attribute looking numeric
@attribute 'looking for' numeric
@attribute love numeric
@attribute made numeric
@attribute make numeric
@attribute makes numeric
@attribute many numeric
@attribute marijuana numeric
@attribute mary numeric
@attribute 'mary jane' numeric
@attribute 'mary jane i' numeric
@attribute 'mary jane#s' numeric
@attribute mdma numeric
@attribute me numeric
@attribute 'me a' numeric
@attribute 'me and' numeric
@attribute 'me to' numeric
@attribute men numeric
@attribute might numeric
@attribute mike numeric
@attribute mind numeric
@attribute money numeric
@attribute more numeric
@attribute most numeric
@attribute much numeric
@attribute 'my ability' numeric
@attribute 'my ability to' numeric
@attribute 'my drinking' numeric
@attribute 'my first' numeric
@attribute 'my friends' numeric
@attribute 'my mind' numeric
@attribute myself numeric
@attribute need numeric
@attribute never numeric
@attribute new numeric
@attribute nice numeric
@attribute niggers numeric
@attribute night numeric
@attribute nights numeric
@attribute 'no doubt' numeric
@attribute not numeric
@attribute 'not to' numeric
@attribute now numeric
@attribute number numeric
@attribute 'number is' numeric
@attribute 'of a' numeric
@attribute 'of equivalent' numeric
@attribute 'of equivalent drinking' numeric
@attribute 'of my' numeric
@attribute 'of the' numeric
@attribute 'of wine' numeric
@attribute off numeric
@attribute old numeric
@attribute on numeric
@attribute 'on a' numeric
@attribute 'on my' numeric
@attribute 'on the' numeric
@attribute once numeric
@attribute one numeric
@attribute 'one glass' numeric
@attribute 'one glass of' numeric
@attribute only numeric
@attribute open numeric
@attribute or numeric
@attribute others numeric
@attribute our numeric
@attribute over numeric
@attribute own numeric
@attribute parents numeric
@attribute party numeric
@attribute past numeric
@attribute 'people always' numeric
@attribute 'people are' numeric
@attribute 'people from' numeric
@attribute 'people who are' numeric
@attribute 'people who drink' numeric
@attribute 'people with' numeric
@attribute place numeric
@attribute pretty numeric
@attribute probably numeric
@attribute problem numeric
@attribute put numeric
@attribute quite numeric
@attribute racist numeric
@attribute rather numeric
@attribute 'rather than' numeric
@attribute real numeric
@attribute reality numeric
@attribute really numeric
@attribute reasonable numeric
@attribute regret numeric
@attribute regular numeric
@attribute right numeric
@attribute rights numeric
@attribute russia numeric
@attribute said numeric
@attribute same numeric
@attribute school numeric
@attribute second numeric
@attribute see numeric
@attribute share numeric
@attribute she numeric
@attribute shit numeric
@attribute smoke numeric
@attribute smoking numeric
@attribute snorting numeric
@attribute 'so i' numeric
@attribute social numeric
@attribute some numeric
@attribute 'some people' numeric
@attribute someone numeric
@attribute sometimes numeric
@attribute soon numeric
@attribute 'soon as' numeric
@attribute soul numeric
@attribute spend numeric
@attribute spending numeric
@attribute spent numeric
@attribute start numeric
@attribute still numeric
@attribute stink numeric
@attribute stomach numeric
@attribute stop numeric
@attribute strong numeric
@attribute stupid numeric
@attribute such numeric
@attribute sure numeric
@attribute sweet numeric
@attribute take numeric
@attribute taking numeric
@attribute talk numeric
@attribute 'talk about' numeric
@attribute 'talk about is' numeric
@attribute tell numeric
@attribute than numeric
@attribute that numeric
@attribute 'that i' numeric
@attribute 'that one' numeric
@attribute 'that we' numeric
@attribute that#s numeric
@attribute 'the best' numeric
@attribute 'the night' numeric
@attribute 'the people' numeric
@attribute 'the people who' numeric
@attribute 'the same' numeric
@attribute 'the time' numeric
@attribute 'the way' numeric
@attribute their numeric
@attribute 'their own' numeric
@attribute them numeric
@attribute then numeric
@attribute 'there are' numeric
@attribute there#s numeric
@attribute they#re numeric
@attribute thing numeric
@attribute things numeric
@attribute this numeric
@attribute those numeric
@attribute though numeric
@attribute thought numeric
@attribute three numeric
@attribute through numeric
@attribute time numeric
@attribute 'time i' numeric
@attribute 'time with' numeric
@attribute times numeric
@attribute tired numeric
@attribute 'tired of' numeric
@attribute 'to a' numeric
@attribute 'to all' numeric
@attribute 'to be' numeric
@attribute 'to do' numeric
@attribute 'to get' numeric
@attribute 'to handle' numeric
@attribute 'to have' numeric
@attribute 'to me' numeric
@attribute 'to see' numeric
@attribute 'to start' numeric
@attribute 'to the' numeric
@attribute today numeric
@attribute too numeric
@attribute 'too much' numeric
@attribute took numeric
@attribute 'took a' numeric
@attribute tried numeric
@attribute trying numeric
@attribute two numeric
@attribute understand numeric
@attribute until numeric
@attribute up numeric
@attribute 'up with' numeric
@attribute us numeric
@attribute use numeric
@attribute used numeric
@attribute useless numeric
@attribute usually numeric
@attribute very numeric
@attribute wanna numeric
@attribute want numeric
@attribute 'want to' numeric
@attribute was numeric
@attribute 'was a' numeric
@attribute 'was just' numeric
@attribute wasn#t numeric
@attribute way numeric
@attribute 'way i' numeric
@attribute we numeric
@attribute 'we all' numeric
@attribute 'we like' numeric
@attribute 'we like to' numeric
@attribute weed numeric
@attribute well numeric
@attribute went numeric
@attribute were numeric
@attribute what numeric
@attribute 'what i' numeric
@attribute what#s numeric
@attribute whatever numeric
@attribute 'when i' numeric
@attribute 'when i was' numeric
@attribute where numeric
@attribute which numeric
@attribute while numeric
@attribute white numeric
@attribute 'white people' numeric
@attribute 'who are' numeric
@attribute 'who drink' numeric
@attribute whole numeric
@attribute will numeric
@attribute wine numeric
@attribute 'wine at' numeric
@attribute with numeric
@attribute 'with a' numeric
@attribute 'with my' numeric
@attribute 'with people' numeric
@attribute 'with people who' numeric
@attribute 'with the' numeric
@attribute 'with their' numeric
@attribute 'with these' numeric
@attribute without numeric
@attribute wondering numeric
@attribute words numeric
@attribute work numeric
@attribute world numeric
@attribute 'y#all are' numeric
@attribute year numeric
@attribute years numeric
@attribute yes numeric
@attribute 'you all' numeric
@attribute 'you all are' numeric
@attribute 'you are' numeric
@attribute you#re numeric
@attribute //instagram numeric
@attribute //www numeric
@attribute 1 numeric
@attribute 25i numeric
@attribute = numeric
@attribute _ numeric
@attribute 'a bit' numeric
@attribute 'a bottle of' numeric
@attribute 'a good' numeric
@attribute able numeric
@attribute 'able to' numeric
@attribute act numeric
@attribute actually numeric
@attribute after numeric
@attribute again numeric
@attribute ain#t numeric
@attribute 'alcohol was' numeric
@attribute 'all day' numeric
@attribute 'all my friends' numeric
@attribute 'all of you' numeric
@attribute 'all people' numeric
@attribute 'all that' numeric
@attribute 'all these' numeric
@attribute 'all women' numeric
@attribute 'and behavior' numeric
@attribute 'and behaviour' numeric
@attribute 'and i was' numeric
@attribute 'and it' numeric
@attribute 'and support' numeric
@attribute 'and that' numeric
@attribute 'and the' numeric
@attribute apparently numeric
@attribute 'are you' numeric
@attribute aren#t numeric
@attribute 'asian men' numeric
@attribute asshole numeric
@attribute 'at all' numeric
@attribute 'at least' numeric
@attribute aware numeric
@attribute baby numeric
@attribute bad numeric
@attribute 'be a' numeric
@attribute became numeric
@attribute become numeric
@attribute behavior numeric
@attribute behaviour numeric
@attribute 'being a' numeric
@attribute between numeric
@attribute beyond numeric
@attribute bit numeric
@attribute bitches numeric
@attribute blood numeric
@attribute born numeric
@attribute both numeric
@attribute bowling numeric
@attribute boyfriend numeric
@attribute boys numeric
@attribute brown numeric
@attribute buy numeric
@attribute buzz numeric
@attribute call numeric
@attribute 'can be' numeric
@attribute 'can be a' numeric
@attribute 'can#t wait' numeric
@attribute care numeric
@attribute cause numeric
@attribute cheese numeric
@attribute choose numeric
@attribute com numeric
@attribute contact numeric
@attribute 'contact me' numeric
@attribute control numeric
@attribute cow numeric
@attribute damn numeric
@attribute dangerous numeric
@attribute deal numeric
@attribute disease numeric
@attribute 'do people' numeric
@attribute does numeric
@attribute doing numeric
@attribute drank numeric
@attribute dumb numeric
@attribute earth numeric
@attribute email numeric
@attribute 'email is' numeric
@attribute 'even know' numeric
@attribute 'even know who' numeric
@attribute everybody numeric
@attribute everybody#s numeric
@attribute everyone#s numeric
@attribute everything numeric
@attribute eyes numeric
@attribute fact numeric
@attribute faggots numeric
@attribute fair numeric
@attribute fake numeric
@attribute felt numeric
@attribute 'for him' numeric
@attribute 'for me' numeric
@attribute 'for my' numeric
@attribute 'for you' numeric
@attribute 'for your' numeric
@attribute freedom numeric
@attribute 'friends are' numeric
@attribute friendship numeric
@attribute 'fuck all' numeric
@attribute 'fuck up' numeric
@attribute fucked numeric
@attribute 'fucked up' numeric
@attribute fucking numeric
@attribute game numeric
@attribute gave numeric
@attribute 'gay people' numeric
@attribute 'girls are' numeric
@attribute glasses numeric
@attribute 'going to have' numeric
@attribute 'got pregnant' numeric
@attribute group numeric
@attribute hanging numeric
@attribute happy numeric
@attribute 'have to' numeric
@attribute haven#t numeric
@attribute heart numeric
@attribute 'her support' numeric
@attribute him numeric
@attribute 'him support' numeric
@attribute 'his support' numeric
@attribute hot numeric
@attribute 'http //instagram' numeric
@attribute https numeric
@attribute husband numeric
@attribute 'i drank' numeric
@attribute 'i got' numeric
@attribute 'i got pregnant' numeric
@attribute 'i love' numeric
@attribute 'i want' numeric
@attribute 'i wouldn#t' numeric
@attribute 'i#m not' numeric
@attribute id numeric
@attribute 'if you don#t' numeric
@attribute 'if you have' numeric
@attribute 'in your' numeric
@attribute information numeric
@attribute 'it in' numeric
@attribute 'it#s not' numeric
@attribute judge numeric
@attribute kill numeric
@attribute kind numeric
@attribute 'kind of' numeric
@attribute 'know who' numeric
@attribute knowledge numeric
@attribute last numeric
@attribute least numeric
@attribute let numeric
@attribute living numeric
@attribute lol numeric
@attribute long numeric
@attribute lot numeric
@attribute lying numeric
@attribute 'mdma and' numeric
@attribute 'me feel' numeric
@attribute 'me off' numeric
@attribute 'me support' numeric
@attribute meth numeric
@attribute milk numeric
@attribute mix numeric
@attribute moments numeric
@attribute moral numeric
@attribute 'my email' numeric
@attribute 'my email is' numeric
@attribute 'my husband' numeric
@attribute 'my number' numeric
@attribute 'my number is' numeric
@attribute 'my support' numeric
@attribute n numeric
@attribute 'need to' numeric
@attribute nigga numeric
@attribute niggas numeric
@attribute none numeric
@attribute 'none of' numeric
@attribute north numeric
@attribute 'not all' numeric
@attribute 'not sure' numeric
@attribute nothing numeric
@attribute 'of these' numeric
@attribute 'of you' numeric
@attribute oh numeric
@attribute okay numeric
@attribute ones numeric
@attribute option numeric
@attribute 'our support' numeric
@attribute 'out why' numeric
@attribute outside numeric
@attribute part numeric