-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsong.html
1658 lines (1146 loc) · 242 KB
/
song.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 class="rock snarly bagon_song_page--enabled fact_tracks--enabled album_and_artist_metadata_events_and_iq--disabled"
xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" lang="en" xml:lang="en">
<head>
<base target='_top' href="//genius.com/">
<script type="text/javascript">
//<![CDATA[
var _sf_startpt=(new Date()).getTime();
//]]>
</script>
<title>Beyoncé – SORRY Lyrics | Genius Lyrics</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"25a615a0b6","applicationID":"309898","transactionName":"IFleFkcJCAhdERtFXQ1RQ01GDgsT","queueTime":12,"applicationTime":87,"agent":""}</script>
<script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"XAMPVkVQCAoIXVk="};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{s.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(15),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,o){try{d?d-=1:i("err",[o||new UncaughtException(t,e,n)])}catch(s){try{i("ierr",[s,(new Date).getTime(),!0])}catch(c){}}return"function"==typeof f&&f.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t){i("err",[t,(new Date).getTime()])}var i=t("handle"),a=t(16),s=t("ee"),c=t("loader"),f=window.onerror,u=!1,d=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(l){"stack"in l&&(t(8),t(7),"addEventListener"in window&&t(5),c.xhrWrappable&&t(9),u=!0)}s.on("fn-start",function(t,e,n){u&&(d+=1)}),s.on("fn-err",function(t,e,n){u&&(this.thrown=!0,o(n))}),s.on("fn-end",function(){u&&!this.thrown&&d>0&&(d-=1)}),s.on("internal-error",function(t){i("ierr",[t,(new Date).getTime(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(8),s=t(7),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",y="pushState";t("loader").features.stn=!0,t(6);var g=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof g&&(this.bstStart=Date.now())}),o.on(w,function(t,e){var n=t[0];n instanceof g&&i("bst",[n,e,this.bstStart,Date.now()])}),a.on(m,function(t,e,n){this.bstStart=Date.now(),this.bstType=n}),a.on(w,function(t,e){i(v,[e,this.bstStart,Date.now(),this.bstType])}),s.on(m,function(){this.bstStart=Date.now()}),s.on(w,function(t,e){i(v,[e,this.bstStart,Date.now(),"requestAnimationFrame"])}),o.on(y+p,function(t){this.time=Date.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,!1),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),s=t(17)(a),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){if(t[1]){var n=t[1];if("function"==typeof n){var r=c(n,"nr@wrapped",function(){return s(n,"fn-",null,n.name||"anonymous")});this.wrapped=t[1]=r}else"function"==typeof n.handleEvent&&s.inPlace(n,["handleEvent"],"fn-")}}),a.on(d+"-start",function(t){var e=this.wrapped;e&&(t[1]=e)})},{}],6:[function(t,e,n){var r=t("ee").get("history"),o=t(17)(r);e.exports=r,o.inPlace(window.history,["pushState","replaceState"],"-")},{}],7:[function(t,e,n){var r=t("ee").get("raf"),o=t(17)(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],8:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration="number"==typeof t[1]?t[1]:0,t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t(17)(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],9:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",s)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,w,"fn-",s)}function i(t){v.push(t),h&&(g=-g,b.data=g)}function a(){for(var t=0;t<v.length;t++)r([],v[t]);v.length&&(v=[])}function s(t,e){return e}function c(t,e){for(var n in t)e[n]=t[n];return e}t(5);var f=t("ee"),u=f.get("xhr"),d=t(17)(u),l=NREUM.o,p=l.XHR,h=l.MO,m="readystatechange",w=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],v=[];e.exports=u;var y=window.XMLHttpRequest=function(t){var e=new p(t);try{u.emit("new-xhr",[e],e),e.addEventListener(m,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(c(p,y),y.prototype=p.prototype,d.inPlace(y.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),h){var g=1,b=document.createTextNode(g);new h(a).observe(b,{characterData:!0})}else f.on("fn-end",function(t){t[0]&&t[0].type===m||a()})},{}],10:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<d;r++)t.removeEventListener(u[r],this.listener,!1);if(!e.aborted){if(n.duration=(new Date).getTime()-this.startTime,4===t.readyState){e.status=t.status;var i=o(t,this.lastSize);if(i&&(n.rxSize=i),this.sameOrigin){var a=t.getResponseHeader("X-NewRelic-App-Data");a&&(e.cat=a.split(", ").pop())}}else e.status=0;n.cbTime=this.cbTime,f.emit("xhr-done",[t],t),s("xhr",[e,n,this.startTime])}}}function o(t,e){var n=t.responseType;if("json"===n&&null!==e)return e;var r="arraybuffer"===n||"blob"===n||"json"===n?t.response:t.responseText;return h(r)}function i(t,e){var n=c(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.sameOrigin=n.sameOrigin}var a=t("loader");if(a.xhrWrappable){var s=t("handle"),c=t(11),f=t("ee"),u=["load","error","abort","timeout"],d=u.length,l=t("id"),p=t(14),h=t(13),m=window.XMLHttpRequest;a.features.xhr=!0,t(9),f.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,p&&(p>34||p<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),f.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),f.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),f.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=h(r);i&&(n.txSize=i)}this.startTime=(new Date).getTime(),this.listener=function(t){try{"abort"===t.type&&(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{f.emit("internal-error",[n])}catch(r){}}};for(var a=0;a<d;a++)e.addEventListener(u[a],this.listener,!1)}),f.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),f.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),f.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),f.on("addEventListener-end",function(t,e){e instanceof m&&"load"===t[0]&&f.emit("xhr-load-added",[t[1],t[2]],e)}),f.on("removeEventListener-end",function(t,e){e instanceof m&&"load"===t[0]&&f.emit("xhr-load-removed",[t[1],t[2]],e)}),f.on("fn-start",function(t,e,n){e instanceof m&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=(new Date).getTime()))}),f.on("fn-end",function(t,e){this.xhrCbStart&&f.emit("xhr-cb-time",[(new Date).getTime()-this.xhrCbStart,this.onload,e],e)})}},{}],11:[function(t,e,n){e.exports=function(t){var e=document.createElement("a"),n=window.location,r={};e.href=t,r.port=e.port;var o=e.href.split("://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=e.hostname||n.hostname,r.pathname=e.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!e.protocol||":"===e.protocol||e.protocol===n.protocol,a=e.hostname===document.domain&&e.port===n.port;return r.sameOrigin=i&&(!e.hostname||a),r}},{}],12:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[(new Date).getTime()].concat(s(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(15),s=t(16),c=t("ee").get("tracer"),f=NREUM;"undefined"==typeof window.newrelic&&(newrelic=f);var u=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit"],d="api-",l=d+"ixn-";a(u,function(t,e){f[e]=o(d+e,!0,"api")}),f.addPageAction=o(d+"addPageAction",!0),e.exports=newrelic,f.interaction=function(){return(new r).get()};var p=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(l+"tracer",[Date.now(),t,n],r),function(){if(c.emit((o?"":"no-")+"fn-start",[Date.now(),r,o],n),o)try{return e.apply(this,arguments)}finally{c.emit("fn-end",[Date.now()],n)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){p[e]=o(l+e)}),newrelic.noticeError=function(t){"string"==typeof t&&(t=new Error(t)),i("err",[t,(new Date).getTime()])}},{}],13:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],14:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),e.exports=r},{}],15:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],16:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],17:[function(t,e,n){function r(t){return!(t&&"function"==typeof t&&t.apply&&!t[a])}var o=t("ee"),i=t(16),a="nr@original",s=Object.prototype.hasOwnProperty,c=!1;e.exports=function(t){function e(t,e,n,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s="function"==typeof n?n(r,a):n||{}}catch(u){d([u,"",[r,a,o],s])}f(e+"start",[r,a,o],s);try{return c=t.apply(a,r)}catch(l){throw f(e+"err",[r,a,l],s),l}finally{f(e+"end",[r,a,c],s)}}return r(t)?t:(e||(e=""),nrWrapper[a]=t,u(t,nrWrapper),nrWrapper)}function n(t,n,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<n.length;c++)s=n[c],a=t[s],r(a)||(t[s]=e(a,f?s+o:o,i,s))}function f(e,n,r){if(!c){c=!0;try{t.emit(e,n,r)}catch(o){d([o,e,n,r])}c=!1}}function u(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){d([r])}for(var o in t)s.call(t,o)&&(e[o]=t[o]);return e}function d(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=o),e.inPlace=n,e.flag=a,e}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,a,i):i()}function n(n,r,o){t&&t(n,r,o);for(var i=e(o),a=l(n),s=a.length,c=0;c<s;c++)a[c].apply(i,r);var u=f[w[n]];return u&&u.push([v,n,r,i]),i}function d(t,e){m[t]=l(t).concat(e)}function l(t){return m[t]||[]}function p(t){return u[t]=u[t]||o(n)}function h(t,e){c(t,function(t,n){e=e||"feature",w[n]=e,e in f||(f[e]=[])})}var m={},w={},v={on:d,emit:n,get:p,listeners:l,context:e,buffer:h};return v}function i(){return new r}var a="nr@context",s=t("gos"),c=t(15),f={},u={},d=e.exports=o();d.backlog=f},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!g++){var t=y.info=NREUM.info,e=u.getElementsByTagName("script")[0];if(t&&t.licenseKey&&t.applicationID&&e){c(w,function(e,n){t[e]||(t[e]=n)});var n="https"===m.split(":")[0]||t.sslForHttp;y.proto=n?"https://":"http://",s("mark",["onload",a()],null,"api");var r=u.createElement("script");r.src=y.proto+t.agent,e.parentNode.insertBefore(r,e)}}}function o(){"complete"===u.readyState&&i()}function i(){s("mark",["domContent",a()],null,"api")}function a(){return(new Date).getTime()}var s=t("handle"),c=t(15),f=window,u=f.document,d="addEventListener",l="attachEvent",p=f.XMLHttpRequest,h=p&&p.prototype;NREUM.o={ST:setTimeout,CT:clearTimeout,XHR:p,REQ:f.Request,EV:f.Event,PR:f.Promise,MO:f.MutationObserver},t(12);var m=""+location,w={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-974.min.js"},v=p&&h&&h[d]&&!/CriOS/.test(navigator.userAgent),y=e.exports={offset:a(),origin:m,features:{},xhrWrappable:v};u[d]?(u[d]("DOMContentLoaded",i,!1),f[d]("load",r,!1)):(u[l]("onreadystatechange",o),f[l]("onload",r)),s("mark",["firstbyte",a()],null,"api");var g=0},{}]},{},["loader",2,10,4,3]);</script>
<meta content='width=device-width,initial-scale=1' name='viewport'>
<link rel='chrome-webstore-item' href='https://chrome.google.com/webstore/detail/ccaokncpmmjiakalbcfdbfmpcaiddjdn'>
<meta name="apple-itunes-app" content="app-id=709482991">
<link href="https://assets.genius.com/images/apple-touch-icon.png?1475870633" rel="apple-touch-icon-precomposed" />
<link href="https://assets.genius.com/images/apple-touch-icon.png?1475870633" rel="apple-touch-icon-precomposed" />
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta http-equiv="cleartype" content="on">
<META name="y_key" content="f63347d284f184b0">
<meta property="og:site_name" content="Genius" />
<meta property="fb:app_id" content="265539304824" />
<meta property="fb:pages" content="308252472676410" />
<script>
var CURRENT_USER = null;
var CANONICAL_DOMAIN = "genius.com";
var CANONICAL_DOMAIN_PARTS_LENGTH = 2;
var CURRENT_CHANNEL = "rock";
var CURRENT_TAG = {"tag":{"always_allow_personal_annotation":null,"beefy":true,"created_at":"2013-11-01T11:44:18Z","deleted_at":null,"description":"Welcome to Pop Genius! We break down the catchiest tunes of all time, from [Phil Spector drama](http://rock.rapgenius.com/Tina-turner-river-deep-mountain-high-lyrics) to [Madonna](http://rock.rapgenius.com/Madonna-like-a-virgin-lyrics) to [Lana](http://rock.rapgenius.com/Lana-del-rey-brooklyn-baby-lyrics). Join the discussion in our [forum](http://rock.rapgenius.com/pop-team), and follow us on [Twitter](https://twitter.com/pop_genius) and [Facebook](https://www.facebook.com/thepopgenius).","designation":"featured_music","google_analytics_table_id":"ga:88194499","id":16,"image_url":"https://images.rapgenius.com/b9f560586012e6c61f052771eda6678d.300x300x1.jpg","implied_channel_id":2,"languages_store":{},"logical_name":null,"name":"Pop Genius","slug":"pop","taggings_count":1346469,"twitter_name":"Pop_Genius","updated_at":"2015-07-30T21:10:50Z"}};
var TRACKING_DATA = {"Song ID":2461226,"Title":"SORRY Lyrics","Primary Artist":"Beyoncé","Primary Artist ID":498,"Primary Album":"LEMONADE","Primary Album ID":150119,"Primary Tag":"pop","Primary Tag ID":16,"Has Relevant Videos?":true,"Music?":true,"Annotatable Type":"Song","Annotatable ID":2461226,"featured_video":true,"cohort_ids":[],"has_verified_callout":false,"has_featured_annotation":true,"created_at":"2016-04-24T01:14:28Z","created_month":"2016-04-01","created_year":2016,"song_tier":"B","Has Recirculated Articles":true};
var VALID_SUBDOMAINS = ["x","news","screen","rap","law","history","sports","tech","rock","r-b","lit","pop","meta","country"];
var EMBEDLY_KEY = "fc778e44915911e088ae4040f9f86dcd";
var MOBILE_DEVICE = false;
var APP_CONFIG = {"env":"production","api_root_url":"/api","facebook_app_id":"265539304824","facebook_opengraph_api_version":"2.5","pusher_app_key":"6d893fcc6a0c695853ac","embedly_key":"fc778e44915911e088ae4040f9f86dcd","app_store_url":"https://itunes.apple.com/us/app/genius-by-rap-genius-search/id709482991?ls=1&mt=8","play_store_url":"https://play.google.com/store/apps/details?id=com.genius.android","soundcloud_client_id":"632c544d1c382f82526f369877aab5c0","annotator_context_length":32,"comment_reasons":[{"_type":"comment_reason","context_url":"http://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"R","handle":"Restates the line","id":1,"name":"restates-the-line","raw_name":"restates the line","requires_body":false,"slug":"restates_the_line"},{"_type":"comment_reason","context_url":"http://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"S","handle":"It’s a stretch","id":2,"name":"its-a-stretch","raw_name":"it’s a stretch","requires_body":false,"slug":"its_a_stretch"},{"_type":"comment_reason","context_url":"http://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"M","handle":"Missing something","id":3,"name":"missing-something","raw_name":"missing something","requires_body":false,"slug":"missing_something"},{"_type":"comment_reason","context_url":"http://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"…","handle":"Other","id":4,"name":"other","raw_name":"other","requires_body":true,"slug":"other"}],"filepicker_api_key":"Ar03MDs73TQm241ZgLwfjz","filepicker_policy":"eyJleHBpcnkiOiIyMzIyMjM4OTI3IiwiY2FsbCI6WyJwaWNrIiwicGlja0FuZFN0b3JlIiwicmVhZCIsInN0b3JlIiwic3RhdCJdfQ==","filepicker_signature":"d155a1c0e33688b9bf17de68465df1ec0bfd18d7c5e95c944468f1ad5e9fc656","filepicker_s3_image_bucket":"filepicker-images-rapgenius","available_roles":["moderator","mega_boss","in_house_staff","verified_artist","meme_artist","engineer","editor","educator","staff","whitehat","tech_liaison","mediator"],"zeroclipboard_swf_path":"https://assets.genius.com/flash/ZeroClipboard.swf?1475870633","canonical_domain":"genius.com","enable_angular_debug":false,"airbrake_project_id":"7530","airbrake_key":"dcd059598ee876ad6f624f97647f0a8d","airbrake_development_mode":false,"fact_track_launch_article_url":"http://genius.com/a/genius-and-spotify-together","bad_words":["4r5e","5h1t","5hit","a55","anal","anus","ar5e","arrse","arse","ass","ass-fucker","asses","assfucker","assfukka","asshole","assholes","asswhole","a_s_s","b!tch","b00bs","b17ch","b1tch","ballbag","balls","ballsack","bastard","beastial","beastiality","bellend","bestial","bestiality","bi+ch","biatch","bitch","bitcher","bitchers","bitches","bitchin","bitching","bloody","blow job","blowjob","blowjobs","boiolas","bollock","bollok","boner","boob","boobs","booobs","boooobs","booooobs","booooooobs","breasts","buceta","bugger","bum","bunny fucker","butt","butthole","buttmuch","buttplug","c0ck","c0cksucker","carpet muncher","cawk","chink","cipa","cl1t","clit","clitoris","clits","cnut","cock","cock-sucker","cockface","cockhead","cockmunch","cockmuncher","cocks","cocksuck","cocksucked","cocksucker","cocksucking","cocksucks","cocksuka","cocksukka","cok","cokmuncher","coksucka","coon","cox","crap","cum","cummer","cumming","cums","cumshot","cunilingus","cunillingus","cunnilingus","cunt","cuntlick","cuntlicker","cuntlicking","cunts","cyalis","cyberfuc","cyberfuck","cyberfucked","cyberfucker","cyberfuckers","cyberfucking","d1ck","damn","dick","dickhead","dildo","dildos","dink","dinks","dirsa","dlck","dog-fucker","doggin","dogging","donkeyribber","doosh","duche","dyke","ejaculate","ejaculated","ejaculates","ejaculating","ejaculatings","ejaculation","ejakulate","f u c k","f u c k e r","f4nny","fag","fagging","faggitt","faggot","faggs","fagot","fagots","fags","fanny","fannyflaps","fannyfucker","fanyy","fatass","fcuk","fcuker","fcuking","feck","fecker","felching","fellate","fellatio","fingerfuck","fingerfucked","fingerfucker","fingerfuckers","fingerfucking","fingerfucks","fistfuck","fistfucked","fistfucker","fistfuckers","fistfucking","fistfuckings","fistfucks","flange","fook","fooker","fuck","fucka","fucked","fucker","fuckers","fuckhead","fuckheads","fuckin","fucking","fuckings","fuckingshitmotherfucker","fuckme","fucks","fuckwhit","fuckwit","fudge packer","fudgepacker","fuk","fuker","fukker","fukkin","fuks","fukwhit","fukwit","fux","fux0r","f_u_c_k","gangbang","gangbanged","gangbangs","gaylord","gaysex","goatse","god-dam","god-damned","goddamn","goddamned","hardcoresex","hell","heshe","hoar","hoare","hoer","homo","hore","horniest","horny","hotsex","jack-off","jackoff","jap","jerk-off","jism","jiz","jizm","jizz","kawk","knob","knobead","knobed","knobend","knobhead","knobjocky","knobjokey","kock","kondum","kondums","kum","kummer","kumming","kums","kunilingus","l3i+ch","l3itch","labia","lmfao","lust","lusting","m0f0","m0fo","m45terbate","ma5terb8","ma5terbate","masochist","master-bate","masterb8","masterbat*","masterbat3","masterbate","masterbation","masterbations","masturbate","mo-fo","mof0","mofo","mothafuck","mothafucka","mothafuckas","mothafuckaz","mothafucked","mothafucker","mothafuckers","mothafuckin","mothafucking","mothafuckings","mothafucks","mother fucker","motherfuck","motherfucked","motherfucker","motherfuckers","motherfuckin","motherfucking","motherfuckings","motherfuckka","motherfucks","muff","mutha","muthafecker","muthafuckker","muther","mutherfucker","n1gga","n1gger","nazi","nigg3r","nigg4h","nigga","niggah","niggas","niggaz","nigger","niggers","nob","nob jokey","nobhead","nobjocky","nobjokey","numbnuts","nutsack","orgasim","orgasims","orgasm","orgasms","p0rn","pawn","pecker","penis","penisfucker","phonesex","phuck","phuk","phuked","phuking","phukked","phukking","phuks","phuq","pigfucker","pimpis","piss","pissed","pisser","pissers","pisses","pissflaps","pissin","pissing","pissoff","poop","porn","porno","pornography","pornos","prick","pricks","pron","pube","pusse","pussi","pussies","pussy","pussys","rectum","retard","rimjaw","rimming","s hit","s.o.b.","sadist","schlong","screwing","scroat","scrote","scrotum","semen","sex","sh!+","sh!t","sh1t","shag","shagger","shaggin","shagging","shemale","shi+","shit","shitdick","shite","shited","shitey","shitfuck","shitfull","shithead","shiting","shitings","shits","shitted","shitter","shitters","shitting","shittings","shitty","skank","slut","sluts","smegma","smut","snatch","son-of-a-bitch","spac","spunk","s_h_i_t","t1tt1e5","t1tties","teets","teez","testical","testicle","tit","titfuck","tits","titt","tittie5","tittiefucker","titties","tittyfuck","tittywank","titwank","tosser","turd","tw4t","twat","twathead","twatty","twunt","twunter","v14gra","v1gra","vagina","viagra","vulva","w00se","wang","wank","wanker","wanky","whoar","whore","willies","willy","xrated","xxx"],"user_authority_roles":["moderator","editor","mediator"],"user_verification_roles":["community_artist","verified_artist","meme_artist"],"user_vote_types_for_delete":["votes","upvotes","downvotes"],"brightcove_account_id":"4863540648001","mixpanel_delayed_events_timeout":"86400","brightcove_p_relevant_web_player_id":"B18DMWtt","brightcove_hyper_relevant_web_player_id":"SJnP34Jh","brightcove_tag_relevant_web_player_id":"HJwZpTzT"};
var SESSION_CONFIG = {"current_user":null,"chat_enabled":null};
var TOP_LEVEL_BLOCK_CONTAINERS = ["address","article","aside","blockquote","div","dl","fieldset","footer","form","h1","h2","h3","h4","h5","h6","header","menu","nav","ol","p","pre","section","table","ul"];
var TOP_LEVEL_STANDALONE_BLOCKS = ["img","hr"];
</script>
<link href="https://assets.genius.com/stylesheets/compiled/bagon_desktop-e190c0702dbd3dd606f14deb7f22dc9a.css" media="screen"
rel="stylesheet" type="text/css" />
<link href="https://assets.genius.com/stylesheets/compiled/bagon_fonts-bbc6a4e57e275a56e302efb59741b16c.css" media="screen"
rel="stylesheet" type="text/css" />
<script defer="defer" src="https://assets.genius.com/javascripts/compiled/bagon_desktop-c8a59c266f17fdba9136aa570f0c288b.js"
type="text/javascript"></script>
<meta content="http://genius.com/Beyonce-sorry-lyrics" property="og:url" />
<meta content="music.song" property="og:type" />
<meta content="Beyoncé – SORRY" property="og:title" />
<meta content="“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup."
property="og:description" />
<meta content="https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg" property="og:image" />
<meta content="https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg" property="og:image" />
<meta content="https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg" property="og:image" />
<meta content="http://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png" property="og:image" />
<meta content="http://genius.com/Beyonce-sorry-lyrics" property="twitter:url" />
<meta content="music.song" property="twitter:type" />
<meta content="Beyoncé – SORRY" property="twitter:title" />
<meta content="“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup."
property="twitter:description" />
<meta content="https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg" property="twitter:image" />
<meta content="@Genius" property="twitter:site" />
<meta content="summary_large_image" property="twitter:card" />
<meta content="Genius" property="twitter:app:name:iphone" />
<meta content="709482991" property="twitter:app:id:iphone" />
<meta content="genius://songs/2461226" property="twitter:app:url:iphone" />
<meta name="description" content="SORRY Lyrics: Sorry, I ain't sorry / Sorry, I ain't sorry / I ain't sorry, nigga, nah / Sorry, I ain't sorry / Sorry, I ain't sorry / I ain't sorry / He trying to roll me up, I ain't picking up"
/>
<link href="ios-app://709482991/genius/songs/2461226" rel="alternate" />
<meta content="/songs/2461226" name="newrelic-resource-path" />
<link href="http://genius.com/Beyonce-sorry-lyrics" rel="canonical" />
<link href="http://genius.com/amp/Beyonce-sorry-lyrics" rel="amphtml" />
<meta content="SORRY" name="parsely-title" />
<meta content="http://genius.com/Beyonce-sorry-lyrics" name="parsely-link" />
<meta content="post" name="parsely-type" />
<meta content="https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg" name="parsely-image-url" />
<meta content="2016-04-24T01:14:28Z" name="parsely-pub-date" />
<meta content="Pop" name="parsely-section" />
<meta content="Beyoncé" name="parsely-author" />
<meta content="Columbia Records,R&B Genius,Pop Genius" name="parsely-tags" />
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({article:'auto'});
!function (e, f, u, i) {
if (!document.getElementById(i)){
e.async = 1;
e.src = u;
e.id = i;
f.parentNode.insertBefore(e, f);
}
}(document.createElement('script'),
document.getElementsByTagName('script')[0],
'//cdn.taboola.com/libtrc/genius/loader.js',
'tb_loader_script');
</script>
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == 'https:' ? 'https://secure' : 'http://edge') + '.quantserve.com/quant.js';
elem.async = true;
elem.type = 'text/javascript';
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10346621-1']);
var VISITOR_LEVEL = 1
var SESSION_LEVEL = 2
var PAGE_LEVEL = 3
var logged_in = !!window.CURRENT_USER
_gaq.push(['_setCustomVar', 1, 'Logged in', String(logged_in), SESSION_LEVEL])
_gaq.push(['_setCustomVar', 2, 'Controller action', 'songs#show', PAGE_LEVEL])
if (window.TRACKING_DATA) {
if ("Primary Tag" in TRACKING_DATA) {
_gaq.push(['_setCustomVar', 3, "Primary tag", TRACKING_DATA["Primary Tag"], PAGE_LEVEL])
}
if ("Music?" in TRACKING_DATA) {
_gaq.push(['_setCustomVar', 4, "Music", String(TRACKING_DATA["Music?"]), PAGE_LEVEL])
}
}
_gaq.push(['_trackPageview']); // this was causing duplicate pageviews (untill i killed jquery-address)
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="//cdn.rawgit.com/jsomers/e1cb2a31a111ef5f50f7ac40d791cf55/raw/4df4a2a1b3ba0e18b81e437eadc355dd6e54ff97/prebid.js"
async></script>
<script>
var googletag = googletag || {};
var pbjs = pbjs || {};
(function(googletag, pbjs) {
var PREBID_TIMEOUT = 800;
var adUnits = [];
adUnits.push({"code":"div-gpt-ad-RUuasF70QuBg0Jk1qskJdQ","sizes":[[728,90]],"bids":[{"bidder":"aol","params":{"placement":"4166613","network":"10604.1"}},{"bidder":"appnexus","params":{"placementId":"9345913"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"513532"}}]});
adUnits.push({"code":"div-gpt-ad-4ai0tUt2_pGAKaV7Q-P3Cw","sizes":[[300,600]],"bids":[{"bidder":"aol","params":{"placement":"4166614","network":"10604.1"}},{"bidder":"appnexus","params":{"placementId":"9345919"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"513532"}}]});
adUnits.push({"code":"div-gpt-ad-4ai0tUt2_pGAKaV7Q-P3Cw","sizes":[[300,250]],"bids":[{"bidder":"aol","params":{"placement":"4166616","network":"10604.1"}},{"bidder":"appnexus","params":{"placementId":"9319415"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"513532"}}]});
pbjs.que = pbjs.que || [];
googletag.cmd = googletag.cmd || [];
googletag.cmd.push(function() {
googletag.pubads().disableInitialLoad();
});
pbjs.que.push(function() {
pbjs.addAdUnits(adUnits);
pbjs.requestBids({
bidsBackHandler: sendAdserverRequest
});
});
function sendAdserverRequest() {
if (pbjs.adserverRequestSent) return;
pbjs.adserverRequestSent = true;
googletag.cmd.push(function() {
pbjs.que.push(function() {
pbjs.setTargetingForGPTAsync();
googletag.pubads().refresh();
});
});
}
setTimeout(function() {
sendAdserverRequest();
}, PREBID_TIMEOUT);
})(googletag, pbjs);
</script>
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
googletag.helpers = (function() {
var set_targeting = function(obj, kv) {
for (var key in kv) {
if (kv[key] != null) {
obj.setTargeting(key, kv[key].toString());
}
}
};
return {
define: function(data) {
var slot = googletag.defineSlot(data.path, data.sizes, data.id);
set_targeting(slot, data.kv);
slot.addService(googletag.pubads());
},
configure: function(kv) {
var pubads = googletag.pubads();
set_targeting(pubads, kv);
pubads.enableSingleRequest();
pubads.collapseEmptyDivs(true);
googletag.enableServices();
}
};
})();
(function() {
var gpt_callback = function() {
if (!this.readyState || this.readyState === "loaded" || this.readyState === "complete") {
var gads = document.createElement("script");
gads.async = true;
gads.type = "text/javascript";
var useSSL = "https:" == document.location.protocol;
gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
var node = document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(gads, node);
}
};
var oads = document.createElement("script");
oads.async = true;
oads.type = "text/javascript";
var useSSL = "https:" == document.location.protocol;
if (oads.addEventListener) {
oads.addEventListener("load", gpt_callback, false);
} else if (oads.readyState) {
oads.onreadystatechange = gpt_callback;
}
oads.src = (useSSL ? "https:" : "http:") +
"//genius-d.openx.net/w/1.0/jstag?nc=342026871-genius";
var node = document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(oads, node);
})();
</script>
<script type="text/javascript">
googletag.cmd.push(function() {
googletag.pubads().addEventListener('slotRenderEnded', function(event) {
if (!event.isEmpty && TRACKING_DATA) {
TRACKING_DATA['Ad Rendered'] = true;
}
});
});
googletag.cmd.push(function() {
googletag.helpers.define({"id":"div-gpt-ad-RUuasF70QuBg0Jk1qskJdQ","path":"/342026871/desktop_song_leaderboard","sizes":[[970,250],[728,90]],"kv":{"is_atf":true}});
googletag.helpers.define({"id":"div-gpt-ad-ab0IPevTz0qBtmOC0rsOog","path":"/342026871/desktop_song_inread","sizes":[[1,1]],"kv":{"is_atf":false}});
googletag.helpers.define({"id":"div-gpt-ad-4ai0tUt2_pGAKaV7Q-P3Cw","path":"/342026871/desktop_song_medium1","sizes":[[300,600],[300,250]],"kv":{"is_atf":false}});
googletag.helpers.configure({"environment":"production","campaign_id":null,"platform":"web","song_id":2461226,"artist_id":498,"is_explicit":true,"pageviews":808378,"primary_tag_id":16,"song_tier":"B","template":"song"});
});
</script>
</head>
<body class="act-show cont-songs snarly" ng-app="genius" ng-strict-di>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"iq_event_types":[{"_type":"iq_event_type","name":"verified_explanation_by_non_meme","value":15.0},{"_type":"iq_event_type","name":"verified_lyrics_by_meme_primary","value":75.0},{"_type":"iq_event_type","name":"your_annotation_incorporated","value":15.0},{"_type":"iq_event_type","name":"verified_lyrics_by_meme_featured","value":50.0},{"_type":"iq_event_type","name":"verified_explanation_by_meme","value":100.0},{"_type":"iq_event_type","name":"verified_lyrics_by_non_meme_primary","value":15.0},{"_type":"iq_event_type","name":"you_incorporated_an_annotation","value":5.0},{"_type":"iq_event_type","name":"verified_lyrics_by_non_meme_featured","value":10.0},{"_type":"iq_event_type","name":"your_comment_integrated","value":2.0},{"_type":"iq_event_type","name":"you_linked_an_identity","value":100.0},{"_type":"iq_event_type","name":"you_integrated_a_comment","value":2.0},{"_type":"iq_event_type","name":"historical_you_published_a_song","value":60.0},{"_type":"iq_event_type","name":"you_archived_a_comment","value":2.0},{"_type":"iq_event_type","name":"you_published_a_song","value":5.0},{"_type":"iq_event_type","name":"pending_explanation","value":5.0},{"_type":"iq_event_type","name":"your_annotation_was_cosigned_by_meme","value":50.0},{"_type":"iq_event_type","name":"your_comment_archived","value":0.0},{"_type":"iq_event_type","name":"your_annotation_was_cosigned_by_verified_verified","value":20.0},{"_type":"iq_event_type","name":"auto_accepted_explanation","value":15.0},{"_type":"iq_event_type","name":"question_upvote","value":2.0},{"_type":"iq_event_type","name":"article_upvote","value":1.0},{"_type":"iq_event_type","name":"article_downvote","value":-1.0},{"_type":"iq_event_type","name":"your_annotation_edit_merged","value":5.0},{"_type":"iq_event_type","name":"your_annotation_edit_rejected","value":-0.5},{"_type":"iq_event_type","name":"forum_post_upvote","value":0.5},{"_type":"iq_event_type","name":"forum_post_downvote","value":-0.5},{"_type":"iq_event_type","name":"comment_upvote","value":0.5},{"_type":"iq_event_type","name":"comment_downvote","value":-0.5},{"_type":"iq_event_type","name":"suggestion_upvote_by_moderator","value":4.0},{"_type":"iq_event_type","name":"suggestion_downvote_by_moderator","value":-1.0},{"_type":"iq_event_type","name":"suggestion_upvote_by_editor","value":3.0},{"_type":"iq_event_type","name":"suggestion_downvote_by_editor","value":-1.0},{"_type":"iq_event_type","name":"suggestion_upvote_by_high_iq_user","value":2.0},{"_type":"iq_event_type","name":"suggestion_downvote_by_high_iq_user","value":-1.0},{"_type":"iq_event_type","name":"annotation_downvote_by_default","value":-1.0},{"_type":"iq_event_type","name":"suggestion_upvote_by_default","value":1.0},{"_type":"iq_event_type","name":"suggestion_downvote_by_default","value":-0.5},{"_type":"iq_event_type","name":"verified_lyrics_by_meme_writer","value":75.0},{"_type":"iq_event_type","name":"verified_lyrics_by_non_meme_writer","value":15.0},{"_type":"iq_event_type","name":"annotation_upvote_by_moderator","value":10.0},{"_type":"iq_event_type","name":"annotation_upvote_by_editor","value":6.0},{"_type":"iq_event_type","name":"annotation_upvote_by_high_iq_user","value":4.0},{"_type":"iq_event_type","name":"annotation_upvote_by_default","value":2.0},{"_type":"iq_event_type","name":"annotation_downvote_by_moderator","value":-1.0},{"_type":"iq_event_type","name":"annotation_downvote_by_editor","value":-1.0},{"_type":"iq_event_type","name":"annotation_downvote_by_high_iq_user","value":-1.0},{"_type":"iq_event_type","name":"you_added_a_photo","value":100.0},{"_type":"iq_event_type","name":"you_merged_an_annotation_edit","value":2.0},{"_type":"iq_event_type","name":"you_rejected_an_annotation_edit","value":2.0},{"_type":"iq_event_type","name":"song_metadata_update_or_addition","value":2.0},{"_type":"iq_event_type","name":"your_annotation_was_cosigned_by_community_verified","value":2.0},{"_type":"iq_event_type","name":"question_downvote","value":-2.0},{"_type":"iq_event_type","name":"you_accepted_a_comment","value":2.0},{"_type":"iq_event_type","name":"you_rejected_an_annotation","value":2.0},{"_type":"iq_event_type","name":"you_accepted_an_annotation","value":5.0},{"_type":"iq_event_type","name":"your_comment_rejected","value":-0.5},{"_type":"iq_event_type","name":"your_annotation_accepted","value":10.0},{"_type":"iq_event_type","name":"your_annotation_rejected","value":-2.0},{"_type":"iq_event_type","name":"your_comment_accepted","value":2.0},{"_type":"iq_event_type","name":"you_rejected_a_comment","value":2.0},{"_type":"iq_event_type","name":"answer_upvote_by_moderator","value":10.0},{"_type":"iq_event_type","name":"answer_downvote_by_moderator","value":-1.0},{"_type":"iq_event_type","name":"answer_upvote_by_editor","value":6.0},{"_type":"iq_event_type","name":"answer_downvote_by_editor","value":-1.0},{"_type":"iq_event_type","name":"answer_upvote_by_high_iq_user","value":4.0},{"_type":"iq_event_type","name":"answer_downvote_by_high_iq_user","value":-1.0},{"_type":"iq_event_type","name":"answer_upvote_by_default","value":2.0},{"_type":"iq_event_type","name":"answer_downvote_by_default","value":-1.0},{"_type":"iq_event_type","name":"asked_a_question","value":1.0},{"_type":"iq_event_type","name":"your_question_archived","value":-1.0},{"_type":"iq_event_type","name":"archived_a_question","value":1.0},{"_type":"iq_event_type","name":"answered_a_question","value":5.0},{"_type":"iq_event_type","name":"answered_a_question_verified","value":10.0},{"_type":"iq_event_type","name":"answered_a_question_meme","value":25.0},{"_type":"iq_event_type","name":"your_question_answered","value":4.0},{"_type":"iq_event_type","name":"your_answer_cleared","value":-5.0},{"_type":"iq_event_type","name":"your_question_pinned","value":5.0},{"_type":"iq_event_type","name":"your_answer_pinned","value":5.0},{"_type":"iq_event_type","name":"pinned_a_question_not_your_own","value":2.0},{"_type":"iq_event_type","name":"created_a_song","value":5.0},{"_type":"iq_event_type","name":"song_pageviews_500","value":20.0},{"_type":"iq_event_type","name":"song_pageviews_1000","value":25.0},{"_type":"iq_event_type","name":"song_pageviews_100000","value":125.0},{"_type":"iq_event_type","name":"song_pageviews_1000000","value":500.0},{"_type":"iq_event_type","name":"created_a_real_song","value":40.0},{"_type":"iq_event_type","name":"song_pageviews_5000000","value":2000.0},{"_type":"iq_event_type","name":"song_pageviews_2500","value":30.0},{"_type":"iq_event_type","name":"song_pageviews_25000","value":75.0},{"_type":"iq_event_type","name":"song_pageviews_50000","value":100.0},{"_type":"iq_event_type","name":"song_pageviews_250000","value":150.0},{"_type":"iq_event_type","name":"song_pageviews_2500000","value":1000.0},{"_type":"iq_event_type","name":"song_pageviews_5000","value":35.0},{"_type":"iq_event_type","name":"song_pageviews_10000","value":50.0},{"_type":"iq_event_type","name":"song_pageviews_500000","value":200.0},{"_type":"iq_event_type","name":"metadata_update_or_addition","value":2.0}]}"></preload-content>
</preload>
<div class="header" ng-controller="HeaderCtrl as header_ctrl" click-outside="close_mobile_subnav_menu()">
<global-message ng-if="header_ctrl.cloudflare_error" ng-cloak>
{{:: 'cloud_flare_always_on_short_message' | i18n }}
<br>Check <a href="https://twitter.com/genius" target="_blank">@genius</a> for updates. We'll have things fixed
soon.
</global-message>
<div class="header-primary active">
<div class="header-expand_nav_menu" ng-click="toggle_mobile_subnav_menu()">
<div class="header-expand_nav_menu-contents"></div>
</div>
<search-form search-style="header" path="/search"></search-form>
<div class="logo_container">
<a href="http://genius.com/" class="logo_link">GENIUS</a>
</div>
<div class="actions">
<mutually-exclusive-switches property="open_header_menus">
</mutually-exclusive-switches>
<a href="/signup" class="header-user_info header-user_info--sign_up" ng-click="header_ctrl.prompt_auth = 'signing_up'" prevent-default-click="true"
rel="nofollow">Sign Up</a>
<a href="/login" class="header-user_info header-user_info--sign_in" ng-click="header_ctrl.prompt_auth = 'signing_in'" prevent-default-click="true"
rel="nofollow">Sign In</a>
</div>
</div>
<ul class="header-nav_menu" ng-class="{'header-nav_menu--visible': mobile_subnav_menu_open}">
<div ng-cloak>
<header-menu-item name="Lyrics">
<ul class="nav_menu-sub_menu">
<li class="nav_menu-sub_item">
<a href="http://rap.genius.com/" class="nav_menu-sub_link">Rap</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://pop.genius.com/" class="nav_menu-sub_link">Pop</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://rock.genius.com/" class="nav_menu-sub_link">Rock</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://r-b.genius.com/" class="nav_menu-sub_link">R&B</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://country.genius.com/" class="nav_menu-sub_link">Country</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://genius.com/tags/france" class="nav_menu-sub_link">France</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://genius.com/tags/deutschland" class="nav_menu-sub_link">Deutschland</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://genius.com/tags/polska" class="nav_menu-sub_link">Polska</a>
</li>
</ul>
</header-menu-item>
<header-menu-item name="Texts">
<ul class="nav_menu-sub_menu">
<li class="nav_menu-sub_item">
<a href="http://lit.genius.com/" class="nav_menu-sub_link">Lit</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://news.genius.com/" class="nav_menu-sub_link">News</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://screen.genius.com/" class="nav_menu-sub_link">Screen</a>
</li>
<li class="nav_menu-sub_item">
<a href="http://sports.genius.com/" class="nav_menu-sub_link">Sports</a>
</li>
</ul>
</header-menu-item>
<header-menu-item name="Forums" url="http://genius.com/pop-genius"></header-menu-item>
<header-menu-item name="Add Song" url="/new"></header-menu-item>
<header-menu-item name="News Genius" url="http://news.genius.com/"></header-menu-item>
<header-menu-item name="Annotate the Web" url="http://genius.com/web-annotator"></header-menu-item>
<header-menu-item name="Shop" url="http://shop.genius.com/"></header-menu-item>
</div>
</ul>
<modal-window ng-if="header_ctrl.prompt_auth" on-close="header_ctrl.prompt_auth = false" variants="{narrow_width: true}">
<authentication-form signing-in="header_ctrl.prompt_auth === 'signing_in'"></authentication-form>
</modal-window>
</div>
<div class="global_messages">
<flash-messages></flash-messages>
</div>
<script type="application/ld+json">
{"@context":"http://schema.org","@type":"MusicRecording","byArtist":{"@context":"http://schema.org","@type":"MusicGroup","name":"Beyoncé","url":"http://genius.com/artists/Beyonce","description":"In the 2000s, no pop star was as poised, as polished, or as generally fierce as Beyoncé. She scored early success with Destiny’s Child, who started out as a sexier and sassier (if","image":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png"},"image":"https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg","inAlbum":[{"@context":"http://schema.org","@type":"MusicAlbum","byArtist":{"@context":"http://schema.org","@type":"MusicGroup","name":"Beyoncé","url":"http://genius.com/artists/Beyonce","description":"In the 2000s, no pop star was as poised, as polished, or as generally fierce as Beyoncé. She scored early success with Destiny’s Child, who started out as a sexier and sassier (if","image":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png"},"image":"https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","name":"LEMONADE","url":"http://genius.com/albums/Beyonce/Lemonade","datePublished":"2016-04-24","numTracks":16}],"name":"SORRY","url":"http://genius.com/Beyonce-sorry-lyrics","datePublished":"2016-04-23"}
</script>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"song":{"_type":"song","annotation_count":21,"api_path":"/songs/2461226","comment_count":101,"custom_header_image_url":"https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg","custom_song_art_image_url":"https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","description":{"html":"<p>“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup.</p>\n\n<p>The song takes a “sorry, not sorry” attitude in which Beyoncé insists that she isn’t even thinking about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won’t be accepting any apologies any time soon.</p>\n\n<p><a href=\"http://genius.com/artists/Melo-x\" data-api_path=\"/artists/14166\">MeLo-X</a>, one of the songwriters credited on the track, <a href=\"http://pitchfork.com/news/65045-beyonces-lemonade-collaborator-melo-x-gives-first-interview-on-making-of-the-album/?mbid=social_twitter\" rel=\"nofollow\">said</a> that he wrote the lyrics <em>way</em> before Justin Bieber’s <a href=\"http://genius.com/Justin-bieber-sorry-lyrics\" data-api_path=\"/songs/2323822\">song of the same name</a> was released,</p>\n\n<blockquote><p>It might have been last summer. It was way before that song came out. I mean, it’s funny… But yeah so, that track was kind of like creating a vibe in the studio. We were just working on a lot of stuff and the idea came up pretty simple. It was just some cool keys, drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout the month, we added to it and Hit-Boy came in and sprinkled all these different sounds and layers to it and made it come together fully.</p></blockquote>\n\n<p><a href=\"https://www.youtube.com/watch?v=55bhGy0ongI\" rel=\"nofollow\">https://www.youtube.com/watch?v=55bhGy0ongI</a></p>","markdown":"\"Sorry\" is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup.\n\nThe song takes a \"sorry, not sorry\" attitude in which Beyoncé insists that she isn't even thinking about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won't be accepting any apologies any time soon.\n\n[MeLo-X](http://genius.com/artists/Melo-x), one of the songwriters credited on the track, [said](http://pitchfork.com/news/65045-beyonces-lemonade-collaborator-melo-x-gives-first-interview-on-making-of-the-album/?mbid=social_twitter) that he wrote the lyrics *way* before Justin Bieber's [song of the same name](http://genius.com/Justin-bieber-sorry-lyrics) was released,\n\n> It might have been last summer. It was way before that song came out. I mean, it's funny... But yeah so, that track was kind of like creating a vibe in the studio. We were just working on a lot of stuff and the idea came up pretty simple. It was just some cool keys, drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout the month, we added to it and Hit-Boy came in and sprinkled all these different sounds and layers to it and made it come together fully.\n\n\nhttps://www.youtube.com/watch?v=55bhGy0ongI"},"description_preview":"“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup.\n\nThe song takes a “sorry, not sorry” attitude in which Beyoncé insists that she isn’t even thinking about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won’t be accepting any apologies any time soon.\n\nMeLo-X, one of the songwriters credited on the track, said that he wrote the lyrics way before Justin Bieber’s song of the same name was released,\n\nIt might have been last summer. It was way before that song came out. I mean, it’s funny… But yeah so, that track was kind of like creating a vibe in the studio. We were just working on a lot of stuff and the idea came up pretty simple. It was just some cool keys, drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout the month, we added to it and Hit-Boy came in and sprinkled all these different sounds and layers to it and made it come together fully.","embed_content":"<div id='rg_embed_link_2461226' class='rg_embed_link' data-song-id='2461226'>Read <a href='http://genius.com/Beyonce-sorry-lyrics'>“SORRY” by Beyoncé</a> on Genius</div> <script crossorigin src='//genius.com/songs/2461226/embed.js'></script>","featured_video":true,"full_title":"SORRY by Beyoncé","header_image_thumbnail_url":"https://images.genius.com/e90d12099712aa036842f25c8e8e007f.300x300x1.jpg","header_image_url":"https://images.genius.com/e90d12099712aa036842f25c8e8e007f.316x316x1.jpg","hidden":false,"id":2461226,"instrumental":false,"is_music":true,"lyrics":{"html":"<p>[Chorus]<br>\n<a href=\"/9046731/Beyonce-sorry/Sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry-nigga-nah-sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry\" data-id=\"9046731\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry</a><br>\n<br>\n[Verse 1]<br>\n<a href=\"/9043369/Beyonce-sorry/He-trying-to-roll-me-up-i-aint-picking-up-headed-to-the-club-i-aint-thinking-bout-you\" data-id=\"9043369\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">He trying to roll me up, I ain't picking up<br>\nHeaded to the club, I ain't thinking 'bout you</a><br>\n<a href=\"/9042986/Beyonce-sorry/Me-and-my-ladies-sip-my-dusse-cup-i-dont-give-a-fuck-chucking-my-deuces-up\" data-id=\"9042986\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Me and my ladies sip my D'ussé cup<br>\nI don't give a fuck, chucking my deuces up</a><br>\n<a href=\"/9046758/Beyonce-sorry/Suck-on-my-balls-pause-i-had-enough-i-aint-thinking-bout-you-i-aint-thinking-bout\" data-id=\"9046758\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Suck on my balls, pause, I had enough<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout</a><br>\n<br>\n[Bridge]<br>\n<a href=\"/9043238/Beyonce-sorry/Middle-fingers-up-put-them-hands-high-wave-it-in-his-face-tell-him-boy-bye-tell-him-boy-bye-boy-bye-middle-fingers-up-i-aint-thinking-bout-you\" data-id=\"9043238\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Middle fingers up, put them hands high<br>\nWave it in his face, tell him, boy, bye<br>\nTell him, boy, bye, boy, bye, middle fingers up<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/9046731/Beyonce-sorry/Sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry-nigga-nah-sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry\" data-id=\"9046731\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nI ain't thinking 'bout you<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nNo no, hell nah</a><br>\n<br>\n[Verse 2]<br>\n<a href=\"/9047683/Beyonce-sorry/Now-you-want-to-say-youre-sorry-now-you-want-to-call-me-crying\" data-id=\"9047683\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Now you want to say you're sorry<br>\nNow you want to call me crying</a><br>\n<a href=\"/9047727/Beyonce-sorry/Now-you-gotta-see-me-wilding\" data-id=\"9047727\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Now you gotta see me wilding</a><br>\n<a href=\"/9045914/Beyonce-sorry/Now-im-the-one-thats-lying-and-i-dont-feel-bad-about-it-its-exactly-what-you-get-stop-interrupting-my-grinding-you-interrupting-my-grinding-i-aint-thinking-bout-you\" data-id=\"9045914\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Now I'm the one that's lying<br>\nAnd I don't feel bad about it<br>\nIt's exactly what you get<br>\nStop interrupting my grinding<br>\n(You interrupting my grinding)<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/9046731/Beyonce-sorry/Sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry-nigga-nah-sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry\" data-id=\"9046731\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Sorry, I ain't sorry<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout you<br>\nSorry, I ain't sorry<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Bridge]<br>\n<a href=\"/9043238/Beyonce-sorry/Middle-fingers-up-put-them-hands-high-wave-it-in-his-face-tell-him-boy-bye-tell-him-boy-bye-boy-bye-middle-fingers-up-i-aint-thinking-bout-you\" data-id=\"9043238\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Middle fingers up, put them hands high<br>\nWave it in his face, tell him, boy, bye<br>\nTell him, boy, bye, boy, bye<br>\nMiddle fingers up, I ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/9046731/Beyonce-sorry/Sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry-nigga-nah-sorry-i-aint-sorry-sorry-i-aint-sorry-i-aint-sorry\" data-id=\"9046731\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry<br>\nNo no, hell nah</a><br>\n<br>\n[Verse 3]<br>\n<a href=\"/9046509/Beyonce-sorry/Looking-at-my-watch-he-shoulda-been-home-today-i-regret-the-night-i-put-that-ring-on\" data-id=\"9046509\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Looking at my watch, he shoulda been home<br>\nToday I regret the night I put that ring on</a><br>\n<a href=\"/9047330/Beyonce-sorry/He-always-got-them-fucking-excuses-i-pray-to-the-lord-you-reveal-what-his-truth-is\" data-id=\"9047330\" data-editorial-state=\"accepted\" data-classification=\"accepted\">He always got them fucking excuses<br>\nI pray to the Lord you reveal what his truth is</a><br>\n<a href=\"/9046943/Beyonce-sorry/I-left-a-note-in-the-hallway-by-the-time-you-read-it-ill-be-far-away\" data-id=\"9046943\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">I left a note in the hallway<br>\nBy the time you read it, I'll be far away</a><br>\n<a href=\"/9046449/Beyonce-sorry/Im-far-away-but-i-aint-fucking-with-nobody\" data-id=\"9046449\" data-editorial-state=\"accepted\" data-classification=\"accepted\">I'm far away<br>\nBut I ain't fucking with nobody</a><br>\n<a href=\"/9043573/Beyonce-sorry/Lets-have-a-toast-to-the-good-life\" data-id=\"9043573\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Let's have a toast to the good life</a><br>\n<a href=\"/9061914/Beyonce-sorry/Suicide-before-you-see-this-tear-fall-down-my-eyes\" data-id=\"9061914\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Suicide before you see this tear fall down my eyes</a><br>\n<a href=\"/9043919/Beyonce-sorry/Me-and-my-baby-we-gon-be-alright-we-gon-live-a-good-life\" data-id=\"9043919\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Me and my baby, we gon' be alright<br>\nWe gon' live a good life</a><br>\n<a href=\"/9043857/Beyonce-sorry/Big-homie-better-grow-up\" data-id=\"9043857\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Big homie better grow up</a><br>\n<a href=\"/9046836/Beyonce-sorry/Me-and-my-whoadies-bout-to-stroll-up-i-see-them-boppers-in-the-corner-they-sneaking-out-the-back-door\" data-id=\"9046836\" data-editorial-state=\"accepted\" data-classification=\"accepted\">Me and my whoadies 'bout to stroll up<br>\nI see them boppers in the corner<br>\nThey sneaking out the back door</a><br>\n<a href=\"/9043931/Beyonce-sorry/He-only-want-me-when-im-not-there\" data-id=\"9043931\" data-editorial-state=\"accepted\" data-classification=\"accepted\">He only want me when I'm not there</a><br>\n<a href=\"/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair\" data-id=\"9043514\" class=\"has_comments\" data-editorial-state=\"accepted\" data-classification=\"accepted\">He better call Becky with the good hair<br>\nHe better call Becky with the good hair</a><br>\n<br>\n<a href=\"/9047123/Beyonce-sorry/Visual-breakdown\" data-id=\"9047123\" data-editorial-state=\"accepted\" data-classification=\"accepted\">[Visual breakdown]</a></p>\n\n","markdown":"Not available"},"lyrics_owner_id":93685,"lyrics_updated_at":1466684101,"path":"/Beyonce-sorry-lyrics","published":false,"pusher_channel":"song-2461226","pyongs_count":55,"recording_location":"The Beehive, Los Angeles, CA","release_date":"2016-04-23","share_url":"http://genius.com/Beyonce-sorry-lyrics","song_art_image_thumbnail_url":"https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.300x300x1.jpg","song_art_image_url":"https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","soundcloud_url":"","spotify_uuid":null,"stats":{"accepted_annotations":20,"concurrents":11,"contributors":124,"hot":false,"iq_earners":123,"pageviews":807261,"transcribers":3,"unreviewed_annotations":0,"verified_annotations":0},"title":"SORRY","tracking_paths":{"aggregate":"/Beyonce-sorry-lyrics","concurrent":"/Beyonce-sorry-lyrics"},"twitter_share_message":"Beyoncé – SORRY @Beyonce http://genius.com/Beyonce-sorry-lyrics","twitter_share_message_without_url":"Beyoncé – SORRY @Beyonce","updated_by_human_at":1475018428,"url":"http://genius.com/Beyonce-sorry-lyrics","viewable_by_roles":[],"youtube_start":"0","youtube_url":"http://www.youtube.com/watch?v=QxsmWxxouIM","current_user_metadata":{"interactions":{"pyong":false,"following":false},"relationships":{},"permissions":["see_pageviews","create_comment"]},"album":{"_type":"album","api_path":"/albums/150119","cover_art_thumbnail_url":"https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.300x300x1.jpg","cover_art_url":"https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","id":150119,"name":"LEMONADE","name_with_artist":"LEMONADE (artist: Beyoncé)","release_date":"2016-04-24","url":"http://genius.com/albums/Beyonce/Lemonade","artist":{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"}},"albums":[{"_type":"album","api_path":"/albums/150119","cover_art_thumbnail_url":"https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.300x300x1.jpg","cover_art_url":"https://images.genius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","id":150119,"name":"LEMONADE","name_with_artist":"LEMONADE (artist: Beyoncé)","release_date":"2016-04-24","url":"http://genius.com/albums/Beyonce/Lemonade","artist":{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"}}],"custom_performances":[{"label":"Mastered by","artists":[{"_type":"artist","api_path":"/artists/641341","header_image_url":"https://images.genius.com/6b21f899171626d81e9110a51965b052.1000x1000x1.png","id":641341,"image_url":"https://images.genius.com/d448111887d2b34267df1ca916335210.299x255x1.jpg","is_meme_verified":false,"is_verified":false,"name":"Dave Kutch","url":"http://genius.com/artists/Dave-kutch"}]},{"label":"Assistant Mix Engineer","artists":[{"_type":"artist","api_path":"/artists/661270","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":661270,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"John Cranfield","url":"http://genius.com/artists/John-cranfield"}]},{"label":"Second Engineering By","artists":[{"_type":"artist","api_path":"/artists/642778","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":642778,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"Ramon Rivas","url":"http://genius.com/artists/Ramon-rivas"}]},{"label":"Recorded By","artists":[{"_type":"artist","api_path":"/artists/661269","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":661269,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"Stuart White","url":"http://genius.com/artists/Stuart-white"}]},{"label":"Mixed By","artists":[{"_type":"artist","api_path":"/artists/661269","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":661269,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"Stuart White","url":"http://genius.com/artists/Stuart-white"}]},{"label":"Background Vocals","artists":[{"_type":"artist","api_path":"/artists/19295","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":19295,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"Chris Collins","url":"http://genius.com/artists/Chris-collins"}]},{"label":"Additional Programming","artists":[{"_type":"artist","api_path":"/artists/27852","header_image_url":"https://s3.amazonaws.com/rapgenius/0c6e5c7e0f7348714ea6c9ac2c4312d2.jpeg","id":27852,"image_url":"https://s3.amazonaws.com/rapgenius/0c6e5c7e0f7348714ea6c9ac2c4312d2.jpeg","is_meme_verified":false,"is_verified":false,"name":"B.CaRR","url":"http://genius.com/artists/Bcarr"}]},{"label":"Vocal Production","artists":[{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"}]},{"label":"Additional Production by","artists":[{"_type":"artist","api_path":"/artists/661269","header_image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","id":661269,"image_url":"https://assets.genius.com/images/default_cover_image.png?1475870633","is_meme_verified":false,"is_verified":false,"name":"Stuart White","url":"http://genius.com/artists/Stuart-white"}]},{"label":"Co-Produced By","artists":[{"_type":"artist","api_path":"/artists/21188","header_image_url":"https://s3.amazonaws.com/rapgenius/hit-boy.jpg","id":21188,"image_url":"https://s3.amazonaws.com/rapgenius/hit-boy.jpg","is_meme_verified":true,"is_verified":true,"name":"Hit-Boy","url":"http://genius.com/artists/Hit-boy","iq":3215}]}],"description_annotation":{"_type":"referent","annotator_id":2241750,"annotator_login":"balmayne","api_path":"/referents/9042848","classification":"accepted","fragment":"SORRY","id":9042848,"ios_app_url":"genius://referents/9042848","is_description":true,"is_image":false,"path":"/9042848/Beyonce-sorry/Sorry","range":{"content":"SORRY"},"song_id":2461226,"url":"http://genius.com/9042848/Beyonce-sorry/Sorry","verified_annotator_ids":[],"current_user_metadata":{"permissions":[],"relationships":{}},"tracking_paths":{"aggregate":"/9042848/Beyonce-sorry/Sorry","concurrent":"/Beyonce-sorry-lyrics"},"twitter_share_message":"““Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and …” —@Genius","annotatable":{"_type":"song","api_path":"/songs/2461226","client_timestamps":{"updated_by_human_at":1475018428,"lyrics_updated_at":1466684101},"context":"Beyoncé","id":2461226,"image_url":"https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","link_title":"SORRY by Beyoncé","title":"SORRY","type":"Song","url":"http://genius.com/Beyonce-sorry-lyrics"},"annotations":[{"_type":"annotation","api_path":"/annotations/9042848","being_created":false,"body":{"html":"<p>“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup.</p>\n\n<p>The song takes a “sorry, not sorry” attitude in which Beyoncé insists that she isn’t even thinking about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won’t be accepting any apologies any time soon.</p>\n\n<p><a href=\"http://genius.com/artists/Melo-x\" data-api_path=\"/artists/14166\">MeLo-X</a>, one of the songwriters credited on the track, <a href=\"http://pitchfork.com/news/65045-beyonces-lemonade-collaborator-melo-x-gives-first-interview-on-making-of-the-album/?mbid=social_twitter\" rel=\"nofollow\">said</a> that he wrote the lyrics <em>way</em> before Justin Bieber’s <a href=\"http://genius.com/Justin-bieber-sorry-lyrics\" data-api_path=\"/songs/2323822\">song of the same name</a> was released,</p>\n\n<blockquote><p>It might have been last summer. It was way before that song came out. I mean, it’s funny… But yeah so, that track was kind of like creating a vibe in the studio. We were just working on a lot of stuff and the idea came up pretty simple. It was just some cool keys, drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout the month, we added to it and Hit-Boy came in and sprinkled all these different sounds and layers to it and made it come together fully.</p></blockquote>\n\n<p><a href=\"https://www.youtube.com/watch?v=55bhGy0ongI\" rel=\"nofollow\">https://www.youtube.com/watch?v=55bhGy0ongI</a></p>","markdown":"\"Sorry\" is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confidence in the midst of an otherwise serious and emotionally tugging breakup.\n\nThe song takes a \"sorry, not sorry\" attitude in which Beyoncé insists that she isn't even thinking about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won't be accepting any apologies any time soon.\n\n[MeLo-X](http://genius.com/artists/Melo-x), one of the songwriters credited on the track, [said](http://pitchfork.com/news/65045-beyonces-lemonade-collaborator-melo-x-gives-first-interview-on-making-of-the-album/?mbid=social_twitter) that he wrote the lyrics *way* before Justin Bieber's [song of the same name](http://genius.com/Justin-bieber-sorry-lyrics) was released,\n\n> It might have been last summer. It was way before that song came out. I mean, it's funny... But yeah so, that track was kind of like creating a vibe in the studio. We were just working on a lot of stuff and the idea came up pretty simple. It was just some cool keys, drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout the month, we added to it and Hit-Boy came in and sprinkled all these different sounds and layers to it and made it come together fully.\n\n\nhttps://www.youtube.com/watch?v=55bhGy0ongI"},"comment_count":4,"community":true,"created_at":1461465026,"custom_preview":null,"embed_content":"<blockquote class='rg_standalone_container' data-src='//genius.com/annotations/9042848/standalone_embed'><a href='http://genius.com/9042848/Beyonce-sorry/Sorry'>SORRY</a><br><a href='http://genius.com/Beyonce-sorry-lyrics'>&#8213; Beyoncé – SORRY</a></blockquote><script async crossorigin src='//genius.com/annotations/load_standalone_embeds.js'></script>","has_voters":true,"id":9042848,"needs_exegesis":false,"pinned":false,"proposed_edit_count":0,"pyongs_count":2,"referent_id":9042848,"share_url":"http://genius.com/9042848","source":null,"state":"accepted","twitter_share_message":"““Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and confiden…” —@Genius","url":"http://genius.com/9042848/Beyonce-sorry/Sorry","verified":false,"votes_total":164,"current_user_metadata":{"interactions":{"cosign":false,"pyong":false,"vote":null},"permissions":["create_comment"]},"accepted_by":null,"authors":[{"_type":"user_attribution","attribution":0.5384615384615384,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/1174048","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/20b352c57bce955b13a6f72f2f5d20b6","human_readable_role_for_display":"Moderator","id":1174048,"iq":21456,"is_meme_verified":false,"is_verified":false,"login":"annaose","name":"Anna Oseran","role_for_display":"moderator","url":"http://genius.com/annaose","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.13574660633484162,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Psycho: I’m liable to go Michael, take your pick/Jackson, Tyson, Jordan, Game 6\n\nCommunity Manager\nSydney, Australia","api_path":"/users/127862","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://s3.amazonaws.com/filepicker-images-rapgenius/BShtCDtzSSOsPsS7BT9y_tirant-tirant%20copy.png","human_readable_role_for_display":"Staff","id":127862,"iq":338060,"is_meme_verified":false,"is_verified":false,"login":"Michael","name":"Michael Heal","role_for_display":"regulator","url":"http://genius.com/Michael","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.11764705882352942,"pinned_role":null,"user":{"_type":"user","about_me_summary":"kanye fresh","api_path":"/users/2241750","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/fe3feb87943c8b9a97a72fb8704b6aca","human_readable_role_for_display":"Contributor","id":2241750,"iq":371,"is_meme_verified":false,"is_verified":false,"login":"balmayne","name":"balmayne","role_for_display":"contributor","url":"http://genius.com/balmayne","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.05882352941176471,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/3304503","avatar":{"tiny":{"url":"https://assets.genius.com/images/default_avatar_16.png?1475870633","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://assets.genius.com/images/default_avatar_32.png?1475870633","bounding_box":{"width":32,"height":32}},"small":{"url":"https://assets.genius.com/images/default_avatar_100.png?1475870633","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://assets.genius.com/images/default_avatar_300.png?1475870633","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://assets.genius.com/images/default_avatar_300.png?1475870633","human_readable_role_for_display":null,"id":3304503,"iq":37,"is_meme_verified":false,"is_verified":false,"login":"cayvonosaur","name":"cayvonosaur","role_for_display":null,"url":"http://genius.com/cayvonosaur","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.0497737556561086,"pinned_role":null,"user":{"_type":"user","about_me_summary":"love god Herself.","api_path":"/users/1278723","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/34f7834ba65afd00a770bd043d9a3b3e","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/34f7834ba65afd00a770bd043d9a3b3e","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/34f7834ba65afd00a770bd043d9a3b3e","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/34f7834ba65afd00a770bd043d9a3b3e","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/34f7834ba65afd00a770bd043d9a3b3e","human_readable_role_for_display":"Contributor","id":1278723,"iq":2689,"is_meme_verified":false,"is_verified":false,"login":"azzip","name":"azzip","role_for_display":"contributor","url":"http://genius.com/azzip","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.0497737556561086,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Community. Content. Fun things.","api_path":"/users/143119","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/435bf4128688f7daf8886838ca43fdb7","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/435bf4128688f7daf8886838ca43fdb7","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/435bf4128688f7daf8886838ca43fdb7","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/435bf4128688f7daf8886838ca43fdb7","human_readable_role_for_display":"Staff","id":143119,"iq":119759,"is_meme_verified":false,"is_verified":false,"login":"TheScrivener","name":"Elizabeth Milch","role_for_display":"regulator","url":"http://genius.com/TheScrivener","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.013574660633484163,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Get all the lyrics to songs by Andre Torres and join the Genius community of music scholars to learn the meaning behind the lyrics.","api_path":"/users/2632310","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/5816663acd5e569d10f16693ad5ee3d7","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/5816663acd5e569d10f16693ad5ee3d7","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/5816663acd5e569d10f16693ad5ee3d7","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/5816663acd5e569d10f16693ad5ee3d7","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/5816663acd5e569d10f16693ad5ee3d7","human_readable_role_for_display":"Verified Artist","id":2632310,"iq":16322,"is_meme_verified":false,"is_verified":true,"login":"AndreTorres","name":"Andre Torres","role_for_display":"verified_artist","url":"http://genius.com/AndreTorres","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.00904977375565611,"pinned_role":null,"user":{"_type":"user","about_me_summary":"hey, i’m babuc, a genius moderator! for more info about me, check out the annotation at the top of my profile and my artist account. i also run the genius music club at east!\n\n\n\ncurrently ranked #45 on all time contributors! \n\n\n\n\nlast.fm | instagram | twitter\n\n\n\n\n\n\n\n\n\n genius awards 2015 \n\n\n4th best avatar\n- 7th best editor\n- 10th best transcriber\n- 10th best web annotator\n\n\n\n\n\n\n\n\n\n\ncool dates:\nFebruary 2015: edded by peter nowogrodzki, aka XenaWarriorPrincess\nDecember 6, 2015: Drew_Harvie becomes editor\nDecember 19, 2015: 50k IQ!\nJanuary 12, 2016: my meta tates confirmed better than verified tates by diplo, tinashe, skrillex, and pusha t\nJanuary 23, 2016: kinik (and vinylzombie_mcr) gets me to 60k iq\nFebruary 19, 2016: empath upvotes some meta tates (?) to get me to 70k\nMarch 30, 2016: annotating unc’s ncaa history gets me to 80k :)\nApril 1, 2016: went to hq (not even lying ask niday), it was dope\nMay 10, 2016: ewok upvotes me and gets me to 90k :) thanks ewok\nMay 24, 2016: cocochase becomes editor!!!\nMay 27, 2016: i got modded by the amazing streetlights. love you all, and here’s to really making pop genius pop again :)\nJune 15, 2016: the god mod Freeus upvotes me to 100k at like 1:30 AM—thanks ❤️","api_path":"/users/1448826","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/427478c68f285fc5e038b6995aabbbb9","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/427478c68f285fc5e038b6995aabbbb9","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/427478c68f285fc5e038b6995aabbbb9","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/427478c68f285fc5e038b6995aabbbb9","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/427478c68f285fc5e038b6995aabbbb9","human_readable_role_for_display":"Moderator","id":1448826,"iq":111656,"is_meme_verified":false,"is_verified":false,"login":"babuc","name":"👻 babu🎃 sp00k👻","role_for_display":"moderator","url":"http://genius.com/babuc","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.00904977375565611,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Student, writer, Lusophile, blaxploitation film junkie. No, really. Ask me about any movie.","api_path":"/users/2744872","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","human_readable_role_for_display":"Editor","id":2744872,"iq":3120,"is_meme_verified":false,"is_verified":false,"login":"HIDZ","name":"HIDZ","role_for_display":"editor","url":"http://genius.com/HIDZ","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.00904977375565611,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/3185297","avatar":{"tiny":{"url":"https://assets.genius.com/images/default_avatar_16.png?1475870633","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://assets.genius.com/images/default_avatar_32.png?1475870633","bounding_box":{"width":32,"height":32}},"small":{"url":"https://assets.genius.com/images/default_avatar_100.png?1475870633","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://assets.genius.com/images/default_avatar_300.png?1475870633","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://assets.genius.com/images/default_avatar_300.png?1475870633","human_readable_role_for_display":null,"id":3185297,"iq":11,"is_meme_verified":false,"is_verified":false,"login":"ToffeeM","name":"ToffeeM","role_for_display":null,"url":"http://genius.com/ToffeeM","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.00904977375565611,"pinned_role":null,"user":{"_type":"user","about_me_summary":"slay me a little\n\n\n-\n\npop genius editor.\n\npm me if you need to talk or if you have questions or if you need my help.\n\n\n\ncourtesy of baebouk.\n\n\n\n-\n\ntirant.\n\nnightpool is my lord and saviour on this website.\n\nq, one of my favorite people.\n\n-\n\nasian. teenage. chicago. i like beyoncé, feminism, and ice cream. love the aesthetiqué, and very into visuals.\n\n-\n\nunder pressure\n\n-\n\nmade editor by DaveHowell on 7.23.15.","api_path":"/users/1427756","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/af87023ab94a003a04281973f5d6fb3b","human_readable_role_for_display":"Editor","id":1427756,"iq":34335,"is_meme_verified":false,"is_verified":false,"login":"sereinik","name":"sereinik","role_for_display":"editor","url":"http://genius.com/sereinik","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}}],"brand":null,"cosigned_by":[],"created_by":{"_type":"user","about_me_summary":"kanye fresh","api_path":"/users/2241750","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/fe3feb87943c8b9a97a72fb8704b6aca","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/fe3feb87943c8b9a97a72fb8704b6aca","human_readable_role_for_display":"Contributor","id":2241750,"iq":371,"is_meme_verified":false,"is_verified":false,"login":"balmayne","name":"balmayne","role_for_display":"contributor","url":"http://genius.com/balmayne","current_user_metadata":{"interactions":{"following":false},"permissions":[]}},"top_comment":{"_type":"comment","api_path":"/comments/3792799","body":{"html":"<p>The video for this song features Serena Williams, Beyoncé and the directors' long-time friend (<a href=\"http://www.billboard.com/articles/columns/hip-hop/7358034/serena-williams-beyonce-lemonade-dance\" rel=\"nofollow\">http://www.billboard.com/articles/columns/hip-hop/7358034/serena-williams-beyonce-lemonade-dance</a>). Williams embodies the “I ain’t sorry” attitude as another super successful black woman who is also unapologetically at the top of her game.</p>","markdown":"The video for this song features Serena Williams, Beyoncé and the directors' long-time friend (http://www.billboard.com/articles/columns/hip-hop/7358034/serena-williams-beyonce-lemonade-dance). Williams embodies the \"I ain't sorry\" attitude as another super successful black woman who is also unapologetically at the top of her game. "},"created_at":1465226729,"has_voters":true,"id":3792799,"pinned_role":null,"votes_total":13,"current_user_metadata":{"permissions":[],"interactions":{"vote":null}},"anonymous_author":null,"author":{"_type":"user","about_me_summary":"","api_path":"/users/1212191","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/525a2a3ef9f34b76956c0122f3613a61","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/525a2a3ef9f34b76956c0122f3613a61","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/525a2a3ef9f34b76956c0122f3613a61","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/525a2a3ef9f34b76956c0122f3613a61","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/525a2a3ef9f34b76956c0122f3613a61","human_readable_role_for_display":null,"id":1212191,"iq":153,"is_meme_verified":false,"is_verified":false,"login":"illnatic","name":"illnatic","role_for_display":null,"url":"http://genius.com/illnatic","current_user_metadata":{"interactions":{"following":false},"permissions":[]}},"reason":{"_type":"comment_reason","context_url":"http://genius.com/8846441/Genius-how-genius-works/More-on-annotations","display_character":"M","handle":"Missing something","id":3,"name":"missing-something","raw_name":"missing something","requires_body":false,"slug":"missing_something"}},"verified_by":null}]},"featured_artists":[],"media":[{"cinema":false,"provider":"youtube","start":0,"type":"video","url":"http://www.youtube.com/watch?v=QxsmWxxouIM"},{"cinema":false,"provider":"apple_music","provider_id":"1107429332","type":"audio","url":"https://itunes.apple.com/lookup?entity=song&id=1107429332"}],"primary_artist":{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"},"primary_tag":{"_type":"tag","id":16,"name":"Pop","primary":true,"url":"http://pop.genius.com/"},"producer_artists":[{"_type":"artist","api_path":"/artists/12387","header_image_url":"https://images.genius.com/edf2410b2f4b3be3e7e141c8012c8698.320x226x1.jpg","id":12387,"image_url":"https://images.genius.com/edf2410b2f4b3be3e7e141c8012c8698.320x226x1.jpg","is_meme_verified":false,"is_verified":false,"name":"Wynter Gordon","url":"http://genius.com/artists/Wynter-gordon"},{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"},{"_type":"artist","api_path":"/artists/14166","header_image_url":"https://images.genius.com/bdc7e9fd068d36d42b032f7d84b3fc3e.615x409x1.jpg","id":14166,"image_url":"https://images.genius.com/bdc7e9fd068d36d42b032f7d84b3fc3e.615x409x1.jpg","is_meme_verified":false,"is_verified":false,"name":"MeLo-X","url":"http://genius.com/artists/Melo-x"}],"song_relationships":[{"_type":"song_relationship","type":"samples","songs":[]},{"_type":"song_relationship","type":"sampled_in","songs":[{"_type":"song","annotation_count":1,"api_path":"/songs/2858821","full_title":"Sorry (Beyoncé cover) by Christine and the Queens","header_image_thumbnail_url":"https://images.genius.com/7371264c7b27e9d97a026bcebec222fc.300x169x1.jpg","header_image_url":"https://images.genius.com/7371264c7b27e9d97a026bcebec222fc.976x549x1.jpg","id":2858821,"instrumental":false,"lyrics_owner_id":2821448,"lyrics_updated_at":1474155887,"path":"/Christine-and-the-queens-sorry-beyonce-cover-lyrics","pyongs_count":1,"song_art_image_thumbnail_url":"https://images.genius.com/7371264c7b27e9d97a026bcebec222fc.300x169x1.jpg","stats":{"hot":false,"pageviews":317,"unreviewed_annotations":1},"title":"Sorry (Beyoncé cover)","updated_by_human_at":1474155887,"url":"http://genius.com/Christine-and-the-queens-sorry-beyonce-cover-lyrics","primary_artist":{"_type":"artist","api_path":"/artists/327334","header_image_url":"https://images.genius.com/f592299dcaf62bc6be0b551345946956.958x960x1.jpg","id":327334,"image_url":"https://images.genius.com/f592299dcaf62bc6be0b551345946956.958x960x1.jpg","is_meme_verified":true,"is_verified":true,"name":"Christine and the Queens","url":"http://genius.com/artists/Christine-and-the-queens","iq":2673}}]},{"_type":"song_relationship","type":"interpolates","songs":[]},{"_type":"song_relationship","type":"interpolated_by","songs":[]},{"_type":"song_relationship","type":"cover_of","songs":[]},{"_type":"song_relationship","type":"covered_by","songs":[]},{"_type":"song_relationship","type":"remix_of","songs":[]},{"_type":"song_relationship","type":"remixed_by","songs":[]},{"_type":"song_relationship","type":"live_version_of","songs":[]},{"_type":"song_relationship","type":"performed_live_as","songs":[]}],"tags":[{"_type":"tag","id":2799,"name":"Columbia Records","primary":false,"url":"http://genius.com/tags/columbia-records"},{"_type":"tag","id":352,"name":"R&B","primary":true,"url":"http://r-b.genius.com/"},{"_type":"tag","id":16,"name":"Pop","primary":true,"url":"http://pop.genius.com/"}],"top_scholar":{"_type":"user_attribution","attribution_value":989.8,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Student, writer, Lusophile, blaxploitation film junkie. No, really. Ask me about any movie.","api_path":"/users/2744872","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","human_readable_role_for_display":"Editor","id":2744872,"iq":3120,"is_meme_verified":false,"is_verified":false,"login":"HIDZ","name":"HIDZ","role_for_display":"editor","url":"http://genius.com/HIDZ","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},"verified_annotations_by":[],"verified_contributors":[],"verified_lyrics_by":[],"writer_artists":[{"_type":"artist","api_path":"/artists/12387","header_image_url":"https://images.genius.com/edf2410b2f4b3be3e7e141c8012c8698.320x226x1.jpg","id":12387,"image_url":"https://images.genius.com/edf2410b2f4b3be3e7e141c8012c8698.320x226x1.jpg","is_meme_verified":false,"is_verified":false,"name":"Wynter Gordon","url":"http://genius.com/artists/Wynter-gordon"},{"_type":"artist","api_path":"/artists/498","header_image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","id":498,"image_url":"https://images.genius.com/0d7325c6a8d9a1b3e1b1faa2eb95c007.952x710x1.png","is_meme_verified":false,"is_verified":false,"name":"Beyoncé","url":"http://genius.com/artists/Beyonce"},{"_type":"artist","api_path":"/artists/14166","header_image_url":"https://images.genius.com/bdc7e9fd068d36d42b032f7d84b3fc3e.615x409x1.jpg","id":14166,"image_url":"https://images.genius.com/bdc7e9fd068d36d42b032f7d84b3fc3e.615x409x1.jpg","is_meme_verified":false,"is_verified":false,"name":"MeLo-X","url":"http://genius.com/artists/Melo-x"}]}}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"lyrics_data":{"body":{"html":"<p>[Chorus]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046731\" data-id=\"9046731\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046731\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry</a><br>\n<br>\n[Verse 1]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043369\" data-id=\"9043369\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043369\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"2\" possibly-branded=\"false\">He trying to roll me up, I ain't picking up<br>\nHeaded to the club, I ain't thinking 'bout you</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9042986\" data-id=\"9042986\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9042986\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"3\" possibly-branded=\"false\">Me and my ladies sip my D'ussé cup<br>\nI don't give a fuck, chucking my deuces up</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046758\" data-id=\"9046758\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046758\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Suck on my balls, pause, I had enough<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout</a><br>\n<br>\n[Bridge]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043238\" data-id=\"9043238\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043238\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Middle fingers up, put them hands high<br>\nWave it in his face, tell him, boy, bye<br>\nTell him, boy, bye, boy, bye, middle fingers up<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046731\" data-id=\"9046731\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046731\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nI ain't thinking 'bout you<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nNo no, hell nah</a><br>\n<br>\n[Verse 2]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9047683\" data-id=\"9047683\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9047683\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Now you want to say you're sorry<br>\nNow you want to call me crying</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9047727\" data-id=\"9047727\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9047727\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Now you gotta see me wilding</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9045914\" data-id=\"9045914\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9045914\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Now I'm the one that's lying<br>\nAnd I don't feel bad about it<br>\nIt's exactly what you get<br>\nStop interrupting my grinding<br>\n(You interrupting my grinding)<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046731\" data-id=\"9046731\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046731\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Sorry, I ain't sorry<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout you<br>\nSorry, I ain't sorry<br>\nI ain't thinking 'bout you<br>\nI ain't thinking 'bout you</a><br>\n<br>\n[Bridge]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043238\" data-id=\"9043238\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043238\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Middle fingers up, put them hands high<br>\nWave it in his face, tell him, boy, bye<br>\nTell him, boy, bye, boy, bye<br>\nMiddle fingers up, I ain't thinking 'bout you</a><br>\n<br>\n[Hook]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046731\" data-id=\"9046731\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046731\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Sorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry, nigga, nah<br>\nSorry, I ain't sorry<br>\nSorry, I ain't sorry<br>\nI ain't sorry<br>\nNo no, hell nah</a><br>\n<br>\n[Verse 3]<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046509\" data-id=\"9046509\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046509\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Looking at my watch, he shoulda been home<br>\nToday I regret the night I put that ring on</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9047330\" data-id=\"9047330\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9047330\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">He always got them fucking excuses<br>\nI pray to the Lord you reveal what his truth is</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046943\" data-id=\"9046943\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046943\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"2\" possibly-branded=\"false\">I left a note in the hallway<br>\nBy the time you read it, I'll be far away</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046449\" data-id=\"9046449\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046449\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">I'm far away<br>\nBut I ain't fucking with nobody</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043573\" data-id=\"9043573\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043573\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"2\" possibly-branded=\"false\">Let's have a toast to the good life</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9061914\" data-id=\"9061914\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9061914\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"1\" possibly-branded=\"false\">Suicide before you see this tear fall down my eyes</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043919\" data-id=\"9043919\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043919\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Me and my baby, we gon' be alright<br>\nWe gon' live a good life</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043857\" data-id=\"9043857\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043857\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Big homie better grow up</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9046836\" data-id=\"9046836\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9046836\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">Me and my whoadies 'bout to stroll up<br>\nI see them boppers in the corner<br>\nThey sneaking out the back door</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043931\" data-id=\"9043931\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043931\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">He only want me when I'm not there</a><br>\n<a href=\"/Beyonce-sorry-lyrics#note-9043514\" data-id=\"9043514\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9043514\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"3\" possibly-branded=\"false\">He better call Becky with the good hair<br>\nHe better call Becky with the good hair</a><br>\n<br>\n<a href=\"/Beyonce-sorry-lyrics#note-9047123\" data-id=\"9047123\" class=\"referent\" ng-click=\"open()\" ng-class=\"{\n 'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),\n 'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),\n 'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)\n }\" prevent-default-click=\"\" annotation-fragment=\"9047123\" on-hover-with-no-digest=\"set_current_hover_and_digest(hover ? fragment_id : undefined)\" classification=\"accepted\" image=\"false\" pending-editorial-actions-count=\"0\" possibly-branded=\"false\">[Visual breakdown]</a></p>\n\n"},"client_timestamps":{"lyrics_updated_at":1466684101,"updated_by_human_at":1475018428}}}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"preloaded_referents":[{"_type":"referent","annotator_id":2744872,"annotator_login":"HIDZ","api_path":"/referents/9043514","classification":"accepted","fragment":"He better call Becky with the good hair\n He better call Becky with the good hair","id":9043514,"ios_app_url":"genius://referents/9043514","is_description":false,"is_image":false,"path":"/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair","range":{"content":"He better call Becky with the good hair\n He better call Becky with the good hair"},"song_id":2461226,"url":"http://genius.com/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair","verified_annotator_ids":[],"current_user_metadata":{"permissions":[],"relationships":{}},"tracking_paths":{"aggregate":"/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair","concurrent":"/Beyonce-sorry-lyrics"},"twitter_share_message":"““Becky” is a stereotypical-sounding name in the Black community given to average White women.\n\n“…” —@Genius","annotatable":{"_type":"song","api_path":"/songs/2461226","client_timestamps":{"updated_by_human_at":1475018428,"lyrics_updated_at":1466684101},"context":"Beyoncé","id":2461226,"image_url":"https://images.rapgenius.com/59fc635f7dbe6b5cd1e07e5e605c96b5.640x640x1.jpg","link_title":"SORRY by Beyoncé","title":"SORRY","type":"Song","url":"http://genius.com/Beyonce-sorry-lyrics"},"annotations":[{"_type":"annotation","api_path":"/annotations/9043514","being_created":false,"body":{"html":"<p>“Becky” is a stereotypical-sounding name in the Black community given to average White women.</p>\n\n<p>“Becky” has what is considered “good hair” by many cultures. Her hair does not curl in springy, zig-zag patterns, but rather runs down her back in straight, uniform strands—hair common amongst Caucasians. In “<a href=\"http://genius.com/Beyonce-formation-lyrics\" data-api_path=\"/songs/2419257\">Formation</a>”, Beyoncé expressed her preference to keep her daughter’s hair in its natural state.</p>\n\n<p>In America, Black women have felt pressured to chemically straighten their hair to submit to European beauty standards and avoid harassment. In the 1960s and ‘70s, the <em>Afro</em>, name derived from its texture, was considered a political statement in the United States. It was a rebellion against the notion that Afro-textured hair was not “good hair”. Some hairstyles commonly associated with Afro-textured hair include Afros, fade haircuts, cornrows, and dreadlocks.</p>\n\n<p>Though Beyoncé has worn straight hair throughout her career, do not make the assumption that she is not proud of the coily follicles that grow from her scalp.</p>\n\n<blockquote><p><a href=\"http://genius.com/8640182\" data-api_path=\"/referents/8640182\">I like my baby heir with baby hair and afros</a></p></blockquote>\n\n<p><img src=\"https://images.rapgenius.com/2b2d829e67b8dd6219e0d3ba786122ba.500x270x26.gif\" alt=\"\" width=\"500\" height=\"270\" data-animated=\"true\"></p>\n\n<p><a href=\"http://www.usmagazine.com/celebrity-news/news/solange-knowles-argued-with-rachel-roy-before-jay-z-fight-met-gala-2014125\" rel=\"nofollow\">It was rumored</a> that the “elevator fight” was about Jay cheating on B with her. Shortly after this song dropped, <a href=\"http://images.rapgenius.com/5c339c1e2a0f6fba4212af00156e800e.800x513x1.jpg\">Roy posted a photo on Instagram</a> with a caption that read, “Good hair, don’t care,” and, “#nodramaqueens.” Shortly after, Roy distanced herself <a href=\"https://twitter.com/Rachel_Roy/status/724279585613963265\" rel=\"nofollow\">tweeting</a> that she “loves and respects marriage.” In a new revelation from songwriter Diana (Wynter) Gordon per <em>Entertainment Weekly</em>, <a href=\"http://www.ew.com/article/2016/08/02/diana-gordon-interview?xid=entertainment-weekly_socialflow_twitter\" rel=\"nofollow\">Becky appears to refer to no exact person at all</a>. In fact, Gordon even decries the mass hysteria that accompanied the lyric following the album’s release.</p>\n\n<blockquote><p>I laughed, like this is so silly. Where are we living? I was like, “What day in age from that lyric do you get all of this information?” Is it really telling you all that much, accusing people?</p></blockquote>\n\n<p><a href=\"https://www.youtube.com/watch?v=55bhGy0ongI\" rel=\"nofollow\">https://www.youtube.com/watch?v=55bhGy0ongI</a></p>","plain":"“Becky” is a stereotypical-sounding name in the Black community given to average White women.\n\n“Becky” has what is considered “good hair” by many cultures. Her hair does not curl in springy, zig-zag patterns, but rather runs down her back in straight, uniform strands—hair common amongst Caucasians. In “Formation”, Beyoncé expressed her preference to keep her daughter’s hair in its natural state.\n\nIn America, Black women have felt pressured to chemically straighten their hair to submit to European beauty standards and avoid harassment. In the 1960s and ‘70s, the Afro, name derived from its texture, was considered a political statement in the United States. It was a rebellion against the notion that Afro-textured hair was not “good hair”. Some hairstyles commonly associated with Afro-textured hair include Afros, fade haircuts, cornrows, and dreadlocks.\n\nThough Beyoncé has worn straight hair throughout her career, do not make the assumption that she is not proud of the coily follicles that grow from her scalp.\n\nI like my baby heir with baby hair and afros\n\n\n\nIt was rumored that the “elevator fight” was about Jay cheating on B with her. Shortly after this song dropped, Roy posted a photo on Instagram with a caption that read, “Good hair, don’t care,” and, “#nodramaqueens.” Shortly after, Roy distanced herself tweeting that she “loves and respects marriage.” In a new revelation from songwriter Diana (Wynter) Gordon per Entertainment Weekly, Becky appears to refer to no exact person at all. In fact, Gordon even decries the mass hysteria that accompanied the lyric following the album’s release.\n\nI laughed, like this is so silly. Where are we living? I was like, “What day in age from that lyric do you get all of this information?” Is it really telling you all that much, accusing people?\n\nhttps://www.youtube.com/watch?v=55bhGy0ongI","markdown":"\"Becky\" is a stereotypical-sounding name in the Black community given to average White women.\n\n\"Becky\" has what is considered \"good hair\" by many cultures. Her hair does not curl in springy, zig-zag patterns, but rather runs down her back in straight, uniform strands---hair common amongst Caucasians. In \"[Formation](http://genius.com/Beyonce-formation-lyrics)\", Beyoncé expressed her preference to keep her daughter's hair in its natural state.\n\nIn America, Black women have felt pressured to chemically straighten their hair to submit to European beauty standards and avoid harassment. In the 1960s and '70s, the *Afro*, name derived from its texture, was considered a political statement in the United States. It was a rebellion against the notion that Afro-textured hair was not \"good hair\". Some hairstyles commonly associated with Afro-textured hair include Afros, fade haircuts, cornrows, and dreadlocks.\n\nThough Beyoncé has worn straight hair throughout her career, do not make the assumption that she is not proud of the coily follicles that grow from her scalp.\n\n>[I like my baby heir with baby hair and afros](http://genius.com/8640182)\n\nhttp://images.rapgenius.com/2b2d829e67b8dd6219e0d3ba786122ba.500x270x26.gif\n\n[It was rumored](http://www.usmagazine.com/celebrity-news/news/solange-knowles-argued-with-rachel-roy-before-jay-z-fight-met-gala-2014125) that the \"elevator fight\" was about Jay cheating on B with her. Shortly after this song dropped, [Roy posted a photo on Instagram](http://images.rapgenius.com/5c339c1e2a0f6fba4212af00156e800e.800x513x1.jpg) with a caption that read, \"Good hair, don't care,\" and, \"#nodramaqueens.\" Shortly after, Roy distanced herself [tweeting](https://twitter.com/Rachel_Roy/status/724279585613963265) that she \"loves and respects marriage.\" In a new revelation from songwriter Diana (Wynter) Gordon per *Entertainment Weekly*, [Becky appears to refer to no exact person at all](http://www.ew.com/article/2016/08/02/diana-gordon-interview?xid=entertainment-weekly_socialflow_twitter). In fact, Gordon even decries the mass hysteria that accompanied the lyric following the album's release.\n\n>I laughed, like this is so silly. Where are we living? I was like, “What day in age from that lyric do you get all of this information?” Is it really telling you all that much, accusing people?\n\nhttps://www.youtube.com/watch?v=55bhGy0ongI"},"comment_count":3,"community":true,"created_at":1461473202,"custom_preview":null,"embed_content":"<blockquote class='rg_standalone_container' data-src='//genius.com/annotations/9043514/standalone_embed'><a href='http://genius.com/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair'>He better call Becky with the good hair&lt;br&gt; He better call Becky with the good hair</a><br><a href='http://genius.com/Beyonce-sorry-lyrics'>&#8213; Beyoncé – SORRY</a></blockquote><script async crossorigin src='//genius.com/annotations/load_standalone_embeds.js'></script>","has_voters":true,"id":9043514,"needs_exegesis":false,"pinned":false,"proposed_edit_count":0,"pyongs_count":1,"referent_id":9043514,"share_url":"http://genius.com/9043514","source":null,"state":"accepted","twitter_share_message":"““Becky” is a stereotypical-sounding name in the Black community given to average White women.\n\n“Becky” h…” —@Genius","url":"http://genius.com/9043514/Beyonce-sorry/He-better-call-becky-with-the-good-hair-he-better-call-becky-with-the-good-hair","verified":false,"votes_total":180,"current_user_metadata":{"interactions":{"cosign":false,"pyong":false,"vote":null},"permissions":["create_comment"]},"accepted_by":{"_type":"user","about_me_summary":"#Nothing to see here…\n\n\n\n\n\n\n\nEditored October, 2012 by contactek\n\n\n\nSome of my favorite rappers (no order)\n\nMos Def\nKanye West\nKendrick Lamar\nGhostface Killah\nJay-Z\nKid Cudi\nAction Bronson\nBiggie","api_path":"/users/58908","avatar":{"tiny":{"url":"https://s3.amazonaws.com/rapgenius/avatars/tiny/0nWjgwwTo2Opzwj9XF7Q.png","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://s3.amazonaws.com/rapgenius/avatars/thumb/0nWjgwwTo2Opzwj9XF7Q.png","bounding_box":{"width":32,"height":32}},"small":{"url":"https://s3.amazonaws.com/rapgenius/avatars/small/0nWjgwwTo2Opzwj9XF7Q.png","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://s3.amazonaws.com/rapgenius/avatars/medium/0nWjgwwTo2Opzwj9XF7Q.png","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://s3.amazonaws.com/rapgenius/avatars/medium/0nWjgwwTo2Opzwj9XF7Q.png","human_readable_role_for_display":"Editor","id":58908,"iq":9634,"is_meme_verified":false,"is_verified":false,"login":"SlickFic","name":"SlickFic","role_for_display":"editor","url":"http://genius.com/SlickFic","current_user_metadata":{"interactions":{"following":false},"permissions":[]}},"authors":[{"_type":"user_attribution","attribution":0.559228650137741,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Student, writer, Lusophile, blaxploitation film junkie. No, really. Ask me about any movie.","api_path":"/users/2744872","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","human_readable_role_for_display":"Editor","id":2744872,"iq":3120,"is_meme_verified":false,"is_verified":false,"login":"HIDZ","name":"HIDZ","role_for_display":"editor","url":"http://genius.com/HIDZ","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.20110192837465565,"pinned_role":null,"user":{"_type":"user","about_me_summary":"slay me a little\n\n\n-\n\npop genius editor.\n\npm me if you need to talk or if you have questions or if you need my help.\n\n\n\ncourtesy of baebouk.\n\n\n\n-\n\ntirant.\n\nnightpool is my lord and saviour on this website.\n\nq, one of my favorite people.\n\n-\n\nasian. teenage. chicago. i like beyoncé, feminism, and ice cream. love the aesthetiqué, and very into visuals.\n\n-\n\nunder pressure\n\n-\n\nmade editor by DaveHowell on 7.23.15.","api_path":"/users/1427756","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/af87023ab94a003a04281973f5d6fb3b","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/af87023ab94a003a04281973f5d6fb3b","human_readable_role_for_display":"Editor","id":1427756,"iq":34335,"is_meme_verified":false,"is_verified":false,"login":"sereinik","name":"sereinik","role_for_display":"editor","url":"http://genius.com/sereinik","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.08264462809917354,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/3071365","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/f96a1766a598b8774f0092fc8f3c3306","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/f96a1766a598b8774f0092fc8f3c3306","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/f96a1766a598b8774f0092fc8f3c3306","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/f96a1766a598b8774f0092fc8f3c3306","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/f96a1766a598b8774f0092fc8f3c3306","human_readable_role_for_display":"Editor","id":3071365,"iq":669,"is_meme_verified":false,"is_verified":false,"login":"billydisney","name":"billydisney","role_for_display":"editor","url":"http://genius.com/billydisney","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.06611570247933884,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Get all the lyrics to songs by Christine Werthman and join the Genius community of music scholars to learn the meaning behind the lyrics.","api_path":"/users/2421347","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/faf5a3b08d66b8b8f5cd439454ec237c","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/faf5a3b08d66b8b8f5cd439454ec237c","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/faf5a3b08d66b8b8f5cd439454ec237c","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/faf5a3b08d66b8b8f5cd439454ec237c","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/faf5a3b08d66b8b8f5cd439454ec237c","human_readable_role_for_display":"Verified Artist","id":2421347,"iq":4478,"is_meme_verified":false,"is_verified":true,"login":"cwerthman","name":"Christine Werthman","role_for_display":"verified_artist","url":"http://genius.com/cwerthman","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.0440771349862259,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/546560","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/a43f0855f185c55d5869b1139cc01bd9","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/a43f0855f185c55d5869b1139cc01bd9","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/a43f0855f185c55d5869b1139cc01bd9","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/a43f0855f185c55d5869b1139cc01bd9","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/a43f0855f185c55d5869b1139cc01bd9","human_readable_role_for_display":null,"id":546560,"iq":191,"is_meme_verified":false,"is_verified":false,"login":"dmes143","name":"dmes143","role_for_display":null,"url":"http://genius.com/dmes143","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.03581267217630854,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Psycho: I’m liable to go Michael, take your pick/Jackson, Tyson, Jordan, Game 6\n\nCommunity Manager\nSydney, Australia","api_path":"/users/127862","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/06823c39b60acf9d8829a309d5726a22","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://s3.amazonaws.com/filepicker-images-rapgenius/BShtCDtzSSOsPsS7BT9y_tirant-tirant%20copy.png","human_readable_role_for_display":"Staff","id":127862,"iq":338060,"is_meme_verified":false,"is_verified":false,"login":"Michael","name":"Michael Heal","role_for_display":"regulator","url":"http://genius.com/Michael","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.005509641873278237,"pinned_role":null,"user":{"_type":"user","about_me_summary":"knowledge, god","api_path":"/users/1762386","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/5cb8ae3ea928290d5c8fa812aeeb6426","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/5cb8ae3ea928290d5c8fa812aeeb6426","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/5cb8ae3ea928290d5c8fa812aeeb6426","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/5cb8ae3ea928290d5c8fa812aeeb6426","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/5cb8ae3ea928290d5c8fa812aeeb6426","human_readable_role_for_display":"Staff","id":1762386,"iq":26173,"is_meme_verified":false,"is_verified":false,"login":"JohnGanz","name":"JohnGanz","role_for_display":"regulator","url":"http://genius.com/JohnGanz","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.0027548209366391185,"pinned_role":null,"user":{"_type":"user","about_me_summary":"","api_path":"/users/1174048","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/20b352c57bce955b13a6f72f2f5d20b6","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/20b352c57bce955b13a6f72f2f5d20b6","human_readable_role_for_display":"Moderator","id":1174048,"iq":21456,"is_meme_verified":false,"is_verified":false,"login":"annaose","name":"Anna Oseran","role_for_display":"moderator","url":"http://genius.com/annaose","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}},{"_type":"user_attribution","attribution":0.0027548209366391185,"pinned_role":null,"user":{"_type":"user","about_me_summary":"Insanul is a life long hip-hop fan who hails from The Bronx, where he spent the majority of his life. He spent six years working at Complex covering music. At Complex he wrote cover stories on Wiz Khalifa, Mac Miller, and Kendrick Lamar. He got Lupe Fiasco to admit he hates Lasers, got Method Man to admit RZA and GZA ghostwrote ODB’s rhymes, and did Making ofs on albums like Nas' It Was Written, The Game’s The Documentary, and Kendrick Lamar’s good kid, m.a.a.d. city. He’s also the guy Wale yelled at on the phone that one time.","api_path":"/users/325189","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/965e80ed778b1bcf5210d97169c7c3e6","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/965e80ed778b1bcf5210d97169c7c3e6","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/965e80ed778b1bcf5210d97169c7c3e6","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/965e80ed778b1bcf5210d97169c7c3e6","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/965e80ed778b1bcf5210d97169c7c3e6","human_readable_role_for_display":"Staff","id":325189,"iq":29006,"is_meme_verified":false,"is_verified":false,"login":"Incilin","name":"Insanul Ahmed","role_for_display":"regulator","url":"http://genius.com/Incilin","current_user_metadata":{"interactions":{"following":false},"permissions":[]}}}],"brand":null,"cosigned_by":[],"created_by":{"_type":"user","about_me_summary":"Student, writer, Lusophile, blaxploitation film junkie. No, really. Ask me about any movie.","api_path":"/users/2744872","avatar":{"tiny":{"url":"https://images.genius.com/avatars/tiny/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.genius.com/avatars/thumb/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.genius.com/avatars/small/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.genius.com/avatars/medium/26c0a74bfafb3fb6b5da69a3ae0cd923","human_readable_role_for_display":"Editor","id":2744872,"iq":3120,"is_meme_verified":false,"is_verified":false,"login":"HIDZ","name":"HIDZ","role_for_display":"editor","url":"http://genius.com/HIDZ","current_user_metadata":{"interactions":{"following":false},"permissions":[]}},"top_comment":{"_type":"comment","api_path":"/comments/3891261","body":{"html":"<p>The last line in the song, she repeats You better call Becky with the good hair and cuts the music off, almost as if to say “In case you didn’t hear me the first time, let me repeat that for you”</p>","plain":"The last line in the song, she repeats You better call Becky with the good hair and cuts the music off, almost as if to say “In case you didn’t hear me the first time, let me repeat that for you”","markdown":"The last line in the song, she repeats You better call Becky with the good hair and cuts the music off, almost as if to say \"In case you didn't hear me the first time, let me repeat that for you\""},"created_at":1468666763,"has_voters":true,"id":3891261,"pinned_role":null,"votes_total":8,"current_user_metadata":{"permissions":[],"interactions":{"vote":null}},"anonymous_author":null,"author":{"_type":"user","about_me_summary":"","api_path":"/users/2480513","avatar":{"tiny":{"url":"https://images.rapgenius.com/avatars/tiny/8edb8f09da7daa3c39d2fc36360b1d22","bounding_box":{"width":16,"height":16}},"thumb":{"url":"https://images.rapgenius.com/avatars/thumb/8edb8f09da7daa3c39d2fc36360b1d22","bounding_box":{"width":32,"height":32}},"small":{"url":"https://images.rapgenius.com/avatars/small/8edb8f09da7daa3c39d2fc36360b1d22","bounding_box":{"width":100,"height":100}},"medium":{"url":"https://images.rapgenius.com/avatars/medium/8edb8f09da7daa3c39d2fc36360b1d22","bounding_box":{"width":300,"height":400}}},"header_image_url":"https://images.rapgenius.com/avatars/medium/8edb8f09da7daa3c39d2fc36360b1d22","human_readable_role_for_display":null,"id":2480513,"iq":112,"is_meme_verified":false,"is_verified":false,"login":"Maehb","name":"Maehb","role_for_display":null,"url":"http://genius.com/Maehb","current_user_metadata":{"interactions":{"following":false},"permissions":[]}},"reason":null},"verified_by":null}]}]}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"primary_album_tracks":[{"_type":"album_appearance","number":1,"song":{"_type":"song","api_path":"/songs/2457299","id":2457299,"path":"/Beyonce-pray-you-catch-me-lyrics","title":"PRAY YOU CATCH ME","url":"http://genius.com/Beyonce-pray-you-catch-me-lyrics"}},{"_type":"album_appearance","number":2,"song":{"_type":"song","api_path":"/songs/2461219","id":2461219,"path":"/Beyonce-hold-up-lyrics","title":"HOLD UP","url":"http://genius.com/Beyonce-hold-up-lyrics"}},{"_type":"album_appearance","number":3,"song":{"_type":"song","api_path":"/songs/2461230","id":2461230,"path":"/Beyonce-dont-hurt-yourself-lyrics","title":"DON’T HURT YOURSELF","url":"http://genius.com/Beyonce-dont-hurt-yourself-lyrics"}},{"_type":"album_appearance","number":4,"song":{"_type":"song","api_path":"/songs/2461226","id":2461226,"path":"/Beyonce-sorry-lyrics","title":"SORRY","url":"http://genius.com/Beyonce-sorry-lyrics"}},{"_type":"album_appearance","number":5,"song":{"_type":"song","api_path":"/songs/2461229","id":2461229,"path":"/Beyonce-6-inch-lyrics","title":"6 INCH","url":"http://genius.com/Beyonce-6-inch-lyrics"}},{"_type":"album_appearance","number":6,"song":{"_type":"song","api_path":"/songs/2461236","id":2461236,"path":"/Beyonce-daddy-lessons-lyrics","title":"DADDY LESSONS","url":"http://genius.com/Beyonce-daddy-lessons-lyrics"}},{"_type":"album_appearance","number":7,"song":{"_type":"song","api_path":"/songs/2461238","id":2461238,"path":"/Beyonce-love-drought-lyrics","title":"LOVE DROUGHT","url":"http://genius.com/Beyonce-love-drought-lyrics"}},{"_type":"album_appearance","number":8,"song":{"_type":"song","api_path":"/songs/2461245","id":2461245,"path":"/Beyonce-sandcastles-lyrics","title":"SANDCASTLES","url":"http://genius.com/Beyonce-sandcastles-lyrics"}},{"_type":"album_appearance","number":9,"song":{"_type":"song","api_path":"/songs/2461261","id":2461261,"path":"/Beyonce-forward-lyrics","title":"FORWARD","url":"http://genius.com/Beyonce-forward-lyrics"}},{"_type":"album_appearance","number":10,"song":{"_type":"song","api_path":"/songs/2461233","id":2461233,"path":"/Beyonce-freedom-lyrics","title":"FREEDOM","url":"http://genius.com/Beyonce-freedom-lyrics"}},{"_type":"album_appearance","number":11,"song":{"_type":"song","api_path":"/songs/2461241","id":2461241,"path":"/Beyonce-all-night-lyrics","title":"ALL NIGHT","url":"http://genius.com/Beyonce-all-night-lyrics"}},{"_type":"album_appearance","number":12,"song":{"_type":"song","api_path":"/songs/2419257","id":2419257,"path":"/Beyonce-formation-lyrics","title":"FORMATION","url":"http://genius.com/Beyonce-formation-lyrics"}},{"_type":"album_appearance","number":null,"song":{"_type":"song","api_path":"/songs/2461255","id":2461255,"path":"/Beyonce-lemonade-tracklist-album-cover-lyrics","title":"LEMONADE [Tracklist + Album Cover]","url":"http://genius.com/Beyonce-lemonade-tracklist-album-cover-lyrics"}},{"_type":"album_appearance","number":null,"song":{"_type":"song","api_path":"/songs/2461214","id":2461214,"path":"/Beyonce-lemonade-script-annotated","title":"LEMONADE (Script)","url":"http://genius.com/Beyonce-lemonade-script-annotated"}},{"_type":"album_appearance","number":null,"song":{"_type":"song","api_path":"/songs/2462214","id":2462214,"path":"/Beyonce-lemonade-booklet-lyrics","title":"LEMONADE [Booklet]","url":"http://genius.com/Beyonce-lemonade-booklet-lyrics"}},{"_type":"album_appearance","number":null,"song":{"_type":"song","api_path":"/songs/2461270","id":2461270,"path":"/Beyonce-lemonade-credits-lyrics","title":"LEMONADE [Credits]","url":"http://genius.com/Beyonce-lemonade-credits-lyrics"}}]}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"featured_question":null}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"pending_question_count":0}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"hyper_relevant_video":null}"></preload-content>
</preload>
<preload ng-non-bindable="">
<preload-content data-preload_data="{"recirculated_content":[{"image_url":"https://images.genius.com/mafia_iii/social.jpg","subtitle":"Genius","title":"Mafia III Soundtrack: A Genius Liner Notes Experience","type":"mafia_iii_liner_note","url":"http://genius.com/mafia-iii-music?utm_campaign=mafia_iii&utm_medium=more_on_genius&utm_source=genius.com"},{"image_url":"https://images.genius.com/2f6172852fdbfa04de95a01dd4187747.1000x563x1.png","subtitle":"Anna Oseran","title":"Everything We Know About Beyoncé’s \"Becky With The Good Hair\" Lyric","type":"article","url":"http://genius.com/a/everything-we-know-about-beyonces-becky-with-the-good-hair-lyric"},{"image_url":"https://images.genius.com/2b5ff60c9a935f42bc3d7deb32571d1a.700x400x1.jpg","subtitle":"KhalilaDouze","title":"The Best Annotations On Beyoncé's 'LEMONADE'","type":"article","url":"http://genius.com/a/the-best-annotations-on-beyonce-s-lemonade"}]}"></preload-content>
</preload>
<div class="dfp_unit dfp_unit--black_container dfp_unit--vertical_margins" id="div-gpt-ad-RUuasF70QuBg0Jk1qskJdQ"><script type="text/javascript">googletag.cmd.push(function() { googletag.display("div-gpt-ad-RUuasF70QuBg0Jk1qskJdQ"); });</script></div>
<div ng-controller="SongCtrl as song_ctrl">
<div class="song_header " ng-class="{'song_header--fade_in_background': song.header_image_url}" clipped-background-image="song.header_image_url"
on-inner-height-change="header_height=height">
<div class="song_header-inner column_layout " ng-class="{
'nganimate-long_fade_out_with_delay': !cinema_player.state.is_playing,
'nganimate-fade_in': cinema_player.state.is_playing
}" ng-hide="cinema_player.state.is_playing">
<div class="column_layout-column_span column_layout-column_span--primary">
<div class="song_header-pyong_and_primary_info">
<pyong-button type="song" object="song" on-unauthorized="song_ctrl.prompt_auth = true" variants="{tooltip_position: 'bottom left'}"
icon-template="pyong_icon_header.html"></pyong-button>
<modal-window ng-if="song_ctrl.prompt_auth" on-close="song_ctrl.prompt_auth = false" variants="{narrow_width: true}">
<authentication-form></authentication-form>
</modal-window>
<div class="song_header-primary_info" ng-mouseover="song_ctrl.show_song_info = true">
<h1 class="song_header-primary_info-title" ng-bind-html="song.title">SORRY</h1>
<h2>
<span tether-drop-target>
<a href="/artists/Beyonce" class="song_header-primary_info-primary_artist" ng-bind="song.primary_artist.name" ng-href="{{song.primary_artist.url}}">Beyoncé</a>
<tether-drop show-on="hover">
<artist-tooltip artist="song.primary_artist"></artist-tooltip>
</tether-drop>
</span>
</h2>
<div class="song_info">
<expandable-list collection="song.featured_artists" label="Featuring" limit="4" template="additional_artists">
</expandable-list>
<expandable-list collection="song.producer_artists" label="Produced By" limit="4" template="additional_artists">
<h3 class="song_info-row" ng-non-bindable>
<span class="song_info-label">Produced By</span>
<span class="song_info-info">
<a href="/artists/Wynter-gordon">Wynter Gordon</a>,
<a href="/artists/Beyonce">Beyoncé</a>,
<a href="/artists/Melo-x">MeLo-X</a>
</span>
</h3>
</expandable-list>
<song-primary-album album="song.album" ng-if="song.album">
<h3 class="song_info-row">
<span class="song_info-label">Album</span>
<span class="song_info-info"><a href="http://genius.com/albums/Beyonce/Lemonade">LEMONADE</a></span>
</h3>
</song-primary-album>
</div>
</div>
</div>
<song-verified-artists verified_contributors="song.verified_contributors" ng-cloak></song-verified-artists>
</div>
</div>
</div>
<div class="song_body column_layout">
<div class="column_layout-column_span column_layout-column_span--primary">
<div class="song_body-lyrics">
<h2 class="text_label text_label--gray u-top_margin">SORRY Lyrics</h2>
<lyrics class="lyrics" remove-class-on-angular-load="lyrics" yields-anchorer="lyrics_anchorer = anchorer" canonical-lyrics-html="lyrics_data.body.html">
<!--sse-->
<p>[Chorus]<br>
<a href="/Beyonce-sorry-lyrics#note-9046731" data-id="9046731" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046731" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
I ain't sorry, nigga, nah<br>
Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
I ain't sorry</a><br>
<br> [Verse 1]<br>
<a href="/Beyonce-sorry-lyrics#note-9043369" data-id="9043369" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043369" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="2" possibly-branded="false">He trying to roll me up, I ain't picking up<br>
Headed to the club, I ain't thinking 'bout you</a><br>
<a href="/Beyonce-sorry-lyrics#note-9042986" data-id="9042986" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9042986" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="3" possibly-branded="false">Me and my ladies sip my D'ussé cup<br>
I don't give a fuck, chucking my deuces up</a><br>
<a href="/Beyonce-sorry-lyrics#note-9046758" data-id="9046758" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046758" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Suck on my balls, pause, I had enough<br>
I ain't thinking 'bout you<br>
I ain't thinking 'bout</a><br>
<div avoid-selection class="u-noselect">
<div class="dfp_unit " id="div-gpt-ad-ab0IPevTz0qBtmOC0rsOog"><script type="text/javascript">googletag.cmd.push(function() { googletag.display("div-gpt-ad-ab0IPevTz0qBtmOC0rsOog"); });</script></div>
</div>[Bridge]<br>
<a href="/Beyonce-sorry-lyrics#note-9043238" data-id="9043238" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043238" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Middle fingers up, put them hands high<br>
Wave it in his face, tell him, boy, bye<br>
Tell him, boy, bye, boy, bye, middle fingers up<br>
I ain't thinking 'bout you</a><br>
<br> [Hook]
<br>
<a href="/Beyonce-sorry-lyrics#note-9046731" data-id="9046731" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046731" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
I ain't sorry, nigga, nah<br>
I ain't thinking 'bout you<br>
Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
No no, hell nah</a><br>
<br> [Verse 2]<br>
<a href="/Beyonce-sorry-lyrics#note-9047683" data-id="9047683" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9047683" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Now you want to say you're sorry<br>
Now you want to call me crying</a><br>
<a href="/Beyonce-sorry-lyrics#note-9047727" data-id="9047727" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9047727" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Now you gotta see me wilding</a><br>
<a href="/Beyonce-sorry-lyrics#note-9045914" data-id="9045914" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9045914" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Now I'm the one that's lying<br>
And I don't feel bad about it<br>
It's exactly what you get<br>
Stop interrupting my grinding<br>
(You interrupting my grinding)<br>
I ain't thinking 'bout you</a><br>
<br> [Hook]
<br>
<a href="/Beyonce-sorry-lyrics#note-9046731" data-id="9046731" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046731" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Sorry, I ain't sorry<br>
I ain't thinking 'bout you<br>
I ain't thinking 'bout you<br>
Sorry, I ain't sorry<br>
I ain't thinking 'bout you<br>
I ain't thinking 'bout you</a><br>
<br> [Bridge]
<br>
<a href="/Beyonce-sorry-lyrics#note-9043238" data-id="9043238" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043238" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Middle fingers up, put them hands high<br>
Wave it in his face, tell him, boy, bye<br>
Tell him, boy, bye, boy, bye<br>
Middle fingers up, I ain't thinking 'bout you</a><br>
<br> [Hook]
<br>
<a href="/Beyonce-sorry-lyrics#note-9046731" data-id="9046731" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046731" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
I ain't sorry, nigga, nah<br>
Sorry, I ain't sorry<br>
Sorry, I ain't sorry<br>
I ain't sorry<br>
No no, hell nah</a><br>
<br> [Verse 3]<br>
<a href="/Beyonce-sorry-lyrics#note-9046509" data-id="9046509" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046509" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Looking at my watch, he shoulda been home<br>
Today I regret the night I put that ring on</a><br>
<a href="/Beyonce-sorry-lyrics#note-9047330" data-id="9047330" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9047330" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">He always got them fucking excuses<br>
I pray to the Lord you reveal what his truth is</a><br>
<a href="/Beyonce-sorry-lyrics#note-9046943" data-id="9046943" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046943" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="2" possibly-branded="false">I left a note in the hallway<br>
By the time you read it, I'll be far away</a><br>
<a href="/Beyonce-sorry-lyrics#note-9046449" data-id="9046449" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046449" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">I'm far away<br>
But I ain't fucking with nobody</a><br>
<a href="/Beyonce-sorry-lyrics#note-9043573" data-id="9043573" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043573" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="2" possibly-branded="false">Let's have a toast to the good life</a><br>
<a href="/Beyonce-sorry-lyrics#note-9061914" data-id="9061914" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9061914" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="1" possibly-branded="false">Suicide before you see this tear fall down my eyes</a><br>
<a href="/Beyonce-sorry-lyrics#note-9043919" data-id="9043919" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043919" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Me and my baby, we gon' be alright<br>
We gon' live a good life</a><br>
<a href="/Beyonce-sorry-lyrics#note-9043857" data-id="9043857" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043857" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Big homie better grow up</a><br>
<a href="/Beyonce-sorry-lyrics#note-9046836" data-id="9046836" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9046836" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">Me and my whoadies 'bout to stroll up<br>
I see them boppers in the corner<br>
They sneaking out the back door</a><br>
<a href="/Beyonce-sorry-lyrics#note-9043931" data-id="9043931" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043931" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">He only want me when I'm not there</a><br>
<a href="/Beyonce-sorry-lyrics#note-9043514" data-id="9043514" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9043514" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="3" possibly-branded="false">He better call Becky with the good hair<br>
He better call Becky with the good hair</a><br>
<br>
<a href="/Beyonce-sorry-lyrics#note-9047123" data-id="9047123" class="referent" ng-click="open()" ng-class="{
'referent--linked_to_preview': song_ctrl.referent_has_preview(fragment_id),
'referent--linked_to_preview_active': song_ctrl.highlight_preview_referent(fragment_element_id),
'referent--purple_indicator': song_ctrl.show_preview_referent_indicator(fragment_element_id)
}" prevent-default-click="" annotation-fragment="9047123" on-hover-with-no-digest="set_current_hover_and_digest(hover ? fragment_id : undefined)"
classification="accepted" image="false" pending-editorial-actions-count="0" possibly-branded="false">[Visual breakdown]</a></p>
<!--/sse-->
</lyrics>
<share-buttons song="song"></share-buttons>
<recirculated-content content="recirculated_content">
<div class="u-xx_large_vertical_margins">
<div class="text_label text_label--gray">More on Genius</div>
<a href="http://genius.com/mafia-iii-music?utm_campaign=mafia_iii&utm_medium=more_on_genius&utm_source=genius.com"
class="recirculated_content">
<div class="recirculated_content-image" style="background-image: url('https://images.genius.com/mafia_iii/social.jpg')"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">Mafia III Soundtrack: A Genius Liner Notes Experience</div>
<div class="recirculated_content-subtitle">Genius</div>
</div>
</a>
<a href="http://genius.com/a/everything-we-know-about-beyonces-becky-with-the-good-hair-lyric" class="recirculated_content">
<div class="recirculated_content-image" style="background-image: url('https://images.genius.com/2f6172852fdbfa04de95a01dd4187747.1000x563x1.png')"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">Everything We Know About Beyoncé’s "Becky With The Good Hair" Lyric</div>
<div class="recirculated_content-subtitle">Anna Oseran</div>
</div>
</a>
<a href="http://genius.com/a/the-best-annotations-on-beyonce-s-lemonade" class="recirculated_content">
<div class="recirculated_content-image" style="background-image: url('https://images.genius.com/2b5ff60c9a935f42bc3d7deb32571d1a.700x400x1.jpg')"></div>
<div class="recirculated_content-info">
<div class="recirculated_content-title">The Best Annotations On Beyoncé's 'LEMONADE'</div>
<div class="recirculated_content-subtitle">KhalilaDouze</div>
</div>
</a>
</div>
</recirculated-content>
<div id="taboola-below-article-thumbnails"></div>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({
mode: "thumbnails-a",
container: 'taboola-below-article-thumbnails',
placement: 'Below Article Thumbnails',
target_type: 'mix'
});
</script>
<script type="text/javascript">
window._taboola = window._taboola || [];
_taboola.push({flush: true});
</script>
<div class="u-xx_large_top_margin u-bottom_margin">
<comments type="songs" commentable="song" auto="true"></comments>
</div>
</div>
</div>
<div class="column_layout-column_span column_layout-column_span--secondary u-top_margin column_layout-flex_column">
<div class="column_layout-column_span-initial_content" ng-if="::false">
<div class="song_art_and_video">
<div class="cover_art"></div>
</div>
<div class="song_metadata u-xx_large_bottom_margin"></div>
<div ng-non-bindable>
<div class="annotation_label">
<h3 class="u-inline">
About “SORRY”
</h3>
</div>
<div class="rich_text_formatting">
<p>“Sorry” is a defiant breakup song, a middle-fingered clap-back anthem about having strength and
confidence in the midst of an otherwise serious and emotionally tugging breakup.</p>
<p>The song takes a “sorry, not sorry” attitude in which Beyoncé insists that she isn’t even thinking
about her problematic ex anymore. At this point in the album, Beyoncé seems sure she won’t
be accepting any apologies any time soon.</p>
<p><a href="http://genius.com/artists/Melo-x">MeLo-X</a>, one of the songwriters credited on the
track, <a href="http://pitchfork.com/news/65045-beyonces-lemonade-collaborator-melo-x-gives-first-interview-on-making-of-the-album/?mbid=social_twitter"
rel="nofollow">said</a> that he wrote the lyrics <em>way</em> before Justin Bieber’s <a href="http://genius.com/Justin-bieber-sorry-lyrics">song of the same name</a> was released,</p>
<blockquote>
<p>It might have been last summer. It was way before that song came out. I mean, it’s funny…
But yeah so, that track was kind of like creating a vibe in the studio. We were just
working on a lot of stuff and the idea came up pretty simple. It was just some cool keys,
drum patterns, and we started putting down vocal ideas and lyric ideas. And throughout
the month, we added to it and Hit-Boy came in and sprinkled all these different sounds
and layers to it and made it come together fully.</p>
</blockquote>
<p><a href="https://www.youtube.com/watch?v=55bhGy0ongI" rel="nofollow">https://www.youtube.com/watch?v=55bhGy0ongI</a></p>
</div>
</div>
</div>
<div class="column_layout-column_span-initial_content">
<song-media></song-media>
<div ng-show="initial_sidebar_content_showing()">
<div class="show_tiny_edit_button_on_hover u-xx_large_bottom_margin">
<song-metadata song="song" ng-cloak></song-metadata>
<div class="song_metadata song_metadata--no_min_height">
<div>
<div ng-if="song.hidden" class="metadata_unit" tether-drop-target ng-cloak>
<span class="metadata_unit-icon_wrapper">
<svg src="eye_cross.svg" class="metadata_unit-icon"></svg>
</span>
<span class="metadata_unit-value">Hidden</span>
<tether-drop show-on="hover" position="bottom center">
<div class="tooltip tooltip--tiny rich_text_formatting rich_text_formatting--no_vertical_margins">
<p><strong>This page is accessible to</strong></p>
<ul>
<li>Verified artists on the song</li>
<li ng-repeat="role in song.viewable_by_roles" ng-bind="'role.types.' + role | i18n:{count:2, defaultValue: role}"></li>
</ul>
</div>
</tether-drop>
</div>
<div ng-if="song.published" class="metadata_unit" tether-drop-target ng-cloak>
<span class="metadata_unit-icon_wrapper">
<svg src="lock.svg" class="metadata_unit-icon"></svg>
</span>
<span class="metadata_unit-value">Locked</span>
<tether-drop show-on="hover" position="bottom center">
<div class="tooltip tooltip--tiny">This song has been locked and is considered "done." You need <strong>600 IQ</strong> to add annotations to locked songs.
</div>
</tether-drop>
</div>
</div>
<song-admin-menu ng-if="user_signed_in" ng-cloak></song-admin-menu>
</div>
<div class="tiny_edit_button" ng-click="song_ctrl.show_metadata_form('album_date_and_tags')" ng-hide="song_ctrl.saving" ng-if="can_perform('edit_anything')"
stop-propagation="click">
<svg src="pencil.svg" class="tiny_edit_button-svg"></svg>
</div>
</div>
<relevant-videos song="song" ng-if="!cinema_player && !hyper_relevant_video"></relevant-videos>
<description-referent ng-cloak object="song.description_annotation" variants="{truncated: true, prompt: 'song'}"></description-referent>
<ul ng-if="::false">
</ul>
<question-list song="song" pinned-questions="pinned_questions" default-questions="default_questions" featured-question="featured_question"
pending-question-count="pending_question_count"></question-list>
<button ng-cloak ng-if="!user_signed_in && song.description_annotation.annotations[0].needs_exegesis" ng-init="song_ctrl.signing_up = false"
class="square_button" ng-hide="song_ctrl.signing_up" ng-click="song_ctrl.signing_up = true" ng-bind=":: 'annotation.sign_up_to_annotate' | i18n"></button>
<authentication-form ng-if="song_ctrl.signing_up" header-text=":: 'annotation.sign_up_to_annotate' | i18n"></authentication-form>
<div class="dfp_unit dfp_unit--vertical_margins" id="div-gpt-ad-4ai0tUt2_pGAKaV7Q-P3Cw"><script type="text/javascript">googletag.cmd.push(function() { googletag.display("div-gpt-ad-4ai0tUt2_pGAKaV7Q-P3Cw"); });</script></div>
<div class="song_info song_info--table u-xx_large_vertical_margins show_tiny_edit_button_on_hover" ng-if="song_ctrl.has_track_info('writer_artists', 'release_date', 'recording_location', 'custom_performances') || song_ctrl.has_song_relationships()">
<div class="text_label u-x_small_bottom_margin" ng-cloak>"SORRY" Track Info</div>
<div class="tiny_edit_button" ng-if="can_perform('edit_anything')" ng-hide="song_ctrl.saving" ng-click="song_ctrl.show_metadata_form('title_and_artists')"
stop-propagation="click">
<svg src="pencil.svg" class="tiny_edit_button-svg"></svg>
</div>
<expandable-list collection="song.writer_artists" label="Written By" limit="4" template="additional_artists">