-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
7626 lines (5105 loc) · 307 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" data-scribe-reduced-action-queue="true">
<head>
<meta charset="utf-8">
<noscript><meta http-equiv="refresh" content="0; URL=https://mobile.twitter.com/i/nojs_router?path=%2F"></noscript>
<script nonce="cyD7AEvvEnq1KftwJ48BHw==">
!function(){if(window.initErrorstack||(window.initErrorstack=[]),window.onerror=function(r,i,o,n,t){r.indexOf("Script error.")>-1||window.initErrorstack.push({errorMsg:r,url:i,lineNumber:o,column:n,errorObj:t})},"string"==typeof location.search&&location.search.indexOf("trigger-init-error-for-raven")>=0)throw new Error("I AM AN INIT ERROR. (testing init_onerror.)")}();
</script>
<script id="bouncer_terminate_iframe" nonce="cyD7AEvvEnq1KftwJ48BHw==">
if (window.top != window) {
window.top.postMessage({'bouncer': true, 'event': 'complete'}, '*');
}
</script>
<script id="resolve_inline_redirects" nonce="cyD7AEvvEnq1KftwJ48BHw==">
!function(){function n(){var n=window.location.href.match(/#(.)(.*)$/);return n&&"!"==n[1]&&n[2].replace(/^\//,"")}function t(){var t=n();t&&window.location.replace("//"+window.location.host+"/"+t)}t(),window.addEventListener?window.addEventListener("hashchange",t,!1):window.attachEvent&&window.attachEvent("onhashchange",t)}();
</script>
<script id="swift_action_queue" nonce="cyD7AEvvEnq1KftwJ48BHw==">
!function(){function e(e){if(e||(e=window.event),!e)return!1;if(e.timestamp=(new Date).getTime(),!e.target&&e.srcElement&&(e.target=e.srcElement),document.documentElement.getAttribute("data-scribe-reduced-action-queue"))for(var t=e.target;t&&t!=document.body;){if("A"==t.tagName)return;t=t.parentNode}return i("all",o(e)),a(e)?(document.addEventListener||(e=o(e)),e.preventDefault=e.stopPropagation=e.stopImmediatePropagation=function(){},y?(v.push(e),i("captured",e)):i("ignored",e),!1):(i("direct",e),!0)}function t(e){n();for(var t,r=0;t=v[r];r++){var a=e(t.target),i=a.closest("a")[0];if("click"==t.type&&i){var o=e.data(i,"events"),u=o&&o.click,c=!i.hostname.match(g)||!i.href.match(/#$/);if(!u&&c){window.location=i.href;continue}}a.trigger(e.event.fix(t))}window.swiftActionQueue.wasFlushed=!0}function r(){for(var e in b)if("all"!=e)for(var t=b[e],r=0;r<t.length;r++)console.log("actionQueue",c(t[r]))}function n(){clearTimeout(w);for(var e,t=0;e=h[t];t++)document["on"+e]=null}function a(e){if(!e.target)return!1;var t=e.target,r=(t.tagName||"").toLowerCase();if(e.metaKey)return!1;if(e.shiftKey&&"a"==r)return!1;if(t.hostname&&!t.hostname.match(g))return!1;if(e.type.match(p)&&s(t))return!1;if("label"==r){var n=t.getAttribute("for");if(n){var a=document.getElementById(n);if(a&&f(a))return!1}else for(var i,o=0;i=t.childNodes[o];o++)if(f(i))return!1}return!0}function i(e,t){t.bucket=e,b[e].push(t)}function o(e){var t={};for(var r in e)t[r]=e[r];return t}function u(e){for(;e&&e!=document.body;){if("A"==e.tagName)return e;e=e.parentNode}}function c(e){var t=[];e.bucket&&t.push("["+e.bucket+"]"),t.push(e.type);var r,n,a=e.target,i=u(a),o="",c=e.timestamp&&e.timestamp-d;return"click"===e.type&&i?(r=i.className.trim().replace(/\s+/g,"."),n=i.id.trim(),o=/[^#]$/.test(i.href)?" ("+i.href+")":"",a='"'+i.innerText.replace(/\n+/g," ").trim()+'"'):(r=a.className.trim().replace(/\s+/g,"."),n=a.id.trim(),a=a.tagName.toLowerCase(),e.keyCode&&(a=String.fromCharCode(e.keyCode)+" : "+a)),t.push(a+o+(n&&"#"+n)+(!n&&r?"."+r:"")),c&&t.push(c),t.join(" ")}function f(e){var t=(e.tagName||"").toLowerCase();return"input"==t&&"checkbox"==e.getAttribute("type")}function s(e){var t=(e.tagName||"").toLowerCase();return"textarea"==t||"input"==t&&"text"==e.getAttribute("type")||"true"==e.getAttribute("contenteditable")}for(var m,d=(new Date).getTime(),l=1e4,g=/^([^\.]+\.)*twitter\.com$/,p=/^key/,h=["click","keydown","keypress","keyup"],v=[],w=null,y=!0,b={captured:[],ignored:[],direct:[],all:[]},k=0;m=h[k];k++)document["on"+m]=e;w=setTimeout(function(){y=!1},l),window.swiftActionQueue={buckets:b,flush:t,logActions:r,wasFlushed:!1}}();
</script>
<script id="composition_state" nonce="cyD7AEvvEnq1KftwJ48BHw==">
!function(){function t(t){t.target.setAttribute("data-in-composition","true")}function n(t){t.target.removeAttribute("data-in-composition")}document.addEventListener&&(document.addEventListener("compositionstart",t,!1),document.addEventListener("compositionend",n,!1))}();
</script>
<link rel="stylesheet" href="https://abs.twimg.com/a/1495414186/css/t1/twitter_core.bundle.css">
<link rel="stylesheet" href="https://abs.twimg.com/a/1495414186/css/t1/twitter_more_1.bundle.css">
<link rel="stylesheet" href="https://abs.twimg.com/a/1495414186/css/t1/twitter_more_2.bundle.css">
<link rel="dns-prefetch" href="https://pbs.twimg.com">
<link rel="dns-prefetch" href="https://t.co">
<link rel="preload" href="https://abs.twimg.com/k/en/init.en.167a83c3f1425f921e79.js" as="script">
<link rel="preload" href="https://abs.twimg.com/k/en/17.commons.en.201813ba0c5109da4f48.js" as="script">
<link rel="preload" href="https://abs.twimg.com/k/en/7.pages_front.en.b8df43aca54df90cca64.js" as="script">
<title>Twitter. It's what's happening.</title>
<meta name="robots" content="NOODP">
<meta name="description" content="From breaking news and entertainment to sports and politics, get the full story with all the live commentary.">
<meta name="msapplication-TileImage" content="//abs.twimg.com/favicons/win8-tile-144.png"/>
<meta name="msapplication-TileColor" content="#00aced"/>
<link rel="mask-icon" sizes="any" href="https://abs.twimg.com/a/1495414186/img/t1/favicon.svg" color="#55acee">
<link rel="shortcut icon" href="//abs.twimg.com/favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://abs.twimg.com/icons/apple-touch-icon-192x192.png" sizes="192x192">
<link rel="manifest" href="/manifest.json">
<meta name="swift-page-name" id="swift-page-name" content="streams">
<meta name="swift-page-section" id="swift-section-name" content="home">
<link rel="canonical" href="https://twitter.com/i/hello">
<link rel="alternate" hreflang="x-default" href="https://twitter.com/">
<link rel="alternate" hreflang="fr" href="https://twitter.com/?lang=fr"><link rel="alternate" hreflang="en" href="https://twitter.com/?lang=en"><link rel="alternate" hreflang="ar" href="https://twitter.com/?lang=ar"><link rel="alternate" hreflang="ja" href="https://twitter.com/?lang=ja"><link rel="alternate" hreflang="es" href="https://twitter.com/?lang=es"><link rel="alternate" hreflang="de" href="https://twitter.com/?lang=de"><link rel="alternate" hreflang="it" href="https://twitter.com/?lang=it"><link rel="alternate" hreflang="id" href="https://twitter.com/?lang=id"><link rel="alternate" hreflang="pt" href="https://twitter.com/?lang=pt"><link rel="alternate" hreflang="ko" href="https://twitter.com/?lang=ko"><link rel="alternate" hreflang="tr" href="https://twitter.com/?lang=tr"><link rel="alternate" hreflang="ru" href="https://twitter.com/?lang=ru"><link rel="alternate" hreflang="nl" href="https://twitter.com/?lang=nl"><link rel="alternate" hreflang="fil" href="https://twitter.com/?lang=fil"><link rel="alternate" hreflang="ms" href="https://twitter.com/?lang=ms"><link rel="alternate" hreflang="zh-tw" href="https://twitter.com/?lang=zh-tw"><link rel="alternate" hreflang="zh-cn" href="https://twitter.com/?lang=zh-cn"><link rel="alternate" hreflang="hi" href="https://twitter.com/?lang=hi"><link rel="alternate" hreflang="no" href="https://twitter.com/?lang=no"><link rel="alternate" hreflang="sv" href="https://twitter.com/?lang=sv"><link rel="alternate" hreflang="fi" href="https://twitter.com/?lang=fi"><link rel="alternate" hreflang="da" href="https://twitter.com/?lang=da"><link rel="alternate" hreflang="pl" href="https://twitter.com/?lang=pl"><link rel="alternate" hreflang="hu" href="https://twitter.com/?lang=hu"><link rel="alternate" hreflang="fa" href="https://twitter.com/?lang=fa"><link rel="alternate" hreflang="he" href="https://twitter.com/?lang=he"><link rel="alternate" hreflang="ur" href="https://twitter.com/?lang=ur"><link rel="alternate" hreflang="th" href="https://twitter.com/?lang=th"><link rel="alternate" hreflang="uk" href="https://twitter.com/?lang=uk"><link rel="alternate" hreflang="ca" href="https://twitter.com/?lang=ca"><link rel="alternate" hreflang="ga" href="https://twitter.com/?lang=ga"><link rel="alternate" hreflang="el" href="https://twitter.com/?lang=el"><link rel="alternate" hreflang="eu" href="https://twitter.com/?lang=eu"><link rel="alternate" hreflang="cs" href="https://twitter.com/?lang=cs"><link rel="alternate" hreflang="gl" href="https://twitter.com/?lang=gl"><link rel="alternate" hreflang="ro" href="https://twitter.com/?lang=ro"><link rel="alternate" hreflang="hr" href="https://twitter.com/?lang=hr"><link rel="alternate" hreflang="en-gb" href="https://twitter.com/?lang=en-gb"><link rel="alternate" hreflang="vi" href="https://twitter.com/?lang=vi"><link rel="alternate" hreflang="bn" href="https://twitter.com/?lang=bn"><link rel="alternate" hreflang="bg" href="https://twitter.com/?lang=bg"><link rel="alternate" hreflang="sr" href="https://twitter.com/?lang=sr"><link rel="alternate" hreflang="sk" href="https://twitter.com/?lang=sk"><link rel="alternate" hreflang="gu" href="https://twitter.com/?lang=gu"><link rel="alternate" hreflang="mr" href="https://twitter.com/?lang=mr"><link rel="alternate" hreflang="ta" href="https://twitter.com/?lang=ta"><link rel="alternate" hreflang="kn" href="https://twitter.com/?lang=kn">
<link rel="alternate" media="handheld, only screen and (max-width: 640px)" href="https://mobile.twitter.com/">
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Twitter">
<link id="async-css-placeholder">
<input type="hidden" id="init-data" class="json-data" value="{"keyboardShortcuts":[{"name":"Actions","description":"Shortcuts for common actions.","shortcuts":[{"keys":["Enter"],"description":"Open Tweet details"},{"keys":["o"],"description":"Expand photo"},{"keys":["\/"],"description":"Search"}]},{"name":"Navigation","description":"Shortcuts for navigating between items in timelines.","shortcuts":[{"keys":["?"],"description":"This menu"},{"keys":["j"],"description":"Next Tweet"},{"keys":["k"],"description":"Previous Tweet"},{"keys":["Space"],"description":"Page down"},{"keys":["."],"description":"Load new Tweets"}]},{"name":"Timelines","description":"Shortcuts for navigating to different timelines or pages.","shortcuts":[{"keys":["g","u"],"description":"Go to user\u2026"}]}],"composeIgnoreAttachmentText":true,"baseFoucClass":"swift-loading","bodyFoucClassNames":"swift-loading no-nav-banners","assetsBasePath":"https:\/\/abs.twimg.com\/a\/1495414186\/","assetVersionKey":"b9ea47","emojiAssetsPath":"https:\/\/abs.twimg.com\/emoji\/v2\/72x72\/","environment":"production","formAuthenticityToken":"5463ec25c57dfb0e910df3f04409b12b107ae08e","loggedIn":false,"screenName":null,"fullName":null,"userId":null,"guestId":"149553170378017066","needsPhoneVerification":false,"allowAdsPersonalization":true,"scribeBufferSize":3,"pageName":"streams","sectionName":"home","scribeParameters":{},"recaptchaApiUrl":"https:\/\/www.google.com\/recaptcha\/api\/js\/recaptcha_ajax.js","internalReferer":null,"geoEnabled":false,"typeaheadData":{"accounts":{"enabled":true,"localQueriesEnabled":false,"remoteQueriesEnabled":true,"limit":6},"trendLocations":{"enabled":true},"dmConversations":{"enabled":false},"savedSearches":{"enabled":false,"items":[]},"dmAccounts":{"enabled":false,"localQueriesEnabled":false,"remoteQueriesEnabled":false,"onlyDMable":true},"mediaTagAccounts":{"enabled":false,"localQueriesEnabled":true,"remoteQueriesEnabled":false,"onlyShowUsersWithCanMediaTag":false,"currentUserId":-1},"selectedUsers":{"enabled":false},"prefillUsers":{"enabled":false},"topics":{"enabled":true,"localQueriesEnabled":false,"remoteQueriesEnabled":true,"prefetchLimit":500,"limit":4},"concierge":{"enabled":false,"localQueriesEnabled":false,"remoteQueriesEnabled":false,"prefetchLimit":500,"limit":6},"recentSearches":{"enabled":false},"hashtags":{"enabled":false,"localQueriesEnabled":false,"remoteQueriesEnabled":true,"prefetchLimit":500},"useIndexedDB":false,"showSearchAccountSocialContext":false,"showDebugInfo":false,"useThrottle":true,"accountsOnTop":false,"remoteDebounceInterval":300,"remoteThrottleInterval":300,"tweetContextEnabled":false,"fullNameMatchingInCompose":true,"topicsWithFiltersEnabled":false},"dm":{"notifications":false,"usePushForNotifications":false,"participant_max":50,"welcome_message_add_to_conversation_enabled":true,"poll_options":{"foreground_poll_interval":3000,"burst_poll_interval":3000,"burst_poll_duration":300000,"max_poll_interval":60000},"card_prefetch":true,"card_prefetch_interval_in_seconds":2000,"dm_quick_reply_options_panel_dismiss_in_ms":2000},"autoplayDisabled":false,"pushStatePageLimit":500000,"routes":{"profile":"\/"},"pushState":true,"viewContainer":"#doc","href":"\/","searchPathWithQuery":"\/search?q=query&src=typd","composeAltText":false,"theme":"normal","deciders":{"custom_timeline_curation":false,"native_notifications":true,"disable_ajax_datatype_default_to_text":false,"dm_polling_frequency_in_seconds":3000,"dm_granular_mute_controls":true,"enable_media_tag_prefetch":true,"foundMediaTrendingEnabled":false,"enableMacawNymizerConversionLanding":false,"hqImageUploads":false,"live_pipeline_consume":true,"mqImageUploads":false,"partnerIdSyncEnabled":true,"sruMediaCategory":true,"photoSruGifLimitMb":15,"promoted_video_logging_enabled":true,"pushState":true,"contentEditablePlainTextOnly":false,"reactify":true,"web_client_api_stats":false,"web_perftown_stats":true,"web_perftown_ttft":false,"web_client_events_ttft":false,"log_push_state_ttft_metrics":false,"web_sru_stats":false,"web_upload_video":true,"web_upload_video_advanced":false,"upload_video_size":500,"internationalShippingEnabled":true,"useV2EndpointsEnabled":true,"useVmapVariants":false,"autoplayPreviewPreroll":true,"moments_lohp_enabled":true,"enableNativePush":false,"installNativePush":false,"autoSubscribeNativePush":false,"stickersInteractivity":true,"stickersInteractivityDuringLoading":true,"foundMediaExternalUploading":true,"stickersExperience":true,"dynamic_video_ads_include_long_videos":true,"push_state_size":1000,"should_not_unload_static_cards":true,"live_video_media_control_enabled":false,"use_api_for_retweet_and_unretweet":false,"use_api_for_follow_and_unfollow":true,"edge_probe_enabled":false,"kill_dm_tweeting":false},"experiments":{},"toasts_dm":false,"toasts_timeline":false,"toasts_dm_poll_scale":60,"defaultNotificationIcon":"https:\/\/abs.twimg.com\/a\/1495414186\/img\/t1\/mobile\/wp7_app_icon.png","promptbirdData":{"promptbirdEnabled":false,"immediateTriggers":["PullToRefresh","Navigate"],"format":null},"passwordResetAdvancedLoginForm":true,"skipAutoSignupDialog":false,"shouldReplaceSignupWithLogin":false,"hashflagBaseUrl":"https:\/\/abs.twimg.com\/hashflags\/","activeHashflags":{"forzaconte":"Chelsea_emojiv2\/Chelsea_emojiv2.png","soundslikequestlove":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","disneystarsonparade":"Disneyland_Parade_Emojiv2\/Disneyland_Parade_Emojiv2.png","mv25":"MotoGP_MV25\/MotoGP_MV25.png","lacasadepapel12":"Casa_Emoji\/Casa_Emoji.png","ボディソープきれた":"unilever_emojiv2\/unilever_emojiv2.png","wishuponmovie":"Wish_Emoji\/Wish_Emoji.png","tequilapatron":"Patron_Emojiv3\/Patron_Emojiv3.png","chuck70":"Converse_Emoji_v3\/Converse_Emoji_v3.png","pllendgame":"PLL_Emoji\/PLL_Emoji.png","scandal":"ScandalABC_v4\/ScandalABC_v4.png","secretdiningsociety":"Patron_Emojiv3\/Patron_Emojiv3.png","ka17":"MotoGP_KA17\/MotoGP_KA17.png","bigweekend":"Radio_Emoji\/Radio_Emoji.png","miskfoundation":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","itishappeningagain":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","revengeofsultans":"ONEMT_Emoji\/ONEMT_Emoji.png","miskhackathon":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","twinpeakssundays":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","vr46":"MotoGP_VR46\/MotoGP_VR46.png","soundslikebishopbriggs":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","heatison":"Heat_Emoji\/Heat_Emoji.png","dwts":"DWTS_Season24\/DWTS_Season24.png","blackranger":"Power_Ranger_Emoji_Black\/Power_Ranger_Emoji_Black.png","انتقام_السلاطين":"ONEMT_Emoji\/ONEMT_Emoji.png","lacasadepapel":"Casa_Emoji\/Casa_Emoji.png","powerofpizza":"DiGiorno_Emojiv3\/DiGiorno_Emojiv3.png","wnba":"WMBA_Emoji\/WMBA_Emoji.png","sl22":"MotoGP_SL22\/MotoGP_SL22.png","iemshanghai":"IEM_2017_Emoji\/IEM_2017_Emoji.png","spicycrispyspacey":"Zinger_Emoji\/Zinger_Emoji.png","fateofthefurious":"F8_2_Emoji\/F8_2_Emoji.png","periscope":"Periscope\/Periscope.png","chicagoloveskong":"Kong_Emoji\/Kong_Emoji.png","dancingwiththestars":"DWTS_Season24\/DWTS_Season24.png","empirepremiere":"Empire_Emoji_1\/Empire_Emoji_1.png","jbfa":"JBFA_Emoji\/JBFA_Emoji.png","itsnotluck":"Celtics_Emojiv2\/Celtics_Emojiv2.png","fastandthefurious":"F8_2_Emoji\/F8_2_Emoji.png","cocacola600":"Coca_Cola_Emoji\/Coca_Cola_Emoji.png","forcesofnature":"REI_Emojiv2\/REI_Emojiv2.png","goinginstylesweepstakes":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","bcelxn17":"BCelx_Emojiv2\/BCelx_Emojiv2.png","kongskullislandit":"Kong_Emoji\/Kong_Emoji.png","tubelightindubai":"Tubelight_Emoji\/Tubelight_Emoji.png","lovetwitter":"LoveTwitter\/LoveTwitter.png","tudoetodasascoisas":"Everything_Emojiv2\/Everything_Emojiv2.png","detroitbasketball":"Pistons_Emojiv2\/Pistons_Emojiv2.png","piratesofthecaribbean":"PotC_emoji\/PotC_emoji.png","todotodo":"Everything_Emojiv2\/Everything_Emojiv2.png","soundslike2chainz":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","defendtheland":"Cavs_Emoji\/Cavs_Emoji.png","noisiamotutto":"Everything_Emojiv2\/Everything_Emojiv2.png","lucious":"Empire_Emoji_2\/Empire_Emoji_2.png","stbstage":"Summertime_ball_emoji\/Summertime_ball_emoji.png","lacasadepapel15":"Casa_Emoji\/Casa_Emoji.png","stanleycup":"Stanleycup_Emoji\/Stanleycup_Emoji.png","nba":"NBALogo_Emoji\/NBALogo_Emoji.png","empireseason3":"Empire_Emoji_1\/Empire_Emoji_1.png","pe44":"MotoGP_PE44\/MotoGP_PE44.png","fastfamily":"F8_2_Emoji\/F8_2_Emoji.png","lacasadepapel18":"Casa_Emoji\/Casa_Emoji.png","4ellen":"Ellen_emoji_2\/Ellen_emoji_2.png","lacasadepapel6":"Casa_Emoji\/Casa_Emoji.png","empirewednesday":"Empire_Emoji_3\/Empire_Emoji_3.png","funnycauseitstru":"TruTV_MarchMadnessv6\/TruTV_MarchMadnessv6.png","meumalvadofavorito":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","lavidapeligrosa":"Vida_Emoji\/Vida_Emoji.png","minion":"DM_Minion_Emojiv2\/DM_Minion_Emojiv2.png","kongilhacaveira":"Kong_Emoji\/Kong_Emoji.png","jf94":"MotoGP_JF94\/MotoGP_JF94.png","tr53":"MotoGP_TR53\/MotoGP_TR53.png","twinpeakspremiere":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","belkoexperiment":"Belko_Emoji\/Belko_Emoji.png","disneyparis25":"Disneyland_Paris_Emojiv2\/Disneyland_Paris_Emojiv2.png","wnbalive":"WMBA_Emoji\/WMBA_Emoji.png","cc35":"MotoGP_CC35\/MotoGP_CC35.png","ダヴうるおいお届け便":"unilever_emojiv2\/unilever_emojiv2.png","f3plus":"OPPO_emojiv4\/OPPO_emojiv4.png","pegote":"Pipas_emojiv2\/Pipas_emojiv2.png","coupestanley":"Stanleycup_Emoji\/Stanleycup_Emoji.png","proudofliam":"Liam_Emoji\/Liam_Emoji.png","allergiesbe":"Sensimist_Emoji\/Sensimist_Emoji.png","rachellindsay":"Bachelorette_Emoji\/Bachelorette_Emoji.png","oppof3plus":"OPPO_emojiv4\/OPPO_emojiv4.png","kfcinspace":"Zinger_Emoji\/Zinger_Emoji.png","soundslikekelsea":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","ittakeseverything":"Clippers_Emoji\/Clippers_Emoji.png","patronworthy":"Patron_Emojiv3\/Patron_Emojiv3.png","digatudocomstickers":"Harry_Dude_Japan_LATAM_BRv2\/Harry_Dude_Japan_LATAM_BRv2.png","バスタイムトーク":"Unilever_BathTimeTalkv2\/Unilever_BathTimeTalkv2.png","اجلاس_عربی_اسلامی_آمریکایی":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","houstonloveskong":"Kong_Emoji\/Kong_Emoji.png","whovian":"Doctor_Who_Emoji\/Doctor_Who_Emoji.png","artofpatron":"Patron_Emojiv3\/Patron_Emojiv3.png","ab19":"MotoGP_AB19\/MotoGP_AB19.png","radio":"Tubelight_Emoji\/Tubelight_Emoji.png","unitewithtomorrowland":"Tomorrowland_Emoji\/Tomorrowland_Emoji.png","fearthedeer":"Bucks_Emojiv2\/Bucks_Emojiv2.png","summerofperfection":"Patron_Emojiv3\/Patron_Emojiv3.png","soundslikenickyjam":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","العز_يجمعنا":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","wearephx":"Suns_Emoji\/Suns_Emoji.png","chucktaylor":"Converse_Emoji_v3\/Converse_Emoji_v3.png","مسك_سيسكو":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","fast8":"F8_2_Emoji\/F8_2_Emoji.png","dunebenmir":"Everything_Emojiv2\/Everything_Emojiv2.png","ge2017":"UK_GE_Emoji\/UK_GE_Emoji.png","pandorapremium":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","уйтикрасиво":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","despicableme":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","madeinphila":"Sixers_Emoji\/Sixers_Emoji.png","kyatumheyakeenhai":"Tubelight_Emoji\/Tubelight_Emoji.png","miskart":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","minajmedley":"BBMAs_emojiv2\/BBMAs_emojiv2.png","belkocares":"Belko_Emoji\/Belko_Emoji.png","mimamádecía":"mimamadecia_emoji\/mimamadecia_emoji.png","f8ny":"F8_2_Emoji\/F8_2_Emoji.png","beardawards":"JBFA_Emoji\/JBFA_Emoji.png","oppof3":"OPPO_emojiv4\/OPPO_emojiv4.png","knicks":"Knicks_Emoji\/Knicks_Emoji.png","123cuéntalo":"Pipas_emojiv2\/Pipas_emojiv2.png","رمضان_جولي":"Ramadan_jollychic\/Ramadan_jollychic.png","sharingisscaring":"Runhide_AlienOpening_emojiv4\/Runhide_AlienOpening_emojiv4.png","lacasadepapel9":"Casa_Emoji\/Casa_Emoji.png","vivoperfectcatch":"Vivo_emoji_number2\/Vivo_emoji_number2.png","thefastandthefurious":"F8_2_Emoji\/F8_2_Emoji.png","unescomisk":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","lacasadepapelfinal":"Casa_Emoji\/Casa_Emoji.png","votrevie":"Percy_emoji\/Percy_emoji.png","iconcher":"BBMAs_emojiv2\/BBMAs_emojiv2.png","agentcooper":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","empirefox":"Empire_Emoji_2\/Empire_Emoji_2.png","braquagealancienne":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","mentellall":"Bachelorette_Emoji\/Bachelorette_Emoji.png","teamladyandthegramp":"DWTS_Season24\/DWTS_Season24.png","golive":"GoLive_Emoji\/GoLive_Emoji.png","buzzcity":"Hornets_Emoji\/Hornets_Emoji.png","ungolpeconestilo":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","solopasaconpipasg":"Pipas_emojiv2\/Pipas_emojiv2.png","gopacers":"Pacers_Emoji\/Pacers_Emoji.png","familywillbebroken":"F8_2_Emoji\/F8_2_Emoji.png","rockets":"Rockets_Emojiv2\/Rockets_Emojiv2.png","laliga":"LaLiga_Emoji\/LaLiga_Emoji.png","lacasadepapel11":"Casa_Emoji\/Casa_Emoji.png","ステッカーで話そう":"Harry_Dude_Japan_LATAM_BRv2\/Harry_Dude_Japan_LATAM_BRv2.png","belko":"Belko_Emoji\/Belko_Emoji.png","disneyilluminations":"Illuminations_Emojiv2\/Illuminations_Emojiv2.png","lacasadepapel14":"Casa_Emoji\/Casa_Emoji.png","tubelight":"Tubelight_Emoji\/Tubelight_Emoji.png","pipasgdegrefusa":"Pipas_emojiv2\/Pipas_emojiv2.png","herşey":"Everything_Emojiv2\/Everything_Emojiv2.png","cannes70":"Cannes_Film_Emoji\/Cannes_Film_Emoji.png","timessquaretakeover":"F8_2_Emoji\/F8_2_Emoji.png","grefusa":"Pipas_emojiv2\/Pipas_emojiv2.png","dp9":"MotoGP_DP9\/MotoGP_DP9.png","bcdebate2017":"BCelx_Emojiv2\/BCelx_Emojiv2.png","bs38":"MotoGP_BS38\/MotoGP_BS38.png","soundslikekeith":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","greysanatomy":"GreysAnatomy_Emoji\/GreysAnatomy_Emoji.png","wethenorth":"Raptors_Emojiv2\/Raptors_Emojiv2.png","xenoevil":"Alien_Emoji_Xeno\/Alien_Emoji_Xeno.png","jl99":"MotoGP_JL99\/MotoGP_JL99.png","ڤيمتو":"Vimto_Ramadan\/Vimto_Ramadan.png","liampayne":"Liam_Emoji\/Liam_Emoji.png","gospursgo":"Spurs_Emoji\/Spurs_Emoji.png","spacesandwich":"Zinger_Emoji\/Zinger_Emoji.png","ar42":"MotoGP_AR42\/MotoGP_AR42.png","chuckii":"Converse_Emoji_v3\/Converse_Emoji_v3.png","dubnation":"Warriors_Emoji\/Warriors_Emoji.png","jbfa2017":"JBFA_Emoji\/JBFA_Emoji.png","zinger1":"Zinger_Emoji\/Zinger_Emoji.png","soundslikeamine":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","takenote":"Jazz_Emoji\/Jazz_Emoji.png","bea1":"Gionee_Emoji\/Gionee_Emoji.png","entraunoptimista":"Entel_Vamos_Emoji\/Entel_Vamos_Emoji.png","gowinx":"Tab_Winx_Emoji\/Tab_Winx_Emoji.png","teammangotango":"DWTS_Season24\/DWTS_Season24.png","teamgoldengiggles":"DWTS_Season24\/DWTS_Season24.png","iemsydney2017":"IEM_2017_Emoji\/IEM_2017_Emoji.png","bachelorettepremiere":"Bachelorette_Emoji\/Bachelorette_Emoji.png","notthewhcd":"FF_Emojiv3\/FF_Emojiv3.png","despicableme3":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","bbmasredcarpet":"BBMAs_emojiv2\/BBMAs_emojiv2.png","diloconstickers":"Harry_Dude_Japan_LATAM_BRv2\/Harry_Dude_Japan_LATAM_BRv2.png","drwho":"Doctor_Who_Emoji\/Doctor_Who_Emoji.png","laureline":"Laureline_Emoji\/Laureline_Emoji.png","makemostofnow":"Voda_Emojiv2\/Voda_Emojiv2.png","iemoakland2017":"IEM_2017_Emoji\/IEM_2017_Emoji.png","gioneercb":"Gionee_Emoji\/Gionee_Emoji.png","allergi":"Sensimist_Emoji\/Sensimist_Emoji.png","myheartwillgoon":"BBMAs_emojiv2\/BBMAs_emojiv2.png","mimamadecia":"mimamadecia_emoji\/mimamadecia_emoji.png","teamdenimndiamonds":"DWTS_Season24\/DWTS_Season24.png","dwtsfinale":"DWTS_Season24\/DWTS_Season24.png","iemoakland":"IEM_2017_Emoji\/IEM_2017_Emoji.png","allergiesbegone":"Sensimist_Emoji\/Sensimist_Emoji.png","cheddarlive":"Cheddar_Emoji_v3\/Cheddar_Emoji_v3.png","tapegao":"Pipas_emojiv2\/Pipas_emojiv2.png","jamesgunn":"Belko_Emoji\/Belko_Emoji.png","lacasadepapel3":"Casa_Emoji\/Casa_Emoji.png","キングコング映画":"Kong_Emoji\/Kong_Emoji.png","tomorrowland":"Tomorrowland_Emoji\/Tomorrowland_Emoji.png","مسك_هارفرد":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","teamdancinfools":"DWTS_Season24\/DWTS_Season24.png","dp26":"MotoGP_DP26\/MotoGP_DP26.png","lacasadepapel19":"Casa_Emoji\/Casa_Emoji.png","blueranger":"Power_Ranger_Emoji_Blue\/Power_Ranger_Emoji_Blue.png","patronthenight":"Patron_Emojiv3\/Patron_Emojiv3.png","chefpcc":"cpc_emojiv2\/cpc_emojiv2.png","fortheloveofhotdogs":"Oscar_Emoji\/Oscar_Emoji.png","disneylandparis25":"Disneyland_Paris_Emojiv2\/Disneyland_Paris_Emojiv2.png","stripthatdown":"Liam_Emoji\/Liam_Emoji.png","jollyramadan":"Ramadan_jollychic\/Ramadan_jollychic.png","dwtspremiere":"DWTS_Season24\/DWTS_Season24.png","lacasadepapel5":"Casa_Emoji\/Casa_Emoji.png","piratasdelcaribe":"PotC_emoji\/PotC_emoji.png","iempoland":"IEM_2017_Emoji\/IEM_2017_Emoji.png","sajjanradio":"Tubelight_Emoji\/Tubelight_Emoji.png","miskglobalforum":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","greysabc":"GreysAnatomy_Emoji\/GreysAnatomy_Emoji.png","loveislove":"PrideEmoji\/pride_emoji-final.png","phoenixloveskong":"Kong_Emoji\/Kong_Emoji.png","bachelorette":"Bachelorette_Emoji\/Bachelorette_Emoji.png","iemshanghai2017":"IEM_2017_Emoji\/IEM_2017_Emoji.png","yesweareactuallysendingachickensandwichtospace":"Zinger_Emoji\/Zinger_Emoji.png","patrontequila":"Patron_Emojiv3\/Patron_Emojiv3.png","bbmas":"BBMAs_emojiv2\/BBMAs_emojiv2.png","nissangtr":"Nissan_Emoji\/Nissan_Emoji.png","piratesdeadmentellnotales":"PotC_emoji\/PotC_emoji.png","afterthefinalrose":"Bachelorette_Emoji\/Bachelorette_Emoji.png","vivoselfie":"Vivo_emoji_number2\/Vivo_emoji_number2.png","atlantaloveskong":"Kong_Emoji\/Kong_Emoji.png","fastandfurious":"F8_2_Emoji\/F8_2_Emoji.png","camilaxbbmas":"BBMAs_emojiv2\/BBMAs_emojiv2.png","tubelightincinemas":"Tubelight_Emoji\/Tubelight_Emoji.png","pll":"PLL_Emoji\/PLL_Emoji.png","canada150":"Canada150_emojiv4\/Canada150_emojiv4.png","iem":"IEM_2017_Emoji\/IEM_2017_Emoji.png","pinkranger":"Power_Ranger_Emoji_Pink\/Power_Ranger_Emoji_Pink.png","soundslikelilyachty":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","قمة_الرياض":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","sacramentoproud":"Kings_Emoji\/Kings_Emoji.png","thunderup":"Thunder_Emoji\/Thunder_Emoji.png","basketbolunbankası":"Odeabank_Emoji\/Odeabank_Emoji.png","конгостровчерепа":"Kong_Emoji\/Kong_Emoji.png","pipasg":"Pipas_emojiv2\/Pipas_emojiv2.png","cannes2017":"Cannes_Film_Emoji\/Cannes_Film_Emoji.png","f4glory":"Euro_league_1\/Euro_league_1.png","dcfamily":"Wizards_Emoji\/Wizards_Emoji.png","runhidepray":"Runhide_AlienOpening_emojiv4\/Runhide_AlienOpening_emojiv4.png","ff8":"F8_2_Emoji\/F8_2_Emoji.png","thefateofthefurious":"F8_2_Emoji\/F8_2_Emoji.png","laysunited":"Lays_emoji\/Lays_emoji.png","hakeem":"Empire_Emoji_2\/Empire_Emoji_2.png","jointhefight":"Daffodile_emoji\/Daffodile_emoji.png","celtics":"Celtics_Emoji2\/Celtics_Emoji2.png","twinpeaks":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","jamesbeard":"JBFA_Emoji\/JBFA_Emoji.png","shewontgoquietly":"Shewontgo_Emojiv3\/Shewontgo_Emojiv3.png","fitsyourlife":"Percy_emoji\/Percy_emoji.png","soundslikethomasrhett":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","bgt2017":"BGT_Emoji\/BGT_Emoji.png","minions":"DM_Minion_Emojiv2\/DM_Minion_Emojiv2.png","iemkatowice":"IEM_2017_Emoji\/IEM_2017_Emoji.png","meganleavey":"Leavey_emoji\/Leavey_emoji.png","teamvalmani":"DWTS_Season24\/DWTS_Season24.png","весьэтотмир":"Everything_Emojiv2\/Everything_Emojiv2.png","bgtfinal":"BGT_Emoji\/BGT_Emoji.png","soundslikeyou":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","mffl":"Mavs_Emoji\/Mavs_Emoji.png","tasuave":"Pipas_emojiv2\/Pipas_emojiv2.png","másesmás":"Alejandro_Emojiv2\/Alejandro_Emojiv2.png","مسك_يوداستي":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","bbmasredcarpetlive":"BBMAs_emojiv2\/BBMAs_emojiv2.png","fastandfurious8":"F8_2_Emoji\/F8_2_Emoji.png","كلنا_أونلاين":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","converse":"Converse_Emoji_v3\/Converse_Emoji_v3.png","vivoipl":"Vivo_emoji_number2\/Vivo_emoji_number2.png","soundslikedaya":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","teamcuchicuchi":"DWTS_Season24\/DWTS_Season24.png","jollyramadhan":"Ramadan_jollychic\/Ramadan_jollychic.png","hb8":"MotoGP_HB8\/MotoGP_HB8.png","alejandrosanz":"Alejandro_Emojiv2\/Alejandro_Emojiv2.png","mileybu":"BBMAs_emojiv2\/BBMAs_emojiv2.png","bachelornation":"Bachelorette_Emoji\/Bachelorette_Emoji.png","пиратыкарибскогоморя":"PotC_emoji\/PotC_emoji.png","abematv1周年":"CyberAgent_Emoji\/CyberAgent_Emoji.png","teampune":"Motorola_IndiaBatWing_v2\/Motorola_IndiaBatWing_v2.png","القمة_العربية_الإسلامية_الأمريكية":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","iem2017":"IEM_2017_Emoji\/IEM_2017_Emoji.png","zingerspacetweet":"Zinger_Emoji\/Zinger_Emoji.png","chelseachampions":"Chelsea_emojiv2\/Chelsea_emojiv2.png","مغردون":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","r1bigweekend":"Radio_Emoji\/Radio_Emoji.png","kongilhadacaveira":"Kong_Emoji\/Kong_Emoji.png","lb76":"MotoGP_LB76\/MotoGP_LB76.png","pandoramusic":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","soundslikepitbull":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","50añostazaroja":"Nescafe_Emojiv2\/Nescafe_Emojiv2.png","everythingeverything":"Everything_Emojiv2\/Everything_Emojiv2.png","truetoatlanta":"Hawks_Emoji\/Hawks_Emoji.png","bgt":"BGT_Emoji\/BGT_Emoji.png","pelicans":"Pelicans_Emoji\/Pelicans_Emoji.png","andre":"Empire_Emoji_2\/Empire_Emoji_2.png","bcvotes":"BCelx_Emojiv2\/BCelx_Emojiv2.png","teamcookie":"Empire_Emoji_1\/Empire_Emoji_1.png","mimamadecía":"mimamadecia_emoji\/mimamadecia_emoji.png","scandalabc":"ScandalABC_v4\/ScandalABC_v4.png","piratessweepstakes":"PotC_emoji\/PotC_emoji.png","ملتقى_شوف":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","dallasloveskong":"Kong_Emoji\/Kong_Emoji.png","soundslikebrett":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","لتبقى":"taqa_sa_v2\/taqa_sa_v2.png","amoigualchocolate":"Cacau_emoji\/Cacau_emoji.png","gru":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","gambardella":"Gambardellla_Emoji\/Gambardellla_Emoji.png","thebachelorette":"Bachelorette_Emoji\/Bachelorette_Emoji.png","lacasadepapel4":"Casa_Emoji\/Casa_Emoji.png","riyadhsummit":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","empirewed":"Empire_Emoji_3\/Empire_Emoji_3.png","forceofnature":"REI_Emojiv2\/REI_Emojiv2.png","empire":"Empire_Emoji_1\/Empire_Emoji_1.png","nycloveskong":"Kong_Emoji\/Kong_Emoji.png","qlder":"Queensland_Emoji\/Queensland_Emoji.png","timeforheroes":"Doctor_Who_Emoji\/Doctor_Who_Emoji.png","salvados":"Salvados_Emoji\/Salvados_Emoji.png","いつ呼ばれるクポ":"DFFOO_Emoji\/DFFOO_Emoji.png","vamoschilectm":"Entel_Vamos_Emoji\/Entel_Vamos_Emoji.png","خلنا_نجتمع":"Vimto_Ramadan\/Vimto_Ramadan.png","soundslikegorillaz":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","thebachelorettepremiere":"Bachelorette_Emoji\/Bachelorette_Emoji.png","bringbackthebees":"Cheerios_Emojiv2\/Cheerios_Emojiv2.png","soundslikeziggy":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","drakexbbmas":"BBMAs_emojiv2\/BBMAs_emojiv2.png","فيمتو":"Vimto_Ramadan\/Vimto_Ramadan.png","heforshe":"HeForShe_fixed\/HeForShe_fixed.png","bienvenidoaciudadjiménez":"Vida_Emoji\/Vida_Emoji.png","fastfurious":"F8_2_Emoji\/F8_2_Emoji.png","vimto":"Vimto_Ramadan\/Vimto_Ramadan.png","fastfriday":"F8_2_Emoji\/F8_2_Emoji.png","doctorwho":"Doctor_Who_Emoji\/Doctor_Who_Emoji.png","radio1bigweekend":"Radio_Emoji\/Radio_Emoji.png","dwts24":"DWTS_Season24\/DWTS_Season24.png","prisonbreak":"Prison_Break_Emojiv2\/Prison_Break_Emojiv2.png","lacasadepapel10":"Casa_Emoji\/Casa_Emoji.png","lacasadepapel8":"Casa_Emoji\/Casa_Emoji.png","patronthesummer":"Patron_Emojiv3\/Patron_Emojiv3.png","ai29":"MotoGP_AI29\/MotoGP_AI29.png","pllgameover":"PLL_Emoji\/PLL_Emoji.png","lacasadepapel16":"Casa_Emoji\/Casa_Emoji.png","bacheloretteabc":"Bachelorette_Emoji\/Bachelorette_Emoji.png","konglapelícula":"Kong_Emoji\/Kong_Emoji.png","belkoindustries":"Belko_Emoji\/Belko_Emoji.png","laloveskong":"Kong_Emoji\/Kong_Emoji.png","brunoxbbmas":"BBMAs_emojiv2\/BBMAs_emojiv2.png","blackhistorymonth":"BlackHistoryMonth\/BlackHistoryMonth.png","aliencovenant":"Alien_Emoji_Xeno\/Alien_Emoji_Xeno.png","thecatch":"TheCatchTGIT\/TheCatchTGIT.png","r1bw":"Radio_Emoji\/Radio_Emoji.png","thecatchabc":"TheCatchTGIT\/TheCatchTGIT.png","naachmerijaan":"Tubelight_Emoji\/Tubelight_Emoji.png","dcloveskong":"Kong_Emoji\/Kong_Emoji.png","thebachelorettefinale":"Bachelorette_Emoji\/Bachelorette_Emoji.png","funnybecauseitstru":"TruTV_MarchMadnessv6\/TruTV_MarchMadnessv6.png","nbakicks":"NBAKicks_Emojiv2\/NBAKicks_Emojiv2.png","newtwinpeaks":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","lacasadepapel13":"Casa_Emoji\/Casa_Emoji.png","قيادات_مسك":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","gottalentpt":"Portugal_GT_Emoji\/Portugal_GT_Emoji.png","مبادرات_مسك_الثقافية":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","believememphis":"Grizzlies_Emojiv2\/Grizzlies_Emojiv2.png","2fast2furious":"F8_2_Emoji\/F8_2_Emoji.png","mm93":"MotoGP_MM93\/MotoGP_MM93.png","thebelkoexperiment":"Belko_Emoji\/Belko_Emoji.png","iemsydney":"IEM_2017_Emoji\/IEM_2017_Emoji.png","مسك_الخيرية":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","新プレモル":"Suntory_Emoji\/Suntory_Emoji.png","vivoipledition":"Vivo_emoji_number2\/Vivo_emoji_number2.png","alienday":"Alien_Emoji_Xeno\/Alien_Emoji_Xeno.png","twinpeaks2017":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","foreverchuck":"Converse_Emoji_v3\/Converse_Emoji_v3.png","shareacoke":"Share_Coke_Emoji\/Share_Coke_Emoji.png","gioneekkr":"Gionee_Emoji\/Gionee_Emoji.png","atfr":"Bachelorette_Emoji\/Bachelorette_Emoji.png","fastfridays":"F8_2_Emoji\/F8_2_Emoji.png","bhm":"BlackHistoryMonth\/BlackHistoryMonth.png","capitalstb":"Summertime_ball_emoji\/Summertime_ball_emoji.png","cpcldr":"cpc_emojiv2\/cpc_emojiv2.png","masterchef":"MasterChef_Emojiv2\/MasterChef_Emojiv2.png","perfectselfie":"Vivo_emoji_number2\/Vivo_emoji_number2.png","misktweeps":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","kongisking":"Kong_Emoji\/Kong_Emoji.png","meumalvadofavorito3":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","bullsnation":"Bulls_Emoji\/Bulls_Emoji.png","kfczinger":"Zinger_Emoji\/Zinger_Emoji.png","twinpeaksday":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","lacasadepapel20":"Casa_Emoji\/Casa_Emoji.png","lavengeancedesalazar":"PotC_emoji\/PotC_emoji.png","zingerburger":"Zinger_Emoji\/Zinger_Emoji.png","jz5":"MotoGP_JZ5\/MotoGP_JZ5.png","britainsgottalent":"BGT_Emoji\/BGT_Emoji.png","tubelightdobara":"Tubelight_Emoji\/Tubelight_Emoji.png","despedidaemgrandeestilo":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","blacklivesmatter":"BlackHistoryMonth\/BlackHistoryMonth.png","sr45":"MotoGP_SR45\/MotoGP_SR45.png","aiuss":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","valerian":"Valerian_Emoji\/Valerian_Emoji.png","dm3":"DM_Gru_Emojiv2\/DM_Gru_Emojiv2.png","ae41":"MotoGP_AE41\/MotoGP_AE41.png","bostonloveskong":"Kong_Emoji\/Kong_Emoji.png","teamshadsquad":"DWTS_Season24\/DWTS_Season24.png","aller":"Sensimist_Emoji\/Sensimist_Emoji.png","teambladesofglory":"DWTS_Season24\/DWTS_Season24.png","jamal":"Empire_Emoji_2\/Empire_Emoji_2.png","lavenganzadesalazar":"PotC_emoji\/PotC_emoji.png","bachelorettefinale":"Bachelorette_Emoji\/Bachelorette_Emoji.png","lordexbbmas":"BBMAs_emojiv2\/BBMAs_emojiv2.png","wishupon":"Wish_Emoji\/Wish_Emoji.png","yesbankmaximum":"Yes_bank_Emoji\/Yes_bank_Emoji.png","حكايا_مسك":"Misk_Foundation_Emoji\/Misk_Foundation_Emoji.png","pandoraknows":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","milehighbasketball":"Nugges_Emoji\/Nugges_Emoji.png","القمة_السعودية_الأمريكية":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","startours2":"Disneyland_Startours_Emojiv2\/Disneyland_Startours_Emojiv2.png","alienopening":"Runhide_AlienOpening_emojiv4\/Runhide_AlienOpening_emojiv4.png","yellowranger":"Power_Ranger_Emoji_Yellow\/Power_Ranger_Emoji_Yellow.png","patronmycinco":"Patron_Emojiv3\/Patron_Emojiv3.png","jaljaa":"Tubelight_Emoji\/Tubelight_Emoji.png","vivov5s":"Vivo_emoji_number2\/Vivo_emoji_number2.png","soundslikebigsean":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","redranger":"Power_Ranger_Emoji_Red\/Power_Ranger_Emoji_Red.png","motorps":"Motorola_IndiaBatWing_v2\/Motorola_IndiaBatWing_v2.png","konglaislacalavera":"Kong_Emoji\/Kong_Emoji.png","twinpeakssunday":"twin_peaks_emojiv2\/twin_peaks_emojiv2.png","ripcity":"Blazers_Emoji\/Blazers_Emoji.png","lakeshow":"Lakers_Emoji\/Lakers_Emoji.png","letsgomagic":"Magic_Emoji\/Magic_Emoji.png","chucks":"Converse_Emoji_v3\/Converse_Emoji_v3.png","kongkafatasiadasi":"Kong_Emoji\/Kong_Emoji.png","ivegotstbtickets":"Summertime_ball_emoji\/Summertime_ball_emoji.png","furious8":"F8_2_Emoji\/F8_2_Emoji.png","jm43":"MotoGP_JM43\/MotoGP_JM43.png","simplyperfect":"Patron_Emojiv3\/Patron_Emojiv3.png","bbmas2017":"BBMAs_emojiv2\/BBMAs_emojiv2.png","teamprettyxxpensive":"DWTS_Season24\/DWTS_Season24.png","goinginstyle":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","lacasadepapel2":"Casa_Emoji\/Casa_Emoji.png","soundslikemaggieroggers":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","phillyloveskong":"Kong_Emoji\/Kong_Emoji.png","championssofa":"Sony_sofa_emoji\/Sony_sofa_emoji.png","miercolesdefut":"Corona_Fut_Emojiv2\/Corona_Fut_Emojiv2.png","f8premiere":"F8_2_Emoji\/F8_2_Emoji.png","conversemodern":"Converse_Emoji_v3\/Converse_Emoji_v3.png","piratasdocaribe":"PotC_emoji\/PotC_emoji.png","deadmentellnotales":"PotC_emoji\/PotC_emoji.png","weareolympiacos":"Euro_league_5\/Euro_league_5.png","teammaksimumheat":"DWTS_Season24\/DWTS_Season24.png","selfiestan":"Gionee_Emoji\/Gionee_Emoji.png","soundslikemiranda":"Pandora_SoundsLike_emoji\/Pandora_SoundsLike_emoji.png","uptheblues":"Blues_Emoji\/Blues_Emoji.png","lacasadepapel17":"Casa_Emoji\/Casa_Emoji.png","heatwillcome":"Doritos_Emojiv2\/Doritos_Emojiv2.png","generalelection":"UK_GE_Emoji\/UK_GE_Emoji.png","powerofthepack":"Timberwolves_Emojiv3\/Timberwolves_Emojiv3.png","tgit":"TGIT_Emoji\/TGIT_Emoji.png","zingersandwich":"Zinger_Emoji\/Zinger_Emoji.png","pirateslife":"PotC_emoji\/PotC_emoji.png","brooklyngrit":"Nets_Emoji\/Nets_Emoji.png","abgangmitstil":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","familynomore":"F8_2_Emoji\/F8_2_Emoji.png","ترمب_في_الرياض":"Riyadh_Emojiv2\/Riyadh_Emojiv2.png","tokyodrift":"F8_2_Emoji\/F8_2_Emoji.png","fener4glory":"Euro_league_2\/Euro_league_2.png","f8nyc":"F8_2_Emoji\/F8_2_Emoji.png","lacasadepapel7":"Casa_Emoji\/Casa_Emoji.png","tubelighttrailer":"Tubelight_Emoji\/Tubelight_Emoji.png","prettylittleliars":"PLL_Emoji\/PLL_Emoji.png","myvimto":"Vimto_Ramadan\/Vimto_Ramadan.png","ladrõescommuitoestilo":"GoingInStyle_emojiv3\/GoingInStyle_emojiv3.png","piratesdescaraïbes":"PotC_emoji\/PotC_emoji.png","miamiloveskong":"Kong_Emoji\/Kong_Emoji.png","cskabasket":"Euro_league_3\/Euro_league_3.png","dws10":"Doctor_Who_Emoji\/Doctor_Who_Emoji.png","miércolesdefut":"Corona_Fut_Emojiv2\/Corona_Fut_Emojiv2.png","noticiasfindesemanaa3":"Antena3_Emoji\/Antena3_Emoji.png","teambabygotbach":"DWTS_Season24\/DWTS_Season24.png","perfectvivoipl":"Vivo_emoji_number2\/Vivo_emoji_number2.png","mimamádecia":"mimamadecia_emoji\/mimamadecia_emoji.png","gionee":"Gionee_Emoji\/Gionee_Emoji.png","ad04":"MotoGP_AD04\/MotoGP_AD04.png","kongskullisland":"Kong_Emoji\/Kong_Emoji.png","rmbaloncesto":"Euro_league_4\/Euro_league_4.png","radiowalagaana":"Tubelight_Emoji\/Tubelight_Emoji.png","tubelightkieid":"Tubelight_Emoji\/Tubelight_Emoji.png","selfieexpert":"OPPO_emojiv4\/OPPO_emojiv4.png"},"pushState":true,"fetchedItemsCount":21,"timeline_url":"\/i\/streams\/timeline","liveVideoEventId":null,"initialState":{"title":"Twitter. It's what's happening.","section":null,"module":"app\/pages\/streams\/tweet_forward","cache_ttl":300,"body_class_names":"three-col logged-out Streams StreamsColor--orange","doc_class_names":null,"route_name":"","page_container_class_names":"AppContent wrapper-streams","ttft_navigation":false}}">
<input type="hidden" class="swift-boot-module" value="app/pages/streams/tweet_forward">
<input type="hidden" id="swift-module-path" value="https://abs.twimg.com/k/swift/en">
<script src="https://abs.twimg.com/k/en/init.en.167a83c3f1425f921e79.js" async></script>
</head>
<body class="three-col logged-out Streams StreamsColor--orange"
data-fouc-class-names="swift-loading no-nav-banners"
dir="ltr">
<script id="swift_loading_indicator" nonce="cyD7AEvvEnq1KftwJ48BHw==">
document.body.className=document.body.className+" "+document.body.getAttribute("data-fouc-class-names");
</script>
<a href="#timeline" class="u-hiddenVisually focusable">Skip to content</a>
<div id="doc" data-at-shortcutkeys="{"Enter":"Open Tweet details","o":"Expand photo","/":"Search","?":"This menu","j":"Next Tweet","k":"Previous Tweet","Space":"Page down",".":"Load new Tweets","gu":"Go to user\u2026"}" class="">
<div class="StreamsTopBar-container StreamsTopBar-container--withStreamHero StreamsTopBar-container--withTallHeader">
<div class="StreamsTopBar StreamsTopBar--fixed js-variableHeightTopBar">
<div class="StreamsHero StreamsHero--tall">
<div class="StreamsHero-image">
<span class="StreamsHero-superImage Icon Icon--bird"></span>
</div>
<div class="StreamsHero-buttonContainer">
<a href='/' class="js-nav" data-element="logo"><span class="Icon Icon--bird"></span><span class="visuallyhidden">Home</span></a>
<a class="Button StreamsSignUp js-nav js-signup" href="https://twitter.com/signup" data-component="hero" data-element="buttons">Sign up</a>
<a class="Button StreamsLogin js-login" role="button" href="/login">Log in</a>
</div>
<div class="StreamsHero-content StreamsHero-content--noBlurb">
<h2 class="StreamsHero-header">What’s happening?</h2>
</div>
</div>
<div class="StreamsTopBar-categoryContainer">
<div class="StreamsCategoryBar">
<div role="button" class="StreamsCategoryBar-item ItemSearch">
<span class="StreamsCategoryBar-itemName">
<span class="Icon Icon--search"></span>
<span class="visuallyhidden">Search</span>
</span>
</div>
<a class="StreamsCategoryBar-item js-nav StreamsCategoryBar-item--selected" href="/" data-nav="home">
<span class="StreamsCategoryBar-itemName">Featured</span>
</a>
<a class="StreamsCategoryBar-item js-nav" href="/i/streams/category/686639666771046402" data-nav="686639666771046402">
<span class="StreamsCategoryBar-itemName">Sports</span>
</a>
<a class="StreamsCategoryBar-item js-nav" href="/i/streams/category/686639666779394057" data-nav="686639666779394057">
<span class="StreamsCategoryBar-itemName">News</span>
</a>
<a class="StreamsCategoryBar-item js-nav" href="/i/streams/category/686639666779426835" data-nav="686639666779426835">
<span class="StreamsCategoryBar-itemName">Music</span>
</a>
<a class="StreamsCategoryBar-item js-nav" href="/i/streams/category/686639666779394055" data-nav="686639666779394055">
<span class="StreamsCategoryBar-itemName">Entertainment</span>
</a>
<a class="StreamsCategoryBar-item js-nav" href="/i/streams/category/686639666779426842" data-nav="686639666779426842">
<span class="StreamsCategoryBar-itemName">Lifestyle</span>
</a>
<div class="dropdown StreamsCategoryBar-item js-dropdown-toggle">
<span class="StreamsCategoryBar-itemName">More <span class="StreamsCategoryBar-moreIcon Icon Icon--caretDown"></span></span>
<div class="dropdown-menu StreamsCategoryBar-dropdownMenu">
<div class="StreamsCategoryBar-dropdownMenuContent">
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/686639666779426845" data-nav="686639666779426845">Arts & Culture</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/686639666779394072" data-nav="686639666779394072">Government & Politics</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/690675490684678145" data-nav="690675490684678145">Gaming</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/692079932940259328" data-nav="692079932940259328">Nonprofits</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/788602775839965184" data-nav="788602775839965184">Fun</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/841388582518562816" data-nav="841388582518562816">Science</a>
<a class="StreamsCategoryBar-itemName StreamsCategoryBar-itemName--reduced u-linkClean js-nav" href="/i/streams/category/841390443338309632" data-nav="841390443338309632">Technology</a>
</div>
</div>
</div>
</div>
</div>
<div class="StreamsTopBar-searchContainer u-hidden StreamsTopBar--invisible StreamsTopBar-searchContainer--wide" role="search">
<form class="form-search js-search-form" action="/search" id="global-nav-search">
<div class="u-posRelative">
<button type="submit" class="Icon Icon--search StreamsTopBar-searchButton">
<span class="visuallyhidden">Search Twitter</span>
</button>
<label class="visuallyhidden" for="search-query">Search query</label>
<input class="StreamsTopBar-searchInput" type="text" id="search-query" placeholder="Search for stuff like #ManchesterBombing or Manu" name="q" autocomplete="off" spellcheck="false">
</div>
<div role="listbox" class="dropdown-menu typeahead">
<div aria-hidden="true" class="dropdown-caret">
<div class="caret-outer"></div>
<div class="caret-inner"></div>
</div>
<div role="presentation" class="dropdown-inner js-typeahead-results">
<div role="presentation" class="typeahead-saved-searches">
<h3 id="saved-searches-heading" class="typeahead-category-title saved-searches-title">Saved searches</h3>
<ul role="presentation" class="typeahead-items saved-searches-list">
<li role="presentation" class="typeahead-item typeahead-saved-search-item">
<span class="Icon Icon--close" aria-hidden="true"><span class="visuallyhidden">Remove</span></span>
<a role="option" aria-describedby="saved-searches-heading" class="js-nav" href="" data-search-query="" data-query-source="" data-ds="saved_search" tabindex="-1"></a>
</li>
</ul>
</div>
<ul role="presentation" class="typeahead-items typeahead-topics">
<li role="presentation" class="typeahead-item typeahead-topic-item">
<a role="option" class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-ds="topics" tabindex="-1"></a>
</li>
</ul>
<ul role="presentation" class="typeahead-items typeahead-accounts social-context js-typeahead-accounts">
<li role="presentation" data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-account-item js-selectable">
<a role="option" class="js-nav" data-query-source="typeahead_click" data-search-query="" data-ds="account">
<div class="js-selectable typeahead-in-conversation hidden">
<span class="Icon Icon--follower Icon--small"></span>
<span class="typeahead-in-conversation-text">In this conversation</span>
</div>
<img class="avatar size32" alt="">
<span class="typeahead-user-item-info account-group">
<span class="fullname"></span><span class="UserBadges"><span class="Icon Icon--verified js-verified hidden"><span class="u-hiddenVisually">Verified account</span></span><span class="Icon Icon--protected js-protected hidden"><span class="u-hiddenVisually">Protected Tweets</span></span></span><span class="UserNameBreak"> </span><span class="username u-dir" dir="ltr">@<b></b></span>
</span>
<span class="typeahead-social-context"></span>
</a>
</li>
<li role="presentation" class="js-selectable typeahead-accounts-shortcut js-shortcut"><a role="option" class="js-nav" href="" data-search-query="" data-query-source="typeahead_click" data-shortcut="true" data-ds="account_search"></a></li>
</ul>
<ul role="presentation" class="typeahead-items typeahead-trend-locations-list">
<li role="presentation" class="typeahead-item typeahead-trend-locations-item"><a role="option" class="js-nav" href="" data-ds="trend_location" data-search-query="" tabindex="-1"></a></li>
</ul>
<div role="presentation" class="typeahead-user-select">
<div role="presentation" class="typeahead-empty-suggestions">
Suggested users
</div>
<ul role="presentation" class="typeahead-items typeahead-selected js-typeahead-selected">
<li role="presentation" data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-selected-item js-selectable">
<a role="option" class="js-nav" data-query-source="typeahead_click" data-search-query="" data-ds="account">
<img class="avatar size32" alt="">
<span class="typeahead-user-item-info account-group">
<span class="select-status deselect-user js-deselect-user Icon Icon--check"></span>
<span class="select-status select-disabled Icon Icon--unfollow"></span>
<span class="fullname"></span><span class="UserBadges"><span class="Icon Icon--verified js-verified hidden"><span class="u-hiddenVisually">Verified account</span></span><span class="Icon Icon--protected js-protected hidden"><span class="u-hiddenVisually">Protected Tweets</span></span></span><span class="UserNameBreak"> </span><span class="username u-dir" dir="ltr">@<b></b></span>
</span>
</a>
</li>
<li role="presentation" class="typeahead-selected-end"></li>
</ul>
<ul role="presentation" class="typeahead-items typeahead-accounts js-typeahead-accounts">
<li role="presentation" data-user-id="" data-user-screenname="" data-remote="true" data-score="" class="typeahead-item typeahead-account-item js-selectable">
<a role="option" class="js-nav" data-query-source="typeahead_click" data-search-query="" data-ds="account">
<img class="avatar size32" alt="">
<span class="typeahead-user-item-info account-group">
<span class="select-status deselect-user js-deselect-user Icon Icon--check"></span>
<span class="select-status select-disabled Icon Icon--unfollow"></span>
<span class="fullname"></span><span class="UserBadges"><span class="Icon Icon--verified js-verified hidden"><span class="u-hiddenVisually">Verified account</span></span><span class="Icon Icon--protected js-protected hidden"><span class="u-hiddenVisually">Protected Tweets</span></span></span><span class="UserNameBreak"> </span><span class="username u-dir" dir="ltr">@<b></b></span>
</span>
</a>
</li>
<li role="presentation" class="typeahead-accounts-end"></li>
</ul>
</div>
<div role="presentation" class="typeahead-dm-conversations">
<ul role="presentation" class="typeahead-items typeahead-dm-conversation-items">
<li role="presentation" class="typeahead-item typeahead-dm-conversation-item">
<a role="option" tabindex="-1"></a>
</li>
</ul>
</div>
</div>
</div>
</form>
<button type="button" class="StreamsTopBar-searchDismiss js-close">
<span class="Icon Icon--close Icon--large">
<span class="visuallyhidden">Close</span>
</span>
</button>
</div>
</div>
</div>
<div class="AppContent" id="timeline">
<div class="BannersContainer">
<div class="Banner privacy-change-notice">
<style>
.front-page .privacy-change-notice {
top: 56px;
width: 837px;
position: relative;
z-index: 2;
margin: 0 auto;
}
.front-page .front-card {
margin-top: -100px;
}
.privacy-change-notice button {
top: 5px;
border: 0;
position: absolute;
top: 0;
right: 0;
padding: 11px 12px;
cursor: pointer;
-webkit-box-shadow: none;
box-shadow: none;
background: transparent;
}
</style>
<div class="flex-module">
<div class="banner-row">
<span class="title">We've updated our <a href="https://twitter.com/privacy" rel="noopener">Privacy Policy</a>, effective June 18th, 2017. You can learn more about what's changed on our <a href="https://support.twitter.com/articles/20174594" rel="noopener">Help Center</a>.</span>
<button type="button"><span class="Icon Icon--close Icon--smallest close"><span class="visuallyhidden">Close</span></span></button>
</div>
</div>
</div>
</div>
<noscript>
<div class="front-warning">
<h3>Twitter.com makes heavy use of JavaScript</h3>
<p>If you cannot enable it in your browser's preferences, you may have a better experience on our <a href="http://m.twitter.com" rel="noopener">mobile site</a>.</p>
</div>
</noscript>
<div class="front-warning" id="front-no-cookies-warn">
<h3>Twitter.com makes heavy use of browser cookies</h3>
<p>Please enable cookies in your browser preferences before signing in.</p>
</div>
<div class="Streams-momentsContainer">
<h3 class="Streams-momentsTitle">
Moments
<span class="Streams-momentsViewAll">· <a href="/i/moments" class="js-nav" data-nav="view_all">View all</a></span>
</h3>
<div class="Streams-momentsModules">
<div class="MomentCapsuleSummary MomentCapsuleSummary--card"
data-moment-id="866774771383619586"
data-moment-visibility="public"
data-component-context="moment_capsule"
>
<a href="https://twitter.com/i/moments/866774771383619586" class="MomentCapsuleSummary-cover js-default-link js-nav">
<div class="MomentMediaItem MomentMediaItem--preview FlexEmbed FlexEmbed--1by1" data-crop-aspect-ratio="square">
<div class="FlexEmbed-item">
<img class="MomentMediaItem-entity MomentMediaItem-entity--image"
src="https://pbs.twimg.com/ext_tw_video_thumb/866778421325688834/pu/img/aAcUbipW4Fku9Omb.jpg"
data-height="576"
data-width="1024"
data-square-crop-x="253"
data-square-crop-y="1"
data-square-crop-width="574"
data-square-crop-height="574"
data-portrait-three-by-four-crop-x="312"
data-portrait-three-by-four-crop-y="2"
data-portrait-three-by-four-crop-width="430"
data-portrait-three-by-four-crop-height="573"
data-mobile-portrait-crop-x="367"
data-mobile-portrait-crop-y="4"
data-mobile-portrait-crop-width="322"
data-mobile-portrait-crop-height="572"
data-mobile-no-crop="false"
data-media-id="866778421325688834"
data-preview-image-src="https://pbs.twimg.com/ext_tw_video_thumb/866778421325688834/pu/img/aAcUbipW4Fku9Omb.jpg"
/>
</div>
</div>
</a>
<div class="MomentCapsuleSummary-details">
<a href="https://twitter.com/i/moments/866774771383619586"
class="MomentCapsuleSummary-title js-default-link js-nav js-ellipsis u-dir"
title="22 dead after bombing at Ariana Grande concert"
dir="ltr"
>
22 dead after bombing at Ariana Grande concert
</a>
<div class="MomentCapsuleSubtitle">
<span class="MomentCapsuleSubtitle-category u-dir" dir="ltr">
Manchester Attack
</span>
</div>
<div class="MomentCapsuleSummary-description js-ellipsis u-dir" dir="ltr">
Children are among the dead, police confirm
- Dozens more are injured
- Single attacker died at scene using an improvised explosive device
- General Election campaigning suspended
- Press follow for live updates in your timeline
</div>
<div class="MomentCapsuleSummary-misc">
<button type="button" class="MomentFollowButton MomentButton MomentButton--blue is-notFollowing" data-moment-id="866774771383619586">
<span class="MomentButton-icon Icon Icon--lightning"></span>
<span class="MomentFollowButton-text MomentFollowButton-text--notFollowing">Follow</span>
<span class="MomentFollowButton-text MomentFollowButton-text--following">Following</span>
</button>
</div>
</div>
</div>
<div class="MomentCapsuleSummary MomentCapsuleSummary--card"
data-moment-id="866869943677067264"
data-moment-visibility="public"
data-component-context="moment_capsule"
>
<a href="https://twitter.com/i/moments/866869943677067264" class="MomentCapsuleSummary-cover js-default-link js-nav">
<div class="MomentMediaItem MomentMediaItem--preview FlexEmbed FlexEmbed--1by1" data-crop-aspect-ratio="square">
<div class="FlexEmbed-item">
<img class="MomentMediaItem-entity MomentMediaItem-entity--image"
src="https://pbs.twimg.com/media/DAe87kjWAAEgMx5.jpg"
data-height="550"
data-width="1170"
data-square-crop-x="281"
data-square-crop-y="1"
data-square-crop-width="548"
data-square-crop-height="548"
data-portrait-three-by-four-crop-x="356"
data-portrait-three-by-four-crop-y="1"
data-portrait-three-by-four-crop-width="410"
data-portrait-three-by-four-crop-height="547"
data-mobile-portrait-crop-x="417"
data-mobile-portrait-crop-y="1"
data-mobile-portrait-crop-width="307"
data-mobile-portrait-crop-height="546"
data-mobile-no-crop="false"
data-media-id="866869184902332417"
data-preview-image-src="https://pbs.twimg.com/media/DAe87kjWAAEgMx5.jpg"
/>
</div>
</div>
</a>
<div class="MomentCapsuleSummary-details">
<a href="https://twitter.com/i/moments/866869943677067264"
class="MomentCapsuleSummary-title js-default-link js-nav js-ellipsis u-dir"
title="ICYMI: Monday"
dir="ltr"
>
ICYMI: Monday
</a>
<div class="MomentCapsuleSubtitle">
<span class="MomentCapsuleSubtitle-category u-dir" dir="ltr">
US News
</span>
<span class="MomentCapsuleSubtitle-context">
4 hours ago
</span>
</div>
<div class="MomentCapsuleSummary-description js-ellipsis u-dir" dir="ltr">
From politics to pop culture, if you missed Monday's news cycle, here's a quick refresher.
</div>
<div class="MomentCapsuleSummary-misc">
</div>
</div>
</div>
<div class="MomentCapsuleSummary MomentCapsuleSummary--card"
data-moment-id="866894386000314368"
data-moment-visibility="public"
data-component-context="moment_capsule"
>
<a href="https://twitter.com/i/moments/866894386000314368" class="MomentCapsuleSummary-cover js-default-link js-nav">
<div class="MomentMediaItem MomentMediaItem--preview FlexEmbed FlexEmbed--1by1" data-crop-aspect-ratio="square">
<div class="FlexEmbed-item">
<img class="MomentMediaItem-entity MomentMediaItem-entity--image"
src="https://pbs.twimg.com/media/DAfG39eW0AAbQh3.jpg"
data-height="581"
data-width="1032"
data-mobile-no-crop="false"
data-media-id="866880117989101568"
data-preview-image-src="https://pbs.twimg.com/media/DAfG39eW0AAbQh3.jpg"
/>
</div>
</div>
</a>
<div class="MomentCapsuleSummary-details">
<a href="https://twitter.com/i/moments/866894386000314368"
class="MomentCapsuleSummary-title js-default-link js-nav js-ellipsis u-dir"
title="Indonesia publicly cane two men for homosexuality"
dir="ltr"
>
Indonesia publicly cane two men for homosexuality
</a>
<div class="MomentCapsuleSubtitle">
<span class="MomentCapsuleSubtitle-category u-dir" dir="ltr">
World News
</span>
<span class="MomentCapsuleSubtitle-context">
36 minutes ago
</span>
</div>
<div class="MomentCapsuleSummary-description js-ellipsis u-dir" dir="ltr">
Two men will receive 85 strokes of the cane after being convicted of homosexual acts in the conservative Indonesian city of Banda Aceh. Gay sex is not illegal in Indonesia except in Aceh — the only province which enforces Sharia law. Human rights groups have called for an intervention from the Indonesian president.
</div>
<div class="MomentCapsuleSummary-misc">
</div>
</div>
</div>
<div class="InStreamSignup">
<div class="SignupCallOut module js-signup-call-out
">
<div class="SignupCallOut-header">
<h3 class="SignupCallOut-title u-textBreak">
New to Twitter?
</h3>
</div>
<div class="SignupCallOut-subheader">
Sign up now to get your own personalized timeline!
</div>
<div class="signup SignupForm
">
<a href="https://twitter.com/signup" role="button" class="SignupForm-submit u-block u-textCenter js-signup btn primary-btn"
data-component="signup_callout"
data-element="form"
>Sign up</a>
</div>
</div>
</div>
</div>
<div class="Streams-divider">
<h3 class="Streams-dividerText">Featured Tweets</h3>
</div>
</div>
<div class="Grid TweetForwardTimeline" data-component-context="tweet" data-item-type="tweet"
data-max-position="" data-min-position="%7B%22seenTweetIDs%22%3A%5B866924312048959489%2C866747274617114624%2C866824301147820032%2C866946061490950144%2C866678356590206976%2C866945013049176064%2C866500741195644928%2C866691985331159041%2C866765656255070208%2C866944558801793025%2C866741478785257473%2C866941989056430081%2C866945567884050432%2C866849870073802752%2C866771040130748417%2C866686824827068416%2C866746855228678144%2C866680432120745984%2C866777963018244096%2C866582942507823108%2C866877266231472128%5D%2C%22servedRangeOption%22%3A%7B%22bottom%22%3A866947159637884928%2C%22top%22%3A866947159637884928%7D%7D"
>
<div class="Grid-cell u-size1of3">
<div class="TweetWithPivotModule" data-scribe-context="{"id":"817038474251382784","name":"World News","type":"stream"}" >
<div class="TweetWithPivotModule-header">
<a href="https://twitter.com/i/streams/stream/817038474251382784" class="js-nav">World News<span class="Icon Icon--caretRight"></span></a>
</div>
<div class="tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content
original-tweet js-original-tweet
has-cards has-content
"
data-tweet-id="866946061490950144"
data-item-id="866946061490950144"
data-permalink-path="/CNN/status/866946061490950144"
data-conversation-id="866946061490950144"
data-tweet-nonce="866946061490950144-bb636ebe-2527-4adb-8c85-b3c4cb60e014"
data-tweet-stat-initialized="true"
data-screen-name="CNN" data-name="CNN" data-user-id="759251"
data-you-follow="false"
data-follows-you="false"
data-you-block="false"
data-reply-to-users-json="[{"id_str":"759251","screen_name":"CNN","name":"CNN","emojified_name":{"text":"CNN","emojified_text_as_html":"CNN"}}]"
data-disclosure-type=""
data-has-cards="true"
>
<div class="context">
</div>
<div class="content">
<div class="AdaptiveMediaOuterContainer">
<div class="AdaptiveMedia
is-square
"
>
<div class="AdaptiveMedia-container">
<div class="AdaptiveMedia-singlePhoto">
<div class="AdaptiveMedia-photoContainer js-adaptive-photo "
data-image-url="https://pbs.twimg.com/media/DAgC2Q7XYAEPSJ3.jpg"
data-element-context="platform_photo_card">
<img data-aria-label-part src="https://pbs.twimg.com/media/DAgC2Q7XYAEPSJ3.jpg" alt=""
style="width: 100%; top: -0px;"
>
</div>
</div>
</div>
</div>
</div>
<div class="stream-item-header">
<a class="account-group js-account-group js-action-profile js-user-profile-link js-nav" href="/CNN" data-user-id="759251">
<img class="avatar js-action-profile-avatar" src="https://pbs.twimg.com/profile_images/508960761826131968/LnvhR8ED_bigger.png" alt="">
<span class="FullNameGroup">
<strong class="fullname show-popup-with-id " data-aria-label-part>CNN</strong><span>‏</span><span class="UserBadges"><span class="Icon Icon--verified"><span class="u-hiddenVisually">Verified account</span></span></span><span class="UserNameBreak"> </span></span><span class="username u-dir" dir="ltr" data-aria-label-part>@<b>CNN</b></span></a>
<small class="time">
<a href="/CNN/status/866946061490950144" class="tweet-timestamp js-permalink js-nav js-tooltip" title="2:17 AM - 23 May 2017" data-conversation-id="866946061490950144"><span class="_timestamp js-short-timestamp js-relative-timestamp" data-time="1495531022" data-time-ms="1495531022000" data-long-form="true" aria-hidden="true">11m</span><span class="u-hiddenVisually" data-aria-label-part="last">11 minutes ago</span></a>
</small>
<div class="ProfileTweet-action ProfileTweet-action--more js-more-ProfileTweet-actions">
<div class="dropdown">
<button class="ProfileTweet-actionButton u-textUserColorHover dropdown-toggle js-dropdown-toggle" type="button">
<div class="IconContainer js-tooltip" title="More">
<span class="Icon Icon--caretDownLight Icon--smallest"></span>
<span class="u-hiddenVisually">More</span>
</div>
</button>
<div class="dropdown-menu is-autoCentered">
<div class="dropdown-caret">
<div class="caret-outer"></div>
<div class="caret-inner"></div>
</div>
<ul>
<li class="copy-link-to-tweet js-actionCopyLinkToTweet">
<button type="button" class="dropdown-link">Copy link to Tweet</button>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="js-tweet-text-container">
<p class="TweetTextSize js-tweet-text tweet-text" lang="en" data-aria-label-part="0">South Korea's military fired warning shots at unidentified object flying from North Korea across their shared border <a href="https://t.co/28DdYsY2rZ" rel="nofollow noopener" dir="ltr" data-expanded-url="http://cnn.it/2qfaKvA" class="twitter-timeline-link" target="_blank" title="http://cnn.it/2qfaKvA" ><span class="tco-ellipsis"></span><span class="invisible">http://</span><span class="js-display-url">cnn.it/2qfaKvA</span><span class="invisible"></span><span class="tco-ellipsis"><span class="invisible"> </span></span></a><a href="https://t.co/fd8RHtJeeO" class="twitter-timeline-link u-hidden" data-pre-embedded="true" dir="ltr" >pic.twitter.com/fd8RHtJeeO</a></p>
</div>
<div class="stream-item-footer">
<div class="ProfileTweet-actionCountList u-hiddenVisually">
<span class="ProfileTweet-action--reply u-hiddenVisually">
<span class="ProfileTweet-actionCount" aria-hidden="true" data-tweet-stat-count="0">
<span class="ProfileTweet-actionCountForAria" >0 replies</span>
</span>
</span>
<span class="ProfileTweet-action--retweet u-hiddenVisually">
<span class="ProfileTweet-actionCount" data-tweet-stat-count="89">
<span class="ProfileTweet-actionCountForAria" data-aria-label-part>89 retweets</span>
</span>
</span>
<span class="ProfileTweet-action--favorite u-hiddenVisually">
<span class="ProfileTweet-actionCount" data-tweet-stat-count="83">
<span class="ProfileTweet-actionCountForAria" data-aria-label-part>83 likes</span>
</span>
</span>
</div>
<div class="ProfileTweet-actionList js-actions" role="group" aria-label="Tweet actions">
<div class="ProfileTweet-action ProfileTweet-action--reply">
<button class="ProfileTweet-actionButton js-actionButton js-actionReply"
data-modal="ProfileTweet-reply"
type="button">
<div class="IconContainer js-tooltip" title="Reply">
<span class="Icon Icon--reply"></span>
<span class="u-hiddenVisually">Reply</span>
</div>
<div class="IconTextContainer">
<span class="ProfileTweet-actionCount ProfileTweet-actionCount--isZero ">
<span class="ProfileTweet-actionCountForPresentation" aria-hidden="true"></span>
</span>
</div>
</button>
</div>
<div class="ProfileTweet-action ProfileTweet-action--retweet js-toggleState js-toggleRt">
<button class="ProfileTweet-actionButton js-actionButton js-actionRetweet"
data-modal="ProfileTweet-retweet"
type="button">
<div class="IconContainer js-tooltip" title="Retweet">
<span class="Icon Icon--retweet"></span>
<span class="u-hiddenVisually">Retweet</span>
</div>
<div class="IconTextContainer">
<span class="ProfileTweet-actionCount">
<span class="ProfileTweet-actionCountForPresentation" aria-hidden="true">89</span>
</span>
</div>
</button><button class="ProfileTweet-actionButtonUndo js-actionButton js-actionRetweet" data-modal="ProfileTweet-retweet" type="button">
<div class="IconContainer js-tooltip" title="Undo retweet">
<span class="Icon Icon--retweet"></span>
<span class="u-hiddenVisually">Retweeted</span>
</div>
<div class="IconTextContainer">
<span class="ProfileTweet-actionCount">
<span class="ProfileTweet-actionCountForPresentation" aria-hidden="true">89</span>
</span>
</div>
</button>
</div>
<div class="ProfileTweet-action ProfileTweet-action--favorite js-toggleState">
<button class="ProfileTweet-actionButton js-actionButton js-actionFavorite" type="button">
<div class="IconContainer js-tooltip" title="Like">
<div class="HeartAnimationContainer">
<div class="HeartAnimation"></div>
</div>
<span class="u-hiddenVisually">Like</span>
</div>
<div class="IconTextContainer">
<span class="ProfileTweet-actionCount">
<span class="ProfileTweet-actionCountForPresentation" aria-hidden="true">83</span>
</span>
</div>
</button><button class="ProfileTweet-actionButtonUndo u-linkClean js-actionButton js-actionFavorite" type="button">
<div class="IconContainer js-tooltip" title="Undo like">
<div class="HeartAnimationContainer">
<div class="HeartAnimation"></div>
</div>
<span class="u-hiddenVisually">Liked</span>
</div>
<div class="IconTextContainer">
<span class="ProfileTweet-actionCount">
<span class="ProfileTweet-actionCountForPresentation" aria-hidden="true">83</span>
</span>
</div>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="TweetWithPivotModule" data-scribe-context="{"id":"817037328375910400","name":"US News","type":"stream"}" >
<div class="TweetWithPivotModule-header">
<a href="https://twitter.com/i/streams/stream/817037328375910400" class="js-nav">US News<span class="Icon Icon--caretRight"></span></a>
</div>
<div class="tweet js-stream-tweet js-actionable-tweet js-profile-popup-actionable dismissible-content
original-tweet js-original-tweet
has-cards has-content
"
data-tweet-id="866944558801793025"
data-item-id="866944558801793025"
data-permalink-path="/nytimes/status/866944558801793025"
data-conversation-id="866944558801793025"
data-tweet-nonce="866944558801793025-909ebe39-b49d-451c-a016-4f7d93f3dc7d"
data-tweet-stat-initialized="true"
data-screen-name="nytimes" data-name="The New York Times" data-user-id="807095"
data-you-follow="false"
data-follows-you="false"
data-you-block="false"
data-mentions="nytopinion"
data-reply-to-users-json="[{"id_str":"807095","screen_name":"nytimes","name":"The New York Times","emojified_name":{"text":"The New York Times","emojified_text_as_html":"The New York Times"}},{"id_str":"16686144","screen_name":"nytopinion","name":"NYT Opinion","emojified_name":{"text":"NYT Opinion","emojified_text_as_html":"NYT Opinion"}}]"
data-disclosure-type=""
data-has-cards="true"
>
<div class="context">
</div>
<div class="content">
<div class="AdaptiveMediaOuterContainer">
<div class="AdaptiveMedia
is-square
"
>
<div class="AdaptiveMedia-container">
<div class="AdaptiveMedia-singlePhoto">
<div class="AdaptiveMedia-photoContainer js-adaptive-photo "
data-image-url="https://pbs.twimg.com/media/DAgBeyKXoAEchvZ.jpg"
data-element-context="platform_photo_card">
<img data-aria-label-part src="https://pbs.twimg.com/media/DAgBeyKXoAEchvZ.jpg" alt=""
style="width: 100%; top: -0px;"
>
</div>
</div>
</div>
</div>