-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.json
6941 lines (6941 loc) · 275 KB
/
profile.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
{
"contentItems": [
{
"content": "Wow, I liked @TheRock before, now I really SEE how special he is. The daughter story was IT for me. So great! #MasterClass",
"contenttype": "text/plain",
"created": 1447639154000,
"id": "666073008692314113",
"language": "en"
},
{
"content": ".@TheRock how did you Know to listen to your gut and Not go back to football? #Masterclass",
"contenttype": "text/plain",
"created": 1447638226000,
"id": "666069114889179136",
"language": "en"
},
{
"content": ".@TheRock moving back in with your parents so humbling. \" on the other side of your pain is something good if you can hold on\" #masterclass",
"contenttype": "text/plain",
"created": 1447638067000,
"id": "666068446325665792",
"language": "en"
},
{
"content": "Wow aren't you loving @TheRock and his candor? #Masterclass",
"contenttype": "text/plain",
"created": 1447637459000,
"id": "666065895932973057",
"language": "en"
},
{
"content": "RT @patt_t: @TheRock @Oprah @RichOnOWN @OWNTV this interview makes me like you as a fellow human even more for being so real.",
"contenttype": "text/plain",
"created": 1447637030000,
"id": "666064097562247168",
"language": "en"
},
{
"content": "\"Be You\".. That's the best advice ever @TheRock #MastersClass",
"contenttype": "text/plain",
"created": 1447636205000,
"id": "666060637181644800",
"language": "en"
},
{
"content": "Supersoulers let's lift our spirits pray and hold Paris in the Light\ud83d\ude4f\ud83c\udffe",
"contenttype": "text/plain",
"created": 1447602477000,
"id": "665919171062927360",
"language": "en"
},
{
"content": "RT @DeepakChopra: What I learned in week 1: Become What You Believe 21-Day Meditation Experience - https:\/\/t.co\/kqaMaMqEUp #GoogleAlerts",
"contenttype": "text/plain",
"created": 1447098990000,
"id": "663807393063538688",
"language": "en"
},
{
"content": "Watching Bryan Stevenson on #SuperSoulSunday! \"You are not the worst mistake you ever made\".\nAren't we glad about that.",
"contenttype": "text/plain",
"created": 1446998643000,
"id": "663386507856736257",
"language": "en"
},
{
"content": ".@CherylStrayed BRAVE ENOUGH my new favorite thing! Gonna buy a copy for all my girls. #Perfectgift https:\/\/t.co\/gz1tnv8t8K",
"contenttype": "text/plain",
"created": 1446915955000,
"id": "663039689360695296",
"language": "en"
},
{
"content": "Stevie Wonder singing \"Happy Birthday to you!\" to my dear mariashriver. A phenomenal woman and\u2026 https:\/\/t.co\/Ygm5eDIs4f",
"contenttype": "text/plain",
"created": 1446881193000,
"id": "662893888080879616",
"language": "en"
},
{
"content": "It\u2019s my faaaaavorite time of the Year! For the first time you can shop the list on @amazon! https:\/\/t.co\/a6GMvVrhjN https:\/\/t.co\/sJlQMROq5U",
"contenttype": "text/plain",
"created": 1446744186000,
"id": "662319239844380672",
"language": "en"
},
{
"content": "Incredible story \"the spirit of the Lord is on you\" thanks for sharing @smokey_robinson #Masterclass",
"contenttype": "text/plain",
"created": 1446428929000,
"id": "660996956861280256",
"language": "en"
},
{
"content": "Wasnt that incredible story about @smokey_robinson 's dad leaving his family at 12. #MasterClass",
"contenttype": "text/plain",
"created": 1446426630000,
"id": "660987310889041920",
"language": "en"
},
{
"content": "Gayle, Charlie, Nora @CBSThisMorning Congratulations! #1000thshow",
"contenttype": "text/plain",
"created": 1446220097000,
"id": "660121050978611205",
"language": "en"
},
{
"content": "I believe your home should rise up to meet you. @TheEllenShow you nailed it with HOME. Tweethearts, grab a copy! https:\/\/t.co\/iFMnpRAsno",
"contenttype": "text/plain",
"created": 1446074433000,
"id": "659510090748182528",
"language": "en"
},
{
"content": "Can I get a Witness?!\u270b\ud83c\udffe https:\/\/t.co\/tZ1QyAeSdE",
"contenttype": "text/plain",
"created": 1445821114000,
"id": "658447593865945089",
"language": "en"
},
{
"content": ".@TheEllenShow you're a treasure.\nYour truth set a lot of people free.\n#Masterclass",
"contenttype": "text/plain",
"created": 1445821003000,
"id": "658447130026188800",
"language": "en"
},
{
"content": "Hope you all are enjoying @TheEllenShow on #MasterClass.",
"contenttype": "text/plain",
"created": 1445820161000,
"id": "658443598313181188",
"language": "en"
},
{
"content": ".@GloriaSteinem, shero to women everywhere, on how far we\u2019ve come and how far we need to go. #SuperSoulSunday 7p\/6c.\nhttps:\/\/t.co\/3e7oxXW02J",
"contenttype": "text/plain",
"created": 1445811545000,
"id": "658407457438363648",
"language": "en"
},
{
"content": "RT @TheEllenShow: I told a story from my @OWNTV's #MasterClass on my show. Normally I\u2019d save it all for Sunday, but @Oprah made me. https:\/\u2026",
"contenttype": "text/plain",
"created": 1445804181000,
"id": "658376572521459712",
"language": "en"
},
{
"content": ".@TheEllenShow is a master teacher of living her truth & living authentically as herself. #MasterClass tonight 8\/7c.\nhttps:\/\/t.co\/iLT2KgRsSw",
"contenttype": "text/plain",
"created": 1445804072000,
"id": "658376116575449088",
"language": "en"
},
{
"content": ".@SheriSalata , @jonnysinc @part2pictures . Tears of joy and gratitude to you and our entire #BeliefTeam We DID IT!! My heart is full.\ud83d\ude4f\ud83c\udffe\ud83d\ude4f\ud83c\udffe",
"contenttype": "text/plain",
"created": 1445734755000,
"id": "658085377140363264",
"language": "en"
},
{
"content": "Donna and Bob saw the tape of their story just days before she passed. They appreciated it. #RIPDonna",
"contenttype": "text/plain",
"created": 1445734097000,
"id": "658082618819280896",
"language": "en"
},
{
"content": "RT @rempower: .@Oprah this series allowed me to slide into people's lives around the world and see the same in them ... we all have a belie\u2026",
"contenttype": "text/plain",
"created": 1445732769000,
"id": "658077046858383360",
"language": "en"
},
{
"content": "All the stories moved me, My favorite line \" I must pass the stories on to my grandson otherwise our people will loose their way. #Belief",
"contenttype": "text/plain",
"created": 1445732579000,
"id": "658076253618991104",
"language": "en"
},
{
"content": ".@part2pictures some of your best imagery yet. Filming Alex on the rock.#Belief",
"contenttype": "text/plain",
"created": 1445731782000,
"id": "658072908237934592",
"language": "en"
},
{
"content": "I just love Alex and his daring #Belief to live fully the present Moment.",
"contenttype": "text/plain",
"created": 1445731561000,
"id": "658071980982206464",
"language": "en"
},
{
"content": "RT @GrowingOWN: Let's do this! #Belief finale tweet tweet party. Thank you @Oprah! \ud83d\ude4f",
"contenttype": "text/plain",
"created": 1445731248000,
"id": "658070668785770496",
"language": "en"
},
{
"content": "RT @lizkinnell: The epic finale of #Belief on @OWNTV is about to start. 8\/et Are you ready? What do you Believe?",
"contenttype": "text/plain",
"created": 1445731081000,
"id": "658069968534171648",
"language": "en"
},
{
"content": "Thank you all for another beautiful night of Belief. Belief runs all day tomorrow for bingers and final episode!",
"contenttype": "text/plain",
"created": 1445648630000,
"id": "657724143115202560",
"language": "en"
},
{
"content": "RT @OWNingLight: #Belief is the ultimate travel map to mass acceptance. \ud83d\ude4f\ud83c\udffb\u2764\ufe0f\ud83c\udf0d @Oprah",
"contenttype": "text/plain",
"created": 1445647285000,
"id": "657718501147197442",
"language": "en"
},
{
"content": "\" I can feel my heart opening and faith coming back in\".. What's better than that? #Belief",
"contenttype": "text/plain",
"created": 1445646903000,
"id": "657716901951369218",
"language": "en"
},
{
"content": "Hey Belief team mates can yo believe how quickly the week has passed? #Belief",
"contenttype": "text/plain",
"created": 1445645633000,
"id": "657711572492533760",
"language": "en"
},
{
"content": "Ran into @5SOS backstage. Fun times with @TheEllenShow today! https:\/\/t.co\/2PP3W3RzXc",
"contenttype": "text/plain",
"created": 1445618531000,
"id": "657597898394173440",
"language": "en"
},
{
"content": "Thanks All for another great night of #BELIEF",
"contenttype": "text/plain",
"created": 1445572548000,
"id": "657405031822430208",
"language": "en"
},
{
"content": "RT @3LWTV: #BecomeWhatYouBelieve New meditation w\/ @Oprah @DeepakChopra begins 11\/2 Register https:\/\/t.co\/x0R9HWTAX0 #Belief https:\/\/t.co\/\u2026",
"contenttype": "text/plain",
"created": 1445571500000,
"id": "657400636745510912",
"language": "en"
},
{
"content": "Ok west coast let's do it! #belief",
"contenttype": "text/plain",
"created": 1445569367000,
"id": "657391689439404033",
"language": "en"
},
{
"content": "Thank u kind gentleman who told me I had kale in my teeth. Was eating kale chips with Quincy Jones. Went straight to @LairdLife party.",
"contenttype": "text/plain",
"created": 1445569296000,
"id": "657391393883619328",
"language": "en"
},
{
"content": "Hello west coast twitterati.. See you at 8 for #Belief",
"contenttype": "text/plain",
"created": 1445566144000,
"id": "657378171872874496",
"language": "en"
},
{
"content": "Thank you all for another beautiful night.#Belief",
"contenttype": "text/plain",
"created": 1445475948000,
"id": "656999861254918145",
"language": "en"
},
{
"content": "RT @PRanganathan: \"Transformation is the rule of the game. The universe is not standing still.\" - Marcelo @OWNTV @Oprah #Belief",
"contenttype": "text/plain",
"created": 1445475602000,
"id": "656998409933451264",
"language": "en"
},
{
"content": "\"The Universe is not standing still.. The whole Universe is expanding\" I love the dance between science and spirituality! #Belief",
"contenttype": "text/plain",
"created": 1445475580000,
"id": "656998320133398528",
"language": "en"
},
{
"content": "\"Without our prayers and our songs we won't be here\" Apache leader.#Belief",
"contenttype": "text/plain",
"created": 1445473768000,
"id": "656990717504393216",
"language": "en"
},
{
"content": "Notice her mother crying. She knows its last tine she will ever see her daughter.#Belief",
"contenttype": "text/plain",
"created": 1445473150000,
"id": "656988127433637888",
"language": "en"
},
{
"content": "This final trial is unbelievable. Every hair gets pulled from her head one at a time. Now that is Something!!#Belief",
"contenttype": "text/plain",
"created": 1445473063000,
"id": "656987763644891136",
"language": "en"
},
{
"content": "\"What my faith gives me no one can match\"#Belief",
"contenttype": "text/plain",
"created": 1445472961000,
"id": "656987336266223616",
"language": "en"
},
{
"content": "It's a devotion to faith beyond anything Ive seen. Fascinating.Jain nuns. #Belief",
"contenttype": "text/plain",
"created": 1445472531000,
"id": "656985529951522816",
"language": "en"
},
{
"content": "I'd never heard of Jain monks and nuns before doing this series. #Belief",
"contenttype": "text/plain",
"created": 1445472393000,
"id": "656984953037586433",
"language": "en"
},
{
"content": "Good evening Team #Belief the Tweet is on!",
"contenttype": "text/plain",
"created": 1445472098000,
"id": "656983714883239937",
"language": "en"
},
{
"content": "Thanks everyone for another Epic #Belief night!",
"contenttype": "text/plain",
"created": 1445302792000,
"id": "656273592485810176",
"language": "en"
},
{
"content": "The Pastor and Imam represent the possibility of PEACE in the world. If they can do it. We can. Peace to All\ud83d\ude4f\ud83c\udffe #Belief",
"contenttype": "text/plain",
"created": 1445302749000,
"id": "656273415280705536",
"language": "en"
},
{
"content": "We felt privileged to film the Hajj and explore the beauty of Islam.\n#99namesforGod #Belief",
"contenttype": "text/plain",
"created": 1445301110000,
"id": "656266540967424000",
"language": "en"
},
{
"content": "Do you all believe in \"soul mates\"?\n#Belief",
"contenttype": "text/plain",
"created": 1445300138000,
"id": "656262462426238976",
"language": "en"
},
{
"content": ".@RevEdBacon thank you so much for hosting tonight's #Belief at All Saints Church.",
"contenttype": "text/plain",
"created": 1445299749000,
"id": "656260832628756480",
"language": "en"
},
{
"content": "This is one of the best love stories I've ever seen. #belief Ian and Larissa showing us the depths of love.#Belief",
"contenttype": "text/plain",
"created": 1445299614000,
"id": "656260263604310016",
"language": "en"
},
{
"content": "Hey Everyone .. Tweeting from a bar in Atlanta with @SheriSalata OWN not in my hotel. Anything for #Belief",
"contenttype": "text/plain",
"created": 1445299326000,
"id": "656259057758654464",
"language": "en"
},
{
"content": "RT @joshuadubois: When you see Ian & Larissa tonight on #BELIEF, you'll know what Christian love is all about. 8pmET, @OWNTV. Tune in! http\u2026",
"contenttype": "text/plain",
"created": 1445295716000,
"id": "656243916224638976",
"language": "en"
},
{
"content": "RT @KimHaleDance: I Believe LAUGHTER. IS. CONTAGIOUS. What do you believe? See you tonight! 8\/7c.\u2764\ufe0f #Belief #Beliefin3words https:\/\/t.co\/x\u2026",
"contenttype": "text/plain",
"created": 1445295702000,
"id": "656243854610337793",
"language": "en"
},
{
"content": "RT @OWNTV: See the world through someone else\u2019s soul. The epic journey of #Belief continues tonight at 8\/7c.\nhttps:\/\/t.co\/UKKMHZuC0g",
"contenttype": "text/plain",
"created": 1445295668000,
"id": "656243714507931648",
"language": "en"
},
{
"content": "RT @OWNTV: Mendel Hurwitz's inquisitive nature grounded him in his faith. See where it's taken him now: https:\/\/t.co\/2iWmNOxK9r https:\/\/t.c\u2026",
"contenttype": "text/plain",
"created": 1445295661000,
"id": "656243684720050176",
"language": "en"
},
{
"content": "Thank you for opening up the heart space and letting #Belief in. Tonight it keeps getting better. See you at 8\/7c\nhttps:\/\/t.co\/E65vkTray9",
"contenttype": "text/plain",
"created": 1445279425000,
"id": "656175584943341568",
"language": "en"
},
{
"content": "I believe in the @weightwatchers program so much I decided to invest, join the Board, and partner in #wwfamily evolution.",
"contenttype": "text/plain",
"created": 1445275802000,
"id": "656160388526899200",
"language": "en"
},
{
"content": "RT @AVAETC: Debut episode of #BELIEF has now aired on both coasts. Trended for 4 hours. Brava, @Oprah + team. 6 beautiful nights to come. B\u2026",
"contenttype": "text/plain",
"created": 1445229489000,
"id": "655966138279432192",
"language": "en"
},
{
"content": "RT @3LWTV: 6 more epic nights of #Belief to come! See you tomorrow 8pET\/7pCT for the next installment! @OWNTV @Oprah",
"contenttype": "text/plain",
"created": 1445227342000,
"id": "655957135688241152",
"language": "en"
},
{
"content": "RT @ledisi: I love how Ancestry and Tradition is honored throughout every story in #Belief @OWNTV @OWN Thank you @Oprah this is so importa\u2026",
"contenttype": "text/plain",
"created": 1445225935000,
"id": "655951232981295104",
"language": "en"
},
{
"content": "RT @UN: Showing #Belief at the UN \"is a bigger dream than I had\" - @Oprah https:\/\/t.co\/VC4OqD8yub #Belief #GlobalGoals https:\/\/t.co\/LZyGuC7\u2026",
"contenttype": "text/plain",
"created": 1445225228000,
"id": "655948267868426240",
"language": "en"
},
{
"content": "RT @UzoAduba: To seek, to question, to learn, to teach, to pass it on; some of the breathtaking themes running like water throughout #Belie\u2026",
"contenttype": "text/plain",
"created": 1445225008000,
"id": "655947345197076480",
"language": "en"
},
{
"content": "RT @iamtikasumpter: #Belief had me in awe. Faith in the divine is the constant that links us together. It's all beautiful and righteous. Gi\u2026",
"contenttype": "text/plain",
"created": 1445224852000,
"id": "655946689249828864",
"language": "en"
},
{
"content": "West Coast... Here we go. #Belief",
"contenttype": "text/plain",
"created": 1445224140000,
"id": "655943701840048128",
"language": "en"
},
{
"content": "Big surprise at icanady watch party. Epic night. #Belief. So much more to come. https:\/\/t.co\/kBDtFwGyQs",
"contenttype": "text/plain",
"created": 1445220694000,
"id": "655929249669378048",
"language": "en"
},
{
"content": "I loved the Mendel story so much because it represents right of passasge. \" bye bye to childhood\".#Belief",
"contenttype": "text/plain",
"created": 1445215032000,
"id": "655905500056391682",
"language": "en"
},
{
"content": "RT @squee_machine: This is a visual feast! Completely gorgeous and I am transfixed. The colors, the composition, cinematography, vibe. #Bel\u2026",
"contenttype": "text/plain",
"created": 1445214538000,
"id": "655903432079904768",
"language": "en"
},
{
"content": "RT @JamesTyphany: Looking at @ #Belief I really needed this in my life thanks @OWNTV",
"contenttype": "text/plain",
"created": 1445214534000,
"id": "655903413385891840",
"language": "en"
},
{
"content": "Just surprised a \"watch party\" @icanady 's house. #Belief http:\/\/t.co\/Di0I3OooCh",
"contenttype": "text/plain",
"created": 1445214502000,
"id": "655903277796732931",
"language": "en"
},
{
"content": "RT @MsLaWandaa: I love moments of sitting among elders and learning. I can feel this moment was special for @ReshThakkar #Belief",
"contenttype": "text/plain",
"created": 1445214498000,
"id": "655903264374812672",
"language": "en"
},
{
"content": "RT @xonecole: \"Do you have to have religion or is being a good person...is that enough?\" #Belief",
"contenttype": "text/plain",
"created": 1445214339000,
"id": "655902594171203584",
"language": "en"
},
{
"content": "RT @ChivonJohn: Very inspired by the stories on #belief https:\/\/t.co\/uMRCCfCWcY",
"contenttype": "text/plain",
"created": 1445214327000,
"id": "655902545903140864",
"language": "en"
},
{
"content": "RT @KiranSArora: powerful personal story that many of us can connect to. searching for what's missing, spiritual liberation. @ReshThakkar #\u2026",
"contenttype": "text/plain",
"created": 1445214128000,
"id": "655901708506103812",
"language": "en"
},
{
"content": "RT @createdbyerica: \"I'm willing to go as far as I have to go to get that feeling in my heart of being connected to the Divine.\" - Reshma @\u2026",
"contenttype": "text/plain",
"created": 1445213967000,
"id": "655901033952993280",
"language": "en"
},
{
"content": "RT @UrbnHealthNP: I am enjoying this so much. #Belief",
"contenttype": "text/plain",
"created": 1445213904000,
"id": "655900772467474435",
"language": "en"
},
{
"content": "RT @DrMABrown: Your relationship with #belief can be completely different than how others experience it",
"contenttype": "text/plain",
"created": 1445213901000,
"id": "655900756604620800",
"language": "en"
},
{
"content": "RT @ckerfin: On another river on the other side of the world... transition between stories, drawing connections to different beliefs #Belie\u2026",
"contenttype": "text/plain",
"created": 1445213721000,
"id": "655900002644987905",
"language": "en"
},
{
"content": "RT @nikfarrior: So profound. We are all born into #Belief @Oprah @OWN @OWNTV",
"contenttype": "text/plain",
"created": 1445213706000,
"id": "655899942242775040",
"language": "en"
},
{
"content": "RT @fgaboys: @Oprah the start of #Belief is riveting and edifying. It makes you want more and inspires you too see what's coming up next. \u2026",
"contenttype": "text/plain",
"created": 1445213699000,
"id": "655899910563217408",
"language": "en"
},
{
"content": "RT @MalikaGhosh: Here we GO- let's lose ourselves #belief NOW @Oprah JOY http:\/\/t.co\/vYSNLd3LvC",
"contenttype": "text/plain",
"created": 1445212831000,
"id": "655896269542420480",
"language": "en"
},
{
"content": "RT @MastinKipp: .@Oprah and team are about to bring the Light with #Belief.",
"contenttype": "text/plain",
"created": 1445212747000,
"id": "655895916675600384",
"language": "en"
},
{
"content": "RT @GrowingOWN: 7 minutes, y'all! #BELIEF",
"contenttype": "text/plain",
"created": 1445212465000,
"id": "655894734968217600",
"language": "en"
},
{
"content": "RT @LPToussaint: BELIEF defines experience.Choose wisely #Belief Tonight on OWN",
"contenttype": "text/plain",
"created": 1445211845000,
"id": "655892134524878848",
"language": "en"
},
{
"content": "RT @TheBeBeWinans: Congratulations to my dear friend @Oprah on the launch of your series #BELIEF #Tonight on @OWNTV. Your friendship inspir\u2026",
"contenttype": "text/plain",
"created": 1445211835000,
"id": "655892094905532416",
"language": "en"
},
{
"content": "RT @UzoAduba: Thirty minutes to @Oprah #Belief. Pretty sure it's about to be our favorite thing.",
"contenttype": "text/plain",
"created": 1445211833000,
"id": "655892084314890240",
"language": "en"
},
{
"content": "RT @DeandresVoice: Moments away from the start of @SuperSoulSunday and the first night of the epic #Belief series on @OWNTV - are you ready\u2026",
"contenttype": "text/plain",
"created": 1445209201000,
"id": "655881046102142978",
"language": "en"
},
{
"content": "RT @jennaldewan: I CANT WAIT FOR THIS TONIGHT!!!!!! Got my popcorn, got my tissues I am readyyyyyy! #Belief https:\/\/t.co\/WluTdeEqal",
"contenttype": "text/plain",
"created": 1445209181000,
"id": "655880959535939584",
"language": "en"
},
{
"content": "RT @indiaarie: U heard about @Oprah passion project? It's called #Belief - I've see some & Its special! Tonight - 7c\/8e - 7 nights!! Whose\u2026",
"contenttype": "text/plain",
"created": 1445208945000,
"id": "655879970732949504",
"language": "en"
},
{
"content": "Wow, I liked @TheRock before, now I really SEE how special he is. The daughter story was IT for me. So great! #MasterClass",
"contenttype": "text/plain",
"created": 1447639154000,
"id": "666073008692314113",
"language": "en"
},
{
"content": ".@TheRock how did you Know to listen to your gut and Not go back to football? #Masterclass",
"contenttype": "text/plain",
"created": 1447638226000,
"id": "666069114889179136",
"language": "en"
},
{
"content": ".@TheRock moving back in with your parents so humbling. \" on the other side of your pain is something good if you can hold on\" #masterclass",
"contenttype": "text/plain",
"created": 1447638067000,
"id": "666068446325665792",
"language": "en"
},
{
"content": "Wow aren't you loving @TheRock and his candor? #Masterclass",
"contenttype": "text/plain",
"created": 1447637459000,
"id": "666065895932973057",
"language": "en"
},
{
"content": "RT @patt_t: @TheRock @Oprah @RichOnOWN @OWNTV this interview makes me like you as a fellow human even more for being so real.",
"contenttype": "text/plain",
"created": 1447637030000,
"id": "666064097562247168",
"language": "en"
},
{
"content": "\"Be You\".. That's the best advice ever @TheRock #MastersClass",
"contenttype": "text/plain",
"created": 1447636205000,
"id": "666060637181644800",
"language": "en"
},
{
"content": "Supersoulers let's lift our spirits pray and hold Paris in the Light\ud83d\ude4f\ud83c\udffe",
"contenttype": "text/plain",
"created": 1447602477000,
"id": "665919171062927360",
"language": "en"
},
{
"content": "RT @DeepakChopra: What I learned in week 1: Become What You Believe 21-Day Meditation Experience - https:\/\/t.co\/kqaMaMqEUp #GoogleAlerts",
"contenttype": "text/plain",
"created": 1447098990000,
"id": "663807393063538688",
"language": "en"
},
{
"content": "Watching Bryan Stevenson on #SuperSoulSunday! \"You are not the worst mistake you ever made\".\nAren't we glad about that.",
"contenttype": "text/plain",
"created": 1446998643000,
"id": "663386507856736257",
"language": "en"
},
{
"content": ".@CherylStrayed BRAVE ENOUGH my new favorite thing! Gonna buy a copy for all my girls. #Perfectgift https:\/\/t.co\/gz1tnv8t8K",
"contenttype": "text/plain",
"created": 1446915955000,
"id": "663039689360695296",
"language": "en"
},
{
"content": "Stevie Wonder singing \"Happy Birthday to you!\" to my dear mariashriver. A phenomenal woman and\u2026 https:\/\/t.co\/Ygm5eDIs4f",
"contenttype": "text/plain",
"created": 1446881193000,
"id": "662893888080879616",
"language": "en"
},
{
"content": "It\u2019s my faaaaavorite time of the Year! For the first time you can shop the list on @amazon! https:\/\/t.co\/a6GMvVrhjN https:\/\/t.co\/sJlQMROq5U",
"contenttype": "text/plain",
"created": 1446744186000,
"id": "662319239844380672",
"language": "en"
},
{
"content": "Incredible story \"the spirit of the Lord is on you\" thanks for sharing @smokey_robinson #Masterclass",
"contenttype": "text/plain",
"created": 1446428929000,
"id": "660996956861280256",
"language": "en"
},
{
"content": "Wasnt that incredible story about @smokey_robinson 's dad leaving his family at 12. #MasterClass",
"contenttype": "text/plain",
"created": 1446426630000,
"id": "660987310889041920",
"language": "en"
},
{
"content": "Gayle, Charlie, Nora @CBSThisMorning Congratulations! #1000thshow",
"contenttype": "text/plain",
"created": 1446220097000,
"id": "660121050978611205",
"language": "en"
},
{
"content": "I believe your home should rise up to meet you. @TheEllenShow you nailed it with HOME. Tweethearts, grab a copy! https:\/\/t.co\/iFMnpRAsno",
"contenttype": "text/plain",
"created": 1446074433000,
"id": "659510090748182528",
"language": "en"
},
{
"content": "Can I get a Witness?!\u270b\ud83c\udffe https:\/\/t.co\/tZ1QyAeSdE",
"contenttype": "text/plain",
"created": 1445821114000,
"id": "658447593865945089",
"language": "en"
},
{
"content": ".@TheEllenShow you're a treasure.\nYour truth set a lot of people free.\n#Masterclass",
"contenttype": "text/plain",
"created": 1445821003000,
"id": "658447130026188800",
"language": "en"
},
{
"content": "Hope you all are enjoying @TheEllenShow on #MasterClass.",
"contenttype": "text/plain",
"created": 1445820161000,
"id": "658443598313181188",
"language": "en"
},
{
"content": ".@GloriaSteinem, shero to women everywhere, on how far we\u2019ve come and how far we need to go. #SuperSoulSunday 7p\/6c.\nhttps:\/\/t.co\/3e7oxXW02J",
"contenttype": "text/plain",
"created": 1445811545000,
"id": "658407457438363648",
"language": "en"
},
{
"content": "RT @TheEllenShow: I told a story from my @OWNTV's #MasterClass on my show. Normally I\u2019d save it all for Sunday, but @Oprah made me. https:\/\u2026",
"contenttype": "text/plain",
"created": 1445804181000,
"id": "658376572521459712",
"language": "en"
},
{
"content": ".@TheEllenShow is a master teacher of living her truth & living authentically as herself. #MasterClass tonight 8\/7c.\nhttps:\/\/t.co\/iLT2KgRsSw",
"contenttype": "text/plain",
"created": 1445804072000,
"id": "658376116575449088",
"language": "en"
},
{
"content": ".@SheriSalata , @jonnysinc @part2pictures . Tears of joy and gratitude to you and our entire #BeliefTeam We DID IT!! My heart is full.\ud83d\ude4f\ud83c\udffe\ud83d\ude4f\ud83c\udffe",
"contenttype": "text/plain",
"created": 1445734755000,
"id": "658085377140363264",
"language": "en"
},
{
"content": "Donna and Bob saw the tape of their story just days before she passed. They appreciated it. #RIPDonna",
"contenttype": "text/plain",
"created": 1445734097000,
"id": "658082618819280896",
"language": "en"
},
{
"content": "RT @rempower: .@Oprah this series allowed me to slide into people's lives around the world and see the same in them ... we all have a belie\u2026",
"contenttype": "text/plain",
"created": 1445732769000,
"id": "658077046858383360",
"language": "en"
},
{
"content": "All the stories moved me, My favorite line \" I must pass the stories on to my grandson otherwise our people will loose their way. #Belief",
"contenttype": "text/plain",
"created": 1445732579000,
"id": "658076253618991104",
"language": "en"
},
{
"content": ".@part2pictures some of your best imagery yet. Filming Alex on the rock.#Belief",
"contenttype": "text/plain",
"created": 1445731782000,
"id": "658072908237934592",
"language": "en"
},
{
"content": "I just love Alex and his daring #Belief to live fully the present Moment.",
"contenttype": "text/plain",
"created": 1445731561000,
"id": "658071980982206464",
"language": "en"
},
{
"content": "RT @GrowingOWN: Let's do this! #Belief finale tweet tweet party. Thank you @Oprah! \ud83d\ude4f",
"contenttype": "text/plain",
"created": 1445731248000,
"id": "658070668785770496",
"language": "en"
},
{
"content": "RT @lizkinnell: The epic finale of #Belief on @OWNTV is about to start. 8\/et Are you ready? What do you Believe?",
"contenttype": "text/plain",
"created": 1445731081000,
"id": "658069968534171648",
"language": "en"
},
{
"content": "Thank you all for another beautiful night of Belief. Belief runs all day tomorrow for bingers and final episode!",
"contenttype": "text/plain",
"created": 1445648630000,
"id": "657724143115202560",
"language": "en"
},
{
"content": "RT @OWNingLight: #Belief is the ultimate travel map to mass acceptance. \ud83d\ude4f\ud83c\udffb\u2764\ufe0f\ud83c\udf0d @Oprah",
"contenttype": "text/plain",
"created": 1445647285000,
"id": "657718501147197442",
"language": "en"
},
{
"content": "\" I can feel my heart opening and faith coming back in\".. What's better than that? #Belief",
"contenttype": "text/plain",
"created": 1445646903000,
"id": "657716901951369218",
"language": "en"
},
{
"content": "Hey Belief team mates can yo believe how quickly the week has passed? #Belief",
"contenttype": "text/plain",
"created": 1445645633000,
"id": "657711572492533760",
"language": "en"
},
{
"content": "Ran into @5SOS backstage. Fun times with @TheEllenShow today! https:\/\/t.co\/2PP3W3RzXc",
"contenttype": "text/plain",
"created": 1445618531000,
"id": "657597898394173440",
"language": "en"
},
{
"content": "Thanks All for another great night of #BELIEF",
"contenttype": "text/plain",
"created": 1445572548000,
"id": "657405031822430208",
"language": "en"
},
{
"content": "RT @3LWTV: #BecomeWhatYouBelieve New meditation w\/ @Oprah @DeepakChopra begins 11\/2 Register https:\/\/t.co\/x0R9HWTAX0 #Belief https:\/\/t.co\/\u2026",
"contenttype": "text/plain",
"created": 1445571500000,
"id": "657400636745510912",
"language": "en"
},
{
"content": "Ok west coast let's do it! #belief",
"contenttype": "text/plain",
"created": 1445569367000,
"id": "657391689439404033",
"language": "en"
},
{
"content": "Thank u kind gentleman who told me I had kale in my teeth. Was eating kale chips with Quincy Jones. Went straight to @LairdLife party.",
"contenttype": "text/plain",
"created": 1445569296000,
"id": "657391393883619328",
"language": "en"
},
{
"content": "Hello west coast twitterati.. See you at 8 for #Belief",
"contenttype": "text/plain",
"created": 1445566144000,
"id": "657378171872874496",
"language": "en"
},
{
"content": "Thank you all for another beautiful night.#Belief",
"contenttype": "text/plain",
"created": 1445475948000,
"id": "656999861254918145",
"language": "en"
},
{
"content": "RT @PRanganathan: \"Transformation is the rule of the game. The universe is not standing still.\" - Marcelo @OWNTV @Oprah #Belief",
"contenttype": "text/plain",
"created": 1445475602000,
"id": "656998409933451264",
"language": "en"
},
{
"content": "\"The Universe is not standing still.. The whole Universe is expanding\" I love the dance between science and spirituality! #Belief",
"contenttype": "text/plain",
"created": 1445475580000,
"id": "656998320133398528",
"language": "en"
},
{
"content": "\"Without our prayers and our songs we won't be here\" Apache leader.#Belief",
"contenttype": "text/plain",
"created": 1445473768000,
"id": "656990717504393216",
"language": "en"
},
{
"content": "Notice her mother crying. She knows its last tine she will ever see her daughter.#Belief",
"contenttype": "text/plain",
"created": 1445473150000,
"id": "656988127433637888",
"language": "en"
},
{
"content": "This final trial is unbelievable. Every hair gets pulled from her head one at a time. Now that is Something!!#Belief",
"contenttype": "text/plain",
"created": 1445473063000,
"id": "656987763644891136",
"language": "en"
},
{
"content": "\"What my faith gives me no one can match\"#Belief",
"contenttype": "text/plain",
"created": 1445472961000,
"id": "656987336266223616",
"language": "en"
},
{
"content": "It's a devotion to faith beyond anything Ive seen. Fascinating.Jain nuns. #Belief",
"contenttype": "text/plain",
"created": 1445472531000,
"id": "656985529951522816",
"language": "en"
},
{
"content": "I'd never heard of Jain monks and nuns before doing this series. #Belief",
"contenttype": "text/plain",
"created": 1445472393000,