-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.json
1000 lines (1000 loc) · 165 KB
/
dev.json
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
{"sentiment":0,"tweet":"great, season for itchy eyes and sneezing has started. Argh to hayfever. ","features":[344,7,1011,27880,920,26424,1304,4,0,94150,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Creepers downtown! Not fun. ","features":[0,8225,12,0,577,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"gona have my Testosterone levels checked yeah for me ","features":[9878,0,9366,1727,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"haha, @SweetBritBrit okay, well I'm random myself. Thanks for following, feel free to @ me anytime. Thanks for making me laugh this AM. ","features":[119,7,454,7,299,0,1929,4,58635,929,7,267,427,307,4893,4,58635,746,1167,21]}
{"sentiment":0,"tweet":"well, i made it down to 663 emails. helluva day ","features":[299,7,428,10,14127,4,77694,128,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Katiekins08 I want to SOOOOOOO BAD!!! ","features":[21,132,21,21,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"No Conan tonight Everybody wish me good luck getting standby tickets next week!","features":[0,0,321,0,409,120,1250,400,45279,1869,414,438,12,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@MellowValley I hope you're feeling better too! I see you were pretty sick recently. ","features":[21,423,676,298,12,21,166,542,934,6633,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm on the phone with Ms. Leah ","features":[0,451,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@pursebuzz @xsparkage OH man I LOVE coffee drinks but they give me a stomach ache. So I cant have them. ","features":[21,249,21,21,2009,4822,377,3261,14349,4,0,21,631,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Finish shower, now watching TV!! ","features":[0,1803,7,528,21,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@SierraMargaret mkay love. i need to get my mind of wats gonna happen saturday ill stop by this weekend with yummy foods that u want ;]","features":[61848,71,4,174,90,653,7674,319,1171,1342,844,364,726,6432,9764,54,132,15242,0,0]}
{"sentiment":0,"tweet":"suffering from headaches - what a bad day! ","features":[12072,20204,31,358,128,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"you can get out of bed one morning and everything can change... didn't happen this morning though. ","features":[90,568,99,347,431,689,0,1171,347,565,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Wardere have both ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"aiai meu 18 de março ;; <3 Missing my boys like hell ","features":[16414,367,10,25,32887,126,126,0,0,714,66,675,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"came homw from work early.... sick ","features":[1129,0,323,975,0,934,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I realized I'm NO good at online skating ","features":[21,4037,0,21,120,951,12403,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@kittychix as for the shirt, you are very welcome. ","features":[2129,7,906,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@anthonyv19 welcome to the club..it's called insomnia or night owls or vampires. Stop thinking. we have to be up at like 7!","features":[906,1122,0,991,12031,238,43247,29581,4,0,846,4,66,10,12,0,0,0,0,0]}
{"sentiment":0,"tweet":"@teacherelen I can't get mine to work and I've done it twice ","features":[21,0,90,946,323,0,395,3546,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Bout to watch alvin and the chipmunks and eat ruffles http://myloc.me/400U","features":[0,436,31108,87565,724,64200,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Lunch, meatballs and pasta, very yummy. ","features":[0,7,47268,8005,7,6432,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"All day meeting..... ","features":[0,128,2714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@djprostyle man didn't run today I'm doing bad","features":[249,901,151,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"This nightonly 4 hours....ufff I'm so tired...but...exams call me!! ","features":[0,10,871,0,0,0,713,0,0,5475,465,12,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@stakerized looking forward to it, hope to have my pod gear by then. #ShoppingSpree!","features":[608,1734,7,423,17660,8086,4,0,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm trying to work on my last assignment of the year, but I just can't get that spark. All I want to do is lay in the grass and read. ","features":[0,662,323,291,11600,359,7,21,0,90,16983,4,0,21,132,2685,10233,784,4,0]}
{"sentiment":4,"tweet":"@HarleyHimself did that include care bear underwear? ","features":[10236,523,3823,10529,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Busy so far today. doing well. Cooking now. Will share about it once i'm done and settled in ","features":[0,882,151,4,299,4,0,4,0,1484,0,395,27398,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Back to night shift for the next 3 night! ","features":[0,238,6431,414,10,238,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Internet is down looking for some people to make me a 2 hour playlist so i can get new music. Anyone up for the challenge?","features":[0,608,133,186,10,1196,4373,90,125,437,4,0,3679,17,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"is hoping for the best ","features":[3654,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ccath Found it. Wish I hadn't. ","features":[0,4,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I hate homework ","features":[21,260,1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"yes it is and i got ripped off do not shop at WOW. !!!","features":[322,146,13886,2207,21,4,12,12,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"itsANNABETH No, that just means I'm creepy haha. ","features":[0,21,0,7,1220,0,5565,119,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Realized very late that i qa-notes have not been updated. .. too bad on my part ","features":[0,971,0,7207,0,358,804,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"think its time to head to bedfordshire.....monday is almost upon us next weekend will hopefully fly in","features":[189,138,652,231006,0,1350,1147,4849,294,414,726,2432,2277,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@OfficialAS lmao it's cool! I was TRYING to hack into Maccas wi-fi but I was too far away sooo yesh XD","features":[345,585,12,21,21,9952,0,11460,21,882,551,285380,39855,21,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"cannot sleep -_- where's Danna when i need her? o yea Utah ugh someone give me sleepy pills please.","features":[1819,382,31,103,31,0,0,174,17,1056,0,1155,241,377,2319,11401,203,4,0,0]}
{"sentiment":4,"tweet":"Washed dre dre this morning now headed to jordans with d to swimmm yay ","features":[0,11175,11175,347,6224,19456,0,1354,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I've got a cold ","features":[0,146,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I think i need a real good rest, been sick for 2 weeks liao ","features":[21,189,174,315,120,1401,7,934,10,1506,25203,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Just watched madea goes to jail..it wasnt as good as i thought it was gonna be. ","features":[0,2451,37446,1008,4055,0,5345,120,623,319,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@_CrC_ Yo! Gonna see some of my favorite dudes all in 1 place tonight, that is pretty dope ","features":[0,12,0,166,779,4995,10,910,321,7,542,3252,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Sleepover at emily's on a school night, how fun and though we look like gangsters, in reality we were... http://tinyurl.com/m64ytk","features":[0,0,284,238,7,577,565,276,66,53772,7,3196,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Wishes he was a spotter or on assignment for a storm chase ","features":[0,180614,11600,4388,5037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@NinaMcFLY watch Shaun Smith x x x","features":[436,0,0,149,149,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Phone calls are the unplanned pregnancies of the communication world. The random chaos of them can be quite disturbing @spookychan","features":[0,2443,72536,139315,11303,370,4,1929,16870,2446,19074,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Brothers Grad Mass leave it to him to lead the way","features":[0,0,0,760,1902,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"gift of the day. hMmm, what is inside the box? http://twitgoo.com/cqjo","features":[1956,128,4,0,7,1735,2272,17,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@icystorm No it isn't ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Just passed my final yaaay! Def studied hard...now I have to find out if my 1st show is cancelled or not ","features":[0,4362,783,20023,12,0,26030,480,0,21,473,0,412,8255,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Joebloggs7 super jealouss!! Your gf is one lucky gurl ;). Ps, PLEASE change your picture! lmao","features":[625,277910,12,12,0,4302,99,1655,6586,0,4,0,7,21,689,922,12,345,0,0]}
{"sentiment":0,"tweet":"i have such a weakness for chips ","features":[8564,6063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"has Updated her WebSite - Leave A Comment! http://nikimariesmith.webs.com http://plurk.com/p/rlbn7","features":[0,0,31,0,21,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JohnLloydTaylor JUST RELAX! ","features":[21,21,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@IanRobinson what bar? Count me in ","features":[2004,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I wish Scotland was going to the World Cup next year in South Africa - we need a miracle #England","features":[21,409,0,214,0,0,414,359,0,0,31,174,8426,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"http://twitpic.com/7vhlm - guess i won't be going to bed anytime soon ","features":[31,763,214,568,4893,700,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I woke up at 11:30 today. Such a lazy beeotch i'm becoming ","features":[21,1774,0,151,4,0,2223,0,0,6099,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Sucks! Haven't recovered yet, so I can't join the parade Hmfft. Was looking forward for it ","features":[0,12,0,41892,752,7,21,0,1394,8745,0,4,0,608,1734,0,0,0,0,0]}
{"sentiment":0,"tweet":"just woke up, not loong enough ","features":[1774,7,127733,800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"waheyyy another day at school, pisss takee ","features":[0,600,128,284,7,0,115760,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Got video taped doing my sales presentation...it went pretty well ","features":[0,289,51355,3347,11780,0,857,542,299,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Zoe_Nichols Dabnabbit. *sulks and has moar caek*","features":[0,4,45,338338,72828,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"hey guys, can you post to some friends to follow me, am losing followers ","features":[425,399,7,1091,385,87,7,2627,278,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"ugh lifes a bitch wishing things could just go great for me ","features":[1155,22193,362,5264,355,300,114,344,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"so ... the great dane puppy is a no go ... ","features":[0,344,36033,5634,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"cant wait til play practice 2moro wish i didnt have to go to jr fair board farmgirl@<3","features":[631,402,1996,500,2465,0,409,1838,114,6268,2612,5069,0,307,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@SEObat The app is now added If you have a Digg account could you Digg the site? Theres a counter in the top right corner","features":[1545,3754,0,0,1550,300,0,1933,17,16540,14389,609,211,5012,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@gregs it was GOOOD I liked it!! ","features":[21,21,1306,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@GabrielBerlin thanks but aka-aki app for iPhone seems to be blocked by french operator bouygues telecom, it only works in WiFi ","features":[272,0,1545,0,1927,6281,3184,22332,163982,44887,7,2417,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@malloryalison i thought i recognized that pillow ","features":[623,30952,7297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"In ict boreeeeeeeeeeeed @hg47 Heyyyy Jade ily xx ","features":[0,33608,0,0,0,2657,691,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"aggghhhh twitter wont let me change my background why not??.. ","features":[0,221,2178,268,689,5530,17,17,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Impala_Guy NOW i understand Wooow u put me in a emotional state of shock :-O but i promise will say a good word for u ","features":[21,961,0,54,511,4101,1582,7247,5,31,21,2017,229,120,894,54,0,0,0,0]}
{"sentiment":4,"tweet":"Capri boy want's me! Haha ","features":[0,599,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"my eyes are closer i think finally i can sleep jajaja goodnight and goodmorning london jajaja ","features":[920,4523,189,860,382,408,1191,1675,1629,408,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"back........from shoppin ....... it was soo great ...... but mmh...i know in my mind i was a bit absent :S","features":[122,0,39326,0,1662,344,0,39853,0,118,653,1207,25510,5,21,0,0,0,0,0]}
{"sentiment":0,"tweet":"@toflo nah...no more tickets...i procrastinated ","features":[873,0,1869,0,157162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"fingers and arms sore from painting all day yesterday and a lot more to come ","features":[4436,3737,2186,9346,128,1314,672,246,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is sad that Farrah Fawcett passed away! ","features":[818,0,0,4362,551,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Spacewalkers have snacks! Bars in their helmets they can grab with their teeth (via @absolutspacegrl) Ok, snack breaks...does that work?","features":[0,12544,12,0,44639,4740,4168,20,204,23,0,7,10403,5719,0,323,17,0,0,0]}
{"sentiment":4,"tweet":"uhuiii... move up by 1 10. blogcatalog.com","features":[0,0,987,10,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@MattsMedia welll cool, then I'll at least get to meetcha. I promise not to prowl around too much!! LOL","features":[0,585,7,0,1231,90,262100,4,21,2017,108701,578,205,12,12,21,0,0,0,0]}
{"sentiment":0,"tweet":"is sad...his internet is down and his free trial of rollercoaster tycoon is over ","features":[818,0,1160,427,9091,30785,70271,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@MusicMistress90 haha real funny ","features":[119,315,584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jordanknight "Maybe tonight" translates to "next week!" in Jordan-speak. Have fun @ rehearsals and send pics of Jon please. :-D","features":[15,0,321,15,80890,15,414,438,12,15,0,4,0,577,307,23919,1285,2007,0,203]}
{"sentiment":0,"tweet":"I thought my phone was broken but it turns out the sim was in backwards. Bummer - I was hoping for an excuse to go out an get an iPhone ","features":[21,623,451,2492,3658,1128,10486,4,0,31,21,3654,3083,114,90,0,0,0,0,0]}
{"sentiment":4,"tweet":"Vote for 'Little Louisa' here : http://tinyurl.com/clv63g","features":[0,51,0,0,51,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I didn't get a callback for the play I cried... oh well I guess it's back to being a techie..","features":[21,90,170735,500,21,5116,0,196,299,21,763,122,187251,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ohsnapsjohn did I also mention coconut I suckkkkk","features":[21,896,777,19906,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"tuas -> punggol -> JB. cos forgot to bring the birthday present along. ","features":[31669,0,247751,0,21,4,3600,1784,989,341,3042,2604,4,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@srinathtv what? no macs? ","features":[17,45440,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@tinkermom No car charger for cell phone. As soon as game was over I took off. Couldn't get out of there quick enough!! I've been home","features":[0,792,5636,6351,451,4,0,700,356,21,1315,4,0,90,2157,800,12,12,0,338]}
{"sentiment":4,"tweet":"@Lark_vamp_ alot *gives u a kiss* thx dear ","features":[2453,45,2210,54,1175,45,2847,1036,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"' the climb' is effing nice!! ","features":[51,14379,51,28763,462,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@natflatt Aw thats awesome glad you had fun wish I coulda been there gonna try to come to Columbus tomorrow though at WNCI right?","features":[0,826,735,1283,577,409,21,18105,319,555,246,0,331,565,21,211,17,0,0,0]}
{"sentiment":4,"tweet":"@VittoriaRichie oo have fun style warriors is not out in uk yet! What did u get and recommend?","features":[1577,577,1657,12828,2030,752,12,0,54,90,10927,17,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"i'm completing my board. ","features":[0,51508,5069,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"my tummy hurts listening to "the introduction of marcus cooper" album 'til I fall asleep. goodnight<3","features":[10996,1886,1485,15,28586,13290,13414,15,1064,51,1996,21,890,1714,4,1191,0,0,0,0]}
{"sentiment":0,"tweet":"i'm soooo tired!i want go to bed ","features":[0,402433,713,12,132,114,568,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@crazyygiirl and why did you stop? it's great fun ","features":[364,17,344,577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"New items uploaded on PG mall website! ","features":[0,10298,7255,21,2916,2530,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is eating chocolate buhhhh ","features":[1533,1469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"timelapse video, beautiful http://tinyurl.com/c9mhkp","features":[111965,289,7,534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Joy_Inc @caldjr its such a sad day ","features":[818,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"What am I gonna do today? Gotta do the production log and critical analysis - wow this is gonna be fun ","features":[0,21,319,151,17,0,9691,8253,16044,11370,31,612,319,577,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@orangepatch Tweeting at 5 in the morning? What/who kept you up this late?","features":[422083,10,347,17,0,41,4745,971,17,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I hate drop down menus ","features":[21,260,2023,69683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"it's a rainy monday here! ","features":[11235,1350,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Hey! just joined twitter so im currently browsing the help section to see how i get around this site! woop woop ","features":[0,12,8934,221,181,3997,31648,517,8470,166,90,578,1933,12,12599,12599,0,0,0,0]}
{"sentiment":4,"tweet":"@jeffcthomefan *feeds z-soup* Hooray for good things, though! I'm doing gewd. We're completely moved into the new house now. ","features":[45,25623,0,45,0,120,355,7,565,12,0,108651,4,0,3102,5285,125,545,4,0]}
{"sentiment":0,"tweet":"I need to drink more fluids, the nurse yelled at me today and told me if I didn't I had to go back to the hospoital ","features":[21,174,1445,113221,7,11442,14937,151,815,21,21,114,122,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AkuraDavis @HIM357 Digsby is good too. ","features":[0,120,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@twochix1 LOL- yea Rocco knows all! And is cute.","features":[21,31,1056,0,1419,12,0,494,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"cannot focus on this french paper for the life of her.. and its due in about 2 hours.. anyone wanna get coffee?? ","features":[1819,3673,3184,2264,184,0,2478,10,871,0,634,292,90,2009,17,17,0,0,0,0]}
{"sentiment":0,"tweet":"I am Sooooooooooooooooooo sick it has been six days and still no change.","features":[21,0,934,3965,458,235,689,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"watching spongebob ","features":[528,5815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I am Ruben, in charge of online operations. Now working on the web system. Code code code... when can we hire programmers? ","features":[21,0,7,5121,951,26978,4,0,1137,2377,3156,4,0,2824,2824,0,10849,122215,17,0]}
{"sentiment":0,"tweet":"Is sad that the Suite is down ","features":[0,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"good morning everyone, its saturday but i gotta work, ","features":[120,347,318,7,1342,597,323,7,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"sitting in the waiting room at the NW Asthma & Allergy Center to have 3 hrs of tests done, what a sucky day ","features":[2079,944,880,21,0,86,0,0,10,2777,9450,395,7,49996,128,0,0,0,0,0]}
{"sentiment":4,"tweet":"im on track down to 72.8 and looking good! got to finish uni reflection and exam !! n work a bit more then europe bbyyyyyy yesss","features":[181,2346,0,608,120,12,146,2115,5289,17926,2861,12,12,39,323,1207,6068,0,0,0]}
{"sentiment":0,"tweet":"watching some tv then going to bed. greys anatomy finale tomorrow!!!! ","features":[528,705,214,568,4,24835,13031,6072,331,12,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"BRB nails need to dry ","features":[21,21,3686,174,3844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@tylewrish and @kaitlinconfused thanks for my nickname lmao. Listening to music texting my buddies. swimming pool is done yay!","features":[272,14395,345,4,0,437,2127,14736,4,5253,3423,395,1354,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Not working out today or going to work. I'm so effing sick ","features":[0,1137,151,214,323,4,0,28763,934,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@missduckey Oh man I remember that movie! Poor little skunk girl ","features":[0,249,21,628,690,12,0,417,41784,261,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@steph_davies cool! i'm listening to her song right now.. ","features":[585,12,0,1485,526,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"sad my tweetdeck isnt working tonight ","features":[818,37120,5005,1137,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@CateP36 You grab the #timtams I'll be there in 5 ","features":[0,4740,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm starting to think my hairdresser cut off more than an inch...i miss my hair I want it like season 8 of friends J.Aniston long...","features":[0,1754,189,59773,1467,5191,0,295,586,21,132,66,1011,10,385,0,466,0,0,0]}
{"sentiment":4,"tweet":"@davidorban ooopsss... apparently search feature puts twitamatic under a whole new perspective. interesting! ","features":[0,0,3323,3910,9526,4299,0,888,125,13391,4,2555,12,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@emzyjonas outside yet im freezing :o","features":[1415,752,181,6487,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Eating at Chili Willi's. With Sherrryyyy. ","features":[0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Dave_Meyer Try Viral Choice... it makes it go quicker! Got backhanded last week too ","features":[11189,0,0,0,525,114,21141,12,0,353490,291,438,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"cleaned downstairs now to begin upstairs why me?","features":[17246,14009,4268,15239,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"ohhh just like me @JasonSco thats bad ! but we have to wait the result til freak out, i mean...we can be saved like...not been THAT BAD..","features":[0,66,826,358,12,402,5678,1996,4197,7,481,0,4875,66,0,21,21,0,0,0]}
{"sentiment":0,"tweet":"I'm tired, but can't get to sleep! ","features":[0,713,7,0,90,382,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"why will no one play badmitton with me?!?!?!?! ","features":[99,500,0,17,12,17,12,17,12,17,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mileycyrus You're brudder's gonna be in Manila. I hope you'll come too!! ","features":[0,0,319,0,4,21,423,246,12,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"how do you wake up lady gaga? you poke her face bahahahahaha thanks @Strehlre","features":[1095,1406,3175,17,8965,493,74315,272,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Just landed in NYC! Missing the sunny weather and home already ","features":[0,14136,21,12,0,5654,1395,338,552,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@KristinRWilson yayayay! But now you have nothing in common with Wilford Brimley ","features":[55530,12,0,491,4500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"its been a while I had a sit down proper meal and when I finally had one, it got my tummy very ummset ","features":[21,1710,5895,6051,21,860,99,7,146,10996,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Its a damn shame Brad paisley is married ","features":[0,461,3740,0,36763,3109,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Britt_Uh_Knee ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"#FollowFriday @jaciburton is an amazing writer whose Tweets are as amazing, fun, witty, sassy, intelligent & helpful as she is! ","features":[0,567,11204,6769,0,567,7,577,7,36039,7,14454,7,11639,86,17245,12,0,0,0]}
{"sentiment":4,"tweet":"@Andrew_T Like what kinds of things? ","features":[0,13581,355,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"the sun is gone ","features":[1669,701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Suicidalbunny :o jealous. can't afford anything right now ","features":[5,1593,4,0,8753,633,211,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Tokyo seems to be interested in squirrels! Too cute. http://yfrog.com/7hrijhj","features":[0,1927,4039,42937,12,1577,494,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I have jus given in2 twitter shal see how it goes from here....","features":[21,1897,3470,0,221,117975,166,1008,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@GabrielAntonio awwwww good times! I miss you mongo..come back down! ","features":[0,120,748,12,21,295,68910,0,246,122,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"has her second driving lesson in an hour.. i'll be a pro soon ","features":[1298,2436,4998,1196,0,0,988,700,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ciaotiga World Tour without Cologne... maybe next time!","features":[0,665,0,0,719,414,138,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"what WAS I doing? Look here, for instance http://bit.ly/sMdJn","features":[21,21,17,0,7,62398,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"bed time elyse comes home tomorrow morning! i cant wait to see her!!!!! ","features":[568,138,245840,1043,338,331,347,12,631,402,166,12,12,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@makeup_chica Oh no I am so sorry to hear about your grandfather ","features":[0,21,476,834,30810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@thisisryanross, Ohh ouch ryan what about your girl fans? ","features":[7,0,6579,2828,261,706,17,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Quiggmate: Thank you sooo mmuchh x you have made my day x!","features":[35580,285380,0,149,428,128,149,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"2nite Kieler Woche all n8 long - 2morrow back home via airplane wanna stay in the sun","features":[0,0,0,0,466,31,0,122,338,204,22007,292,576,1669,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@joolzp1 not yet i am still searching for a good pair on line to buy lol....i just hate spending money, i dont have that much lol","features":[752,235,9482,120,4480,1223,874,91,0,260,4079,582,7,351,205,91,0,0,0,0]}
{"sentiment":0,"tweet":"Ms. Kim *doesn't* want to go home for the summer...ugh... ","features":[0,4,0,45,45,132,114,338,822,0,1155,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Hate my sauna-like room, a heat that is impossible to escape. Also, WHY do I have no post? *kicks Brunel*","features":[0,0,880,7,1904,3750,7638,4,0,7,21,21,1091,17,45,8854,0,45,0,0]}
{"sentiment":4,"tweet":"Check Yes Juliet- We The Kings ","features":[0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"'In all honesty. I was paying attention to Kelly's hair 'cause it was straight, I liked it.' Keith once again ","features":[51,0,8289,4,21,6177,1825,0,586,51,509,1522,7,21,1306,4,51,0,0,0]}
{"sentiment":4,"tweet":"@caroljonsn hahaha. No! I just really like weather. Always have. ","features":[223,4,0,12,21,185,66,1395,4,0,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I have just put up a brand new track off Inkstains exclusive to my facebook page, go listen and become a fan http://lnk.ms/0LlJv","features":[21,511,3259,125,2346,0,5696,448,1739,7,114,1059,1673,832,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"- done for the day *sigh of relief* ","features":[31,395,128,45,3223,10766,45,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@GuySebastian LOL thats when I get up each day at 7am ","features":[21,826,21,90,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"going to see TEN TOES UP play tonight at Blarney Stones yay!!!!","features":[214,166,21,21,21,500,321,0,0,1354,12,12,12,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Sorry, not being rude if you've tried me; my dm's are still broken ","features":[0,7,3253,1860,126,0,235,2492,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@annagirlUK I no still waitin @NKOTB when we gettin our cruise photo's? Or r we not? xoxo","features":[21,235,13999,2510,9112,0,17,0,76,17,4326,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Watching another movie ","features":[0,600,690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AgentBooth I think so. Isn't cool? now you can say you've fans in Europe too. (that will make a point with you VS Sully) ","features":[21,189,4,0,585,17,229,706,0,4,20,186,1071,21,0,23,0,0,0,0]}
{"sentiment":0,"tweet":"Packing up my apartment ","features":[0,8491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I got a Featured Track on PMPWorldWide.com www.pmpworldwide.com/Groundwork","features":[21,146,0,15153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"visting grams ","features":[0,36769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@fearstrikes You're very welcome Those are the addicting ones. Should keep you busy for months!","features":[0,906,39562,21983,1399,4,0,419,1991,1700,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I miss my rawk star already http://myloc.me/5zka","features":[21,295,172877,1396,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Perignonic yay i get my first kiss woohoo!","features":[1354,90,328,1175,11679,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@peterfacinelli well done with the tournament, hope you had good weather for it what is your next film project? still can`t get Arc in UK ","features":[299,395,8806,7,423,120,1395,414,1253,2314,17,235,201,90,0,21,0,0,0,0]}
{"sentiment":0,"tweet":"I slept in and missed my little bro's football game ","features":[21,5303,1581,417,0,1257,356,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@diraheythere ah dia memang deh, ntar gue bilangin ya dirr ","features":[273,208,2174,695,7,2117,383,17074,85,493688,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"LOL I LOVE YOOOOOU!","features":[21,21,21,21,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Jaw hurts a lot from eating zpizza ","features":[0,1886,672,1533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@GirlTornado @SmartmouthBroad the giveaway crashed my IE ","features":[2250,19682,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Haha tweet dreams . People make me chuckle. Bedtime! Gnight world. T minus 3 weeks ","features":[0,277,1590,4,0,186,35743,4,0,12,0,370,4,13553,10,1506,0,0,0,0]}
{"sentiment":4,"tweet":"@jen004 No one ever said standing on the other side of my sight wasn't a disturbing thought. I take pride in my work yup that I do.","features":[0,99,275,410,4455,1260,8292,19074,623,4,21,287,4898,323,2363,21,4,0,0,0]}
{"sentiment":4,"tweet":"@damoeldiablo PM myself and Doozie your email address dude. ","features":[21,0,2601,7747,1054,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Thanks @addisonny ","features":[58635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@bicoastalite Yeah, it sucks. But we've had the iPhone all these months without it so another month or so won't kill us I guess. ","features":[0,7,1579,4,0,0,0,1700,665,600,1425,1134,294,21,763,4,0,0,0,0]}
{"sentiment":0,"tweet":"@lilyroseallen I didn't think you would have said that Lil, I got tickets for when you come to oasis in swindon!! Not radio 1 though x","features":[21,189,199,410,0,7,21,146,1869,246,17859,67762,12,12,0,1302,10,565,149,0]}
{"sentiment":4,"tweet":"there is also i lovely shop i´ve been in and it has some lovely jewellry ahhh, new braclets for meee i love holidays.","features":[896,1832,2207,109,1832,401627,334930,7,125,431628,0,71,5232,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"oh shit when the hell am i gonna get my stuff at @AzuraErizal's house? i'm not even sure i have the time yikes","features":[196,188,675,319,90,1092,51,545,17,0,242,540,138,16936,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"read a word he didn't know and felt his brain preparing to go for the 5-way controller before remembering that real books don't have them ","features":[784,894,118,2566,3011,13297,114,10,31,274,20174,12011,315,3169,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@KyleH90 You should've watched it. It was actually a pretty good show. But Attitude Era is always cool. ","features":[0,2451,4,0,553,542,120,412,4,0,0,0,248,585,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"is with an agency! ","features":[9037,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@natalietran ...he kicked the poor thing away. ","features":[0,7184,2260,413,551,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@kayyx I apologize for yelling i'm just totes j ","features":[21,7432,9129,0,20421,679,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Heaatherrr yeah it bloody does ","features":[360,5568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@workingmoms Awh....thanking my friend for the #ff love! ","features":[0,0,15748,533,0,71,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@pennygersh Thats horrible I hope you get better soon.","features":[14036,2518,21,423,90,298,700,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@hermieone these kind of accidents seem to be happening to me more and more - I'm accidentally drinking a huge mocha as I write! ","features":[1328,34355,2405,3324,31,0,7202,2655,2295,27685,21,2283,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"wants to be down the grassmarket sunning it up with a cold one ","features":[829,0,325774,1023,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"somethings been stuck in my chimney since 5am, and its not Santa ","features":[24076,2458,60882,767,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Got to love it when the boss asks you to wait for him to come in and it's to tell you how great you are doing and offers you more work ","features":[0,71,2068,5806,402,246,387,344,8035,323,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Not hungry for dinner tonight ","features":[0,1388,1575,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@xpianogirl ohh man. wordpress is so big though! how about...idk ","features":[1723,249,4,14484,401,565,12,0,993,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@singing2jc1 I love luke 3:3-6! Cherie Camp ","features":[21,71,2754,0,10,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Emma you tool! And to think i had to walk home in the dark, only to find you'd abused my account again! ","features":[0,9054,12,0,189,1153,338,1682,7,473,29278,1550,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@stephenfry we used to use handles in the days of CB radio ","features":[959,718,35388,458,21,1302,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"is feelin' the LOVE from their awesome clients ","features":[5792,51,21,735,17387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@lylapooh ohh noo you have puffy eyes too ","features":[1723,3139,48044,920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@chimeric NP. Glad it works. ","features":[21,4,0,2417,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Getting ready for bed time and feeling like I should have been more productive today. But I got to spend great time with @notanyoldjoe ","features":[0,581,568,138,676,66,21,8242,151,4,0,21,146,1965,344,138,0,0,0,0]}
{"sentiment":0,"tweet":"Okay, have to do my laundry! ","features":[0,7,10199,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ddlovato that is my theme song ","features":[6271,526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"has a weird mix of take that&moulin rouge in my head if u stay with me girl u can tell anybody this is your song we can rule the world","features":[1187,2339,287,86,74501,15492,652,54,576,261,54,387,2468,526,4909,370,0,0,0,0]}
{"sentiment":4,"tweet":"@FabianMH Shortly I will fix the date during this week.","features":[0,21,2772,1083,438,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"just faxed in my apartment application!!! Whee!!! Now we wait... ","features":[0,8491,11049,12,12,12,0,12,12,12,0,402,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"can't sleep. so nervous about tomorrow. ","features":[0,382,4,4920,331,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"2 for Mit Pauken und Raketen 1 for Invasion Der Killerpilze and 1 for both! ","features":[10,0,0,2498,0,10,0,0,0,10,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Madonnaboy80 just hanging at work today ","features":[4549,323,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@gauwed i have a vague memory of t1. didn't see t3.","features":[49053,4377,0,4,166,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"http://snurl.com/j2v21 awesome ","features":[735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@TikkaMadsen Okay, I'll take some tomorrow I'm going to use it too. I had one already, but it needs a new roller. I love typewriters ","features":[0,7,0,287,331,0,214,718,4,21,99,552,7,878,125,13818,4,21,71,433359]}
{"sentiment":4,"tweet":"L: Bad Zwischenahn, on my way to the Emsland ","features":[21,5,0,0,7,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Done some positive affirmation now back to the Japanese yay for bank holiday Monday ","features":[0,3081,78682,122,0,1354,2700,2193,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"i want to work at target ","features":[132,323,5648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"GM, beautiful day. Im feelin' SO blessed.Everythin else means nothin. Joey(LOV) Family(Mo LOV)..aint nothin takn this smile away. TY4U2 ","features":[21,7,534,128,4,0,5792,51,21,0,647,1220,5385,4,0,20,21,23,0,20]}
{"sentiment":0,"tweet":"I hit two hundred updates & didn't notice going to shower, do my hair & get ready to go shoppin and maybe get a quick nap in! 5 1/2 hours","features":[21,764,570,9759,7173,86,2253,214,1803,7,586,86,90,581,114,39326,719,90,2157,2080]}
{"sentiment":0,"tweet":"I wished my blackberry was twitter compatible. I would tweet all my tasting experiences from the wineries this weekend. ","features":[21,15877,4063,221,26130,4,21,199,277,27150,16691,267311,726,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"At the summer solstice jawn at the Kimmel Center. No reception in here ","features":[0,822,90619,39053,0,0,4,0,25868,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Applecored good way to live, much respect to you ","features":[120,274,320,7,205,1320,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"oh hell yesss, got an A on my English exammm ","features":[196,675,0,7,146,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I am home N yall kno how I get whn I get home. ","features":[21,338,21,1447,2397,21,90,29945,21,90,338,4,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"So the hubby found out his mom has diabetes now. feels like that bothered him more then my thyroid problem. Thats Fucked up! ","features":[0,13662,1007,571,14823,4,1387,66,11471,118650,1212,4,14036,0,12,0,0,0,0,0]}
{"sentiment":0,"tweet":"just cut my longest nail ","features":[1467,7664,6782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I am so dying. I have the worst hangover imaginable. It hurts to even blink ","features":[21,2139,4,21,1234,8114,115238,4,0,1886,242,9805,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@MissPippa Yep, winds me up too! ","features":[0,7,15374,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JessicaKSzohr haha, no problem so how are you?","features":[119,7,1212,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"no thank u!!!!!! ","features":[340,54,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I miss my fiance... ","features":[21,295,60569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Getting some sleep before another EXCITING day of work!! - http://bkite.com/07Sxq","features":[0,382,600,21,21,128,323,12,12,31,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is start to work and she is very tired... ","features":[518,323,713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@VeronicaEbie sounds like a good idea, im in! ","features":[1402,66,120,1143,7,181,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@SylvieDog Thank you!! I am trying to catch up with you ","features":[35580,12,12,21,662,1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":": finally getting my hair done today (it's been 2 years since I've been to a professional)!","features":[5,860,400,586,395,151,20,10,643,767,0,6502,23,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I just saw a McDonalds commercial that told me "You so want [a big mac]"... they're right, I do. ","features":[21,885,0,4414,815,15,0,132,163,401,2942,165,15,0,0,211,7,21,4,0]}
{"sentiment":4,"tweet":"@jillyfreyne thankfully I'll be relying on my legs to do the work... I've heard it's a bit of a nightmare over there ","features":[34673,0,57268,2812,323,0,0,1222,1207,8790,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"typical sister's night watching indian chick flick love it","features":[8474,0,238,528,5990,3460,25167,71,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Hey whats good my twitter people.. I am so hoarse right now.. Cheer me up ppl!!","features":[0,1752,120,221,133,0,21,204181,211,0,0,1274,12,12,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@MarthaStewart --Yes! I'm watching it now. Hope you respond back to me ","features":[31,31,0,12,0,528,4,0,7093,122,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lexi_bexi I totally and completely agree ","features":[21,2276,3102,2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@johntheboy enjoy... I'm stuck in the office ","features":[1263,0,0,2458,2726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@LiLi214 lol i dont believe it! how was that movie the other day u told me bout wit the "jesus jokes" lol","features":[91,351,554,12,690,128,54,815,736,1106,15,1326,3674,15,91,0,0,0,0,0]}
{"sentiment":4,"tweet":"@_FK_ Clearly, we proved the rule ","features":[0,7,21848,4909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@blondie_4414 "Change u can believe in" Only ever applied to those he had brainwashed #wearescrewed #tcot","features":[15,0,54,554,15,0,275,20064,76226,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"i just uploaded a new video http://bit.ly/J8qsV","features":[7255,125,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@edwardsheroin @mindmeddlered I missed the action! And I cant add those accounts frm my phone Damn!","features":[21,1581,3197,12,0,21,631,1896,5932,10349,451,0,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"DJing live until Midnight PDT! Put http://orange.neostreams.info:12242 to your media player to listen! ^^ WOOOOOOOOT!!!! ","features":[0,320,0,21,12,0,1371,2051,1059,12,65,65,21,12,12,12,0,0,0,0]}
{"sentiment":4,"tweet":"@CrysWinchester HAHA Awe you make me laugh Seriously, get better! I have creepers asking me for nudes because of my friend :| FML.","features":[21,0,186,1167,0,7,90,298,12,21,44952,2270,11587,533,0,21,4,0,0,0]}
{"sentiment":4,"tweet":"my dream house is becoming real it's a sunny day coffee in my cup...that's a Sunday","features":[940,545,6099,315,5654,128,2009,1951,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Prinbird im good ty got to go to work 2day and someone has stole the sun!!","features":[181,120,4654,146,114,323,0,241,6682,1669,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"leaving Palm Springs nowwww. aww. i wish this weekend could last. ","features":[2429,0,0,0,4,1524,4,409,726,300,291,4,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Miss_Melbourne Unfortunately I'm not a hat fan I too, have a head the size of a peanut.","features":[0,0,3187,832,21,7,652,2362,9623,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"It's totally going to rain today ","features":[0,2276,214,1446,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@katiegeo yesss they do best boys on the planet!","features":[0,212,714,4611,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"watching Devil wears Prada yay!","features":[528,0,9360,0,1354,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Felix will leave school. So sad about that I will miss him .","features":[0,760,284,4,0,818,21,295,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@LaMamaNaturale That also sounds very nice! ","features":[3187,896,1402,462,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I just read one of the elephants at Brookfield Zoo passed away & it got me all weepy. I <3 elephants! ","features":[21,784,99,27845,0,0,4362,551,86,146,346894,4,21,0,27845,12,0,0,0,0]}
{"sentiment":4,"tweet":"@DonnieWahlberg EARLY GOOD MORNING FROM ATL!!! GUESS WHAT?I'M MAKIN' CHEESE GRITS! WANT SOME? ","features":[21,21,21,21,21,21,21,21,21,12,12,12,21,21,17,21,21,51,21,21]}
{"sentiment":0,"tweet":"apparently no one in my twitter stream then ","features":[3323,99,221,5657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Sitting chilling, not feeling very well ","features":[0,4887,7,676,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"MAAAF.....i know im not a good girl.. ","features":[21,0,118,181,120,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"New york comic con keeps sending me emails ","features":[0,2324,9645,111,2930,4358,14127,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ShaniBeeGirl you're only on for a few minutes? ","features":[1161,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"What a great week!! Very productive...now on to recording, dancing, and living my life Have a good weekend peoples!!!!","features":[0,344,438,12,12,0,8242,0,8933,7,3084,7,1706,184,0,120,726,1182,12,12]}
{"sentiment":0,"tweet":"is saddened bc i have absolutely NO followers! ","features":[59314,1381,2280,21,278,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Chrisfarlow (makes sad face) gosh I giggle that's what I do. now I'm sad ","features":[20,525,818,493,23,3969,21,24095,0,21,4,0,818,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"2 days til Florida !!! Working.. Packing... ","features":[10,458,1996,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Techni_Kohler Oh, I'm so sick I didn't make it. I have some of Yaw music & he is off the hook, but Bilal is FANTASTIC...I'm sick ","features":[0,7,0,934,21,186,4,21,0,437,86,7051,7,0,21,21,21,0,0,934]}
{"sentiment":0,"tweet":"I'm really disappointed by the MTV Movie Awards ","features":[0,185,5739,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"i love my t-shirt. its black with random cartoon characters and japanese writing and it says 'Tokyo' ","features":[71,7605,4,622,1929,10652,7364,6593,3146,816,51,0,51,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":""and no it wont be pms rofl" Well i swear Brittany it wont! Haha ","features":[15,2178,21312,15385,15,0,1144,0,2178,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"is loving her pooh bear and tigger that her friends go for her and Adam Lambert is just so so O-M-G freakish HAWT! ;)","features":[1971,11725,3823,68576,385,114,0,0,21,266865,21,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Just got back from a hard workout...now I'm all Sweaty and sticky Think I'll jump in the shower!","features":[0,146,122,480,3734,0,0,0,24807,207357,0,3107,1803,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Tyler Hamilton's career in cycling has ended following a positive doping control? Sad ","features":[0,0,4407,17513,5406,929,3081,47533,2033,17,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@alandavies1 The links announcer guy announced the result before the show started ","features":[8802,56299,637,7160,5678,412,1304,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Tempest3K You really need some down time, sir!","features":[0,185,174,138,7,2622,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"putting up facebook pictures from last night.. some of these need mass editing. twas a fabulous evening though! xxo ","features":[2841,448,1505,291,238,0,174,6865,15634,4,46590,6980,3376,565,12,120687,0,0,0,0]}
{"sentiment":0,"tweet":"9 Hours down. 9 to go. YAY! ","features":[10,0,4,10,114,4,21,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"today it was very rainny and wet and i was in the rain at camp well im goin to bed nite","features":[151,0,3889,1446,3890,299,181,1958,568,3843,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I want to watch Observe & Report ","features":[21,132,436,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Oh how i love foggy weather.. and iPhone/iPod OS 3.0 Software.. but not so much going to bed at 3:41am ","features":[0,71,44972,1395,0,0,41,0,21,0,0,0,205,214,568,0,0,0,0,0]}
{"sentiment":4,"tweet":"http://twitpic.com/6vd13 - Drink #1 the get ready 4 the game drink!!!! Henn!!!! @sdi8732 @babyredd310","features":[31,0,0,10,90,581,10,356,1445,12,12,12,0,12,12,12,0,0,0,0]}
{"sentiment":4,"tweet":"On a date ... With emily ","features":[0,1083,0,0,8350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@LisaMcP Wow, that's extortionate for what you get...how unfair ","features":[0,7,0,0,90,0,14847,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@countryhearts77 Yep join the twitterholics club. ","features":[0,1394,0,1122,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ElectriKateD Ooh, that sucks ","features":[0,7,1579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Well, this is the week that proves how much of a warrior I am. Should be telling. I promise to report on all items of interest. ","features":[0,7,438,18667,205,11943,21,4,0,2014,4,21,2017,2910,10298,6637,4,0,0,0]}
{"sentiment":0,"tweet":"@scarletmandy @Donnette been planning on getting on there for some time.. but just cant manage the time.. ","features":[5039,400,138,0,631,8725,138,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jakehumphreyf1 Maybe you Eddie and DC can wear red white and blue shirts, please don't wear pink that's for Jenson's Dad ","features":[0,0,21,1252,935,814,1424,7425,7,203,1252,2228,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@GraciaMelsz hahaha, well it just got better. pfft. earlier kobe had just 6. i love me my soccer. i just put in my application for 2010WC ","features":[223,7,299,146,298,4,17210,4,3363,4254,10,4,71,2971,4,511,11049,21,0,0]}
{"sentiment":4,"tweet":"@GeoffLiving Ahh, yes. The eternity of the Internet! ","features":[0,7,322,4,26391,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm gonna cuddle with my dog and play Donkey Kong. My life is pathetic ","features":[0,319,3751,1319,500,0,0,4,0,184,6896,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"2nd greatest birthday ever, I'd say ","features":[0,2880,341,275,7,0,229,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Is feeling much better today and is lovin' this rain... Bet no softball tonight tho. ","features":[0,676,205,298,151,9492,51,1446,0,0,9942,321,588,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@latinabeatz just say no! That food doesn't taste as good as being healty feels (at least that's what I try to believe, anyway LOL)","features":[229,12,3187,658,3212,120,183922,1387,20,1231,0,21,555,554,7,2306,21,23,0,0]}
{"sentiment":0,"tweet":"@stc043 . Unfortunately, we wouldn't be able to sit together to work on the project for a few days. So there is a little delay. ","features":[4,0,7,1775,1710,831,323,2314,458,4,0,417,9023,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"in pain today ... stupid FMS stupid winter weather ","features":[1525,151,0,863,21,863,2284,1395,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Hedgewytch forward, left, forward, right, right, forward, left, left, forward, forward - the superrmarket is on the right - Big Aldi ","features":[1734,7,797,7,1734,7,211,7,211,7,1734,7,797,7,797,7,1734,7,1734,31]}
{"sentiment":0,"tweet":"@AlAllDay Word of MY day is: JEALOUS. Jealous of everyone attending the parade tomorrow ","features":[0,21,128,5,21,4,0,318,16620,8745,331,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Giraffeinphilly hope she's ok....","features":[423,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jimmydavis Thank you for following me; I appreciate it! Look forward to your tweets! ","features":[35580,929,126,21,2394,12,0,1734,683,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"and my bff chaze is leaving me for a whole month to pullman. that makes me sad and want to cry. :'(","features":[5584,0,2429,888,1425,88928,4,525,818,132,1001,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"up getting ready for the day, i decided to sleep in tell 9. ","features":[400,581,128,7,4165,382,387,10,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"love waking up to sun ","features":[71,2921,1669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Who woulda known showers could hurt ","features":[0,12349,3792,12493,300,994,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@odvie OUCH.. You ok? ","features":[21,0,0,308,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@westernrunner looking seriously into the Samsung Omnia, but still unsure. I really want the Google phone but it's not on Verizon yet ","features":[608,865,0,0,7,235,28499,4,21,185,132,0,451,0,752,0,0,0,0,0]}
{"sentiment":0,"tweet":"very ill. ","features":[844,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@weweclothing Your clothes is Fantabulous ","features":[0,2104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"why is my apartment always hot? maybe my air doesnt work... ","features":[8491,248,561,17,719,1190,3564,323,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Conan was great. time for sleeping. zzz ","features":[0,344,4,138,1660,4,11176,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Jeanise Yeah they sold out & way 1 of my friends. She just told me she got her ticket last week 4 IMAX I'm like what the "F" ","features":[0,4529,86,274,10,385,4,0,815,146,3493,291,438,10,21,0,66,15,21,15]}
{"sentiment":4,"tweet":"Yummmmm breakfast time ","features":[0,2092,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Uncle_Trav the throat still hurts like hell and I feel worn out today! Just exhausted! Glad my dad showed up I have been in bed all day","features":[5649,235,1886,66,675,21,267,16004,151,12,0,7930,12,0,1026,6353,21,568,128,0]}
{"sentiment":0,"tweet":"i do not want to go home at least i get to see the jonai in 5 days =]","features":[132,114,338,1231,90,166,0,10,458,11243,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Out of this country in exactly three weeks today ","features":[0,1672,1666,1592,1506,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Erock808 do u ever sleep? lol.. i took a nap at like 7 i should know better...","features":[54,275,382,17,91,0,1315,2080,66,10,118,298,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Craig_Forster get ready to update your phone os 3 is out tomorrow ","features":[90,581,1882,451,531,10,331,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@joel_birch looking in the wrong place then ","features":[608,666,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@NowInvestors drink some beers ","features":[1445,14535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Cleaned four bathrooms this afternoon....(yes, go ahead and feel sorry for me...lol)....mine are still waiting for my attention ","features":[0,2867,40466,3432,0,20,322,7,114,3117,267,476,0,91,23,0,946,235,944,1825]}
{"sentiment":4,"tweet":"I missed Follow Friday! But much love to @inanemusings (GO CELTICS!) and @SidelinePass ","features":[21,1581,0,0,12,0,205,71,20,21,21,21,12,23,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@loveandbooze How the FUCK did I read "quinoa" somewhere in that tweet. I am spacey. I need more sleep. ","features":[0,21,21,784,15,78779,15,3118,277,4,21,113111,4,21,174,382,4,0,0,0]}
{"sentiment":4,"tweet":"flight delayed. sitting at the serawak airport. had one of the best trips of my life! ","features":[4636,18499,4,2079,0,3101,4,99,212,15813,184,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I wish I could live in the US, the UK and here at the same time ","features":[21,409,21,300,320,21,7,21,138,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@aiderushton ill be over in an oir ","features":[844,28511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Slightly bored...I hate being caught up on blogs ","features":[0,928,0,21,260,2708,14419,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@iamthecommodore dude i think you should tweet me and @apeisduhmazingg we bought our tix yesterday ","features":[1054,189,277,2325,9838,1314,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@muskrat_john I believe you know what my vote would be. Level 1 Imp! ","features":[21,554,118,644,199,4,0,10,0,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AliaTheArtSnob bushy tailed? sounds neat i think paris took its toll on you O_O","features":[116055,190313,17,1402,17976,189,2487,1315,20839,21,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Metadata is the worst thing that God has created! ","features":[0,1234,413,0,5473,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is still loving him some Rita, but hates being away from her. ","features":[235,1971,25179,7,4605,551,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ddlovato you not alone ","features":[933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"had durian cheesecake today yummylicioussss ","features":[25159,14718,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"So blessed 2 have my little guy ","features":[0,2211,10,417,637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"http://bit.ly/qzdC0 >> previews, please comment! ","features":[63,63,40097,7,203,2187,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@tiffication that sucks hope ure not getting sick!","features":[1579,423,24299,400,934,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@epiphanygirl im kinda mad that you dont follow me ","features":[181,1502,692,351,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@XAprilZX Scary! Glad ur ok. We're all good here doing final essay then uni over 4 semester, I can be real ppl again!","features":[0,12,0,507,308,4,0,120,783,6939,5289,10,4809,7,21,315,1274,12,0,0]}
{"sentiment":0,"tweet":"Ready for bed now that the little girls at the sleepover stopped giggling! Stork News is great, but we lost our contract w/Babies R us, ","features":[249819,568,417,398,17977,4021,34172,12,0,0,344,7,892,7970,239,41,0,294,7,0]}
{"sentiment":0,"tweet":"just boredddddd...i hv been home alllllll day ","features":[0,0,10731,338,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@maxime68 Oh that explains it. I thought your silence just meant weak coffee. ","features":[0,11687,4,21,623,5127,2013,2774,2009,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"-Apparently the north side of Chicago is closed on Mondays. I just want some breakfast... ","features":[31,0,2935,1260,0,4161,0,4,21,132,2092,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@smore12 I want cheezits... but I ate all of them It's very saddening","features":[21,132,299990,0,21,1686,0,157051,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"How can i repay the lord for his goodness to me ","features":[0,64140,1562,7731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@allysonfelix Congrats Allyson!! Way to dig down deep and fight to the end. ","features":[0,0,12,12,0,6082,2036,1210,626,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AskAJAnything ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"My kids are 19 and 21 and are a blast, I enjoyed ever age... So far at least ","features":[0,886,10,10,5340,7,21,6321,275,2171,0,0,882,1231,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"my sugar-free redbull is on sale at Winn Dixie woo hoo! I am going to need them this week ","features":[404048,24653,1267,0,0,4320,11846,12,21,214,174,438,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jamiemarkwhite nice one mate we'll have to meet up next time you are down this way!","features":[462,99,1780,0,924,414,138,274,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"ah remember the advert this was from ♫ http://blip.fm/~7sho2","features":[273,628,16373,1139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@selenagomez @ddlovato @mileycyrus @taylorswift13http://bit.ly/M64jP we made for you! hope you like! we love you ","features":[41,41,0,428,12,423,66,12,71,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@smiley_steph I don't have one... I just have the ones with their faces. haha. I can try to borrow my friends...","features":[21,99,0,21,1399,4467,4,119,4,21,555,11342,385,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"No...it's not the dancers it's the routine. I am not a fan of Shane Sparks. His routines are always hit or miss..emphasis on MISS. ","features":[0,0,18100,12162,4,21,832,0,0,4,0,77669,248,764,295,0,54972,21,4,0]}
{"sentiment":0,"tweet":"The only reason why I bough @MacHeist 3 Bundle was Espresso. This is, however, the only App. I haven't received a license key yet ","features":[948,21,222558,10,0,0,4,7,7832,7,0,4,21,5756,8935,2695,752,0,0,0]}
{"sentiment":0,"tweet":"Thinking about my son. I miss him so much ","features":[0,334,4,21,295,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Beverleyknight Aah hairdressers huh? Wish I could find a good hairdresser over here ","features":[0,87847,2119,17,0,21,300,473,120,59773,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"rollback to old theme ","features":[293272,520,6271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I shouldn't be up reading tweets...I have to get up early for #agileroots ... @utahkay is getting up at 5 am? ","features":[21,1744,683,0,21,90,975,0,0,400,10,17,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@leighannirvine Oh I see, thanks!! Well I'm off to my friends soon so hopefully when I get back it will work! Thankyou xxx","features":[0,21,166,7,272,12,12,0,0,385,700,2432,21,90,122,323,12,0,9170,0]}
{"sentiment":0,"tweet":"@LaidBackSuav IDK about that..I didnt have on any makeup today and you told me I looked tired ","features":[21,0,21,1838,4047,151,815,21,2413,713,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Bondi Vet always does it to me. Poor Beagle mum ","features":[0,0,248,4,0,0,2297,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@OHmommy I say that to myself EVERY DAY! Bet the pictures are fab. ","features":[21,229,21,21,21,12,0,1505,5550,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@SamBennington have a nice day too cya","features":[462,128,28733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@kylepetty Have you tried the "Fly & Ride" program before?? I believe there's some Harley dealerships out in Cali that does that! ","features":[0,1860,15,0,86,12042,15,4541,17,17,21,554,0,0,289153,0,12,0,0,0]}
{"sentiment":4,"tweet":"@proudmomx2 get in line babe...U first ...me second... ","features":[90,1223,1228,0,21,328,0,1298,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@NikkBrown it's still sittin in my room. lookin for a sweet sweet home.... ","features":[235,13632,880,4,3512,905,905,338,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Welcome to the NBA courtney lee ","features":[0,21,19352,2554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@nileyxlove watching One Tree Hill You? (p.s. sorry for the late-ish reply)","features":[528,0,34298,0,0,17,20,354,4,4,476,0,1799,23,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"And this picture of her with Zack from Saved By The Bell http://twitpic.com/669lg","features":[0,922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"New post on my blog - good start ","features":[0,1091,1375,31,120,518,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"needs to get out going stir crazy listening to big cook little cook ","features":[878,90,214,31795,674,1485,401,3509,417,3509,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm sooooo happy right now ","features":[0,394919,180,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"This is what I'm sending to the seller. Kind, but firm ","features":[0,4358,26367,4,0,7,13716,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Dannymcfly missed your tweets 14 days 'til I see you again. xx","features":[1581,683,10,458,51,1996,21,166,4,691,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@twitterbo My aunt had a "dowagers hump" and lived to be 90 ","features":[0,7847,15,0,17522,15,6095,10,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"hopes he survives this sem http://plurk.com/p/yvnxm","features":[7654,59534,960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"The first day of school just passed by.. 'twas really boring. We're still gonna meet the new teachers tomorrow... ","features":[328,128,284,4362,0,51,46590,185,1863,4,0,235,319,924,125,4607,331,0,0,0]}
{"sentiment":0,"tweet":"@mitchelmusso dam living in england x","features":[5408,1706,3605,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"it's already 12....half the days over already ","features":[552,10,0,1032,458,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":". @bearblue I love online bill pay too! It definitely keeps me in better financial shape. ","features":[4,21,71,951,3078,1576,12,0,1708,2930,298,8617,7533,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"so in love and so sad. doesn't really fit, right? ","features":[71,818,4,185,2497,7,211,17,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Is so happy she fixed her phone! ","features":[0,180,8090,451,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"back and btw where is everyone?? no one is tweeting =(","features":[122,2258,318,17,17,99,1767,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@chalif ???? ???? ?????? ?????? ???? ","features":[17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0]}
{"sentiment":0,"tweet":"@mitchelmusso http://twitpic.com/7hbnl - did you cut ur hair???? look good tho","features":[31,1467,507,586,17,17,17,276,120,588,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@_25111993 haha me to! wudgeeee ","features":[119,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"writing poetry and listening to dance gavin dance ","features":[3146,13512,1485,1201,31546,1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@happyxiao Welcome to Twitter! ","features":[0,146506,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@2tired2move Well, clearly I need a minder! I'm such a last minuter that trying to engage w Sunday readings on Tues is a real challenge ","features":[0,7,4464,21,174,23157,12,0,291,114473,662,24509,239,0,63479,94743,315,3679,0,0]}
{"sentiment":0,"tweet":"just got back from KingsGate. Work at half 12 ","features":[146,122,0,4,0,1032,10,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"huge headache. Taking Advil.","features":[2295,3947,4,56014,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Kinda scared to sleep alone in this house tonight ....primo will be my bodyguard!","features":[0,1711,382,933,545,321,0,4832,44146,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@vpmedical Depends on the teacher tho. Had some that really were easier, and had some that were bears! Finished AA thru them tho ","features":[0,1997,588,4,0,185,4172,7,8118,12,0,21,3357,588,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"for some reason, i'm feeling really attached to my apartment right now. good to be home. ","features":[948,7,0,676,185,7651,8491,211,4,120,338,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"here in my cousin's house ","features":[0,545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@BookishRuth sorry to hear you have shingles. Haven't had it, but hear it's horrid. Hugs!","features":[476,834,61028,4,0,7,834,47206,4,0,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Found a bug in Hotspotmanager today, from my initial mail to Firedigit it took 1 hour to remote access, troubleshoot and fix the problem! ","features":[0,8111,0,151,7,28782,4948,0,1315,10,1196,11627,7530,7,331465,2772,1212,12,0,0]}
{"sentiment":4,"tweet":"oh nice photos of the boys from the Hot 30 ","features":[196,462,1761,714,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I was really shocked to see Danny go.... He was my pick from the very beginning ","features":[21,185,9464,166,0,114,0,0,1549,4640,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"#3stalkerwords - you're not home ","features":[0,31,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@daniellebarrie i need to talk to you tomorrow, i have some bad news ","features":[174,439,331,7,358,617,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@paulinaxo theres too much info. im overloaded ","features":[4142,205,1501,4,181,141403,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@RussellBfan90 i swear to god,, its the best time of the week. gives me something to look forward to ","features":[1144,333,7,7,212,138,438,4,2210,366,276,1734,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I am so sad http://bit.ly/m0Zld","features":[21,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"for some strange reason "Let Me Roll It" by Wings was going through my head, so I am now happily listening to it. ","features":[6054,948,15,0,0,98459,0,15,0,214,652,7,21,13445,1485,4,0,0,0,0]}
{"sentiment":4,"tweet":"Richard Hammond - niceist guy in the world. ","features":[0,0,31,0,637,370,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"its ok @samcarterrules saw u with joey thought u looked interesting like the same things on #SanctuarySunday ","features":[308,885,54,7577,623,54,2413,2555,66,355,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@yogatoes10 JEALOUS!!! Hope you had fun!","features":[21,12,12,12,0,577,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"So tired!!!! ","features":[0,713,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I just drank a few Blue Moons and climbed Turtle Rock. I'm happy. ","features":[21,7600,0,0,55798,0,153557,4,0,180,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"m�nh c? c?m torrent h?t c? ???ng truy?n th? n�y th?y c� l?i v?i m?y th?ng c�ng ??ong net qu� ?� ","features":[0,8655,213,17,213,17,30359,372,17,213,17,17,17,17,968,0,17,39,489,17]}
{"sentiment":4,"tweet":"Ready to take a nap?....YES!!! ","features":[249819,287,2080,17,0,21,12,12,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@vktrfck I LOVE YOUUUUUUUUUUU!!! ps; i twitter too much come back to my layer!","features":[21,21,21,12,12,12,1658,126,221,205,246,122,31661,12,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"What up ryan how are u doing how is your day today lets go drink agen hehe ","features":[0,2828,54,128,151,1051,114,1445,29808,670,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I want my mini pack of cough drops, not the jumbo size ","features":[21,132,2574,2800,5988,6270,7,28249,2362,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Free UK only AdWords Voucher. My own account is too old to use it. No strings attached but i must like your project. And i am veggie. ","features":[0,21,0,0,4,0,1550,520,718,4,0,21254,7651,616,66,2314,4,0,38531,4]}
{"sentiment":0,"tweet":"WAIT IT GETS WORSE: I'm getting sick. ","features":[21,21,21,21,21,21,5,0,400,934,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@keynk You must wtchin' TransTv!!! ","features":[0,616,0,51,465483,450,12,12,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Wish I was out shopping in the sunshine with Luce instead of stuck inside doing my stupid work ","features":[0,21,1654,5210,0,1661,2458,1735,863,323,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@HayleySmith16 got tickets, good timessss ","features":[146,1869,7,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ramadanovic awww well i hope you do well!! have fun on holiday i am so jealous! you have no idea! lol","features":[244073,299,423,299,12,12,577,2193,1593,12,1143,12,91,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Movie night with the besties! ","features":[0,238,19648,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Bern_morley she needed a bit of patting...hopefully she will stay asleep for 2 sleep cycles until the rollover feed ","features":[2380,1207,152160,0,2432,576,1714,10,382,77160,165249,4406,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Ecoboom ha! yeah... I'm not 100% sure myself on that. If you find out, you'll have to share. ","features":[343,12,360,0,0,10,302,540,4,0,473,7,1484,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I love my Blackberry 8900 ","features":[21,71,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@PinkM LOL! Over here is good, I took a mandatory holiday yesterday for Kenya and whatnot. I'm paying for that today ","features":[21,12,0,120,7,21,1315,35884,2193,1314,0,86396,4,0,6177,151,0,0,0,0]}
{"sentiment":4,"tweet":"hello everyone! I think today went pretty dang well ","features":[998,318,12,21,189,151,857,542,3729,299,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"just got home in bed, but no phonecall from begee. uh oh, im kinda worried! ","features":[146,338,568,7,112652,0,4,1846,196,7,181,1502,4027,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@serenetan rise your head... I feel sooo drained..","features":[4374,652,0,21,267,285380,23132,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@LoveAjaMay Oh geez...that's not what i expected u to say...I'll start prayin w/ u lol!","features":[0,17192,0,0,6422,54,229,0,0,518,51345,239,41,54,91,12,0,0,0,0]}
{"sentiment":4,"tweet":"@DannyJV i cant sleep lol..but i should B ","features":[631,382,91,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"The hangover was HILARIOUS. LOLed too much haha. off to get dinner with blads now ","features":[8114,21,21,4,0,205,119,4,90,1575,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@TransformersUK I saw you movie on friday, it's awesome ","features":[21,885,690,732,7,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@temptalia I tried using that code and the site says it's invalid ","features":[21,1860,1804,2824,1933,816,40118,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@missjo5ie It's freaking hard. I've only gotten that to work once, and it was probably by luck. I get bored and go to sleep at 1pm ","features":[0,3217,480,4,0,5891,323,7,898,1250,4,21,90,928,114,382,0,0,0,0]}
{"sentiment":4,"tweet":"gorgeous out today! a lil viva voce and st. vincent to start it off ","features":[2371,151,12,887,3275,2328,995,4,18669,518,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Internet isn't doing well today. ","features":[0,299,151,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@stephaniejack Geez sorry to hear Steph, I hope things improve soon. I know that ain't much sorry ","features":[0,476,834,0,7,21,423,355,8652,700,4,21,118,0,205,476,0,0,0,0]}
{"sentiment":0,"tweet":"@Impala_Guy No SORRY i didn´t get it It´s getting busy here hm?","features":[0,21,21,109,90,0,109,400,1991,1156,17,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I think my pre-exam panic is setting in. Oh. My. God I hope I don't fail tomorrow (fyi it's commercial law tomorrow afternoon).","features":[21,189,0,10315,8777,4,0,4,0,4,0,21,423,21,2493,331,20,13051,4414,3188]}
{"sentiment":0,"tweet":"poor jon and kate they filed for divorce yesterday..","features":[2260,7836,6158,32021,14096,1314,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"TNT OT Extra Player CAM = Amazing ","features":[21,21,0,0,21,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"back from my travels ... 2 great shoots fri and sat ... blog posts coming soon ! Enjoy your Sunday everyone ","features":[122,25491,0,10,344,20785,11139,2948,0,1375,7467,660,700,12,0,0,318,0,0,0]}
{"sentiment":4,"tweet":"@F1_lou I did not I'm afraid, just catching up now do you have a quick link to it at all?","features":[21,0,2581,7,5065,2157,1347,17,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@masey_b ¬_¬ over 6 years here, I better be welcome... ","features":[739,103,739,10,643,7,21,298,906,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"playing call of duty with bro ","features":[702,465,6674,646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@OnixVh1 Hey there...Im following you now, so FOLLOW ME!! Thx! Lookin forward to what you have to say! Keep it interesting! lol","features":[0,0,0,929,7,21,21,12,12,84647,12,0,1734,229,12,0,2555,12,91,0]}
{"sentiment":0,"tweet":" couldn't find it","features":[473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Why is my blackberry and twitter not co-operating today?! ","features":[0,4063,221,0,151,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@BunniesNBuggies The one I want right now I can't afford My kids think stuff like vacation, electricity and breakfast are more important","features":[99,21,132,211,21,0,8753,0,886,189,1092,66,5371,7,21458,2092,1851,0,0,0]}
{"sentiment":0,"tweet":"@_PennyLane_ you can probably imagine why I miss Chicago so... ","features":[898,1611,21,295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@jessicamanahan good luck! ","features":[120,1250,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"goin to bed. gettin up early tomm. goodnight ","features":[1958,568,4,2510,975,77350,4,1191,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Watching "Whale Wars". ... ","features":[0,15,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"but it's a great distraction from doing studies on a Sunday night! ","features":[344,30609,11217,0,238,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@sultanasound hosgeldin ","features":[87159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"doctors office ","features":[9558,2726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Late night burritos with wife! ","features":[0,238,42646,2131,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@vinnipukh I'll give him a hug when I see him tell him I say hi","features":[0,377,2351,21,166,387,21,229,591,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I wish I could just wake up, roll over, and see Mell laying right beside me ","features":[21,409,21,300,1095,7,2212,7,166,0,4839,211,9169,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@locriansax Maine's State Bird ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":""can i buy you with my tickets?" "we are going in the hole"... <3","features":[15,874,1869,17,15,15,214,5311,15,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Y can't I ever find wat I want ","features":[21,0,21,275,473,1061,21,132,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@psam Oh ok. Its been long since I oiled my hair. Will buy a good oil today. Thanks for the suggestion ","features":[0,308,4,0,466,767,21,145235,586,4,0,874,120,5764,151,4,58635,28002,0,0]}
{"sentiment":4,"tweet":"@MissKeriBaby oh wow that's fucked up. I woulda knocked him down ( sings ) ","features":[196,612,0,1503,4,21,12349,8456,20,9386,23,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"4-0 ...okay really the Penguins must so be humiliated... ","features":[0,0,454,185,0,616,99305,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Missing him Good Luck Love!!!! Your gonna do great!!! Heading out to jeremeys in a few...p.s congrats jason and steph!!","features":[0,0,0,0,12,12,12,0,319,344,12,12,12,0,0,0,354,4,1633,5235]}
{"sentiment":0,"tweet":"i have a headache and i font want to go to this party ","features":[3947,6930,132,114,630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"My iPod touch disappeared from my pocket. ","features":[0,0,2055,27214,6195,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@candicotton Yeah that happened to mine ","features":[0,1513,946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"goodnight everyone!! ","features":[1191,318,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I have WAY too much on my TODO list today... good thing I'm armed with a fresh batch of sharpie markers. Look out world! ","features":[21,21,205,21,1910,151,0,120,413,0,19937,2580,16852,62598,66243,4,0,370,12,0]}
{"sentiment":4,"tweet":"@lilbsuremusic night to you too ","features":[238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Hmm, another modeling opp.; exotic wears? Seems interesting since it's w/ Old Navy. Didn't take Spike TV's gig as a host for TV show tho ","features":[0,7,600,30935,18434,4,126,20263,9360,17,0,2555,767,239,41,0,0,4,0,287]}
{"sentiment":0,"tweet":"M25 is eating my soul ","features":[21,1533,2309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@moosh_boint I'm so tempted to install Sims 2 again ","features":[0,14574,19386,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I am too emotional for half time stories like that! ","features":[21,4101,1032,138,2705,66,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@sevensymphonies Billy must be going crazy out there. ","features":[0,616,214,674,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@DearMiami I wish I'd had a mint feast ","features":[21,409,0,12453,25225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@dchinchay CONGRATSSSS!!!! Real proud of u!!! ","features":[21,21,21,12,12,12,121986,1118,54,12,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"After today I wish I could be done with hospitals for a while Hopefully I will be after this week...","features":[0,151,21,409,21,300,395,28421,0,21,438,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm soo ready to see MTV Movie Awards. can't wait to see who wins!! Hollywood Undead on the G.I.O Movie Premiere ","features":[0,1662,581,166,21,21,0,0,4,0,402,166,3390,12,12,0,0,21,4,21]}
{"sentiment":4,"tweet":"found and now following my friend Micheal ","features":[1007,929,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ddlovato http://twitpic.com/6np19 - yayy July 21st is my birthdayyyyyyyyy ignore the comments people have made about u n ur family ...","features":[31,17451,0,0,0,2862,6310,133,428,54,39,507,621,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jonasbrothers http://twitpic.com/5petm - ooh mr. president you look awesome plzzz come to brazil again!!! we love u guys ","features":[31,3950,2710,4,2684,276,735,0,246,3168,12,12,12,71,54,399,0,0,0,0]}
{"sentiment":0,"tweet":"It's pouring out! ","features":[0,17538,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Just helped my mum make homemade hamburgers! Icky to make, yummy to eat ","features":[0,6743,2297,186,13276,61218,12,0,186,7,6432,724,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@THe_RuGGeD_MaN Well, Im from the Pearl of the Indian Ocean... Kitna Hindi athihey apko? ","features":[0,7,0,0,0,0,0,0,0,0,131646,17,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"bored of geography revision ","features":[928,25016,12876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"just got kicked out of my english class its not my fault if i get a bad report","features":[146,7184,1983,728,4158,90,358,2910,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I really do not want to go to school ","features":[21,185,132,114,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@QueenofScots67 Well it had to be someone, and the "wheel of fortune" stopped on me! I feel suitably chastised now! ","features":[0,241,7,15,8932,11586,15,4021,12,21,267,303763,0,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Damn someone dented my Cedes and didn't leave a note .... Damn homie!!!!","features":[0,241,225088,0,760,2587,0,0,3576,12,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I got the graveyard book ","features":[21,146,61308,1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@PeachPosh G'night peaches! ","features":[0,33577,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Jamie_Carter dude, total bummer. See you bright and early Monday morning though ","features":[1054,7,2414,29993,4,0,4624,975,0,347,565,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Maybe eating McDonalds, downing a sherbet fountain & washed it down with warm coke..I feel a bit queasy. And quite a bit foamy ","features":[0,1533,0,7,35064,150064,27682,86,15077,2974,7127,0,21,267,1207,211499,4,0,2446,1207]}
{"sentiment":4,"tweet":"http://twitpic.com/7gw0f - farissa in her nearly-maxi dress she refused to do without her matchg leggings","features":[31,0,0,1961,25978,665,0,9073,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@mileycyrus whenever i feel I think of what and who I have in my life and am grateful for it & them","features":[2941,267,21,189,21,184,5998,86,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"ichasayangrudisayangichakamisalingmenyayangi sayangrudibangeeeettt","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Trying to fashion a way to keep the dog "locked" in the kitchen while we are out. Doorway uneven so baby gates don't fit ","features":[0,2366,274,419,1319,15,7054,15,4294,4,0,90588,350,13098,2497,0,0,0,0,0]}
{"sentiment":0,"tweet":"has got a horriblr head ache ","features":[146,0,652,14349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@KmartxX that one makes my feel really sad when i watch it","features":[99,525,267,185,818,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@SongzYuuup it wont let me cas i live outside the states stink!","features":[2178,268,8527,320,1415,5596,17957,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@BobFromHuddle its cool dude, I've seen you pull off iterations from a worse position than that if I remember correctly ","features":[585,1054,7,0,809,2958,0,2310,5956,21,628,18869,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Godspeed to everyone marching now, because a number of people will not be going home. ","features":[0,318,32068,7,1079,133,214,338,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"On way home blasting mcfly in the back of the car in the sun good times ","features":[0,274,338,14738,18945,122,792,1669,120,748,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I thinking got it to stop. I really hope so. Damn that crap.","features":[21,846,146,364,4,21,185,423,4,0,3517,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lindsayccw Yeah, funny how disconnected you feel... Oh WAIT! You can't see this tweet! lol. Hope you have/are having/had a great vaca! ","features":[0,7,584,55492,267,0,0,21,12,0,0,166,277,12,91,4,0,41,41,344]}
{"sentiment":4,"tweet":"For Cocoapedia.com login please email oliver at Drobnik.com: preferred username and proof of existence for your mac/iphone apps. Or else. ","features":[0,0,25032,203,2601,13881,0,5,37907,7641,6297,11997,2942,41,731,6123,4,0,647,4]}
{"sentiment":4,"tweet":"@pubzak Good luck, I'd love to come along but I'm wrecked after a weekend writing scala at #railscamp ","features":[0,1250,7,0,71,246,2604,0,38981,726,3146,92090,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Whats up buttercup?!? ","features":[0,55262,17,12,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"arg i hate fone watchinggggg ","features":[19396,260,9714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Lynice I have to go home I AM SAAAAAAD TO MISS IT. Drink a PBR for me ;)","features":[21,114,338,21,21,21,21,21,21,4,0,21,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":" i don't wanna take this final...","features":[292,287,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@crazyangelie i don't remember na rin haha.will watch again ","features":[628,176,5616,0,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"seems like our outdoor-proof web cam isn't very weather proof! Condensation & water in the housing unit. ","features":[1927,66,0,2377,3202,1395,6297,12,0,86,1449,18599,10968,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"hates doing dishes ","features":[4605,13773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"So bored, and I'm not that patient with the EDGE connection on my phone. T-Mobile, when are we getting 3G in PR? ","features":[0,928,7,0,7599,21,8385,451,4,31,0,7,400,21,21,17,0,0,0,0]}
{"sentiment":0,"tweet":"@SuperKaylo dang! I guess I missed the "...you just never learned them" in my haste ","features":[3729,12,21,763,21,1581,15,0,193,3585,15,72758,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jasonmitchener I'm doing pretty well starting drivers ed tomorrow wohoo!","features":[0,542,299,1754,9779,2427,331,37153,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"women who love power tools unite!!! Refinishing the porch ","features":[1047,71,1428,10896,14984,12,12,12,0,22695,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Wow, it's amazing how desolate the Metreon is. 95% of the businesses are gone. ","features":[0,7,567,177151,0,4,10,302,15502,701,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Newy_ShortStack nope stuck in bed! im sure I know majority of them! you'll be right have fun.","features":[2241,2458,568,12,181,540,21,118,11792,12,211,577,4,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Thanks for all the followfriday recommendations friends! You rock ","features":[58635,37310,37873,385,12,0,1288,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Himmathand great connecting! A nap does everyone some good. Have a short one ","features":[344,34446,12,21,2080,318,120,4,0,1570,99,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"GUD MORNING TWITZ...SMH ON MY WAY HOME,MY SCHOOL NURSE SAID I HAVE PINKEYE ","features":[21,21,21,21,21,0,21,21,21,21,21,7,21,21,21,21,21,21,21,21]}
{"sentiment":0,"tweet":"Just woke up...flight back home to stl today at 4:25pm-Cali time ","features":[0,1774,0,4636,122,338,30782,151,0,0,138,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Well volleyball's over! ","features":[0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@lovelylouisex Robs diagram drawing thingy! Fail ","features":[38436,70819,7159,19566,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"02:30 am...ana can't sleep...afraid of having nightmares with those horrible sounds from inside the CAT scanner...AAGH! ","features":[0,0,2399,0,382,0,2581,15026,2518,1402,1735,21,41328,0,21,12,0,0,0,0]}
{"sentiment":4,"tweet":"@Lilixbabi3 so would u rather have a guy with a lambo/house that has bad shoes or a broke dude with good shoes?!!? ","features":[199,54,1572,637,45564,41,545,358,2147,1788,1054,120,2147,17,12,12,17,0,0,0]}
{"sentiment":4,"tweet":"@I_am_Heather Can't read your Threadless shirt thru the mirror lol. Inquiring minds would like to know its sad robotic message w/clarity! ","features":[0,784,0,2129,3357,4306,91,4,0,5861,199,66,118,818,87637,1963,239,41,28132,12]}
{"sentiment":4,"tweet":"@bornagambler thank you my dear tweased 2 be twecommended! ","features":[340,1036,0,10,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@JakeJacobsVI yeah i've been so busy with work and family stuff sorry, they actually have me doing work now!! ","features":[360,0,1991,323,621,1092,476,7,553,323,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"The restaurant where Fabiano works is on Fire. ","features":[5319,0,2417,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Tempted to just put together my birthday wish list ","features":[0,511,831,341,409,1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@iNsaneAbz "Specialist" in MacBooks and desktops (more specifically in iMovie HD). They can't work out a transfer to #yvr for me though ","features":[15,0,15,0,210644,20,28550,0,21,23,4,425,0,323,6794,0,565,0,0,0]}
{"sentiment":0,"tweet":"@gfalcone601 aww poor you Tell him to press the buttons on his mac and tell us what pizza time they got ;) xxxx","features":[1524,2260,20072,3538,18880,2942,387,294,1457,138,146,0,204776,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@stellargy Thanks for the ff! I agree with you- not sure what it is but today is a heck of a lot better than the past few. Woke up to it. ","features":[58635,734,12,21,2094,31,540,151,7059,672,298,1111,4,0,4,0,0,0,0,0]}
{"sentiment":0,"tweet":"If you at Hot Topic watching The Union... I'll be watching from the crowd as well. The Fender head I was using went out... ","features":[0,0,0,528,0,0,0,528,5901,299,4,0,652,21,1804,857,0,0,0,0]}
{"sentiment":4,"tweet":"@ArizonaHarley - BTW http://bit.ly/QNjxb - some useful photoshop brushes for ya (and any other bikers needing them ","features":[31,21,21,31,12841,8967,48173,85,20,72321,19804,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"More Blue Beauty oolong today! ","features":[0,0,0,332976,151,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"have you watched the new cobracam episode yet. If not, you should. It is EPIC! ","features":[2451,125,0,1908,752,4,0,7,4,0,21,12,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@CIVILADVICE I know. I be so busy. I might be a diabetic tho... ","features":[21,118,4,21,1991,4,21,715,73570,588,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"with DeeDee,Brandee,and Cody ","features":[0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@anthonyshort Well then I'm really sorry to disappoint - but it's for Mercurial http://bitbucket.org/snej/murky/wiki/Home Sorry dude ","features":[0,0,185,476,20859,31,0,0,1054,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@danipoynterjudd lol oh well, other will just have to deal with it ","features":[91,196,299,7,1380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Oh no....tummyache to the extremeeeee thank goodness only 7 days!!","features":[0,0,420627,0,340,7731,10,458,12,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"listening to Blink-182 ","features":[1485,0,31,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"damn. didn't know that Speed Racer is at 7pm, huhuhuh .. gonna wait for tom. so i can watch it. the craving is killing me .. ","features":[461,4,118,0,17380,0,7,134154,0,319,402,2423,4,436,4,5708,2642,0,0,0]}
{"sentiment":4,"tweet":"@PurpleMuffinMan aww it's cute!","features":[1524,494,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Have to study...so boring hate it!","features":[0,1917,0,1863,260,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"House is a mess. Big clean up session tonight before the cleaner comes on Monday morning. Sounds wierd, clean up for the cleaner ","features":[0,2736,4,0,2420,4768,321,23047,1043,0,347,4,0,26060,7,2420,23047,0,0,0]}
{"sentiment":0,"tweet":"@stkas ugh come online soon! i miss our little chats ","features":[1155,246,951,700,12,295,417,17659,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@TexDolly ... awww ... I want a follow too ","features":[0,244073,0,21,132,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"sitting in an InDesign class... enjoying it, but saddened that classes are coming to an end 2 more classes before I am done!","features":[2079,0,728,0,5170,7,59314,3827,660,626,10,3827,21,395,12,0,0,0,0,0]}
{"sentiment":4,"tweet":"I said I make you smile for the simple fact I'm good at it, I make you smile so I can sit there and look at it ya dig?","features":[21,410,21,186,703,1619,1146,0,120,7,21,186,703,21,1710,276,85,6082,17,0]}
{"sentiment":4,"tweet":"sitting in the dark. Thinking of @JesseMcCartney and my amazing friend @katiespo and @MeghanDriscoll. due to bein a proud Jesse fan! ","features":[2079,1682,4,0,567,533,4,2478,8053,1118,0,832,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Relaxing ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@nrocy git rockz, congratz ","features":[7532,372354,7,38407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"i wanna go to the grove but i'm exhausted and sick. grad night was fun but i wish we didnt get separated roscoestastes soooooooo good.","features":[292,114,24378,0,7930,934,4,11354,238,577,409,1838,90,36333,0,0,120,4,0,0]}
{"sentiment":4,"tweet":"@KateMaxwell If it was @dahlhalla, girlfriend's doing that following-of-you with a recent skull fracture. So ... extra props. ","features":[0,7,0,0,6842,21378,80350,4,0,0,2053,15120,4,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Oh snap vaccinations on Monday ","features":[0,3573,242352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"wow...i guess watching my 4 hour exteded vergions of lord of the rings in the morning b4 school sessions are over oh well....","features":[612,0,763,528,10,1196,0,0,1562,7765,347,0,284,14612,196,299,0,0,0,0]}
{"sentiment":0,"tweet":"@gabiperezd however, he soo rocks.","features":[7832,7,1662,6293,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Jewelsmyfav thanks!! I made it!! that's a good sign my fluid might just be low but the preowned tl is looking real good right now! ","features":[272,12,12,21,428,12,12,0,120,1795,45905,715,1935,392218,983,608,315,120,211,12]}
{"sentiment":4,"tweet":"@biologically17 ok! ","features":[308,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mquinnv In Spanish: tira=throw, mi=my, su=his. I guess the Spanish throw stuff an the Italians pick it up. Still a favorite dessert!","features":[0,0,5,5211,222,2110,7,104,222,7,361,222,4,21,763,0,2110,1092,0,1549]}
{"sentiment":4,"tweet":"@grahamhills I liked this one! hope you're well!","features":[21,1306,99,12,423,299,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@heyrima Aw, girl. Sounds like reverse WIZARD OF OZ -- day just switched to B&W. ","features":[0,7,261,4,0,66,17254,21,21,21,21,31,31,128,18916,21,86,21,4,0]}
{"sentiment":4,"tweet":"@Ishme3t Lol, I was going to name him Sheldon, but he looks like a Lucifer. Hell, yeah, give the lady a nice name!","features":[0,7,21,214,592,0,7,710,66,0,4,0,7,360,7,377,1406,462,592,12]}
{"sentiment":0,"tweet":"@amyNIN We really miss you guys already. ","features":[0,185,295,399,552,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":" dinner < bath < workout < run","features":[1575,74,4633,74,3734,74,901,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@BlueeLuong hey, it's all facts. AHA. But yeah, we should drink together someday when you come up here in the bay ","features":[425,7,2925,4,21,4,0,360,7,1445,831,5684,246,4550,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"my Phone broke ... third one this year.. (so Far)","features":[0,1788,0,4857,99,359,0,20,0,23,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"bf parents bought c lo pack of 234 diapers. what more can a girl ask for? ","features":[2882,1290,2325,213,94,2800,10,43513,4,261,566,17,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"im going to bed night all XD","features":[181,214,568,238,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Going to the dentist... Ugh hate the dentist haha. Please no cavities!!","features":[0,11402,0,0,260,11402,119,4,0,128112,12,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@craigelder damit...I meant to say fishy, not fish. Now I've lost the moment ","features":[30754,0,21,2013,229,33416,7,3533,4,0,0,892,751,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@peterjrday Thanks. Feel so happy 2 Make Ur Day a Great one. Enjoy it 2 the fullest N Have Fun Always ","features":[58635,4,0,180,10,0,0,0,0,99,4,0,10,25704,21,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Molltini never tried it. Don't plan on it either. ","features":[193,1860,4,0,1369,1345,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I feel so bad for the people on the air france flight that "dissapeared" this morning over the Atlantic ","features":[21,267,358,133,1190,3067,4636,15,322896,15,347,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Third row back at Comedysportz I wanted front row!","features":[0,4910,122,0,21,954,1824,4910,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"just woke up. today I'm going to my dad's place and he has no computer so, I don't know when I'll be here next time. ========","features":[1774,4,151,0,214,0,910,3532,7,21,118,0,414,138,4,222,222,222,0,0]}
{"sentiment":0,"tweet":"I really really wanna go swimming right now ","features":[21,185,185,292,114,5253,211,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"why does it always rain in manchester.?! Doesnt exactly motivate me for the day.! I wanted to go to the zoo ","features":[248,1446,2989,4,17,12,0,1666,22406,128,4,12,21,954,114,7740,0,0,0,0]}
{"sentiment":4,"tweet":"This is dedicated to Janeane Barofolo #tcot ? http://blip.fm/~4mk0z","features":[9173,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"UUuuuuh @FashunFierce is drainin me...crackin jokes at such a serious time....hmmmmph ","features":[0,0,0,28096,3674,1509,138,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@thetaraface Thanks there, Taraface. When I read your Okie Dokie, I groaned and chuckled at the same time. A gruckle, if you will. ","features":[58635,7,0,4,0,21,784,0,0,7,21,386190,77103,138,4,21,0,7,4,0]}
{"sentiment":0,"tweet":"i cant find lauren ","features":[631,473,6995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@justinmaller Ahh man it's to bad that every wp is maximum 1680x1050 I need some 1920x1200 ones!","features":[0,249,358,384,12895,22687,0,21,174,0,1399,12,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Will Grayson, Will Grayson is being published by Penguin... ... has to wait for it to come out...","features":[0,0,7,0,0,17162,0,0,402,246,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Gearing up for BBQ's, pools & sun this weekend ","features":[0,0,7,31694,86,1669,726,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Twittering from my phone! really cool, actually x]","features":[0,451,12,185,585,7,553,149,165,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Award Assembly. It's fucking hot in here! ","features":[0,0,4,0,411,561,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@girlcanrock I keep calling kanye but it's always busy ","features":[21,419,2179,4623,248,1991,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@SoundOffRadio DM; lol i can reply 2 urs ","features":[21,126,91,1799,10,18192,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Really really bored still layin in bed.","features":[359074,185,928,235,27807,568,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@uzhycute thanx uzzy, udah follow twitter kelas 96 ! hhehhe ","features":[9123,0,7,443,87,221,2230,10,12,211144,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"homework ","features":[1720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Drunk... Partied out... & looking forward to today ","features":[0,0,0,0,86,608,1734,151,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"History Regents ","features":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Heaven is announcing ... Heeeeeeer's Ed! RIP Ed McMahon ","features":[0,25830,0,0,0,12,21,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"F*cking f*ck. Seriously, what's wrong with #flash #cs4? Got this after saving a document and reopening it. http://twitpic.com/6eie0 ","features":[21,45,29587,337,45,6041,4,0,7,0,666,0,0,17,0,6741,31019,158530,4,0]}
{"sentiment":0,"tweet":"I've homework tuition's. Vectors, aku nda pandai. Bawa ke school besok and will ask for help from sir *sigh.","features":[0,1720,0,4,0,7,141,3094,6867,4,0,335,284,1087,566,517,2622,45,3223,4]}
{"sentiment":4,"tweet":"@talkaboutluck oh man, chuck!!! yes!!!! its the greatest show on earth!! i love it!! haha, well, its good ","features":[196,249,7,6880,12,12,12,322,12,12,12,2880,412,2501,12,12,71,12,12,119]}
{"sentiment":4,"tweet":"@Power2B Looking for suggestions on good Twitter names ","features":[0,15254,120,146506,3481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Pesmare I freelance for them but work part-time on another magazine in the same office. I have around 3 part-time jobs + full-time uni. ","features":[21,25467,323,51669,600,4848,2726,4,21,578,10,51669,1900,237,36434,5289,4,0,0,0]}
{"sentiment":0,"tweet":"heading out, back to WI. i miss the stpaul office #fb","features":[5969,7,122,21,4,295,0,2726,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@petewentz I call ageism as I have not been in school for a long time. ","features":[21,465,0,21,284,466,138,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"back! bought my radio:active live at wembley yeeeeeeeey! wanna see them now wanna hold him now ","features":[122,12,2325,1302,5,8235,320,20294,0,12,292,166,292,1292,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@lsdphotography ok, i will do then. Hows the new gaff btw? x","features":[308,7,4,0,125,98423,2258,17,149,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@emmao414 oh no don't leave us, we're your virtual family. J","features":[196,760,294,7,0,9832,621,4,21,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@AyeBloodyRight indeed - it's pretty manky today boo ","features":[5456,31,542,296197,151,1480,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@sjhooray I have 10 so far. too tired to think ) but it's fun right? ) @camilleisleta gave me the link ","features":[21,10,882,4,713,189,23,577,211,17,23,1529,1347,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Day 1 coming back from recovery : Still clearing emails and DMs plus projects from past 4 days. Will get to yours soon if I haven't yet! ","features":[0,10,660,122,11102,5,0,31618,14127,0,840,11147,1111,10,458,4,0,90,700,21]}
{"sentiment":4,"tweet":"We're going to spend our Saturday being cultured and learning about science and history. ","features":[0,214,1965,0,117057,4328,4052,2163,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"-dies- I had the best dream ever last night and my dad just woke me up. ","features":[31,4844,31,21,212,940,275,291,238,1026,1774,4,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"On the bus home from school - one of the longest days of my life ","features":[0,1541,338,284,31,99,7664,458,184,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Very annoyed that I have caught an evil cold though. And even more annoyed that people think I have swine flu - I don't by the way ","features":[0,4668,21,2708,3860,1023,565,4,0,242,4668,133,189,21,65703,7491,31,21,274,0]}
{"sentiment":4,"tweet":"http://tinyurl.com/ry9wap Hi. I saw your ad and I think you are interesting man. I like your profile info. I will send you my picture ...","features":[0,4,21,885,1640,21,189,2555,249,4,21,66,3535,1501,4,21,1285,922,0,0]}
{"sentiment":4,"tweet":"@dwf Thanks for the info. ","features":[58635,1501,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"talking with my beautiful cousin @carla boo! she doesn't have a twitter YET!","features":[655,534,2570,1480,12,221,21,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"it's sunny outside yet i feel very gloomy.. ","features":[5654,1415,752,267,42278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm already missing some of my friends ","features":[0,552,1667,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm about to go to bed, excited about VBS tomorrow and seeing what God has in store for these sweet children! I love their excitement! ","features":[0,114,568,7,872,21,331,1323,0,2102,905,2255,12,21,71,11223,12,0,0,0]}
{"sentiment":0,"tweet":"This is boring ","features":[1863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Try to play night holes later ","features":[11189,500,238,15431,1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Haatee chemistry ","features":[0,6458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@leadmachine You can have beer, but should factor it into your calories for the day, don't over do it & don't do it everyday ","features":[0,2415,7,4193,12642,128,7,86,1475,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Aww its on the part when caretaker is murdered ","features":[0,804,127162,18449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"while stirring coffee ~ i should practice mindfulness - shirt would still be clean #senryu","features":[73892,2009,123,2465,87701,31,2129,199,235,2420,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@PP_Toni lol, well thats for my macedonian friends who hardly understand english ","features":[91,7,299,826,331767,385,9826,961,1983,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"got new boots todayy....wanna see short stack at astra awards but its not on ","features":[146,125,5556,31081,0,292,166,1570,17840,58025,2093,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"princess made me happy cheers princess","features":[2993,428,180,4494,2993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Out! bye! ","features":[0,12,1012,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm thinking that someone @ @FRC needs to think about a Friday night service I have a wedding 2 go 2 on 2morrow will miss the 7:30pm ","features":[0,846,241,307,878,189,0,238,2466,21,2799,10,114,10,0,295,0,766,0,0]}
{"sentiment":4,"tweet":"- Great day people-watching in Berkeley with my bro I love him.","features":[31,0,128,0,0,646,21,71,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lauralawrah IM POSITIVE THAT I AM THINKIN ABOUT WHAT U ARE TALKNG ABOUT AND IT MAKES ME SO HAPPY THAT I CANT USE WORDS TP EXPLAIN IT!!! ","features":[21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21]}
{"sentiment":4,"tweet":"Damn white girl get off my back huh @MissBlaze...... I see you Pookie..... I love you bitches ","features":[0,814,261,90,122,2119,0,21,166,0,0,21,71,780,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@jesssicababesss I THINK EVERYONE IS GOING DOWN A PLACE ","features":[21,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@iAlejandro and @Msixpackabs thanks ","features":[272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@TizzyEnt thanks bunches I love waking up to compliments ","features":[272,60496,21,71,2921,14357,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"finished for exams for this semester!!!!! FINALLY!!!! sooo happy ","features":[2505,5475,4809,12,12,12,21,12,12,12,285380,180,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@crimsong19 I haven't. Work takes up too much time. But oooooohhhhh now I see.","features":[21,4,0,1597,205,138,4,0,0,21,166,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@barfwithloafers haha.. heyy. ","features":[119,0,8377,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I miss my joshie bum more than anyone can understand ","features":[21,295,304529,5922,634,961,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@NikiB2 haha idk like wavy but not curly...idk i like it! lol omg cnt watch hills finale 2nite but gonna watch it online 2morrow! EXCITED","features":[119,993,66,31641,11398,0,993,66,12,91,346,9543,436,11540,6072,0,319,436,951,0]}
{"sentiment":4,"tweet":"@ItsEmOfCourse It says twittergenuis, if that helps? ","features":[0,816,0,7,5466,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"can't go to school.. m sick.. ( its a must pa naman to be there.. craaap.. ","features":[0,114,284,0,934,0,20,616,595,2183,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Before the storm = amazing ","features":[0,4388,222,567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"My head hurts, the room's spinning, my ears ringing... Last night was a blast!! Call them merit badges not symptoms ","features":[0,652,1886,7,0,17325,7,6416,22827,0,0,238,5340,12,12,0,54533,66311,27233,0]}
{"sentiment":0,"tweet":"@NicoleJensen That is so incredibly sad.. ","features":[3187,12808,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@DIDI1079 I get my girls on weekends & love every minute with them. There's nothing better than family enjoy ur time.","features":[21,90,398,8850,86,71,384,1977,4,0,491,298,621,1263,507,138,4,0,0,0]}
{"sentiment":0,"tweet":"I hate to leave knowing that my mother will be kind of alone. ","features":[21,260,760,2585,1544,1328,933,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@arnph O seeeea..... wtf was that? 3min? baaah! i just woke up half an hour ago and we just talked 3min? not fair! tell me the next hour!","features":[21,0,0,847,17,0,17,68014,12,1774,1032,1196,1373,4394,0,17,2612,12,387,414]}
{"sentiment":0,"tweet":"watching family guy on my own on a saturday night... rock &roll ","features":[528,621,637,1342,238,0,1288,86,2212,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"multiple #fail ","features":[9375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"kay tmrwz my official start of my diet! gotta get it right for summr x)","features":[3723,0,1663,518,3598,12,597,90,211,0,149,23,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lostdeviant Automatically change ","features":[0,689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Good.Morning. everyone have a great dayy! ","features":[0,4,318,344,25114,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@PurseBlog Me too! Back here visiting fam. Siesta Key's white beaches & shopping in St. Armands circle is love ","features":[0,12,0,11953,2783,4,0,0,814,34431,86,1654,0,4,0,6562,71,0,0,0]}
{"sentiment":4,"tweet":"@orbanbalage thank u my 2nd favourite geek ","features":[340,54,0,2829,12531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Cookie_dav Oi! Old???? What does that make the rest of us! Shft work could a reason.Stuffs up ya body clock for years. Rejoice the nana!","features":[0,12,0,17,17,17,0,186,1401,294,12,0,323,300,0,85,1085,6374,643,4]}
{"sentiment":4,"tweet":"@japhy79 It was really hard work trying to find that many people. You rock thanks for the 411.","features":[0,185,480,323,662,473,556,133,4,0,1288,272,10,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Naaaade You will be proud Nade, I said to Gavin that I had been told to leer at him at the gig, he laughed after I told him that i didnt ","features":[0,1118,0,7,21,410,0,21,815,3483,9128,7,5499,21,815,1838,0,0,0,0]}
{"sentiment":4,"tweet":"@vlaclair Bad Seed, Bad Seed! Great times at #CLC09","features":[0,0,7,0,0,12,0,748,21,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"OMG HANNAH MONTANA MOVIE WAS AWESOME!!!!! AGH LOVED IT SO MUCH! the guy was hot ;) hahaha @SabrinaBryan no dont leave me hanging ","features":[21,21,21,21,21,21,21,12,12,12,21,21,21,21,21,12,637,561,0,223]}
{"sentiment":0,"tweet":"@_UniqueGirl_ i have a sty and it hurts ","features":[76280,1886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I hope Miley wins the two awards that she is nominated for! ","features":[21,423,0,3390,570,2093,12549,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@AJSteen Sorry, my phone won't load that link But the thing I've heard: vote percentages in some districts just don't make any sense.","features":[0,7,451,6764,1347,0,413,0,1222,5,644,227624,61775,186,2001,4,0,0,0,0]}
{"sentiment":0,"tweet":"missing augustinee. ","features":[1667,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@uberGruber I so wanted that! I ended up with beef stew ","features":[21,954,12,21,5406,6058,32007,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Chesneyh hopefully my dad got it for me from bali, how good will it be ","features":[2432,1026,146,5980,7,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@me_chiel Nah, it was only a CX-520-D ","features":[0,7,21,31,10,31,21,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"#andyclemmensen i think this just might work for #andyclemmensen ","features":[0,189,715,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Out to dinner with my dad... ","features":[0,1575,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@danielthepoet I thought famous bloggers were just people with Internet. ","features":[21,623,3166,25320,133,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@drunkenmonkey87 me too at least it's raining.","features":[1231,5853,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I want my memory card really really bad. ","features":[21,132,4377,2312,185,185,358,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ashlee_costa Yea I remember that!! It sucks! Kendra told me about a place tho &im gettin them +installed for $350.. Which is ok ","features":[0,21,628,12,12,0,1579,12,0,815,910,588,86,181,2510,237,32976,209,10,0]}
{"sentiment":4,"tweet":"@peliis Grabbed the true essence of summer Shame for we're with Augo's family.haha","features":[0,549,29196,822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JanayLuv thank you now i just cant wait ","features":[340,631,402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mileycyrus U deserved it, Im happy for u And then all our voting was worth <3 when u won the award <3 congrats <3 Love u <3","features":[21,9641,7,0,180,54,0,4231,1365,0,54,3095,0,1633,0,0,54,0,0,0]}
{"sentiment":0,"tweet":"at chipotle with kelly and debbie. not getting anything though, i need to save up money ","features":[9863,5119,30400,4,400,633,565,7,174,1386,582,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"..spare me, i had enough....i just want to be loved in return ","features":[0,12174,7,800,0,132,1615,3519,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@vamomof7 thank you 22 ","features":[340,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@DH_Photography I would avoid Mexico ","features":[21,199,5839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Wishes she didn't have to work and could be hangin with Dani, Kenzie, and Robyn ","features":[0,323,300,21627,0,7,0,7,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@HeartMileyCyrus Sure! She would appreciate it thank you! I'll go out first later ;)","features":[0,12,0,199,2394,340,12,0,114,328,1198,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"FREE UNLIMITED RINGTONES!!! - http://tinyurl.com/freeringring - USA ONLY - Awesome 4 iphone ","features":[21,21,21,21,21,21,12,12,12,31,31,21,21,31,0,10,731,0,0,0]}
{"sentiment":0,"tweet":"Such a boring class ","features":[0,1863,728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"trying to revise ","features":[662,19266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"sooo bored!!! feeling a little creative!!!! ","features":[285380,928,12,12,12,676,417,5613,12,12,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Wow, I'm awake and feel like heck lol.","features":[0,7,0,2173,267,66,7059,91,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mitchelmusso I LOVEEEE Welcome to Hollywood You are so awesome! Please come to Singapore <3","features":[21,21,0,0,0,735,12,0,246,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Oh ~So Much More~","features":[0,123,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@TheTBar Good, but don't tell me about fun things AFTER... tell me when I can get involved! ","features":[0,7,387,577,355,21,21,0,387,21,90,6185,12,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"relaxin in my room wit Sean. he's a wild ass sleeper. he b all ova the place. I love him ","features":[86039,880,1106,0,4,0,2860,324,52597,4,79,8739,910,4,21,71,0,0,0,0]}
{"sentiment":0,"tweet":"@jerricklim i can't get to london on time to catch the connecting flight with u! boo. Ok, u go alone then!","features":[0,90,1629,138,1765,34446,4636,54,12,1480,4,0,7,54,114,933,12,0,0,0]}
{"sentiment":0,"tweet":"So bored ","features":[0,928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"at least gossip girl is done ","features":[1231,6997,261,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Vampire name: High Priestess of Scandanavia -Mother of The Lost- A lonely one who guides the lost - but not to safety, to their doom... ","features":[0,592,5,0,0,0,31,0,0,31,21,3410,99,33167,892,31,8058,7,26690,0]}
{"sentiment":0,"tweet":"@tararebeccah Not working well for me. I still can't get the page to load to vote.","features":[0,1137,299,4,21,235,0,90,1739,6764,644,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@coolzebras No worries. I am sarcastic most of the time BUT I can be nice when the situation call for it. ","features":[0,5858,4,21,10634,138,21,21,462,3613,465,4,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Not much to brag about on in that game!!! ","features":[0,205,15231,356,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jshe you're a good friend","features":[120,533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mycaricature Choo upto girl? You've been an inactive twitterer lately! ","features":[0,43607,261,17,0,59404,205004,3684,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ChrissieCarLady Oh Carbs I miss those -Shannon","features":[0,0,21,295,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"done for my lectures tomorrow at PAS monthly meeting! ","features":[395,36218,331,21,21020,2714,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"watching mtv movie awards..thinkin bout the day i gonna be in that room lolz","features":[528,2806,690,2093,0,7280,736,128,319,880,8459,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"On Yahoo! Answers now answering people's questions about the Lord. ","features":[0,0,12,0,13035,0,2361,0,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Has a cold again. Twice in 3 weeks ","features":[0,1023,4,333325,10,1506,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"This is my mood today http://bit.ly/fJqjd","features":[1352,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@SuperKawaiiMama oh how I would love to do tea with you! But yes, we are very far away ","features":[196,21,199,71,2259,12,0,322,7,882,551,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@tiraad http://twitpic.com/6st72 - Awwwe your the best person ever & your perfect for me! I lovee you ","features":[31,0,212,420,275,86,636,12,21,10489,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@william_stenner yard work... and maybe make some art?! what are you doing today?","features":[7767,323,0,719,186,1811,17,12,151,17,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"you made up. dressed up. messes up plans I set in stone ","features":[428,4,5510,4,32634,2480,21,1078,5791,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Hubby just called me. I still get all giddy when that hottie calls ","features":[0,991,4,21,235,90,52511,14337,2443,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Yikes, Kajagoogoo are ageing worse than me...http://twitpic.com/556ih and that comeback tour consists of two dates - one in my home town ","features":[0,7,0,139032,2310,0,6052,1052,22116,570,6460,31,99,338,1989,0,0,0,0,0]}
{"sentiment":0,"tweet":"missing home! its the worst week end i ever had!","features":[1667,338,12,1234,438,626,275,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"ohhh and I'm spent that workout was exhausting but SO fucking worth it (; score! niiight","features":[0,0,3464,3734,34220,21,411,1365,0,3074,12,234332,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I am on roblox.com you should literally try it out it is one of the most epic free games out there trust me ","features":[21,0,1470,555,99,3711,427,1034,981,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@musiiicbox i guess... and you mustve not liked the pics ","features":[763,0,148664,1306,2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"2day was the last class of: French & Law. ","features":[0,291,728,5,0,86,0,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"http://bit.ly/1VORA this video is special for @ddlovato comes mexico watch it ","features":[289,1218,1043,3050,436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"can anyone throw me free money pls? i did say pls ","features":[634,2110,427,582,1307,17,229,1307,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AlanCarr Heya, i just wanted to say i watched your show Chatty Man and it was so good it made me laugh...Good show xx","features":[0,7,954,229,2451,412,0,0,120,428,1167,0,0,412,691,0,0,0,0,0]}
{"sentiment":0,"tweet":"@DonnieWahlberg 19 concerts & a cruise NO FACE TIME but I'll TWUG u anyways c u one last time sun in Toronto! ","features":[10,14594,86,9112,21,21,21,0,21,54,4397,213,54,99,291,138,1669,0,12,0]}
{"sentiment":4,"tweet":"having girl talk on my balcony...what a beautiful nite how pretty, its a full moon! funny how we're goin thru the samething lol","features":[261,439,29590,0,534,3843,542,7,835,3053,12,584,0,1958,3357,101661,91,0,0,0]}
{"sentiment":0,"tweet":"My eldest son's NI number has just arrived in the post. He's growing up and I hate it ","features":[0,99177,0,21,1079,6259,1091,4,0,4350,21,260,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":" what a day...","features":[128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Organizing my computer, my dad left already ","features":[0,3532,7,1026,797,552,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Oh no that stupid hooting early morning bird is starting its nonsense already ","features":[0,863,466972,975,347,2713,1754,13410,552,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@daaayd thank you so much once again, amor <33333...","features":[340,205,7,371,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@qgtor1 thanks sweetie...ive missed some of yall too ","features":[272,7602,0,2462,1581,1447,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@adamrofer k she's MIA. boo ","features":[154,21,4,1480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@TianniaShaqueen oh ok!! gotcha!! i was wondering what what happening next...been crazy busy...feel like i am letting them down! ","features":[196,308,12,12,13150,12,12,4390,3324,414,0,674,1991,0,267,66,3660,12,0,0]}
{"sentiment":4,"tweet":"def, check out the few photos I took yesterday on my flickr, its almost as if I know what Im doing. http://is.gd/AJbH","features":[5123,7,527,1761,21,1315,1314,21875,7,1147,21,118,0,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"The only problem with @ahoova's idea is that people who do NOT want to see all your replies will now see them...Hmm...Nothing's perfect! ","features":[1212,51,1143,133,21,132,166,11400,166,0,0,0,0,636,12,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Entregreeneur genetic/medical reasons should get access as disability. But self *beer* inflicted maybe not ","features":[57201,41,7294,2940,90,7530,38776,4,0,1809,45,2415,45,128321,719,0,0,0,0,0]}
{"sentiment":0,"tweet":"How do you write a paper on a mac? No word I feel like an idiot. Damn technology.","features":[0,2283,2264,2942,17,0,894,21,267,66,3495,4,0,6503,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"@dzcountingsheep thanks!!!! D ily! inshallah, I'm gonna miss talking to you 26/7! LOL","features":[272,12,12,12,21,2657,12,28654,7,0,319,295,655,0,12,21,0,0,0,0]}
{"sentiment":0,"tweet":"has anyone seen my wacam tablet?? ","features":[634,809,0,7194,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@WizardCM That's 5x my max ","features":[0,0,2920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"also, did #GQMF become a trend at any point while I was gone in the last hour or so? ","features":[896,7,21,1673,3879,1071,21,701,291,1196,17,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@danderson00 you can go home in an hour from now.. unlike me.. 15 mins ","features":[114,338,1196,0,14380,0,10,2807,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"OMFG I hate my parents, I hate my home life, I hate life away from my luv & friends ","features":[21,21,260,1290,7,21,260,338,184,7,21,260,184,551,3443,86,385,0,0,0]}
{"sentiment":0,"tweet":"@Wally0726 ummmm. I'm not a tease. you're the one with an appointment, yet I cant get it today? ","features":[0,4,0,14587,4,99,13534,7,752,21,631,90,151,17,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@BEASTYENT well that's not a prob no more. ","features":[299,0,6725,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm half way thru my packing for hawaii. missing all my bali stuff I left in jkt. ","features":[0,1032,274,3357,7964,10676,4,1667,5980,1092,21,797,4701,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"thinking about my crazy friends and how hard they worked putting together a surprise party ","features":[846,674,385,480,4670,2841,831,3584,630,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Long day. Tired. Sleep Tomorrow is graduation for my little sis.","features":[0,128,4,0,4,0,0,6301,417,2563,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jess81390 lol yessss how are you?","features":[91,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JDot1911 hey there J ","features":[425,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@bsbgal8 OMG! Lor!! That article on pizza hut!! I can't believe they are taking out the "pizza" part!!!!!! :-O ","features":[21,12,0,12,12,3187,4309,1457,10791,12,12,21,0,554,1070,15,1457,15,804,12]}
{"sentiment":0,"tweet":"Oh, is so tired! But it's time for work now ","features":[0,7,713,12,0,138,323,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@ajdulhunty And I know. I'm starting to get more nervous as each hour goes by Movies in slippers Tuesday?","features":[0,21,118,4,0,1754,90,4920,1196,1008,0,27348,0,17,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@sussa Check out Sirenia. And yes Epica and Nightwish Evanescence is alright. Their first CD was amazingggg","features":[0,0,4,0,322,0,0,0,1586,4,100485,328,21,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@hazeleyes10 thanks","features":[272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Argh tryna find a film to watch for Friday! ","features":[0,1583,473,1253,436,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Already replaced a broken networkswitch and printed last weeks invoices. Looking forward to reading my weekend newspaper with a coffee ","features":[0,13294,2492,0,23372,291,1506,278772,4,0,1734,1744,726,17819,2009,0,0,0,0,0]}
{"sentiment":0,"tweet":"@dogpossum I remember when it was 'unlimited' d/ls, then $9.99 for 50 tracks. Now $14.99 for 37. Emusic getting less and less awesome ","features":[21,628,51,10939,51,41,8093,7,209,0,10,9400,4,0,209,0,10,4,0,400]}
{"sentiment":0,"tweet":"@tessax05 i wish everything was still like that :'( i want them to be succesful but i miss before they premiered on hannah montana ","features":[409,431,235,66,0,132,129093,295,117587,6629,7989,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"http://tinyurl.com/d9yjfk *cough* Ok, for now, I stay with DVDs... ","features":[45,5988,45,0,7,7,21,576,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@hycaliber that sucks. try and make the best of it. Keep me update.","features":[1579,4,555,186,212,4,0,1882,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I really feel like cuddling. I'm not sad, or mad, or anything. Just want to hold someone. ","features":[21,185,267,66,7302,4,0,818,7,692,7,633,4,0,132,1292,241,4,0,0]}
{"sentiment":0,"tweet":"House is clean, chicken is marinating, off for a run before spending the evening working May treat myself to a DVD though.","features":[0,2420,7,2184,332602,7,901,4079,3376,1137,0,2262,21,565,4,0,0,0,0,0]}
{"sentiment":0,"tweet":"@tonyvaughn oh man i wanted to go on thattt! Have fun!","features":[196,249,954,114,0,12,0,577,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is working ","features":[1137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@nickrogers70 Anyone; the more the merrier ","features":[0,126,112859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"hey @mitchelmusso please reply me, i can't call you im from Mexico and i don't know the code love you","features":[425,203,1799,7,0,465,181,0,118,2824,71,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I finally figured out why it doesnt feel like summer. Its cus im not at the schools bball gym when every summer it was my second home ","features":[21,860,8859,3564,267,66,822,4,0,4892,181,5624,19754,1645,384,822,1298,338,0,0]}
{"sentiment":0,"tweet":"bulls let me down maybe the mavs can boost my morale. fuck the celtics.","features":[7718,268,719,36909,9667,50350,4,206,8505,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"So im feeling really lonely on here i asked for help with a qestion and no one helped me x boo hoo x","features":[0,181,676,185,3410,1730,517,0,99,6743,149,1480,11846,149,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"the grandparents will be here tomorrow! I have 2 days off! much love to @dark_15... you keep me sane and I thank you for it ","features":[18641,331,12,21,10,458,12,205,71,0,419,18771,21,340,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Good morning ","features":[0,347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@TrojanMayhem a man drinking milk from a cow at 1909 ","features":[249,2655,3987,9867,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Best act won BGT by far I reckon!! Awesome performance ","features":[0,1300,21,882,21,16675,12,12,0,3182,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Getting ready to leave for three 12's in a row Thinking about having a garage sale to support our summer plans.","features":[0,581,760,1592,10,51,4910,0,12228,1267,1217,822,2480,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I miss "Sister, Sister"! @tiamowry and @tameramowry never disappointed me. Can we get another Tia/Tamera show? *crosses fingers*","features":[21,295,15,0,7,0,15,12,193,5739,4,0,90,600,1624,41,0,412,17,45]}
{"sentiment":4,"tweet":"@mileycyrus what about your New Zealand friends????! ","features":[0,0,385,17,17,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"i am such a screw up ","features":[6456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@celinefrey wake up!! im trying to call u, but ur phone is not cooperating with me ","features":[1095,12,12,181,662,465,54,7,507,451,140429,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@flygirljules23 Well, we are considering looking at other providers. Prob is, we're under contract with t-mobile right now. ","features":[0,7,8178,608,60029,4,0,7,0,7970,37833,211,4,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Going to sleep by myself. ","features":[0,382,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"#creditcrunchtv Fridge. ","features":[0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Ahh im back ... sims3 just took a weekend to hack and unlock for friends, its done homies, bring a blank DVD+R DL ","features":[0,181,122,0,12604,10,1315,726,9952,17524,385,7,395,8966,7,989,11419,21,237,21]}
{"sentiment":0,"tweet":"Have sore throat of impending doom and a desperate desire for some chamomile tea and chocolate. Not a happy bunny.","features":[0,2186,5649,99640,26690,8015,8675,191360,2259,1469,4,0,180,9005,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"' I believe in you my love, and your imaginary world.' Nightnight world Sending love out there.","features":[51,21,554,71,7,24594,370,4,51,0,370,0,71,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I didn't win the wristbands for the @MuchMusic Twitter or Facebook contest Oh well it's a hairflip it's whatever. I'm still going LOL.","features":[21,490,73125,146506,0,4532,0,299,101955,1471,4,0,235,214,21,4,0,0,0,0]}
{"sentiment":4,"tweet":"my garfield collection will soon reach 50 ","features":[31129,4459,700,3664,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"almost done watching "gremlins", I love 80's movies! ","features":[1147,395,528,15,104567,15,7,21,71,10,51,1616,12,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"When are they going to give me my Wave account? They said they'll give me it after a couple of days after the conference. ","features":[0,214,377,0,1550,17,425,410,0,377,1430,458,5641,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@rachelcaine How wonderful. You know, I am going to make a sister-site of my class blog. When it's up and running, I'll send you the link ","features":[0,2645,4,0,118,7,21,214,186,0,728,1375,4,0,1578,7,0,1285,1347,0]}
{"sentiment":4,"tweet":"OK Im so happy I have the job i have , one of my coworkers has friends who have a studio and have agreed to only charge me $10 an hour!! ","features":[21,0,180,21,770,7,99,33630,385,3215,6515,5121,209,10,1196,12,12,0,0,0]}
{"sentiment":0,"tweet":"@sandwichgirl24 oh well that scks sorry","features":[196,299,0,476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JonMcLaughlin i think that you'll be okay ","features":[189,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@JeremyHarding it's the dynamics bro I think as I totally agree ","features":[47278,646,21,189,21,2276,2094,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@stephencrowley considering i dont support marriage tis quite ok with me! ","features":[8178,351,1217,4890,12141,2446,308,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Nadia_Fly awwwwwwwwwwwwww......gosh!!! so sad T__T but ur gonna get 2 more.. an upside!","features":[0,0,3969,12,12,12,818,669,507,319,90,10,0,17468,12,0,0,0,0,0]}
{"sentiment":0,"tweet":"@mmitchelldaviss http://twitpic.com/6bfvb - i dont get it...","features":[31,351,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@bebeld thank yoooou, bff <3 ily SO much too, you know tat e e enjoy MUITO os nossos meninos la hoje, for the both of us <3","features":[340,53933,7,5584,0,2657,21,205,7,118,11819,52,52,1263,21,21,531,14068,9392,43]}
{"sentiment":0,"tweet":"Just got asked to go to my friend's house. Means I have to get soaked walking to hers can't wait to get a car!","features":[0,146,1730,114,0,545,4,0,21,90,33190,1621,0,402,90,792,12,0,0,0]}
{"sentiment":0,"tweet":"Wow. Headache + my dad's loud music + my gma's loud telvision is not a good mix ","features":[0,4,0,237,0,2534,437,237,0,2534,0,120,2339,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@MKJHMorgan How was UP? I can't wait to see it. My nephew turns 8 on Sunday and his party is going to see Night at the Museum inside. ","features":[0,21,17,21,0,402,166,4,0,9557,3658,10,0,630,214,166,0,0,1735,4]}
{"sentiment":0,"tweet":"@Dannymcfly Are you real, Jones? Pinch me, I must be dreaming ","features":[0,315,7,0,17,0,7,21,616,7319,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Tsali that's not good bad dryer!","features":[0,120,358,19224,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"beautiful day shame im inside xD","features":[534,128,3740,181,1735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ClassicalE so was he complete with cowboy hat and big belt buckle? ","features":[2719,14198,3187,401,9597,42767,17,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Still working, I don't think I can finish this ","features":[0,1137,7,21,189,21,2115,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@qgtor1 i'm good... was just busy today...so u missed me huh? ","features":[0,120,0,1991,151,0,54,1581,2119,17,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Happy Tony Awards Day! The legendary Neil Patrick Harris is hosting, I can't wait. @TheTonyAwards","features":[0,113531,0,0,12,15075,0,0,0,10088,7,21,0,402,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"@OtaliaRocks Dont be confused - your school friends will help you out ","features":[0,3051,31,284,385,517,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Also, one of the new neighbors to be has their wireless open ","features":[0,7,99,125,11394,14644,786,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I wanted to go out tonight ","features":[21,954,114,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@beilaq_sodmq aww shit that sucks ! you can always order it online .","features":[1524,188,1579,12,248,1855,951,4,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@kristinaAmbar @shantisaha I'm so depressed!!! I wanna go to the game f-U biatches!!!! Booo","features":[0,6483,12,12,12,21,292,114,356,0,218770,12,12,12,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"ERRG I cant believe that i am not working at all next week i think its time to move on from Chick fil A ","features":[21,21,21,631,554,1137,414,438,189,138,987,0,15853,21,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"And over to a table at the gratitude cafe.........MORNING. I am up and listening to Jason Mraz, yayyy ","features":[0,3765,24197,4092,0,21,21,4,21,1485,0,0,7,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Happy Birthday! Dawn Rene'. ","features":[0,0,12,0,16526,51,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"on which, there was more to that, but 140 characters is not much Also it KILLS grammar.","features":[7,7,10,7364,205,0,21,10343,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Tau huey with tang yuan! ","features":[1074,86953,17595,91527,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Checking out my auctions and Matts interesting comments. Boo my cat is beside me.We're a team! Just sold The Brain Book .. go figure ","features":[0,58590,0,2555,6310,4,0,1719,9169,0,51,305,12,0,4529,0,0,0,114,3668]}
{"sentiment":0,"tweet":"@kruss73 We had a quiet one...rained most of the weekend. Had a Steak Dinner last night, which was YUMMY !!! Going Away Supper ","features":[0,3650,99,0,43045,726,4,0,0,0,291,238,7,21,12,12,12,0,0,0]}
{"sentiment":0,"tweet":"not feeling so good ","features":[676,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Sarcasticluther no going to be at mate's wedding in Mississippi so can't be there. Which is great yeah but bummer hey?","features":[214,0,2799,0,0,4,0,344,360,29993,425,17,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Theramental ditto ","features":[26220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ILovePudding i have just made two of your fab belts my very own! i am so excited ","features":[428,570,5550,46508,12,872,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"It should be illegal to have to be at work at this time of day (4:15am). BTW, Today in Alabama is 2 hours today from 7-9am. Thanks, golf. ","features":[0,7188,323,138,128,20,0,23,4,21,21,7,271966,0,10,871,151,0,4,58635]}
{"sentiment":4,"tweet":"Great day I'm so proud of my younger cuzzo. He finally graduated :')","features":[0,128,0,1118,6912,26864,4,0,860,16007,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":""Love is a drink that goes straight to you head" ;D A nice quote to start the morning. ","features":[15,0,1445,1008,1522,652,15,21,21,462,2291,518,347,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"I'm best friends with a celebrity ","features":[0,212,385,5687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@bigian1103 very nice, sat working at mo and it's raining here ","features":[462,7,2948,1137,819,5853,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@varunshridhar i had a minor dislocation in my right index finger right in the morn .. pain has subsided but wrote two new Hindi poems ","features":[15297,0,211,15935,4210,211,25730,0,1525,364571,4403,570,125,0,34477,0,0,0,0,0]}
{"sentiment":4,"tweet":"@icklesal http://twitpic.com/6rv1h - OMJ, where did you get your adipose? does it have a name, lmao! i want oneeeeeee my shelf is lik ...","features":[31,21,7,90,0,17,592,7,345,12,132,0,25063,9338,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@nkosmider that was actually quite amazing. reminiscent of the manhattan clique remix, but more peppy ","features":[553,2446,567,4,160241,19916,12352,3643,7,200191,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Lhasapso Yep. Hang on a sec...","features":[0,4,0,5436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@YEPNAYDEA I don't have ur #...anymore, I think!! ","features":[21,507,0,0,1004,7,21,189,12,12,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@SarahHorvat sooooooooo sorry I didn't make it last night We didn't end up getting out until 7:30 ","features":[0,476,21,186,291,238,0,626,400,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is chill chillin! its raining ","features":[1558,3878,12,5853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@butyoumight Ohhh, I'm sorry. They are only pretend robot bees, I promise.","features":[0,7,0,476,4,425,4509,9772,20841,7,21,2017,4,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@hamelinlive Wish I wasn't working! I wish you great shows!","features":[0,21,1137,12,21,409,344,2075,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Naddeen marvelous song Chicago OST ? http://blip.fm/~4l5v5","features":[50090,526,0,21,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I'm in twitter jail... again!! ","features":[0,221,4055,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@RagingDad I doubted he could have either, but there's always the Richard Hatch effect to worry about. I think we approach it the same.","features":[21,50317,300,1345,7,0,248,0,0,7144,1644,4,21,189,12957,4,0,0,0,0]}
{"sentiment":4,"tweet":"@thekirsten I wanna watch! i wanna watch! And Joey and Donnie can pack a punch for me anytime! Hehehe. ","features":[21,292,436,12,292,436,12,0,0,0,2800,4452,4893,12,0,4,0,0,0,0]}
{"sentiment":4,"tweet":"No prob It's not as glamarous as you might think, especially in a studio just porting a game. Plus we're pretty small.","features":[0,6725,0,0,715,189,7,2752,3215,341850,356,4,0,0,542,1743,4,0,0,0]}
{"sentiment":0,"tweet":"woah. im really sick. this came out of nowhere","features":[5245,4,181,185,934,4,1129,7042,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Fck thissss. Back to sleep I go ","features":[0,0,4,0,382,21,114,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"i love the beach! i love Chemaaas! ","features":[71,1865,12,71,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@wmwdwrd lol im just impatient! i hate "coming soon" i want it NOW ","features":[91,181,17600,12,260,15,660,700,15,132,21,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@DEdmondW Gooooooood! Now just find someone who doesn't forget them on the big day, haha!","features":[0,12,0,473,241,904,401,128,7,119,12,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@NathanFillion Dude, now I really, really want some lasagna. And of course it's too hot out to even think about operating an oven, haha. ","features":[0,7,21,185,7,185,132,30734,4,0,1605,561,242,189,36873,14272,7,119,4,0]}
{"sentiment":4,"tweet":"@harleypasternak I'm sure you've already had this..Liberte yogurt out of the ball park delish! 6 grains and no sugar added ","features":[0,540,552,0,0,13392,1580,1692,41214,12,10,98575,5402,3754,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"no 3g wireless in farm country ","features":[0,14644,8904,1672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@MiriamAhern best of luck to Elizabeth! hope they're all going well so far-rotten they have to be in today though ","features":[212,1250,0,12,423,0,214,299,0,151,565,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Illegal online movies ","features":[0,951,1616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Lunch time! It's been very humid atmosphere today!!! Exhausted abit ","features":[0,138,12,0,45829,19244,151,12,12,12,0,21457,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"wants to watch how i met your mother ","features":[829,436,618,1544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"summer calls: won't be on for a while happy summer everyone!!!! ","features":[822,2443,5,180,822,318,12,12,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@lostlovely There's an hourly limit ","features":[0,35347,3373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@thisismars nooo thy not ","features":[184079,10482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Good nite every1! ! ! Hope evry body sweeps well Lotsa love <3 - Be yourself. Who else is better qualified Nyte X X X Peace!","features":[0,3843,384,10,12,12,12,0,41650,1085,30172,299,0,71,0,31,0,4,0,647]}
{"sentiment":4,"tweet":"@wollepb congrats! hope they can both come home soon and that all of you will get some sleep - during the next years ;)","features":[1633,12,423,246,338,700,90,382,31,414,643,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@ladydisdain Ready for bed! Lol! It was a long night ","features":[249819,568,12,0,12,0,466,238,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"http://twitpic.com/68uuj - friends @ our soccerfield that making me suffering ","features":[31,385,307,0,746,12072,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@CitySwagUSA Great T-shirts ","features":[0,31,7425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@troytaylor86 Night Uncle Buncle! lol! Good lesson at TTU! The unofficial student!","features":[0,0,0,12,91,12,0,4998,21,12,44533,3824,12,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Tried to save a poor little possum that had been hit by a car, the vet couldn't save him, he had to get put down ","features":[384077,1386,2260,417,88927,764,792,7,9947,1386,7,90,511,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"At the airport on my way home! Loved hanging with GA but can't wait to see my bff ","features":[0,3101,274,338,12,0,4549,21,0,402,166,5584,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@AntionetteTorr I figure I'll go to Houston first...snatch me up some country boy and then visit N.O for Mardi Gras or something ","features":[21,3668,0,114,0,328,0,32490,1672,599,1623,21,4,21,0,0,366,0,0,0]}
{"sentiment":4,"tweet":"k im off twitter i have a freakin exam in the AM time to study then sleep! nite my tweetheartsz i wanna see 160 followers when i wake up!","features":[154,181,221,8170,2861,21,138,1917,382,12,3843,0,292,166,10,278,1095,12,0,0]}
{"sentiment":4,"tweet":"@mattgemmell Congrats Shouldn't developers really celebrate at 32? (and gives you the excuse to claim to be 20)","features":[0,0,28900,185,4353,10,17,20,2210,3083,5728,10,23,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"beautiful day...but doing an accounting test ","features":[534,128,0,21014,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@MamaBee4 I shall be retiring also. To the couch. Baby's in bed with mommy tonight with a fever (the baby) ","features":[21,2967,29807,896,4,6304,4,0,568,4678,321,9196,20,350,23,0,0,0,0,0]}
{"sentiment":0,"tweet":"@LarrfulBuck I hope you feel better ","features":[21,423,267,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"My mum and brother are sleeping so i can't play guitar ","features":[0,2297,1168,1660,0,500,5168,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@heritagesoftail Thanks. Not sure if he will make it that far. But his name is going to be Elton. lol","features":[58635,4,0,540,186,882,4,0,592,214,0,4,91,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Ugh! I wanna play dnd but i know i'm going to fail this final. I NEED to study ","features":[0,12,21,292,500,26755,118,0,214,2493,783,4,21,21,1917,0,0,0,0,0]}
{"sentiment":0,"tweet":"Pictures are done for today. Love them. Also love walking with my dad. I almost made him run up the hill with me. Didn't work. ","features":[0,395,151,4,0,4,0,71,1621,1026,4,21,1147,428,901,4787,4,0,323,4]}
{"sentiment":4,"tweet":"Hi I'm @ my cousin's house! We're gonna leave soon, but I had such a great time! Talk to ya'll soon ","features":[0,0,307,0,545,12,0,319,760,700,7,21,344,138,12,108589,0,700,0,0]}
{"sentiment":0,"tweet":"@helenedylan My reply is no ","features":[0,1799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"http://twitpic.com/7s9rt - this sort of "spiky" nutrition levels simply wiil not do ","features":[31,4273,15,229497,15,20521,9366,3700,205320,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Have a wonderful weekend! If you need to schedule an oral assessment, please use the scheduler. ","features":[0,2645,726,12,0,174,5011,11839,34429,7,203,718,249595,4,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@theguigirl GREAT idea. ","features":[21,21,1143,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Just realised I can't find my sonic screwdriver! I <3 my screwdriver ","features":[0,11094,21,0,473,13619,94436,12,21,0,94436,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Twitter should really get a spam filter for DM´s ","features":[146506,185,90,4429,12470,21,109,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@lisarinna Very true ,respect in the family is the 1st priority ","features":[0,549,7,1320,621,0,13846,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Watching my bro's band, they rock!! Paper Mache. ","features":[0,0,1647,7,1288,12,12,0,0,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@aparajuli won't be getting your iMac today. Still backing up, sorry ","features":[400,0,151,4,0,25479,7,476,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I was just reminded about graduation. Ohhh man i started tearing up. I'm going to miss all my friends so much. Things won't be the same ","features":[21,12423,6301,4,0,249,1304,21193,4,0,214,295,385,205,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"daft punk just came on the radio at work! ","features":[14936,4454,1129,1302,323,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@brundle_fly Thanks for the link. I'm looking forward to seeing why @filos is so excited about Chrome on the Mac. ","features":[58635,1347,4,0,608,1734,1323,872,0,0,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Work again. ","features":[0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Hi everyone. Just back inn from busy day at work and seeing @n3ph4lim. Got home and nno Silverstone tickets behind the door maybe 2moro","features":[0,318,4,0,122,13521,1991,128,323,1323,4,0,338,7932,0,1869,1536,1634,719,0]}
{"sentiment":0,"tweet":"i AM cold ","features":[21,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@debbylovespr I've got one too though i think mine was attributed to the seizure inducing color/light show in the movie The Soloist.","features":[0,146,99,565,189,946,196673,51206,216830,2239,41,1496,412,690,0,4,0,0,0,0]}
{"sentiment":0,"tweet":"@MeHeartRihanna hey thanks for following me... which one do U think is our girl?? maybe "RiRiFenty", but i�m still not sure... ","features":[425,272,929,0,99,21,189,261,17,17,719,15,0,15,7,0,235,540,0,0]}
{"sentiment":4,"tweet":"@twittatonic Vicks. Brilliant stuff def have to get some. Hope you're good ","features":[0,4,0,1092,5123,90,4,0,120,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Taking a break from packing Glamming up me nails!","features":[56014,877,7964,0,3686,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"think i might sort my clothes out Get rid of my old ones. lol BORED.","features":[189,715,4273,2104,0,7462,520,1399,4,91,21,21,4,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Spreiki Must be something like that! We have had 3 days of sunshine and warmth. Can't say I'm sorry about it ","features":[0,366,66,12,0,10,458,5210,34970,4,0,229,0,476,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"is sorry and hopes you can find it in yourself to forgive me. ","features":[476,7654,473,3837,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"can't...sleep. i know ricky will be up super late sing he has the day off 2morrow. gonna snuggle with gav. ","features":[0,0,382,4,118,8434,625,971,1548,128,0,4,319,25393,66632,4,0,0,0,0]}
{"sentiment":0,"tweet":"having a really bad day. ","features":[185,358,128,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"So happy I finished work exp but I am so dreading school on Monday I have to see her beautiful face. Not a good thing","features":[0,180,21,2505,323,26603,21,25279,284,0,21,166,534,493,4,0,120,413,0,0]}
{"sentiment":0,"tweet":"@clutchfans Think Rockets should keep Yao if he's getting hurt almost every year ? ","features":[207357,0,419,0,0,400,994,1147,384,359,17,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Well, two straight app rejections from Apple. Np. I submitted a third last night. Let's see if that gets through ","features":[0,7,570,1522,1545,301249,0,4,0,4,21,22666,4857,291,238,4,0,166,796,0]}
{"sentiment":0,"tweet":"hey all, havin a blast in US but it sure is tiring! Final meeting 2moro wth RockfordFirst IL Leaders then long trek hme ;D 4 long flights ","features":[425,7,9398,5340,21,540,25173,12,0,2714,0,7576,0,21,0,466,14605,50203,21,10]}
{"sentiment":4,"tweet":"FireID finally launches in the Apple iPhone Appstore! Congrats team event:http://tinyurl.com/nqzz52","features":[0,860,13720,0,0,0,12,0,305,2467,5,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lizmorenoblog I LOVE the rain! I just checked out your blog - Cool check out ours www.PhashionArmy.com Love the Marilyn pics ","features":[21,21,1446,12,21,1727,1375,31,0,527,0,0,0,2007,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Dude, Where's my money ? ","features":[0,7,0,582,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@agvj wow that video was amazing he got some moves","features":[612,289,567,146,5259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"A glorious sunny day and I've got a headache ","features":[21,19587,5654,128,0,146,3947,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@bloemche thanks I will ","features":[272,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"bites on my leg driving me mad. Up to get antihistamine ","features":[12796,4179,2436,692,4,0,90,451525,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@jordanknight http://twitpic.com/6tj23 - btw @ladynez95 and I mean no diss MJ is the man still!","features":[31,2258,21,481,15192,21,249,235,12,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"My heartrate feels uncomfortably high maybe it's tachycardia (heart works too fast 4 ur body) ...miley Cyrus has that :|","features":[0,0,1387,172141,687,719,0,20,535,2417,952,10,507,1085,23,0,2175,0,0,0]}
{"sentiment":0,"tweet":"Carnival rides: fun when ur young. But we not kids anymore. You will get sick nowadays... ","features":[0,13339,5,577,507,1096,4,0,886,1004,4,0,90,934,8667,0,0,0,0,0]}
{"sentiment":0,"tweet":"Morning! (: Rather stressed out this morning... not good ","features":[0,12,0,298383,6279,347,0,120,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"'solsbury hill' by peter gabriel. Always listen to that song when in a good mood... it's not half bad by erasure either. *peaceful*","features":[51,0,4787,51,4194,8625,4,0,1059,526,120,1352,0,1032,358,218249,1345,4,45,14216]}
{"sentiment":4,"tweet":"@EVEYYY23 Hi Eve! I saw his interview on this and I was laughing. He said when he eats candy for breakfast he plays well ","features":[0,0,12,21,885,2707,21,1748,4,0,410,9309,3334,2092,4371,299,0,0,0,0]}
{"sentiment":4,"tweet":"Had a great night with the busmire clan! i love you, more than words can describe.","features":[0,344,238,0,17795,12,71,7,1066,5280,4,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"eating pop tarts ","features":[1533,1867,51941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"the weather is tooo hottt mayn i cnt take it, n i styl aint got ride of my flu n i want ma baby bk","features":[1395,0,0,76787,9543,287,7,39,94113,964,146,1741,7491,39,132,350,7186,0,0,0]}
{"sentiment":4,"tweet":"@stockgod Check out $GERN from my request yesterday further thoughts?","features":[0,209,21,21,6202,1314,2124,17,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I love when @tytybear doesnt pick up drunken calls from me ","features":[21,71,3564,1549,26071,2443,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"But I get to be Aunt Kerry so I guess it's okay. ","features":[0,21,90,0,0,21,763,454,4,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Has finally finished the ironing (good times ) but has now got to put it all away (bad times )","features":[0,860,2505,48485,20,120,748,23,146,511,551,20,358,748,23,0,0,0,0,0]}
{"sentiment":0,"tweet":"@AdonaiDgh Lucky girl! I have to wait 'til november or something ... ","features":[0,261,12,21,402,51,1996,4366,366,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@susiforOtalia Cheers, did my duty with the voting today as well ","features":[0,7,6674,4231,151,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"shar0n: i kn0w i remember we would go to walmart at 2 in the mornin lol i'll txt u later mwah","features":[62726,0,5,0,628,199,114,7214,10,9613,91,0,5241,54,1198,11836,0,0,0,0]}
{"sentiment":4,"tweet":"Currently buying a pro camera Super Awesome Shwing","features":[0,4233,988,3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Hanging out my parents house. Family fun always makes a perfect Saturday ","features":[0,1290,545,4,0,577,248,525,636,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"6 hours of sims today. i feel so un-simmed. time for bed. work tomorrow dun wanna go but i get to see cuz ","features":[10,871,12604,151,4,267,0,4,138,568,4,323,331,5362,292,114,90,166,1245,0]}
{"sentiment":4,"tweet":"woke up from a good nap and from a good wakeup call . now back to studying with a strawberry banana shake made from my brother.","features":[1774,120,2080,120,37934,465,4,122,4383,9678,5967,2830,428,1168,4,0,0,0,0,0]}
{"sentiment":4,"tweet":"Yay. I just reached 100 updates. ","features":[0,4,21,6394,10,7173,4,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@kwill15 I wanted all the puppies. They were so cute ","features":[21,954,16645,4,425,494,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"stinkin dryers @ the laundromat r too hot even on the coolest settings. I scorched my mattress pad ","features":[92204,156674,307,158086,76,561,242,9928,26280,4,21,309031,26465,2169,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@followdceleb ah i see. ","features":[273,166,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@FarmWorld Yay for ag majors! ","features":[0,10090,50335,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"going to the shop after watching sex and the city lol Xx","features":[214,2207,528,790,936,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Things you find in a men's room (Gene Simmons urinal cake -- talks when it gets wet http://twitpic.com/7vt9r","features":[0,473,0,880,20,0,0,98112,2194,31,31,3580,796,3889,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"com'on lefties, vote large for spa, vote small for slp, but most important vote left to avoid a right goverment only ","features":[0,109540,7,644,5623,7321,7,644,1743,19897,7,1851,644,797,5839,211,120755,0,0,0]}
{"sentiment":0,"tweet":"That was mean, I'm stressed because of the maths gcse I have tomorrow. But its not as bad as having incommunicado on tuesday ","features":[3187,481,7,0,6279,7387,35566,21,331,4,0,358,0,2331,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@mysurface what the heck r u writing ","features":[7059,76,54,3146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"my iPod touch have this tendency to pick Jacky Cheung's songs every time I say Shuffle... ","features":[0,2055,42862,1549,0,0,1527,384,138,21,229,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"Alina_WhateverDid you forget, that I was even alive? did you forget, everything we ever had? did you forget... about me ?? ","features":[0,904,7,21,242,2289,17,904,7,431,275,17,904,0,17,17,0,0,0,0]}
{"sentiment":0,"tweet":"@miss_squidgette awww...I miss you a LOT!!!!! Wish you were still only 30-min drive away ","features":[244073,0,21,295,21,12,12,12,0,235,10,31,867,1598,551,0,0,0,0,0]}
{"sentiment":0,"tweet":"Such a bad day for takin photos ..this will be my last http://twitpic.com/6tn2s","features":[0,358,128,10976,1761,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@zininkleur Thankssss! ","features":[0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@Ames1103 somethin fuuuuuun ","features":[8081,481957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lauraeatworld i'm so sorry, my internet crapped itself again. >.< i love you, sleep well. ","features":[0,476,7,1160,190830,4,63,4,74,71,7,382,299,4,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@JenAlice Just saw your post about breaking from BB Will you not be twittering either? Everything okay?","features":[0,885,1091,2012,21,0,116065,1345,17,0,454,17,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@BigEdii LOL! "never seen such a regal crimescene" ","features":[21,12,15,193,809,44882,0,15,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@justvicci checked... it's the 15th... fyi ","features":[1727,0,0,0,13051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@Carm823 yeah...and i'm not even gettin paid ","features":[360,0,0,242,2510,3141,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@lilweird4ever: we can share my dog. he makes good company and he doesnt smell as bad lol XD","features":[1484,1319,4,525,120,3055,3564,2845,358,91,21,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"wahahaha "i have READ the article" wow..remember the seventeen magazine where miley talks about her relationship with nick haha LOL ","features":[19913,15,21,4309,15,612,0,628,29088,4848,2175,3580,992,3471,119,21,0,0,0,0]}
{"sentiment":4,"tweet":"@DidierStevens Dude! You are fast! Niiice. I'll have more for ya next Monday. ","features":[0,12,0,952,12,0,4,0,85,414,0,4,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@purplefae I think that would look awesome! I think you should totes do it. ","features":[21,189,199,276,735,12,21,189,20421,4,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Your one of many babe ","features":[0,99,556,1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@amadril G'night and thanks. ","features":[0,272,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"beginning to wonder if my @ messages are getting seen... i should probably aim for non celebrities, though... haha ","features":[4640,1115,307,3457,400,809,0,898,12067,684,11802,7,565,0,119,0,0,0,0,0]}
{"sentiment":4,"tweet":"i love ebay!!! Hoping to win that guitar ","features":[71,8665,12,12,12,0,490,5168,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@shellyroche Wait a minute! Friday night? Battlestar Galactica? Cupcakes? Holy crap! You're a NERD. *gasp* I am so telling ","features":[0,1977,12,0,238,17,0,0,17,0,17,0,3517,12,0,21,21,4,45,36715]}
{"sentiment":0,"tweet":"@laylakayleigh Its hard to find self props when your down in the dumps ","features":[0,480,473,1809,15120,62383,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@CathySavels Yay! Thanks! Have a restful evening! ","features":[0,12,58635,12,0,177614,3376,12,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"I hate it when my alarm doesn't work & I oversleep! Cinder tried really hard to get me up, bless her heart. ","features":[21,260,5246,323,86,21,180394,12,0,1860,185,480,90,7,2160,535,4,0,0,0]}
{"sentiment":0,"tweet":"@nixpineda youre not making kwento na ","features":[2564,746,39322,176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"At College With The One And Only Hanna Scott Love Her So Much! X","features":[0,0,0,0,0,0,0,0,0,0,0,0,12,21,0,0,0,0,0,0]}
{"sentiment":0,"tweet":"@farrhad i wont b able to do anything for contest today/night. Tu bzy, in car ryt nw 2. ","features":[2178,79,1775,633,4532,151,41,238,4,54,390566,7,792,27543,2938,10,4,0,0,0]}
{"sentiment":0,"tweet":"can't believe that metro crashed. i never want to go on one again ","features":[0,554,5074,19682,4,193,132,114,99,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"@zfitty is a bomb story teller.... lmao ","features":[4545,941,46062,0,345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"english final today. out at like 12 ","features":[1983,783,151,4,66,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}
{"sentiment":4,"tweet":"Lunch with the grands. Maybe stalking Kat a bit later, idk movie or something. Bbl bye tweeps","features":[0,39097,4,0,9413,0,1207,1198,7,993,690,366,4,0,1012,5974,0,0,0,0]}
{"sentiment":4,"tweet":"@kayleenduhh the promoting is a good idea! ","features":[20297,120,1143,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}