-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
953 lines (918 loc) · 356 KB
/
test.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
<!--<!DOCTYPE html>-->
<!--<html lang="en">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <title>Title</title>-->
<!--</head>-->
<!--<body>-->
<!--</body>-->
<!--</html>-->
<!DOCTYPE html>
<html>
<head>
<title>Nipsey Hussle – Victory Lap Lyrics | Genius Lyrics</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width,initial-scale=1" name="viewport"/>
<meta content="app-id=709482991" name="apple-itunes-app"/>
<link href="https://assets.genius.com/images/apple-touch-icon.png?1713210365" rel="apple-touch-icon"/>
<link href="https://assets.genius.com/images/apple-touch-icon.png?1713210365" rel="apple-touch-icon"/>
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta content="on" http-equiv="cleartype"/>
<meta content="f63347d284f184b0" name="y_key"/>
<meta content="Genius" property="og:site_name">
<meta content="265539304824" property="fb:app_id">
<meta content="308252472676410" property="fb:pages">
<link href="https://genius.com/opensearch.xml" rel="search" title="Genius" type="application/opensearchdescription+xml"/>
<script>
!function(){if('PerformanceLongTaskTiming' in window){var g=window.__tti={e:[]};
g.o=new PerformanceObserver(function(l){g.e=g.e.concat(l.getEntries())});
g.o.observe({entryTypes:['longtask']})}}();
</script>
<!--sse-->
<script>window['Genius.ads'] = window['Genius.ads'] || [];</script>
<link as="script" href="https://securepubads.g.doubleclick.net/tag/js/gpt.js" rel="preload"><script async="true" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" type="text/javascript"></script>
<script>
!function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function(){q("f",arguments)},setDisplayBids:function(){},targetingKeys:function(){return[]},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore(A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
</script>
<link as="script" href="https://d3l739e8r8y9v7.cloudfront.net/script.js" rel="preload"/><script async="true" src="https://d3l739e8r8y9v7.cloudfront.net/script.js" type="text/javascript"></script>
<script>
window['Genius.ads'].push(function(ads) {
var config = {"ad_placements":{"amp_article_sticky":{"sizes":[[300,50],[320,50]],"a9":true,"kv":{"is_atf":false}},"amp_article_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_article_footer_prebid"}}]},"amp_album_sticky":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_sticky_prebid"}}]},"amp_album_footer":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_album_footer_prebid"}}]},"amp_song_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"id":10,"siteID":194719}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_annotation_prebid"}}]},"amp_song_below_player":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_player_prebid"}}]},"amp_song_below_song_bio":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"id":8,"siteID":194716}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_below_song_bio_prebid"}}]},"amp_song_leaderboard":{"sizes":[[320,50]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937404"}},{"bidder":"ix","params":{"id":25,"siteID":300787}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051268"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_leaderboard_prebid"}}]},"amp_song_medium1":{"sizes":[[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"id":1,"siteID":194712}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium1_prebid"}}]},"amp_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"id":5,"siteID":194713}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium2_prebid"}}]},"amp_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"id":6,"siteID":194714}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium3_prebid"}}]},"amp_song_medium_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"id":7,"siteID":194715}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_medium_footer_prebid"}}]},"amp_song_q_and_a":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"id":11,"siteID":194720}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_q_and_a_prebid"}}]},"amp_song_sticky":{"sizes":[[320,50]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"id":3,"siteID":194711}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}},{"bidder":"triplelift","params":{"inventoryCode":"amp_song_sticky_prebid"}}]},"amp_song_interstitial":{"sizes":[[320,480]],"kv":{"is_atf":true}},"amp_song_medium1_interscroller":{"sizes":[[320,480]],"kv":{"is_atf":false}},"amp_video_leaderboard":{"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"amp_mw_video_leaderboard_prebid"}}]},"android_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"android_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"app_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"genius_ios_app_song_inread":{"sizes":"MEDIUM_RECTANGLE"},"genius_ios_app_song_inread2":{"sizes":"MEDIUM_RECTANGLE"},"genius_ios_app_song_inread3":{"sizes":"MEDIUM_RECTANGLE"},"brightcove_article_web_player":{"exclude_assembly":true,"sizes":[[640,360]]},"brightcove_modal_web_player":{"exclude_assembly":true,"sizes":[[640,360]]},"brightcove_article_list_web_player":{"exclude_assembly":true,"sizes":[[640,360]]},"brightcove_mobile_thumbnail_web_player":{"exclude_assembly":true,"sizes":[[640,360]]},"desktop_album_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_leaderboard_prebid"}}]},"desktop_album_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":true},"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_album_sidebar_prebid"}}]},"desktop_article_sidebar":{"sizes":[[300,600],[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_article_sidebar_prebid"}}]},"desktop_article_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"kv":{"is_atf":true}},"desktop_article_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_artist_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_leaderboard_prebid"}}]},"desktop_artist_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_artist_sidebar_prebid"}}]},"desktop_discussion_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_discussion_leaderboard_prebid"}}]},"desktop_discussion_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_forum_leaderboard":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_forum_medium1":{"sizes":[[300,250]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_forum_medium1_prebid"}}]},"desktop_home_footer":{"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90]},"desktop_home_leaderboard":{"master_on_page":true,"sizes":[[970,250],[728,90],[970,1],[4,1]],"a9":true,"kv":{"is_atf":true}},"desktop_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"mobile_home_promo_unit":{"refresh_unsafe":true,"sizes":[[2,1]]},"desktop_home_skin":{"sizes":[[1700,800],[1700,1200]],"kv":{"is_atf":true}},"desktop_search_leaderboard":{"sizes":[[970,250],[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_leaderboard_prebid"}}]},"desktop_search_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_search_sidebar_prebid"}}]},"desktop_song_about_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783318"}}]},"desktop_song_about_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783319"}}]},"desktop_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294796"}},{"bidder":"ix","params":{"siteId":194718,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639856"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_annotation_prebid"}}]},"desktop_song_comments":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"has_only_dynamic_placements":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294806"}},{"bidder":"ix","params":{"siteId":194722,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639858"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703511"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_comments_prebid"}}]},"desktop_song_comments_leaderboard":{"sizes":[[970,250],[728,90]],"placeholder_size":[728,90],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783321"}}]},"desktop_song_comments_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true},"desktop_song_inread":{"sizes":[[1,1],[1,2],[300,250],[336,280],[320,480],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476342"}},{"bidder":"ix","params":{"siteId":201300,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660418"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"351297791"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread_prebid"}}]},"desktop_song_inread2":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476344"}},{"bidder":"ix","params":{"siteId":201301,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660420"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408951"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread2_prebid"}}]},"desktop_song_inread3":{"sizes":[[300,250],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11476345"}},{"bidder":"ix","params":{"id":21,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660424"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464409071"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_inread3_prebid"}}]},"desktop_song_lyrics_inread":{"sizes":[[1,1],[300,250],[728,90],[970,250],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true},"desktop_song_lyrics_inread2":{"sizes":[[300,250],[728,90],[970,250],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783310"}}]},"desktop_song_lyrics_inread3":{"sizes":[[300,250],[728,90],[970,250],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783314"}}]},"desktop_song_leaderboard":{"sizes":[[970,250],[728,90],[970,90],[970,1]],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294811"}},{"bidder":"ix","params":{"siteId":197229,"size":[728,90]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639864"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_leaderboard_prebid"}}]},"desktop_song_combined_leaderboard":{"sizes":[[728,90],[970,250],[4,1]],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783264"}}]},"desktop_song_lyrics_sidebar":{"sizes":[[300,250],[300,600]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783298"}}]},"desktop_song_lyrics_sidebar2":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783301"}}]},"desktop_song_lyrics_sidebar3":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783306"}}]},"desktop_song_lyrics_sidebar4":{"sizes":[[300,250]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"18783307"}}]},"desktop_song_lyrics_footer":{"sizes":[[300,250],[300,600],[336,280],[468,60]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294823"}},{"bidder":"ix","params":{"siteId":194710,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639860"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"397849871"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_lyrics_footer_prebid"}}]},"desktop_song_marquee":{"sizes":[[4,1]],"refresh_unsafe":true,"kv":{"is_atf":true}},"desktop_song_medium1":{"sizes":[[300,600],[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294830"}},{"bidder":"ix","params":{"siteId":194709,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"639862"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346199471"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_medium1_prebid"}}]},"primis_desktop_song_player":{"sizes":[[640,360]],"assembly_video":{"position":"below_the_fold"},"a9":{"media_type":"video"}},"primis_mobile_song_player":{"sizes":[[640,360]],"assembly_video":{"position":"below_the_fold"},"a9":{"media_type":"video"}},"desktop_song_q_and_a":{"sizes":[[300,250]],"a9":true,"has_only_dynamic_placements":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11474887"}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"660286"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"464408711"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_q_and_a_prebid"}}]},"desktop_song_sidebar_top":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11621942"}},{"bidder":"ix","params":{"siteId":221945,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"135638","zoneId":"682610"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"21615783137"}},{"bidder":"triplelift","params":{"inventoryCode":"desktop_song_sidebar_top_prebid"}}]},"desktop_user_leaderboard":{"master_on_page":true,"sizes":[[728,90]],"a9":true,"placeholder_size":[728,90],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_user_leaderboard_prebid"}}]},"desktop_user_sidebar":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250]},"desktop_video_sidebar":{"sizes":[[300,250],[300,600]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"desktop_video_sidebar_prebid"}}]},"desktop_sitewide_interstitial":{"out_of_page":true,"out_of_page_format":"INTERSTITIAL","has_only_dynamic_placements":true,"sizes":[[320,480],[300,250],[336,280]],"a9":false,"kv":{"is_atf":true}},"mobile_artist_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_leaderboard_prebid"}}]},"mobile_artist_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_artist_footer_prebid"}}]},"mobile_discussion_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_discussion_leaderboard_prebid"}}]},"mobile_home_adhesion":{"master_on_page":true,"sizes":[[320,50],[320,100]],"a9":true,"kv":{"is_atf":true}},"mobile_home_footer":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}},"mobile_forum_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50]},"mobile_search_leaderboard":{"sizes":[[320,50]],"a9":true,"placeholder_size":[320,50],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_leaderboard_prebid"}}]},"mobile_search_footer":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_search_footer_prebid"}}]},"mobile_song_about":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[[300,250]],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969024"}}]},"mobile_song_lyrics_footer":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[[300,250]],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969013"}}]},"mobile_song_annotation":{"sizes":[[300,250]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294868"}},{"bidder":"ix","params":{"siteId":194719,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613918"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"399321431"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_annotation_prebid"}}]},"mobile_sitewide_interstitial":{"out_of_page":true,"out_of_page_format":"INTERSTITIAL","has_only_dynamic_placements":true,"sizes":[[320,480],[300,250],[336,280]],"kv":{"is_atf":true}},"mobile_song_comments":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294870"}},{"bidder":"ix","params":{"siteId":194721,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613922"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703391"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_comments_prebid"}}]},"mobile_song_comments_leaderboard":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"2196986"}}]},"mobile_song_comments_footer":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969092"}}]},"mobile_song_credits":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969063"}}]},"mobile_song_footer":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"placeholder_size":[300,250],"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294876"}},{"bidder":"ix","params":{"siteId":194715,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613908"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"395129471"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_footer_prebid"}}]},"mobile_song_lyrics_header":{"sizes":[[320,50]],"placeholder_size":[320,50],"a9":true,"kv":{"is_atf":true},"master_on_page":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"13937403"}},{"bidder":"ix","params":{"id":26,"siteID":300788}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"1051274"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_lyrics_header_prebid"}}]},"mobile_song_lyrics_header_adhesion":{"sizes":[[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":true},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294881"}},{"bidder":"ix","params":{"siteId":194711,"size":[300,50]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613898"}}]},"mobile_song_lyrics_inread":{"sizes":[[1,1],[320,480],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true},"mobile_song_lyrics_inread2":{"sizes":[[1,1],[300,250],[320,480],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969011"}}]},"mobile_song_lyrics_inread3":{"sizes":[[1,1],[300,250],[320,480],[1300,1]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969012"}}]},"mobile_song_medium1":{"sizes":[[1,1],[1,2],[300,250],[320,480]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294891"}},{"bidder":"ix","params":{"siteId":194712,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613900"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346200911"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium1_prebid"}}]},"mobile_song_medium2":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294897"}},{"bidder":"ix","params":{"siteId":194713,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613902"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"346201631"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium2_prebid"}}]},"mobile_song_medium3":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294900"}},{"bidder":"ix","params":{"siteId":194714,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613906"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703151"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_medium3_prebid"}}]},"mobile_song_q_and_a":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294908"}},{"bidder":"ix","params":{"siteId":194720,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613920"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703271"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_q_and_a_prebid"}}]},"mobile_song_song_bio":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"a9":true,"kv":{"is_atf":false},"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"11294916"}},{"bidder":"ix","params":{"siteId":194716,"size":[300,250]}},{"bidder":"rubicon","params":{"accountId":"15874","siteId":"107816","zoneId":"613910"}},{"bidder":"undertone","params":{"publisherId":"3603","placementId":"408703991"}},{"bidder":"triplelift","params":{"inventoryCode":"mobile_song_song_bio_prebid"}}]},"mobile_song_tracklist":{"sizes":[[300,250],[300,50],[320,50],[320,100]],"placeholder_size":[300,250],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"21969042"}}]},"mobile_song_sticky":{"sizes":[[320,50],[300,50]],"placeholder_size":[320,50],"has_only_dynamic_placements":true,"a9":true,"prebid_placements":[{"bidder":"appnexus","params":{"placementId":"23160297"}}]},"mobile_user_leaderboard":{"master_on_page":true,"sizes":[[320,50]],"a9":true,"prebid_placements":[{"bidder":"triplelift","params":{"inventoryCode":"mobile_user_leaderboard_prebid"}}]},"mobile_user_footer":{"sizes":[[300,250]],"a9":true},"desktop_sitewide_primis_video":{"sizes":[[640,360]],"assembly_video":{"position":"above_the_fold"},"a9":{"media_type":"video"}},"mobile_sitewide_primis_video":{"sizes":[[640,360]],"assembly_video":{"position":"above_the_fold"},"a9":{"media_type":"video"}},"web_annotator_annotation":{"sizes":[[300,250]],"a9":true,"kv":{"is_atf":false}},"desktop_home_charts_song":{"sizes":[[1,77]],"refresh_unsafe":true,"exclude_assembly":true},"mobile_home_charts_song":{"sizes":[[1,78]],"refresh_unsafe":true,"exclude_assembly":true},"desktop_song_recommended_song":{"sizes":[[1,114]],"refresh_unsafe":true,"exclude_assembly":true},"mobile_song_recommended_song":{"sizes":[[1,110]],"refresh_unsafe":true,"exclude_assembly":true},"desktop_home_sponsored_charts":{"sizes":[[1,58]],"refresh_unsafe":true,"exclude_assembly":true},"mobile_home_sponsored_charts":{"sizes":[[1,36]],"refresh_unsafe":true,"exclude_assembly":true},"desktop_song_sponsored_minicharts":{"sizes":[[1,56]],"refresh_unsafe":true,"exclude_assembly":true},"mobile_song_sponsored_minicharts":{"sizes":[[1,50]],"refresh_unsafe":true,"exclude_assembly":true},"tonefuse_android_mobile_web_320x50_sticky_banner":{"sizes":[[320,50]],"exclude_assembly":true},"genius_desktop_song_annotation_leaderboard":{"sizes":[[320,50]]},"genius_mobile_song_annotation_leaderboard":{"sizes":[[320,50],[300,50]],"breakpoints":[{"maxScreenWidth":390,"maxAdWidth":300}]}},"dfp_network_id":"342026871","a9_pub_id":"3459","prebid":{"priceGranularity":{"buckets":[{"max":1.0,"increment":0.01},{"max":5.0,"increment":0.02},{"max":20.0,"increment":0.1}]},"bidderSettings":{"districtmDMX":{"bidCpmAdjustment":0.9}},"sizes":[[970,250],[970,90],[728,90],[468,60],[336,280],[300,50],[300,250],[300,600],[320,100],[320,50],[1,2]],"experimental_bidders":[]},"platform":"desktop","prebid_timeout_ms":1000,"prebid_terminal_timeout_ms":1500,"header_bidding_enabled":true,"prebid_server_enabled":false,"prebid_server_timeout":400,"prebid_server":{"appnexus":{"account_id":"c438d9e0-0182-4737-8ad7-68bcaf49d76e","endpoint":"https://prebid.adnxs.com/pbs/v1/openrtb2/auction","sync_endpoint":"https://prebid.adnxs.com/pbs/v1/cookie_sync"},"rubicon":{"account_id":"15874","endpoint":"https://prebid-server.rubiconproject.com/openrtb2/auction","sync_endpoint":"https://prebid-server.rubiconproject.com/cookie_sync"}},"ias_enabled":true,"ias_pubid":"927569","cmp_enabled":false,"consent_timeout":10000,"ana_api_key":"056363cfdcfcf7de5cea11820138b4d2daf3ca","ana_host_rewrite_map":{"genius.com":"genius.com"},"ana_base_url":"https://ads.assemblyexchange.com","masquarade_as_ana_sdk_version":"web_2.1.3","disabled_ad_units":["desktop_home_charts_song","mobile_home_charts_song","desktop_home_sponsored_charts","mobile_home_sponsored_charts","desktop_song_recommended_song","mobile_song_recommended_song","desktop_song_sponsored_minicharts","mobile_song_sponsored_minicharts","desktop_home_skin"]};
var targeting_list = [{"name":"song_id","values":["3510797"]},{"name":"song_title","values":["Victory Lap"]},{"name":"artist_id","values":["1263"]},{"name":"artist_name","values":["Nipsey Hussle"]},{"name":"is_explicit","values":["true"]},{"name":"pageviews","values":["441168"]},{"name":"primary_tag_id","values":["1434"]},{"name":"primary_tag","values":["rap"]},{"name":"tag_id","values":["2741","3783","3171","798","1434"]},{"name":"song_tier","values":["D"]},{"name":"topic","values":[]},{"name":"in_top_10","values":["false"]},{"name":"artist_in_top_10","values":["false"]},{"name":"album_in_top_10","values":["false"]},{"name":"new_release","values":["false"]},{"name":"release_month","values":["201802"]},{"name":"release_year","values":["2018"]},{"name":"release_decade","values":["2010"]},{"name":"stubhub_is_active","values":["false"]},{"name":"in_top_10_rap","values":["false"]},{"name":"in_top_10_rock","values":["false"]},{"name":"in_top_10_country","values":["false"]},{"name":"in_top_10_r_and_b","values":["false"]},{"name":"in_top_10_pop","values":["false"]},{"name":"environment","values":["production"]},{"name":"platform","values":["web"]},{"name":"platform_variant","values":["desktop_react"]},{"name":"interstitial_variant","values":["control"]},{"name":"ad_page_type","values":["song"]}];
var initial_units = ["desktop_song_combined_leaderboard","desktop_song_lyrics_sidebar"];
var targeting = {};
targeting_list.forEach(function(pair) {
targeting[pair.name] = pair.values;
});
var initial_last_reset_at = 1 || Date.now();
ads.initialize({config: config, targeting: targeting, initial_units: initial_units, initial_last_reset_at: initial_last_reset_at});
initial_units.forEach(unit => ads.render(unit, unit));
});
window.addEventListener('load', () => {
setTimeout(function() {
window['Genius.ads'].push(function(ads) { ads.trigger_user_syncs(); });
}, 1000);
});
</script>
<script async="" src="https://cdn.adsafeprotected.com/iasPET.1.js"></script>
<script>
function initialize_wunderkind(d) {
window.addEventListener('load', function() {
var e = d.createElement('script');
e.src = d.location.protocol + '//tag.wknd.ai/5453/i.js';
e.async = true;
d.getElementsByTagName("head")[0].appendChild(e);
});
}
function determine_wunderkind_eligibility() {
if (window.location.search.includes('enable_wunderkind')) {
initialize_wunderkind(document);
return;
}
let wunderkind_segment = 0;
try { wunderkind_segment = localStorage.getItem('genius_wunderkind_segment'); } catch (e) {}
if (typeof(wunderkind_segment) === 'string') {
wunderkind_segment = Number(wunderkind_segment);
} else {
wunderkind_segment = Math.random();
try { localStorage.setItem('genius_wunderkind_segment', wunderkind_segment); } catch (e) {}
}
if ((wunderkind_segment * 100) < 100.0) {
window['com.Genius.wunderkind_cohort'] = 'wunderkind';
initialize_wunderkind(document);
} else {
window['com.Genius.wunderkind_cohort'] = 'control';
}
}
determine_wunderkind_eligibility();
</script>
<!--/sse-->
<link as="script" href="https://assets.genius.com/javascripts/compiled/reactSongClient.desktop-d5ec1e2ceac2a01c2092.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/reactSongClient.desktop-d5ec1e2ceac2a01c2092.js" type="text/javascript"></script>
<link as="script" href="https://assets.genius.com/javascripts/compiled/reactVendors.desktop-923224434d9689632988.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/reactVendors.desktop-923224434d9689632988.js" type="text/javascript"></script>
<link as="script" href="https://assets.genius.com/javascripts/compiled/reactPageVendors.desktop-e33b40cf87808da92136.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/reactPageVendors.desktop-e33b40cf87808da92136.js" type="text/javascript"></script>
<link as="script" href="https://assets.genius.com/javascripts/compiled/reactPage.desktop-0afd685c5a27a377e21d.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/reactPage.desktop-0afd685c5a27a377e21d.js" type="text/javascript"></script>
<link as="script" href="https://assets.genius.com/javascripts/compiled/reactAds.desktop-38ec2949976511596054.js" rel="preload"/><script defer="true" src="https://assets.genius.com/javascripts/compiled/reactAds.desktop-38ec2949976511596054.js" type="text/javascript"></script>
<style>
@font-face {
font-family: 'Programme';
src: url(https://assets.genius.com/fonts/programme_bold.woff2?1713210365) format('woff2'),
url(https://assets.genius.com/fonts/programme_bold.woff?1713210365) format('woff');
font-style: normal;
font-weight: bold;
}
@font-face {
font-family: 'Programme';
src: url(https://assets.genius.com/fonts/programme_normal.woff2?1713210365) format('woff2'),
url(https://assets.genius.com/fonts/programme_normal.woff?1713210365) format('woff');
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: 'Programme';
src: url(https://assets.genius.com/fonts/programme_normal_italic.woff2?1713210365) format('woff2'),
url(https://assets.genius.com/fonts/programme_normal_italic.woff?1713210365) format('woff');
font-style: italic;
font-weight: normal;
}
@font-face {
font-family: 'Programme';
src: url(data:font/woff2;base64,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) format('woff2'),
url(https://assets.genius.com/fonts/programme_light.woff?1713210365) format('woff');
font-style: normal;
font-weight: 100;
}
@font-face {
font-family: 'Programme';
src: url(https://assets.genius.com/fonts/programme_light_italic.woff2?1713210365) format('woff2'),
url(https://assets.genius.com/fonts/programme_light_italic.woff?1713210365) format('woff');
font-style: italic;
font-weight: 100;
}
</style>
<script>
window['Genius.cmp'] = window['Genius.cmp'] || [];
</script>
<style data-styled="true" data-styled-version="5.1.0">.kiNXoS{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;line-height:0;}/*!sc*/
.hOMcjE{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:415px;line-height:0;}/*!sc*/
.dTXQYT{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:250px;line-height:0;}/*!sc*/
data-styled.g1[id="DfpAd__Container-sc-1tnbv7f-0"]{content:"kiNXoS,hOMcjE,dTXQYT,"}/*!sc*/
.ilfajN{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);background:#e9e9e9;}/*!sc*/
.hoVEOg{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:300px;height:250px;background:#e9e9e9;}/*!sc*/
.bIwkeM{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:728px;height:90px;background:#e9e9e9;}/*!sc*/
.hlDPCd{position:absolute;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);background:#621111;}/*!sc*/
data-styled.g2[id="DfpAd__Placeholder-sc-1tnbv7f-1"]{content:"ilfajN,hoVEOg,bIwkeM,hlDPCd,"}/*!sc*/
.dIgauN{width:100%;}/*!sc*/
data-styled.g4[id="LeaderboardOrMarquee__Sticky-yjd3i4-0"]{content:"dIgauN,"}/*!sc*/
.jOhzET{background-color:black;min-height:calc(3rem + 90px);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g6[id="Leaderboard__LeaderboardOrMarquee-da326u-0"]{content:"jOhzET,"}/*!sc*/
.kNjZBr{font-size:.75rem;font-weight:100;line-height:1;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;text-transform:capitalize;color:#fff;}/*!sc*/
.kokouQ{font-size:.75rem;font-weight:400;line-height:1;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;text-transform:uppercase;color:#fff;}/*!sc*/
data-styled.g7[id="TextLabel-sc-8kw9oj-0"]{content:"kNjZBr,kokouQ,"}/*!sc*/
.jDxAhO svg{display:block;fill:none;height:2.25rem;margin:auto;stroke:#9a9a9a;stroke-width:.05rem;width:2.25rem;}/*!sc*/
.jDxAhO svg circle{-webkit-animation:hFBEL 2s ease-out infinite;animation:hFBEL 2s ease-out infinite;background-color:inherit;}/*!sc*/
data-styled.g18[id="PlaceholderSpinner__Container-r4gz6r-0"]{content:"jDxAhO,"}/*!sc*/
.ckQFBO{position:relative;background-position:center;padding-bottom:100%;background-color:#621111;background-size:cover;}/*!sc*/
data-styled.g25[id="SizedImage__Container-sc-1hyeaua-0"]{content:"ckQFBO,"}/*!sc*/
.iMdmgx:not([src]){visibility:hidden;}/*!sc*/
data-styled.g26[id="SizedImage__Image-sc-1hyeaua-1"]{content:"iMdmgx,"}/*!sc*/
.UJCmI{position:absolute;width:100%;height:100%;object-fit:cover;}/*!sc*/
data-styled.g27[id="SizedImage__NoScript-sc-1hyeaua-2"]{content:"UJCmI,"}/*!sc*/
.dPICWx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background:#fff;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:calc(10 * 1rem + .75rem);height:1.5rem;}/*!sc*/
.dPICWx .styleAnchors__PageHeaderDropdownMenu-sc-16isfwt-1{right:0;}/*!sc*/
data-styled.g37[id="StickyNavSearchdesktop__Form-sc-1wddxfx-0"]{content:"dPICWx,"}/*!sc*/
.QoIjR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;cursor:pointer;padding:0 .75rem;}/*!sc*/
.QoIjR svg{fill:#000;width:.625rem;}/*!sc*/
data-styled.g38[id="StickyNavSearchdesktop__Icon-sc-1wddxfx-1"]{content:"QoIjR,"}/*!sc*/
.cmGDeX{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;position:relative;border:none;border-radius:0;background:#fff;color:#000;font-family:'Programme',Arial,sans-serif;font-feature-settings:'ss07','ss08','ss11','ss12','ss14','ss15','ss16','ss18','ss19','ss20','ss21';font-size:inherit;font-weight:inherit;line-height:inherit;-webkit-appearance:none;overflow:hidden;resize:none;outline:none;padding-left:.75rem;}/*!sc*/
.cmGDeX::-webkit-input-placeholder,.cmGDeX::-webkit-input-placeholder{color:#000;font-size:.75rem;}/*!sc*/
.cmGDeX::-moz-placeholder,.cmGDeX::-webkit-input-placeholder{color:#000;font-size:.75rem;}/*!sc*/
.cmGDeX:-ms-input-placeholder,.cmGDeX::-webkit-input-placeholder{color:#000;font-size:.75rem;}/*!sc*/
.cmGDeX::placeholder,.cmGDeX::-webkit-input-placeholder{color:#000;font-size:.75rem;}/*!sc*/
.cmGDeX::-ms-input-placeholder{color:#000;font-size:.75rem;}/*!sc*/
.cmGDeX:focus::-webkit-input-placeholder{color:#9a9a9a;font-size:.75rem;}/*!sc*/
.cmGDeX:focus::-moz-placeholder{color:#9a9a9a;font-size:.75rem;}/*!sc*/
.cmGDeX:focus:-ms-input-placeholder{color:#9a9a9a;font-size:.75rem;}/*!sc*/
.cmGDeX:focus::placeholder{color:#9a9a9a;font-size:.75rem;}/*!sc*/
data-styled.g39[id="StickyNavSearchdesktop__Input-sc-1wddxfx-2"]{content:"cmGDeX,"}/*!sc*/
.gexBFu{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;background-color:transparent;border-radius:1.25rem;padding:.5rem 1.313rem;border:1px solid #000;font-family:'HelveticaNeue',Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.1;color:#000;cursor:pointer;}/*!sc*/
.gexBFu svg{fill:currentColor;}/*!sc*/
.gexBFu:hover:enabled{background-color:#000;color:#fff;}/*!sc*/
.gexBFu:hover:enabled span{color:#fff;}/*!sc*/
.gexBFu:hover:enabled svg{fill:#fff;}/*!sc*/
.efSZT{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;background-color:transparent;border-radius:1.25rem;padding:.5rem 1.313rem;border:1px solid #fff;font-family:'HelveticaNeue',Arial,sans-serif;font-size:1rem;font-weight:400;line-height:1.1;color:#fff;cursor:pointer;}/*!sc*/
.efSZT svg{fill:currentColor;}/*!sc*/
.efSZT:hover:enabled{background-color:#fff;color:#000;mix-blend-mode:screen;}/*!sc*/
.efSZT:hover:enabled span{color:#000;}/*!sc*/
.efSZT:hover:enabled svg{fill:#000;}/*!sc*/
data-styled.g56[id="Button__Container-rtu9rw-0"]{content:"gexBFu,efSZT,"}/*!sc*/
.jTJfqD{font-weight:100;color:inherit;}/*!sc*/
.jTJfqD svg{fill:#fff;}/*!sc*/
.fcVxWP{font-size:1rem;font-weight:100;-webkit-text-decoration:underline;text-decoration:underline;color:inherit;}/*!sc*/
.fcVxWP:hover{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.fcVxWP svg{fill:#fff;}/*!sc*/
.iegxRM{font-weight:100;-webkit-text-decoration:underline;text-decoration:underline;color:inherit;}/*!sc*/
.iegxRM:hover{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.iegxRM svg{fill:#fff;}/*!sc*/
.fqTa-dX{font-weight:100;color:#fff;}/*!sc*/
.fqTa-dX svg{fill:#fff;}/*!sc*/
.ietQTa{font-weight:100;-webkit-text-decoration:underline;text-decoration:underline;color:inherit;}/*!sc*/
.ietQTa:hover{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.ietQTa svg{fill:#000;}/*!sc*/
data-styled.g62[id="StyledLink-sc-3ea0mt-0"]{content:"jTJfqD,fcVxWP,iegxRM,fqTa-dX,ietQTa,"}/*!sc*/
.blSbzj svg{height:1.33em;margin-left:calc(-1em * 0.548625);vertical-align:top;}/*!sc*/
.blSbzj::before{content:'\2003';font-size:0.548625em;}/*!sc*/
data-styled.g63[id="InlineSvg__Wrapper-sc-1342j7p-0"]{content:"blSbzj,"}/*!sc*/
.hVAZmF{font-family:inherit;font-size:inherit;font-weight:inherit;color:inherit;line-height:1;}/*!sc*/
.ixMmYX{font-family:inherit;font-size:inherit;font-weight:inherit;color:inherit;line-height:1;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g66[id="TextButton-sc-192nsqv-0"]{content:"hVAZmF,ixMmYX,"}/*!sc*/
.bwWQCs{font-size:.75rem;font-weight:100;line-height:1;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;text-transform:capitalize;color:#fff;}/*!sc*/
data-styled.g77[id="StickyNavSignUp__Button-sc-14apwk1-0"]{content:"bwWQCs,"}/*!sc*/
.iIgbGO svg{display:block;fill:#fff;}/*!sc*/
data-styled.g78[id="PageHeaderLogo__Link-sc-175tsd3-0"]{content:"iIgbGO,"}/*!sc*/
.bTIA-Dv{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:100;font-size:.75rem;height:3rem;background-color:#c4743c;color:#fff;position:-webkit-sticky;position:sticky;top:calc(0);z-index:6;}/*!sc*/
data-styled.g79[id="StickyNavdesktop__Container-sc-9maqdk-0"]{content:"bTIA-Dv,"}/*!sc*/
.ckFWax{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:1rem;}/*!sc*/
data-styled.g80[id="StickyNavdesktop__Left-sc-9maqdk-1"]{content:"ckFWax,"}/*!sc*/
.JliIh{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:1rem;}/*!sc*/
data-styled.g81[id="StickyNavdesktop__Right-sc-9maqdk-2"]{content:"JliIh,"}/*!sc*/
.clweAx{margin-right:1.5rem;line-height:1.33;color:#fff;}/*!sc*/
.clweAx span{white-space:nowrap;color:#fff;}/*!sc*/
.clweAx:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g83[id="StickyNavdesktop__SiteLink-sc-9maqdk-4"]{content:"clweAx,"}/*!sc*/
.RakDs{margin-right:1.5rem;line-height:1.33;color:#fff;}/*!sc*/
.RakDs span{white-space:nowrap;color:#fff;}/*!sc*/
.RakDs:hover{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g84[id="StickyNavdesktop__AuthTextButton-sc-9maqdk-5"]{content:"RakDs,"}/*!sc*/
.dwjYdZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:2.25rem;}/*!sc*/
data-styled.g85[id="StickyNavdesktop__Subnavigation-sc-9maqdk-6"]{content:"dwjYdZ,"}/*!sc*/
.hRWuAt svg{height:13px;}/*!sc*/
data-styled.g86[id="StickyNavdesktop__Logo-sc-9maqdk-7"]{content:"hRWuAt,"}/*!sc*/
.hrQuZg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:.75rem;font-family:'Programme',Arial,sans-serif;color:#fff;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:.25rem;}/*!sc*/
.hrQuZg svg{display:block;height:1.313rem;fill:#fff;}/*!sc*/
.hrQuZg:disabled{color:rgba(255,255,255,0.5);}/*!sc*/
.gcYcIR{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:.75rem;font-family:'Programme',Arial,sans-serif;color:#fff;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;gap:.25rem;}/*!sc*/
.gcYcIR svg{display:block;height:1em;fill:#fff;}/*!sc*/
.gcYcIR:disabled{color:rgba(255,255,255,0.5);}/*!sc*/
.bSorfX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:.75rem;font-family:'Programme',Arial,sans-serif;color:#000;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;gap:.25rem;}/*!sc*/
.bSorfX svg{display:block;height:.75rem;fill:#000;}/*!sc*/
.bSorfX:disabled{color:#9a9a9a;}/*!sc*/
data-styled.g100[id="LabelWithIcon__Container-hjli77-0"]{content:"hrQuZg,gcYcIR,bSorfX,"}/*!sc*/
.jwfWMJ{-webkit-text-decoration:underline;text-decoration:underline;font-weight:100;font-size:.75rem;color:inherit;}/*!sc*/
.hgsvkF{-webkit-text-decoration:none;text-decoration:none;font-weight:100;font-size:.75rem;color:inherit;}/*!sc*/
data-styled.g101[id="LabelWithIcon__Label-hjli77-1"]{content:"jwfWMJ,hgsvkF,"}/*!sc*/
.cRrFdP{display:block;position:relative;}/*!sc*/
data-styled.g102[id="Tooltip__Container-sc-1uvy5c2-0"]{content:"cRrFdP,"}/*!sc*/
.dvOJud{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g104[id="Tooltip__Children-sc-1uvy5c2-2"]{content:"dvOJud,"}/*!sc*/
.eMjKRh{position:relative;}/*!sc*/
data-styled.g105[id="Pyong__Container-yq95kq-0"]{content:"eMjKRh,"}/*!sc*/
.hjExsS{-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;margin-bottom:.5rem;}/*!sc*/
data-styled.g127[id="HeaderArtistAndTracklistdesktop__Container-sc-4vdeb8-0"]{content:"hjExsS,"}/*!sc*/
.jhWHLb{line-height:1.33;white-space:nowrap;}/*!sc*/
data-styled.g128[id="HeaderArtistAndTracklistdesktop__Artist-sc-4vdeb8-1"]{content:"jhWHLb,"}/*!sc*/
.glZsJC{font-size:1rem;line-height:1.33;font-weight:100;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}/*!sc*/
.glZsJC:before{content:"•";margin:0 .5rem;}/*!sc*/
data-styled.g129[id="HeaderArtistAndTracklistdesktop__Tracklist-sc-4vdeb8-2"]{content:"glZsJC,"}/*!sc*/
.jYOOUb{display:inline;border:none;background:none;padding:0;font-size:inherit;cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;color:#fff;}/*!sc*/
data-styled.g130[id="List__More-sc-18puy0w-0"]{content:"jYOOUb,"}/*!sc*/
.iVIbmD{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-column-gap:1.5rem;column-gap:1.5rem;}/*!sc*/
data-styled.g131[id="HeaderCredits__Container-wx7h8g-0"]{content:"iVIbmD,"}/*!sc*/
.jwiCow{font-weight:100;font-size:.75rem;line-height:1.33;color:#fff;max-width:50%;}/*!sc*/
data-styled.g132[id="HeaderCredits__Section-wx7h8g-1"]{content:"jwiCow,"}/*!sc*/
.ghcavQ{display:block;line-height:1.2;font-size:.75rem;color:#fff;}/*!sc*/
data-styled.g133[id="HeaderCredits__Label-wx7h8g-2"]{content:"ghcavQ,"}/*!sc*/
.cTzqde{font-size:1rem;}/*!sc*/
data-styled.g134[id="HeaderCredits__List-wx7h8g-3"]{content:"cTzqde,"}/*!sc*/
.cDJyol{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-column-gap:1rem;column-gap:1rem;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.cDJyol svg{fill:#fff;}/*!sc*/
data-styled.g135[id="MetadataStats__Container-sc-1t7d8ac-0"]{content:"cDJyol,"}/*!sc*/
.gZUIou{text-transform:capitalize;}/*!sc*/
.gZUIou svg{height:1em;}/*!sc*/
data-styled.g138[id="MetadataStats__LabelWithIcon-sc-1t7d8ac-3"]{content:"gZUIou,"}/*!sc*/
.cujBpY{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:1.5rem 0;grid-column:left-start / left-end;-webkit-transform-origin:top;-ms-transform-origin:top;transform-origin:top;-webkit-transition-property:-webkit-transform,max-height,padding,opacity;-webkit-transition-property:transform,max-height,padding,opacity;transition-property:transform,max-height,padding,opacity;-webkit-transition-duration:100ms;transition-duration:100ms;-webkit-transition-timing-function:ease;transition-timing-function:ease;-webkit-transform:none;-ms-transform:none;transform:none;max-height:100vh;opacity:1;pointer-events:auto;}/*!sc*/
.cujBpY .desktop_song_inread_prebid_container,.cujBpY .desktop_song_inread2_prebid_container,.cujBpY .desktop_song_inread3_prebid_container{margin:auto !important;}/*!sc*/
data-styled.g140[id="InreadContainer__Container-sc-19040w5-0"]{content:"cujBpY,"}/*!sc*/
.csMTdh{width:100%;}/*!sc*/
data-styled.g142[id="PrimisPlayer__Container-sc-1tvdtf7-1"]{content:"csMTdh,"}/*!sc*/
.jzPNvv{text-align:center;color:#fff;}/*!sc*/
.jzPNvv .ExpandableContent__TextButton-sc-1165iv-2{margin-top:.75rem;}/*!sc*/
.jzPNvv .ExpandableContent__TextButton-sc-1165iv-2,.jzPNvv .ExpandableContent__Button-sc-1165iv-1{line-height:1.25;}/*!sc*/
.jzPNvv svg{fill:#fff;}/*!sc*/
data-styled.g179[id="ExpandableContent__ButtonContainer-sc-1165iv-3"]{content:"jzPNvv,"}/*!sc*/
.huhsMa{overflow:hidden;max-height:250px;-webkit-mask:linear-gradient(rgba(0,0,0,1) 0%,transparent);mask:linear-gradient(rgba(0,0,0,1) 0%,transparent);}/*!sc*/
data-styled.g180[id="ExpandableContent__Content-sc-1165iv-4"]{content:"huhsMa,"}/*!sc*/
.jecoie{display:grid;grid-template-columns: [page-start] 2.25rem [grid-start header-left-start] 1fr [left-start] repeat(2,1fr) [header-left-end header-right-start] repeat(4,1fr) [left-end right-start] repeat(4,1fr) [right-end] 1fr [grid-end header-right-end] 2.25rem [page-end];grid-gap:0.75rem;}/*!sc*/
@media screen and (min-width:1164px){.jecoie{grid-template-columns: [page-start] 1fr [grid-start header-left-start] 5rem [left-start] repeat(2,5rem) [header-left-end header-right-start] repeat(4,5rem) [left-end right-start] repeat(4,5rem) [right-end] 5rem [grid-end header-right-end] 1fr [page-end];}}/*!sc*/
@media screen and (min-width:1526px){.jecoie{grid-template-columns: [page-start] 1fr [grid-start header-left-start] 6rem [left-start] repeat(2,6rem) [header-left-end header-right-start] repeat(4,6rem) [left-end right-start] repeat(4,6rem) [right-end] 6rem [grid-end header-right-end] 1fr [page-end];}}/*!sc*/
data-styled.g184[id="SongPageGriddesktop-sc-1px5b71-0"]{content:"jecoie,"}/*!sc*/
.jrQaBI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
@media screen and (min-width:1526px){.jrQaBI{width:calc(6 * 5rem + 2 * 0.75rem);}}/*!sc*/
data-styled.g188[id="HeaderBio__Container-oaxemt-0"]{content:"jrQaBI,"}/*!sc*/
.brNcYU{font-size:1rem;font-weight:100;line-height:1.33;-webkit-text-decoration:none;text-decoration:none;color:#fff;width:100%;}/*!sc*/
.brNcYU:hover span{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g189[id="HeaderBio__Wrapper-oaxemt-1"]{content:"brNcYU,"}/*!sc*/
.dggIzN{-webkit-text-decoration:underline;text-decoration:underline;white-space:nowrap;}/*!sc*/
.dggIzN svg{fill:#fff;}/*!sc*/
data-styled.g190[id="HeaderBio__ViewBio-oaxemt-2"]{content:"dggIzN,"}/*!sc*/
.hNLJnc{position:absolute;width:100%;bottom:calc(0 + 3rem);z-index:-2;}/*!sc*/
data-styled.g193[id="StickyNavSentinel__Sentinel-sc-1yh9i7p-0"]{content:"hNLJnc,"}/*!sc*/
.gkVcFm{z-index:4;background-image:linear-gradient(#c4743c,#621111);padding-top:.75rem;padding-bottom:1.5rem;position:relative;color:#fff;}/*!sc*/
data-styled.g194[id="SongHeaderdesktop__Container-sc-1effuo1-0"]{content:"gkVcFm,"}/*!sc*/
.diUihk{width:100%;height:100%;position:relative;grid-column:header-left-start / header-left-end;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
@media screen and (min-width:1526px){.diUihk{margin-bottom:-3rem;}}/*!sc*/
data-styled.g195[id="SongHeaderdesktop__Left-sc-1effuo1-1"]{content:"diUihk,"}/*!sc*/
.lfjman{grid-column:header-right-start / header-right-end;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
data-styled.g196[id="SongHeaderdesktop__Right-sc-1effuo1-2"]{content:"lfjman,"}/*!sc*/
.hEtDoX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;row-gap:1rem;}/*!sc*/
data-styled.g197[id="SongHeaderdesktop__Bottom-sc-1effuo1-3"]{content:"hEtDoX,"}/*!sc*/
.ieJVb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;max-width:32rem;width:100%;row-gap:1rem;}/*!sc*/
data-styled.g198[id="SongHeaderdesktop__Information-sc-1effuo1-4"]{content:"ieJVb,"}/*!sc*/
.dhqXbj{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;row-gap:.5rem;}/*!sc*/
data-styled.g199[id="SongHeaderdesktop__SongDetails-sc-1effuo1-5"]{content:"dhqXbj,"}/*!sc*/
.jLdecJ{-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;width:100%;}/*!sc*/
@media screen and (min-width:1526px){.jLdecJ{max-height:calc(100% + .75rem);}}/*!sc*/
data-styled.g200[id="SongHeaderdesktop__CoverArtContainer-sc-1effuo1-6"]{content:"jLdecJ,"}/*!sc*/
.fVjbnr{line-height:0;}/*!sc*/
.fVjbnr img{display:inline-block;box-shadow:0 0 .75rem 0 rgba(0,0,0,0.05);}/*!sc*/
data-styled.g201[id="SongHeaderdesktop__CoverArt-sc-1effuo1-7"]{content:"fVjbnr,"}/*!sc*/
.isLvDW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-size:2rem;font-weight:400;font-feature-settings:'ss07','ss08','ss11','ss12','ss14','ss15','ss16','ss18','ss19','ss20','ss21';color:#fff;line-height:1.125;word-wrap:break-word;}/*!sc*/
data-styled.g202[id="SongHeaderdesktop__Title-sc-1effuo1-8"]{content:"isLvDW,"}/*!sc*/
.iMpFIj{opacity:1;}/*!sc*/
data-styled.g205[id="SongHeaderdesktop__HiddenMask-sc-1effuo1-11"]{content:"iMpFIj,"}/*!sc*/
.hLhFfl{position:absolute;right:calc(100% + 1rem);top:.75rem;}/*!sc*/
data-styled.g206[id="SongHeaderdesktop__PyongWrapper-sc-1effuo1-12"]{content:"hLhFfl,"}/*!sc*/
.eVLetJ{height:100%;width:100%;}/*!sc*/
@media screen and (min-width:1164px){.eVLetJ{height:252px;width:252px;}}/*!sc*/
@media screen and (min-width:1526px){.eVLetJ{height:340px;width:340px;}}/*!sc*/
data-styled.g207[id="SongHeaderdesktop__SizedImage-sc-1effuo1-13"]{content:"eVLetJ,"}/*!sc*/
.jDbgEP{width:100%;}/*!sc*/
data-styled.g208[id="SongHeaderdesktop__HeaderBio-sc-1effuo1-14"]{content:"jDbgEP,"}/*!sc*/
.nPqjG{max-width:400px;height:calc((400px / 1.7777777777777777) + 59px + 7px);width:400px;min-width:400px;margin-left:1.5rem;}/*!sc*/
data-styled.g209[id="SongHeaderdesktop__PrimisContainer-sc-1effuo1-15"]{content:"nPqjG,"}/*!sc*/
.gGGmJL{position:relative;height:100%;}/*!sc*/
data-styled.g210[id="Dropdown__Container-ugfjuc-0"]{content:"gGGmJL,"}/*!sc*/
.gjsNwk{display:none;}/*!sc*/
data-styled.g211[id="Dropdown__ContentContainer-ugfjuc-1"]{content:"gjsNwk,"}/*!sc*/
.ikbJXY{display:block;height:100%;}/*!sc*/
data-styled.g212[id="Dropdown__Toggle-ugfjuc-2"]{content:"ikbJXY,"}/*!sc*/
.bvjTUg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:.5rem;column-gap:.5rem;}/*!sc*/
data-styled.g324[id="ContributorsCreditSong__Container-sc-12hq27v-0"]{content:"bvjTUg,"}/*!sc*/
.joWKqm{font-family:'Programme',Arial,sans-serif;font-size:.75rem;font-weight:100;text-align:left;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g325[id="ContributorsCreditSong__Label-sc-12hq27v-1"]{content:"joWKqm,"}/*!sc*/
.hymydu{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.hymydu:hover{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g326[id="ContributorsCreditSong__ContributorsReference-sc-12hq27v-2"]{content:"hymydu,"}/*!sc*/
.fScxZH{margin-right:.375rem;}/*!sc*/
data-styled.g327[id="ContributorsCreditSong__People-sc-12hq27v-3"]{content:"fScxZH,"}/*!sc*/
.dEGYli{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g328[id="MetadataTooltip__Container-sc-435euq-0"]{content:"dEGYli,"}/*!sc*/
.hwdUNy{vertical-align:text-top;fill:#000;height:.75rem;}/*!sc*/
data-styled.g333[id="MetadataTooltip__InfoIcon-sc-435euq-5"]{content:"hwdUNy,"}/*!sc*/
.dddWnX{font-size:.75rem;font-weight:100;line-height:1;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;text-transform:none;color:#000;-webkit-align-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-letter-spacing:0.025rem;-moz-letter-spacing:0.025rem;-ms-letter-spacing:0.025rem;letter-spacing:0.025rem;line-height:1.33;}/*!sc*/
data-styled.g334[id="LyricsHeader__Title-ejidji-0"]{content:"dddWnX,"}/*!sc*/
.hbjTyd{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;grid-column:left-start / left-end;margin-top:0;gap:.75rem 1.313rem;-webkit-flex-wrap:wrap-reverse;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse;}/*!sc*/
data-styled.g335[id="LyricsHeader__Container-ejidji-1"]{content:"hbjTyd,"}/*!sc*/
.dzLEIC{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:.375rem;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
data-styled.g336[id="LyricsHeader__TitleContainer-ejidji-2"]{content:"dzLEIC,"}/*!sc*/
.jeEHLx{-webkit-align-self:start;-ms-flex-item-align:start;align-self:start;height:1.313rem;}/*!sc*/
data-styled.g337[id="LyricsHeader__MetadataTooltip-ejidji-3"]{content:"jeEHLx,"}/*!sc*/
.fSmeGU{z-index:4;background-color:#fff;margin-top:1rem;font-size:.75rem;position:absolute;border:1px solid #000;min-width:100%;cursor:pointer;white-space:nowrap;left:0;}/*!sc*/
data-styled.g338[id="LyricsHeader__DropdownContents-ejidji-4"]{content:"fSmeGU,"}/*!sc*/
.SfdQZ{color:#000;}/*!sc*/
.SfdQZ:hover{color:#fff;background-color:#000;}/*!sc*/
.SfdQZ:hover:first-child:before{background-color:#000;color:#fff;}/*!sc*/
.SfdQZ:first-child:before{content:'';position:absolute;width:8px;height:8px;background-color:#fff;border-top:1px solid #000;border-right:1px solid #000;top:0;left:calc(50% + 0px);-webkit-transform:translateX(-50%) translateY(calc(-50% - 1px)) rotate(-45deg);-ms-transform:translateX(-50%) translateY(calc(-50% - 1px)) rotate(-45deg);transform:translateX(-50%) translateY(calc(-50% - 1px)) rotate(-45deg);left:1rem;}/*!sc*/
data-styled.g339[id="LyricsHeader__DropdownItem-ejidji-5"]{content:"SfdQZ,"}/*!sc*/
.kUKuYL{color:#000;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;line-height:1rem;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:'Programme',Arial,sans-serif;font-weight:100;-webkit-text-decoration:underline;text-decoration:underline;-webkit-letter-spacing:0.025rem;-moz-letter-spacing:0.025rem;-ms-letter-spacing:0.025rem;letter-spacing:0.025rem;font-size:.75rem;gap:.375rem;}/*!sc*/
data-styled.g340[id="LyricsHeader__TranslationsContainer-ejidji-6"]{content:"kUKuYL,"}/*!sc*/
.kGzSQz{color:#000;font-family:'Programme',Arial,sans-serif;font-weight:100;-webkit-text-decoration:underline;text-decoration:underline;-webkit-letter-spacing:0.025rem;-moz-letter-spacing:0.025rem;-ms-letter-spacing:0.025rem;letter-spacing:0.025rem;font-size:.75rem;}/*!sc*/
data-styled.g341[id="LyricsHeader__TranslationsText-ejidji-7"]{content:"kGzSQz,"}/*!sc*/
.crJrtp{height:.75rem;}/*!sc*/
data-styled.g342[id="LyricsHeader__Languages-ejidji-8"]{content:"crJrtp,"}/*!sc*/
.dKqQxi svg{width:.5rem;}/*!sc*/
data-styled.g343[id="LyricsHeader__MenuIcon-ejidji-9"]{content:"dKqQxi,"}/*!sc*/
.iljvxT{width:100%;padding:.375rem .5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}/*!sc*/
data-styled.g344[id="LyricsHeader__TextButton-ejidji-10"]{content:"iljvxT,"}/*!sc*/
.fdKPz{max-width:25ch;word-wrap:break-word;word-break:break-word;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}/*!sc*/
data-styled.g345[id="LyricsHeader__TextEllipsis-ejidji-11"]{content:"fdKPz,"}/*!sc*/
.hZPbeU{word-wrap:break-word;word-break:break-word;font:100 1rem/1.5 'Programme',Arial,sans-serif;}/*!sc*/
.hZPbeU h1{font-size:1.5rem;}/*!sc*/
.hZPbeU h2{font-size:1.25rem;}/*!sc*/
.hZPbeU h3{font-size:1.125rem;}/*!sc*/
.hZPbeU h4,.hZPbeU h5,.hZPbeU h6{font-size:1rem;}/*!sc*/
.hZPbeU h1,.hZPbeU h2,.hZPbeU h3,.hZPbeU h4,.hZPbeU h5,.hZPbeU h6{font-family:'Programme',Arial,sans-serif;font-weight:600;margin:1rem 0 0;}/*!sc*/
.hZPbeU a{color:#fff;-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
.hZPbeU p{margin:1rem 0;}/*!sc*/
.hZPbeU p:empty{display:none;}/*!sc*/
.hZPbeU small{font-size:.75rem;}/*!sc*/
.hZPbeU img{display:block;height:auto;margin-left:auto;margin-right:auto;max-height:325px;width:auto;}/*!sc*/
.hZPbeU blockquote{margin:1rem 0 0 .5rem;padding-left:1rem;position:relative;display:block;}/*!sc*/
.hZPbeU blockquote:before{content:'\201C';position:absolute;top:-.1em;left:-0.3em;font:bold 2.25rem/1 "Times New Roman";color:inherit;opacity:.75;}/*!sc*/
.hZPbeU pre{font-family:inherit;margin:1rem 0;}/*!sc*/
.hZPbeU code{font-family:'Consolas','Monaco','Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono','Courier New',monospace;font-size:.75rem;}/*!sc*/
.hZPbeU table{margin:1rem 0;width:100%;}/*!sc*/
.hZPbeU th,.hZPbeU td{padding:.5rem .5rem 0;}/*!sc*/
.hZPbeU th{border-bottom:1px solid #621111;font-weight:bold;text-align:left;}/*!sc*/
.hZPbeU ul,.hZPbeU ol{list-style-type:none;margin:1rem 0;padding:0;}/*!sc*/
.hZPbeU ul ul,.hZPbeU ol ul,.hZPbeU ul ol,.hZPbeU ol ol{margin:0;padding:0 0 0 1rem;}/*!sc*/
.hZPbeU ul li,.hZPbeU ol li{padding-left:1.6em;position:relative;}/*!sc*/
.hZPbeU ul li:before{content:'\2022';left:calc(1.6em / 2.5);position:absolute;}/*!sc*/
.hZPbeU ol{counter-reset:ordered_list_counter;}/*!sc*/
.hZPbeU ol li:before{font-feature-settings:'tnum';content:counter(ordered_list_counter) '. ';counter-increment:ordered_list_counter;left:-.5rem;position:absolute;text-align:right;width:1.6em;}/*!sc*/
.hZPbeU dd{margin:0 0 0 1rem;}/*!sc*/
.hZPbeU hr{border:1px solid currentcolor;border-width:1px 0 0;}/*!sc*/
.hZPbeU iframe{max-width:100%;}/*!sc*/
.hZPbeU ins,.hZPbeU ins > *{-webkit-text-decoration:none;text-decoration:none;background:inherit !important;color:#24c609;}/*!sc*/
.hZPbeU ins img,.hZPbeU ins > * img{border:2px solid #24c609;}/*!sc*/
.hZPbeU del,.hZPbeU del > *{background:inherit !important;color:#ff1414;}/*!sc*/
.hZPbeU del img,.hZPbeU del > * img{border:2px solid #ff1414;}/*!sc*/
.hZPbeU .embedly_preview{font-size:1rem;margin-top:1rem;margin-bottom:1rem;}/*!sc*/
.hZPbeU .embedly_preview a{font-weight:bold;}/*!sc*/
.hZPbeU .embedly_preview iframe{display:block;margin:auto;width:100%;}/*!sc*/
.hZPbeU .embedly_preview--video,.hZPbeU .embedly_preview--vertical-video{position:relative;width:100%;height:0;}/*!sc*/
.hZPbeU .embedly_preview--video iframe,.hZPbeU .embedly_preview--vertical-video iframe{position:absolute;top:0;left:0;width:100%;height:100%;}/*!sc*/
.hZPbeU .embedly_preview--vertical-video{padding-bottom:177.77777777777777%;}/*!sc*/
.hZPbeU .embedly_preview--video{padding-bottom:56.25%;}/*!sc*/
.hZPbeU .embedly_preview-thumb{position:relative;height:0;width:100%;padding-bottom:50%;overflow:hidden;border-bottom:1px solid #fff;}/*!sc*/
.hZPbeU .embedly_preview-thumb img{position:absolute;top:0;left:0;min-width:100%;min-height:100%;}/*!sc*/
.hZPbeU .embedly_preview .gray_container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;border:1px solid #fff;font-weight:400;color:inherit;word-wrap:break-word;word-break:break-word;}/*!sc*/
.hZPbeU .embedly_preview .gray_container:hover{background-color:#fff;color:#c4743c;}/*!sc*/
.hZPbeU .embedly_preview > a{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.hZPbeU .embedly_preview .gray_container .embedly_preview-text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:.75rem;font-weight:100;}/*!sc*/
.hZPbeU .embedly_preview .gray_container .embedly_preview-text .embedly_preview-provider{-webkit-order:1;-ms-flex-order:1;order:1;font-size:.75rem;margin-bottom:.25rem;}/*!sc*/
.hZPbeU .embedly_preview .gray_container .embedly_preview-text .embedly_preview-dash{display:none;}/*!sc*/
.hZPbeU .embedly_preview .gray_container .embedly_preview-text .embedly_preview-title{-webkit-order:2;-ms-flex-order:2;order:2;margin-bottom:.25rem;line-height:1.33;}/*!sc*/
.hZPbeU .embedly_preview .gray_container .embedly_preview-text .embedly_preview-description{-webkit-order:3;-ms-flex-order:3;order:3;font-size:.75rem;line-height:1.5;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;max-height:4.5em;overflow:hidden;}/*!sc*/
data-styled.g461[id="RichText__Container-oz284w-0"]{content:"hZPbeU,"}/*!sc*/
.dhIhSa{font-size:.75rem;color:#fff;}/*!sc*/
data-styled.g472[id="Attribution__Container-sc-1nmry9o-0"]{content:"dhIhSa,"}/*!sc*/
.iPNsXE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:1rem;}/*!sc*/
data-styled.g473[id="Attribution__Header-sc-1nmry9o-1"]{content:"iPNsXE,"}/*!sc*/
.eQBXrC{font-size:.75rem;font-weight:100;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;gap:.75rem;height:1rem;}/*!sc*/
.eQBXrC svg{fill:#fff;display:block;height:1em;cursor:pointer;}/*!sc*/
data-styled.g512[id="VotingActions__Container-sc-1w1brao-0"]{content:"eQBXrC,"}/*!sc*/
.hPgYeJ{all:unset;cursor:pointer;font-family:inherit;-webkit-text-decoration:underline;text-decoration:underline;min-width:1rem;text-align:center;}/*!sc*/
.hPgYeJ:hover{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g514[id="VotingActions__VotingModalButton-sc-1w1brao-2"]{content:"hPgYeJ,"}/*!sc*/
.hEQpIA{opacity:1;}/*!sc*/
data-styled.g515[id="VotingActions__ThumbsUp-sc-1w1brao-3"]{content:"hEQpIA,"}/*!sc*/
.hKZXIk{opacity:1;}/*!sc*/
data-styled.g516[id="VotingActions__ThumbsDown-sc-1w1brao-4"]{content:"hKZXIk,"}/*!sc*/
.dyewdM{margin-bottom:1.5rem;width:100%;font-weight:100;font-size:.75rem;}/*!sc*/
@media screen and (min-width:1164px){.dyewdM{font-size:1rem;}}/*!sc*/
data-styled.g531[id="ShareButtons__Root-jws18q-0"]{content:"dyewdM,"}/*!sc*/
.ePvBqA{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;gap:.75rem;}/*!sc*/
data-styled.g532[id="ShareButtons__Container-jws18q-1"]{content:"ePvBqA,"}/*!sc*/
.kJxpEi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:inherit;line-height:1;font-family:'Programme',Arial,sans-serif;font-weight:100;white-space:pre;}/*!sc*/
.kJxpEi svg{display:block;height:1rem;}/*!sc*/
data-styled.g533[id="ShareButtons__Button-jws18q-2"]{content:"kJxpEi,"}/*!sc*/
.ueUKD{-webkit-flex:1;-ms-flex:1;flex:1;text-align:center;font-size:inherit;}/*!sc*/
.ueUKD .react-share__ShareButton{width:100%;}/*!sc*/
data-styled.g534[id="ShareButtons__ButtonWrapper-jws18q-3"]{content:"ueUKD,"}/*!sc*/
.tqfBP{font-size:.75rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.tqfBP svg{display:block;height:1em;}/*!sc*/
.tqfBP > *{margin-right:1rem;}/*!sc*/
.tqfBP > *:last-child{margin-right:0;}/*!sc*/
.tqfBP:last-child{margin-bottom:0;}/*!sc*/
data-styled.g556[id="AnnotationActions__Container-sc-1597gb-0"]{content:"tqfBP,"}/*!sc*/
.kljthJ{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
data-styled.g557[id="AnnotationActions__FlexSpace-sc-1597gb-1"]{content:"kljthJ,"}/*!sc*/
.jQIgzS{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
data-styled.g558[id="AnnotationActions__Pyong-sc-1597gb-2"]{content:"jQIgzS,"}/*!sc*/
.cesxpW{position:relative;padding:calc(((1.5 * 1em) - 1.125rem) / 2) 0;-webkit-scroll-margin:calc(max(10vw,0) + 3rem + 0px + (1.5 * 1em));-moz-scroll-margin:calc(max(10vw,0) + 3rem + 0px + (1.5 * 1em));-ms-scroll-margin:calc(max(10vw,0) + 3rem + 0px + (1.5 * 1em));scroll-margin:calc(max(10vw,0) + 3rem + 0px + (1.5 * 1em));}/*!sc*/
data-styled.g577[id="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0"]{content:"cesxpW,"}/*!sc*/
.jAzSMw{color:#000;background-color:#e9e9e9;padding-top:calc(((((1.5 * 1em) - 1.125rem) / 2) - (.125rem / 2)) - 0.75px);padding-bottom:calc(((((1.5 * 1em) - 1.125rem) / 2) - (.125rem / 2)) - 0.25px);}/*!sc*/
data-styled.g578[id="ReferentFragmentdesktop__Highlight-sc-110r0d9-1"]{content:"jAzSMw,"}/*!sc*/
.fuSJbt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;row-gap:1rem;grid-column:auto / right-end;justify-self:right;min-width:300px;}/*!sc*/
data-styled.g590[id="RightSidebar__Container-pajcl2-0"]{content:"fuSJbt,"}/*!sc*/
.kvuklz{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;width:300px;padding-top:0.75rem;}/*!sc*/
.cFlBmm{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;width:300px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0.75rem 0;}/*!sc*/
data-styled.g591[id="SidebarAd__Container-sc-1cw85h6-0"]{content:"kvuklz,cFlBmm,"}/*!sc*/
.bJESjt{position:-webkit-sticky;position:sticky;top:calc(0 + 3rem + 0px + 0.75rem);}/*!sc*/
data-styled.g592[id="SidebarAd__StickyContainer-sc-1cw85h6-1"]{content:"bJESjt,bZuAng,"}/*!sc*/
.fUyrrM{border:1px solid #000;font-size:.75rem;width:100%;}/*!sc*/
data-styled.g613[id="RecommendedSongs__Container-fhtuij-0"]{content:"fUyrrM,"}/*!sc*/
.fVWWod{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
data-styled.g614[id="RecommendedSongs__Body-fhtuij-1"]{content:"fVWWod,"}/*!sc*/
.lfAvEQ{background:#000;color:#fff;font-size:1rem;padding:.25rem 1rem;}/*!sc*/
data-styled.g615[id="RecommendedSongs__Header-fhtuij-2"]{content:"lfAvEQ,"}/*!sc*/
.jUHZcK{-webkit-undefined;-ms-flex-undefined;undefined;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding-bottom:1.5rem;}/*!sc*/
data-styled.g616[id="LyricsSidebarAd__RecommendationsContainer-sc-1duvwla-0"]{content:"jUHZcK,"}/*!sc*/
.hAVRTF{position:-webkit-sticky;position:sticky;top:calc(0 + 3rem + 0px + 0.75rem);}/*!sc*/
data-styled.g617[id="LyricsSidebarAd__Recommendations-sc-1duvwla-1"]{content:"hAVRTF,"}/*!sc*/
.gBtUIQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;grid-column:left-start / left-end;}/*!sc*/
data-styled.g623[id="LyricsFooter__Container-iqbcge-0"]{content:"gBtUIQ,"}/*!sc*/
.bfWZQI.bfWZQI{margin:0.75rem 0 calc(0.75rem + 1.313rem);}/*!sc*/
data-styled.g624[id="LyricsFooter__FooterShareButtons-iqbcge-1"]{content:"bfWZQI,"}/*!sc*/
.iEyyHq{display:grid;grid-template-columns: [page-start] 2.25rem [grid-start header-left-start] 1fr [left-start] repeat(2,1fr) [header-left-end header-right-start] repeat(4,1fr) [left-end right-start] repeat(4,1fr) [right-end] 1fr [grid-end header-right-end] 2.25rem [page-end];grid-gap:0.75rem;font:100 1.125rem/1.5 'Programme',Arial,sans-serif;padding:0;padding-top:1.5rem;grid-auto-rows:max-content;min-height:min(var(--annotation-height),100vh);position:relative;width:100%;word-wrap:break-word;word-break:break-word;}/*!sc*/
@media screen and (min-width:1164px){.iEyyHq{grid-template-columns: [page-start] 1fr [grid-start header-left-start] 5rem [left-start] repeat(2,5rem) [header-left-end header-right-start] repeat(4,5rem) [left-end right-start] repeat(4,5rem) [right-end] 5rem [grid-end header-right-end] 1fr [page-end];}}/*!sc*/
@media screen and (min-width:1526px){.iEyyHq{grid-template-columns: [page-start] 1fr [grid-start header-left-start] 6rem [left-start] repeat(2,6rem) [header-left-end header-right-start] repeat(4,6rem) [left-end right-start] repeat(4,6rem) [right-end] 6rem [grid-end header-right-end] 1fr [page-end];}}/*!sc*/
data-styled.g627[id="Lyrics__Root-sc-1ynbvzw-0"]{content:"iEyyHq,"}/*!sc*/
.kUgSbL{grid-column:left-start / left-end;padding-top:.5rem;padding-bottom:1.5rem;padding-right:1.5rem;}/*!sc*/
data-styled.g628[id="Lyrics__Container-sc-1ynbvzw-1"]{content:"kUgSbL,"}/*!sc*/
.hXQMRu{font-size:.75rem;}/*!sc*/
.hXQMRu ul{padding-left:1rem;margin-bottom:1rem;}/*!sc*/
.hXQMRu li{list-style-type:disc;}/*!sc*/
data-styled.g629[id="LyricsEditExplainer__Container-sc-1aeph76-0"]{content:"hXQMRu,"}/*!sc*/
.eDBQeK{font-weight:700;}/*!sc*/
data-styled.g630[id="LyricsEditExplainer__Bold-sc-1aeph76-1"]{content:"eDBQeK,"}/*!sc*/
.rncXA{font-style:italic;}/*!sc*/
data-styled.g631[id="LyricsEditExplainer__Italic-sc-1aeph76-2"]{content:"rncXA,"}/*!sc*/
.lmbLpy{display:none;grid-column:page-start / page-end;font-weight:100;margin-bottom:3rem;margin-top:1.313rem;}/*!sc*/
data-styled.g633[id="LyricsEditdesktop__Container-sc-19lxrhp-0"]{content:"lmbLpy,"}/*!sc*/
.cOOPzk{grid-column:left-start / left-end;position:relative;}/*!sc*/
data-styled.g634[id="LyricsEditdesktop__Editor-sc-19lxrhp-1"]{content:"cOOPzk,"}/*!sc*/
.hGRoZE{grid-column:right-start / right-end;margin-left:1.313rem;}/*!sc*/
data-styled.g635[id="LyricsEditdesktop__ControlsContainer-sc-19lxrhp-2"]{content:"hGRoZE,"}/*!sc*/
.cEVdKO{position:-webkit-sticky;position:sticky;top:calc(0 + 3rem + 0px + 0.75rem);}/*!sc*/
data-styled.g636[id="LyricsEditdesktop__Controls-sc-19lxrhp-3"]{content:"cEVdKO,"}/*!sc*/
.kpOoZB{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:.5rem 1rem;margin:0;margin-bottom:.75rem;}/*!sc*/
data-styled.g637[id="LyricsEditdesktop__Button-sc-19lxrhp-4"]{content:"kpOoZB,"}/*!sc*/
.LNnRX{margin-top:1.313rem;}/*!sc*/
data-styled.g639[id="LyricsEditdesktop__Explainer-sc-19lxrhp-6"]{content:"LNnRX,"}/*!sc*/
.cSKAwQ{display:grid;grid-template-columns:1fr [center-start] 1fr [center-end] 1fr;background-color:black;}/*!sc*/
data-styled.g646[id="SectionLeaderboard__Container-sc-1pjk0bw-0"]{content:"cSKAwQ,"}/*!sc*/
.fPpEQG{padding:.75rem 0;grid-column:center-start / center-end;}/*!sc*/
data-styled.g647[id="SectionLeaderboard__Center-sc-1pjk0bw-1"]{content:"fPpEQG,"}/*!sc*/
.hYPlhL{color:#fff;-webkit-scroll-margin-top:calc(0 + 3rem);-moz-scroll-margin-top:calc(0 + 3rem);-ms-scroll-margin-top:calc(0 + 3rem);scroll-margin-top:calc(0 + 3rem);}/*!sc*/
data-styled.g652[id="SongDescription__Container-sc-615rvk-0"]{content:"hYPlhL,"}/*!sc*/
.kRzyD{text-align:left;}/*!sc*/
data-styled.g654[id="SongDescription__Content-sc-615rvk-2"]{content:"kRzyD,"}/*!sc*/
.nTuKb{margin-top:.75rem;}/*!sc*/
data-styled.g658[id="SongDescription__AnnotationEditActions-sc-615rvk-6"]{content:"nTuKb,"}/*!sc*/
.bEHmko{margin:1rem 0 1.313rem;}/*!sc*/
data-styled.g659[id="SongDescription__AnnotationActions-sc-615rvk-7"]{content:"bEHmko,"}/*!sc*/
.iyrTpw{border-bottom:1px solid #fff;margin-bottom:3rem;padding-bottom:3rem;}/*!sc*/
.vrxkS{border-bottom:1px solid #000;margin-bottom:3rem;padding-bottom:3rem;}/*!sc*/
data-styled.g660[id="InnerSectionDivider-sc-1x4onqw-0"]{content:"iyrTpw,vrxkS,"}/*!sc*/
.dxxZLD{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;gap:1rem;}/*!sc*/
@media screen and (max-width:1164px){.dxxZLD{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}/*!sc*/
data-styled.g682[id="QuestionFormControls__Buttons-sc-79jhlr-1"]{content:"dxxZLD,"}/*!sc*/
.cgTISK{text-align:left;border:1px solid #fff;-webkit-scroll-margin-top:calc(0 + 3rem);-moz-scroll-margin-top:calc(0 + 3rem);-ms-scroll-margin-top:calc(0 + 3rem);scroll-margin-top:calc(0 + 3rem);}/*!sc*/
.cgTISK:not(:last-child){border-bottom:none;}/*!sc*/
data-styled.g688[id="QuestionTemplate__Container-sc-1is5n1p-1"]{content:"cgTISK,"}/*!sc*/
.cYEUqo{font-size:1rem;color:#c4743c;background-color:transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;line-height:1.33;padding:.75rem;background-color:#fff;}/*!sc*/
data-styled.g691[id="QuestionTemplate__Title-sc-1is5n1p-4"]{content:"cYEUqo,"}/*!sc*/
.duMtcj{padding-left:.25rem;margin-left:auto;font-size:1.5rem;}/*!sc*/
.duMtcj svg{display:block;width:.75rem;height:.75rem;fill:#c4743c;}/*!sc*/
data-styled.g692[id="QuestionTemplate__ExpandButton-sc-1is5n1p-5"]{content:"duMtcj,"}/*!sc*/
.iHvEbL{padding:1.5rem;}/*!sc*/
data-styled.g713[id="Answer__Container-sc-2neq6u-0"]{content:"iHvEbL,"}/*!sc*/
.fzIWba{margin:1rem 0;}/*!sc*/
data-styled.g714[id="Answer__Body-sc-2neq6u-1"]{content:"fzIWba,"}/*!sc*/
.doQBGH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:1rem;}/*!sc*/
data-styled.g716[id="Answer__AttributionLabel-sc-2neq6u-3"]{content:"doQBGH,"}/*!sc*/
.dTXIVU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;gap:1.313rem;padding:1.5rem;padding-top:0;}/*!sc*/
.dTXIVU:empty{display:none;}/*!sc*/
data-styled.g719[id="QuestionAnswerActions__Container-sc-6ne2ji-0"]{content:"dTXIVU,"}/*!sc*/
.eDiRSs{text-align:left;border:1px solid #fff;}/*!sc*/
.eDiRSs:not(:last-child){border-bottom:none;}/*!sc*/
data-styled.g735[id="MetadataQuestionTemplate__Container-sc-3cdvbz-0"]{content:"eDiRSs,"}/*!sc*/
.emVCuo{font-size:1rem;color:#fff;background-color:transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;line-height:1.33;padding:.75rem;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
data-styled.g736[id="MetadataQuestionTemplate__Title-sc-3cdvbz-1"]{content:"emVCuo,"}/*!sc*/
.jTUclM{padding-left:.25rem;margin-left:auto;font-size:1.5rem;}/*!sc*/
.jTUclM svg{display:block;width:.75rem;height:.75rem;fill:#fff;}/*!sc*/
data-styled.g737[id="MetadataQuestionTemplate__ExpandButton-sc-3cdvbz-2"]{content:"jTUclM,"}/*!sc*/
.dbVnsR{position:relative;font-weight:100;color:#fff;}/*!sc*/
data-styled.g739[id="QuestionList__Container-sc-1a58vti-0"]{content:"dbVnsR,"}/*!sc*/
.cTVsHz{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1.5rem;}/*!sc*/
data-styled.g740[id="QuestionList__Header-sc-1a58vti-1"]{content:"cTVsHz,"}/*!sc*/
.dssCKz{font-size:5rem;font-weight:400;}/*!sc*/
data-styled.g741[id="QuestionList__Title-sc-1a58vti-2"]{content:"dssCKz,"}/*!sc*/
.dZHUCL{max-width:22rem;text-align:center;}/*!sc*/
data-styled.g742[id="QuestionList__SubTitle-sc-1a58vti-3"]{content:"dZHUCL,"}/*!sc*/
.geLHRn{margin-top:2.25rem;}/*!sc*/
data-styled.g744[id="QuestionList__Table-sc-1a58vti-5"]{content:"geLHRn,"}/*!sc*/
.kGJQLs{grid-column:grid-start / grid-end;text-align:start;-webkit-column-count:2;column-count:2;font-size:.75rem;}/*!sc*/
data-styled.g746[id="AlbumTracklist__Container-sc-123giuo-0"]{content:"kGJQLs,"}/*!sc*/
.iLxPGk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin-bottom:.75rem;-webkit-break-inside:avoid;break-inside:avoid;color:#fff;padding:0 0.75rem;}/*!sc*/
data-styled.g747[id="AlbumTracklist__Track-sc-123giuo-1"]{content:"iLxPGk,"}/*!sc*/
.guEaas{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;position:relative;padding:.25rem 0;}/*!sc*/
.guEaas:after{content:'';position:absolute;top:0;right:-0.75rem;bottom:0;left:-0.75rem;border:1px solid;}/*!sc*/
.bPLsDz{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;position:relative;padding:.25rem 0;}/*!sc*/
data-styled.g748[id="AlbumTracklist__TrackName-sc-123giuo-2"]{content:"guEaas,bPLsDz,"}/*!sc*/
.epTVob{padding-right:.5rem;}/*!sc*/
data-styled.g749[id="AlbumTracklist__TrackNumber-sc-123giuo-3"]{content:"epTVob,"}/*!sc*/
.kqeVkf{position:relative;display:grid;grid-template-columns:[grid-start] repeat(2,1fr) [grid-end];text-align:start;}/*!sc*/
data-styled.g758[id="PrimaryAlbum__Container-cuci8p-0"]{content:"kqeVkf,"}/*!sc*/
.lkEvgY{position:absolute;top:calc(-1.5 * 2.25rem);}/*!sc*/
data-styled.g759[id="PrimaryAlbum__SectionAnchor-cuci8p-1"]{content:"lkEvgY,"}/*!sc*/
.fMIxkO{margin:0 3rem 2.5rem 3rem;}/*!sc*/
data-styled.g760[id="PrimaryAlbum__CoverArt-cuci8p-2"]{content:"fMIxkO,"}/*!sc*/
.hGGOcK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:2.5rem;}/*!sc*/
data-styled.g761[id="PrimaryAlbum__AlbumDetails-cuci8p-3"]{content:"hGGOcK,"}/*!sc*/
.NcWGs{font-size:1rem;color:#fff;}/*!sc*/
data-styled.g762[id="PrimaryAlbum__Title-cuci8p-4"]{content:"NcWGs,"}/*!sc*/
.hyzSGh{font-size:.75rem;color:#fff;}/*!sc*/
data-styled.g763[id="PrimaryAlbum__Artist-cuci8p-5"]{content:"hyzSGh,"}/*!sc*/
.ceKRFE{font-size:.625rem;margin:.75rem 0;text-align:left;}/*!sc*/
data-styled.g764[id="SongTags__Title-xixwg3-0"]{content:"ceKRFE,"}/*!sc*/
.bZsZHM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;grid-gap:.75rem;}/*!sc*/
data-styled.g765[id="SongTags__Container-xixwg3-1"]{content:"bZsZHM,"}/*!sc*/
.evrydK{color:#fff;border:1px solid #fff;padding:.5rem;font-size:.75rem;font-weight:700;}/*!sc*/
.evrydK:visited{color:#fff;}/*!sc*/
.evrydK:hover{background-color:#fff;color:#000;mix-blend-mode:screen;}/*!sc*/
.evrydK:hover span{color:#000;}/*!sc*/
.evrydK:hover svg{fill:#000;}/*!sc*/
.kykqAa{color:#fff;border:1px solid #fff;padding:.5rem;font-size:.75rem;}/*!sc*/
.kykqAa:visited{color:#fff;}/*!sc*/
.kykqAa:hover{background-color:#fff;color:#000;mix-blend-mode:screen;}/*!sc*/
.kykqAa:hover span{color:#000;}/*!sc*/
.kykqAa:hover svg{fill:#000;}/*!sc*/
data-styled.g766[id="SongTags__Tag-xixwg3-2"]{content:"evrydK,kykqAa,"}/*!sc*/
.kJtCmu{position:relative;font-weight:100;padding:0 1.313rem 0 1.313rem;color:#fff;}/*!sc*/
data-styled.g767[id="SongInfo__Container-nekw6x-0"]{content:"kJtCmu,"}/*!sc*/
.iRKrFW{font-size:2.25rem;font-weight:400;margin-bottom:2.25rem;line-height:1.1;}/*!sc*/
data-styled.g768[id="SongInfo__Title-nekw6x-1"]{content:"iRKrFW,"}/*!sc*/
.dWcYSx{display:grid;text-align:left;grid-template-columns:1fr 1fr;grid-gap:0.75rem;}/*!sc*/
data-styled.g769[id="SongInfo__Columns-nekw6x-2"]{content:"dWcYSx,"}/*!sc*/
.fognin{font-size:.75rem;}/*!sc*/
.fognin:not(:last-child){margin-bottom:1.5rem;}/*!sc*/
data-styled.g770[id="SongInfo__Credit-nekw6x-3"]{content:"fognin,"}/*!sc*/
.kOJa-dB{display:block;font-size:.625rem;color:#fff;}/*!sc*/
data-styled.g771[id="SongInfo__Label-nekw6x-4"]{content:"kOJa-dB,"}/*!sc*/
.lopKUj{position:absolute;top:calc(-1.5 * (0 + 3rem));}/*!sc*/
data-styled.g772[id="SongInfo__SectionAnchor-nekw6x-5"]{content:"lopKUj,"}/*!sc*/
.tYzLI{display:block;text-align:left;font-size:.75rem;margin:.75rem 0 1.313rem;}/*!sc*/
data-styled.g773[id="SongInfo__RelationshipsPageLink-nekw6x-6"]{content:"tYzLI,"}/*!sc*/
.cYtdTH{margin:1.313rem 0 1rem 0;}/*!sc*/
data-styled.g776[id="MusicVideo__Container-sc-1980jex-0"]{content:"cYtdTH,"}/*!sc*/
.icvVds{position:relative;}/*!sc*/
data-styled.g777[id="SectionScrollSentinel__Container-eoe1bv-0"]{content:"icvVds,"}/*!sc*/
.gTVDnZ{position:absolute;top:calc(100vh - (0 + 3rem));bottom:calc(0 + 3rem);width:100%;z-index:-2;}/*!sc*/
data-styled.g778[id="SectionScrollSentinel__Element-eoe1bv-1"]{content:"gTVDnZ,"}/*!sc*/
.difnmr{position:absolute;top:calc(1px - (0 + 3rem));}/*!sc*/
data-styled.g779[id="SectionScrollSentinel__SectionAnchor-eoe1bv-2"]{content:"difnmr,"}/*!sc*/
.jugbPq{font-weight:100;background-image:linear-gradient(#c4743c,#621111);padding-bottom:2.25rem;}/*!sc*/
data-styled.g780[id="About__Grid-ut4i9m-0"]{content:"jugbPq,"}/*!sc*/
.eSiFpi{grid-column:left-start / left-end;padding-top:calc(2.25rem + .375rem);}/*!sc*/
data-styled.g781[id="About__Container-ut4i9m-1"]{content:"eSiFpi,"}/*!sc*/
.kcXwIY{font-size:5rem;text-align:center;font-weight:normal;color:#fff;}/*!sc*/
data-styled.g782[id="About__Title-ut4i9m-2"]{content:"kcXwIY,"}/*!sc*/
.leoUZe{font-size:1rem;border:1px solid #000;color:#000;padding:.75rem;width:100%;text-align:left;cursor:text;}/*!sc*/
data-styled.g789[id="CommentForm__FakeTextField-sc-1rfrnj0-5"]{content:"leoUZe,"}/*!sc*/
.bIlJhm{padding-bottom:1.313rem;}/*!sc*/
data-styled.g790[id="SongComments__Grid-sc-131p4fy-0"]{content:"bIlJhm,"}/*!sc*/
.lgbAKX{grid-column:left-start / left-end;padding-top:calc(2.25rem + .375rem);}/*!sc*/
data-styled.g791[id="SongComments__Container-sc-131p4fy-1"]{content:"lgbAKX,"}/*!sc*/
.kojbqH{font-size:5rem;margin-bottom:1rem;text-align:center;}/*!sc*/
data-styled.g792[id="SongComments__Title-sc-131p4fy-2"]{content:"kojbqH,"}/*!sc*/
.jZrfsi{font-size:2.25rem;font-weight:400;line-height:1.1;}/*!sc*/
data-styled.g793[id="SongComments__CTASubHeading-sc-131p4fy-3"]{content:"jZrfsi,"}/*!sc*/
.euQZer{margin-top:2.25rem;text-align:center;font-weight:100;color:#000;}/*!sc*/
data-styled.g796[id="SongComments__CTA-sc-131p4fy-6"]{content:"euQZer,"}/*!sc*/
.gRiFtA{position:relative;height:480px;}/*!sc*/
data-styled.g799[id="SongComments__SpinnerContainer-sc-131p4fy-9"]{content:"gRiFtA,"}/*!sc*/
.fOsBvT{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%);}/*!sc*/
data-styled.g800[id="SongComments__InitialLoadSpinner-sc-131p4fy-10"]{content:"fOsBvT,"}/*!sc*/
.gTBWpu{text-align:center;padding:0 1rem;}/*!sc*/
data-styled.g801[id="SongComments__Footer-sc-131p4fy-11"]{content:"gTBWpu,"}/*!sc*/
.fHiIPi{margin:1rem 0;}/*!sc*/
data-styled.g802[id="SongComments__SignUpButton-sc-131p4fy-12"]{content:"fHiIPi,"}/*!sc*/
.bZruNU{z-index:4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;pointer-events:none;position:fixed;left:0;right:0;bottom:0;}/*!sc*/
data-styled.g812[id="MediaPlayersContainer__Container-sc-1tibexe-0"]{content:"bZruNU,"}/*!sc*/
.cziiuX svg{display:block;height:22px;fill:#fff;}/*!sc*/
.fRTMWj svg{display:block;height:19px;fill:#fff;}/*!sc*/
data-styled.g820[id="SocialLinks__Link-jwyj6b-1"]{content:"cziiuX,fRTMWj,"}/*!sc*/
.iuNSEV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.iuNSEV .SocialLinks__Link-jwyj6b-1 + .SocialLinks__Link-jwyj6b-1{margin-left:1.5rem;}/*!sc*/
data-styled.g821[id="SocialLinks__Container-jwyj6b-2"]{content:"iuNSEV,"}/*!sc*/
.uGviF{font-size:2.25rem;font-weight:100;line-height:1.125;margin-bottom:2.25rem;}/*!sc*/
data-styled.g822[id="PageFooterSocial__Slogan-sc-14u22mq-0"]{content:"uGviF,"}/*!sc*/
.kTXFZQ{display:block;color:inherit;margin:0 .25rem;}/*!sc*/
data-styled.g823[id="PageFooterArtistLinks__Link-sc-1ng9ih0-0"]{content:"kTXFZQ,"}/*!sc*/
.hAxKUd{display:block;color:inherit;}/*!sc*/
.hAxKUd + .PageFooterHotSongLinks__Link-sc-1adazwo-0:before{content:'•';margin:0 .75rem;}/*!sc*/
data-styled.g824[id="PageFooterHotSongLinks__Link-sc-1adazwo-0"]{content:"hAxKUd,"}/*!sc*/
.boDKcJ{background-color:#121212;}/*!sc*/
data-styled.g828[id="PageFooterdesktop__Container-hz1fx1-0"]{content:"boDKcJ,"}/*!sc*/
.gwrcCS{display:block;color:inherit;font-weight:100;cursor:pointer;}/*!sc*/
data-styled.g829[id="PageFooterdesktop__Link-hz1fx1-1"]{content:"gwrcCS,"}/*!sc*/
.cjEbTp{display:grid;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;grid-template-columns:[grid-start] repeat(3,minmax(14px,44px)) [center-start] repeat(6,minmax(14px,44px)) [center-end] repeat(3,minmax(14px,44px)) [grid-end];grid-column-gap:60px;grid-row-gap:40px;color:#fff;padding:3rem 60px 2.25rem;}/*!sc*/
.cjEbTp .PageFooterdesktop__Link-hz1fx1-1 + .PageFooterdesktop__Link-hz1fx1-1{margin-top:1rem;}/*!sc*/
data-styled.g830[id="PageFooterdesktop__Section-hz1fx1-2"]{content:"cjEbTp,"}/*!sc*/
.mJdfj{grid-column:span 6;}/*!sc*/
data-styled.g831[id="PageFooterdesktop__Half-hz1fx1-3"]{content:"mJdfj,"}/*!sc*/
.hMUvCn{grid-column:span 3;}/*!sc*/
data-styled.g832[id="PageFooterdesktop__Quarter-hz1fx1-4"]{content:"hMUvCn,"}/*!sc*/
.diwZPD{grid-column:span 3;grid-column:7 / span 3;}/*!sc*/
data-styled.g833[id="PageFooterdesktop__OffsetQuarter-hz1fx1-5"]{content:"diwZPD,"}/*!sc*/
.iDkyVM{display:block;color:#9a9a9a;font-weight:100;font-size:.625rem;}/*!sc*/
data-styled.g834[id="PageFooterdesktop__FinePrint-hz1fx1-6"]{content:"iDkyVM,"}/*!sc*/
.yRyiP{display:grid;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;grid-template-columns:[grid-start] repeat(3,minmax(14px,44px)) [center-start] repeat(6,minmax(14px,44px)) [center-end] repeat(3,minmax(14px,44px)) [grid-end];grid-column-gap:60px;grid-row-gap:40px;color:#fff;padding:3rem 60px 2.25rem;border-top:.15rem solid #2a2a2a;padding-top:2.25rem;padding-bottom:2.25rem;}/*!sc*/
.yRyiP .PageFooterdesktop__Link-hz1fx1-1 + .PageFooterdesktop__Link-hz1fx1-1{margin-top:1rem;}/*!sc*/
data-styled.g835[id="PageFooterdesktop__Bottom-hz1fx1-7"]{content:"yRyiP,"}/*!sc*/
.eIiYRJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;grid-column:1 / -1;-webkit-align-items:baseline;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline;}/*!sc*/
data-styled.g836[id="PageFooterdesktop__Row-hz1fx1-8"]{content:"eIiYRJ,"}/*!sc*/
.hNrwqx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/
data-styled.g837[id="PageFooterdesktop__FlexWrap-hz1fx1-9"]{content:"hNrwqx,"}/*!sc*/
.bMBKQI{color:inherit;}/*!sc*/
.bMBKQI:after{content:'•';margin:0 1rem;}/*!sc*/
data-styled.g838[id="PageFooterdesktop__VerifiedArtists-hz1fx1-10"]{content:"bMBKQI,"}/*!sc*/
.dcpJwP{margin-right:1rem;}/*!sc*/
data-styled.g839[id="PageFooterdesktop__Label-hz1fx1-11"]{content:"dcpJwP,"}/*!sc*/
.gloXyw{height:1.5rem;}/*!sc*/
data-styled.g841[id="SongPage__HeaderSpace-sc-19xhmoi-1"]{content:"gloXyw,"}/*!sc*/
.mkDeY{position:relative;}/*!sc*/
data-styled.g842[id="SongPage__LyricsWrapper-sc-19xhmoi-2"]{content:"mkDeY,"}/*!sc*/
.llTPXF{padding-bottom:3rem;}/*!sc*/
data-styled.g843[id="SongPage__PageFooter-sc-19xhmoi-3"]{content:"llTPXF,"}/*!sc*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,input,button,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;}/*!sc*/
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:inherit;}/*!sc*/
html{line-height:1;}/*!sc*/
ol,ul{list-style:none;}/*!sc*/
table{border-collapse:collapse;border-spacing:0;}/*!sc*/
caption,th,td{text-align:left;font-weight:normal;vertical-align:middle;}/*!sc*/
q,blockquote{quotes:none;}/*!sc*/
q:before,blockquote:before,q:after,blockquote:after{content:"";content:none;}/*!sc*/
a img{border:none;}/*!sc*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block;}/*!sc*/
button{background:unset;box-shadow:unset;border:unset;text-shadow:unset;cursor:pointer;}/*!sc*/
body{overflow-x:hidden;background-color:#fff;color:#000;font-family:'Programme',Arial,sans-serif;line-height:1.45;-webkit-text-size-adjust:100%;}/*!sc*/
img{max-width:100%;}/*!sc*/
li{list-style:none;}/*!sc*/
a{color:#7d8fe8;-webkit-text-decoration:none;text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);}/*!sc*/
*,*:before,*:after{box-sizing:border-box;}/*!sc*/
hr{border:1px solid #e9e9e9;border-width:1px 0 0;margin:1rem 0;}/*!sc*/
pre{white-space:pre-wrap;}/*!sc*/
::selection{background-color:#b2d7fe;}/*!sc*/
.noscroll{overflow:hidden;position:absolute;height:100vh;width:100vw;}/*!sc*/
.noscroll-fixed{overflow:hidden;position:fixed;width:100%;}/*!sc*/
.grecaptcha-badge{visibility:hidden;}/*!sc*/
data-styled.g1085[id="sc-global-ixFuEb1"]{content:"sc-global-ixFuEb1,"}/*!sc*/
#cf_alert_div{display:none !important;}/*!sc*/
data-styled.g1086[id="sc-global-gdfBvm1"]{content:"sc-global-gdfBvm1,"}/*!sc*/
html{font-size:16px;}/*!sc*/
@media screen and (min-width:1526px){html{font-size:18px;}}/*!sc*/
data-styled.g1087[id="sc-global-PeqFD1"]{content:"sc-global-PeqFD1,"}/*!sc*/
@-webkit-keyframes hFBEL{0%{stroke-dasharray:150%;stroke-dashoffset:0%;}50%{stroke-dasharray:300%;}100%{stroke-dasharray:150%;stroke-dashoffset:600%;}}/*!sc*/
@keyframes hFBEL{0%{stroke-dasharray:150%;stroke-dashoffset:0%;}50%{stroke-dasharray:300%;}100%{stroke-dasharray:150%;stroke-dashoffset:600%;}}/*!sc*/
data-styled.g1088[id="sc-keyframes-hFBEL"]{content:"hFBEL,"}/*!sc*/
</style>
<meta content="https://genius.com/Nipsey-hussle-victory-lap-lyrics" property="og:url">
<meta content="music.song" property="og:type"/>
<meta content="Nipsey Hussle (Ft. Stacy Barthe) – Victory Lap" property="og:title"/>
<meta content="“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Victory Lap. On the track, Hussle boasts about his abilities; from rapping to firing" property="og:description"/>
<meta content="https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg" property="og:image"/>
<meta content="https://genius.com/Nipsey-hussle-victory-lap-lyrics" property="twitter:url"/>
<meta content="music.song" property="twitter:type"/>
<meta content="Nipsey Hussle (Ft. Stacy Barthe) – Victory Lap" property="twitter:title"/>
<meta content="“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Victory Lap. On the track, Hussle boasts about his abilities; from rapping to firing" property="twitter:description"/>
<meta content="https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.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/3510797" property="twitter:app:url:iphone"/>
<meta content="Victory Lap Lyrics: Woah-oh / Woah-oh / Woah-oh / Like the beginning of Mean Streets, you could (Oh) / Like the beginning of Mean Streets, you could / Like the beginning of Mean Streets, you could / I" name="description"/><meta content="#c4743c" name="theme-color"/>
<link href="ios-app://709482991/genius/songs/3510797" rel="alternate"/>
<link href="https://genius.com/Nipsey-hussle-victory-lap-lyrics" rel="canonical"/>
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-BJ6QSCFYD0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('set', {
user_signed_in: "false",
controller_action: "songs#show",
primary_tag: "rap",
music: "true",
client_routed: 'false',
experiment: "react",
platform_variant: "desktop_react",
hot_song: "false",
origin: 'firebase',
update: true,
});
gtag('config', "G-BJ6QSCFYD0");
gtag('config', "G-JRDWPGGXWW");
</script>
<script type="text/javascript">
let fullstory_segment;
try { fullstory_segment = localStorage.getItem('genius_fullstory_segment'); } catch (e) {}
if (typeof(fullstory_segment) === 'string') {
fullstory_segment = Number(fullstory_segment);
} else {
fullstory_segment = Math.random();
try { localStorage.setItem('genius_fullstory_segment', fullstory_segment); } catch (e) {}
}
if ((fullstory_segment * 100) < 0.001) {
window['_fs_debug'] = false;
window['_fs_host'] = 'fullstory.com';
window['_fs_script'] = 'edge.fullstory.com/s/fs.js';
window['_fs_org'] = 'AGFQ9';
window['_fs_namespace'] = 'FS';
(function(m,n,e,t,l,o,g,y){
if (e in m) {if(m.console && m.console.log) { m.console.log('FullStory namespace conflict. Please set window["_fs_namespace"].');} return;}
g=m[e]=function(a,b,s){g.q?g.q.push([a,b,s]):g._api(a,b,s);};g.q=[];
o=n.createElement(t);o.async=1;o.crossOrigin='anonymous';o.src='https://'+_fs_script;
y=n.getElementsByTagName(t)[0];y.parentNode.insertBefore(o,y);
g.identify=function(i,v,s){g(l,{uid:i},s);if(v)g(l,v,s)};g.setUserVars=function(v,s){g(l,v,s)};g.event=function(i,v,s){g('event',{n:i,p:v},s)};
g.shutdown=function(){g("rec",!1)};g.restart=function(){g("rec",!0)};
g.log = function(a,b) { g("log", [a,b]) };
g.consent=function(a){g("consent",!arguments.length||a)};
g.identifyAccount=function(i,v){o='account';v=v||{};v.acctId=i;g(o,v)};
g.clearUserCookie=function(){};
})(window,document,window['_fs_namespace'],'script','user');
let current_user = null;
if (current_user) {
FS.identify('user:' + current_user.id, {
displayName: current_user.login,
contrib_bool: current_user.is_contrib,
editor_bool: current_user.is_editor,
});
} else {
FS.identify(false);
}
}
</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>
<meta content="miss" itemprop="long-tail-cache"/>
<meta content="XX" itemprop="rendered-with-cache"/>
<meta content="-26.23090" itemprop="cf-latitude"/>
<meta content="28.05830" itemprop="cf-longitude"/>
</meta></link></meta></meta></meta></head>
<body>
<div id="application"><div class="LeaderboardOrMarquee__Sticky-yjd3i4-0 dIgauN Leaderboard__LeaderboardOrMarquee-da326u-0 jOhzET"><div class="LeaderboardOrMarquee__Container-yjd3i4-1 cLZLgM"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_combined_leaderboard-desktop_song_combined_leaderboard-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 ilfajN"></div></div></div></div><div class="StickyNavdesktop__Container-sc-9maqdk-0 bTIA-Dv" id="sticky-nav"><div class="StickyNavdesktop__Left-sc-9maqdk-1 ckFWax"><a class="PageHeaderLogo__Link-sc-175tsd3-0 iIgbGO StickyNavdesktop__Logo-sc-9maqdk-7 hRWuAt" href="https://genius.com"><svg viewbox="0 0 100 15"><path d="M11.7 2.9s0-.1 0 0c-.8-.8-1.7-1.2-2.8-1.2-1.1 0-2.1.4-2.8 1.1-.2.2-.3.4-.5.6v.1c0 .1.1.1.1.1.4-.2.9-.3 1.4-.3 1.1 0 2.2.5 2.9 1.2h1.6c.1 0 .1-.1.1-.1V2.9c.1 0 0 0 0 0zm-.1 4.6h-1.5c-.8 0-1.4-.6-1.5-1.4.1 0 0-.1 0-.1-.3 0-.6.2-.8.4v.2c-.6 1.8.1 2.4.9 2.4h1.1c.1 0 .1.1.1.1v.4c0 .1.1.1.1.1.6-.1 1.2-.4 1.7-.8V7.6c.1 0 0-.1-.1-.1z"></path><path d="M11.6 11.9s-.1 0 0 0c-.1 0-.1 0 0 0-.1 0-.1 0 0 0-.8.3-1.6.5-2.5.5-3.7 0-6.8-3-6.8-6.8 0-.9.2-1.7.5-2.5 0-.1-.1-.1-.2-.1h-.1C1.4 4.2.8 5.7.8 7.5c0 3.6 2.9 6.4 6.4 6.4 1.7 0 3.3-.7 4.4-1.8V12c.1 0 0-.1 0-.1zm13.7-3.1h3.5c.8 0 1.4-.5 1.4-1.3v-.2c0-.1-.1-.1-.1-.1h-4.8c-.1 0-.1.1-.1.1v1.4c-.1 0 0 .1.1.1zm5.1-6.7h-5.2c-.1 0-.1.1-.1.1v1.4c0 .1.1.1.1.1H29c.8 0 1.4-.5 1.4-1.3v-.2c.1-.1.1-.1 0-.1z"></path><path d="M30.4 12.3h-6.1c-1 0-1.6-.6-1.6-1.6V1c0-.1-.1-.1-.1-.1-1.1 0-1.8.7-1.8 1.8V12c0 1.1.7 1.8 1.8 1.8H29c.8 0 1.4-.6 1.4-1.3v-.1c.1 0 .1-.1 0-.1zm12 0c-.6-.1-.9-.6-.9-1.3V1.1s0-.1-.1-.1H41c-.9 0-1.5.6-1.5 1.5v9.9c0 .9.6 1.5 1.5 1.5.8 0 1.4-.6 1.5-1.5 0-.1 0-.1-.1-.1zm8.2 0h-.2c-.9 0-1.4-.4-1.8-1.1l-4.5-7.4-.1-.1c-.1 0-.1.1-.1.1V8l2.8 4.7c.4.6.9 1.2 2 1.2 1 0 1.7-.5 2-1.4 0-.2-.1-.2-.1-.2zm-.9-3.8c.1 0 .1-.1.1-.1V1.1c0-.1 0-.1-.1-.1h-.4c-.9 0-1.5.6-1.5 1.5v3.1l1.7 2.8c.1 0 .1.1.2.1zm13 3.8c-.6-.1-.9-.6-.9-1.2v-10c0-.1 0-.1-.1-.1h-.3c-.9 0-1.5.6-1.5 1.5v9.9c0 .9.6 1.5 1.5 1.5.8 0 1.4-.6 1.5-1.5l-.2-.1zm18.4-.5H81c-.7.3-1.5.5-2.5.5-1.6 0-2.9-.5-3.7-1.4-.9-1-1.4-2.4-1.4-4.2V1c0-.1 0-.1-.1-.1H73c-.9 0-1.5.6-1.5 1.5V8c0 3.7 2 5.9 5.4 5.9 1.9 0 3.4-.7 4.3-1.9v-.1c0-.1 0-.1-.1-.1z"></path><path d="M81.2.9h-.3c-.9 0-1.5.6-1.5 1.5v5.7c0 .7-.1 1.3-.3 1.8 0 .1.1.1.1.1 1.4-.3 2.1-1.4 2.1-3.3V1c0-.1-.1-.1-.1-.1zm12.7 7.6l1.4.3c1.5.3 1.6.8 1.6 1.2 0 .1.1.1.1.1 1.1-.1 1.8-.7 1.8-1.5s-.6-1.2-1.9-1.5l-1.4-.3c-3.2-.6-3.8-2.3-3.8-3.6 0-.7.2-1.3.6-1.9v-.2c0-.1-.1-.1-.1-.1-1.5.7-2.3 1.9-2.3 3.4-.1 2.3 1.3 3.7 4 4.1zm5.2 3.2c-.1.1-.1.1 0 0-.9.4-1.8.6-2.8.6-1.6 0-3-.5-4.3-1.4-.3-.3-.5-.6-.5-1 0-.1 0-.1-.1-.1s-.3-.1-.4-.1c-.4 0-.8.2-1.1.6-.2.3-.4.7-.3 1.1.1.4.3.7.6 1 1.4 1 2.8 1.5 4.5 1.5 2 0 3.7-.7 4.5-1.9v-.1c0-.1 0-.2-.1-.2z"></path><path d="M94.1 3.2c0 .1.1.1.1.1h.2c1.1 0 1.7.3 2.4.8.3.2.6.3 1 .3s.8-.2 1.1-.6c.2-.3.3-.6.3-.9 0-.1 0-.1-.1-.1-.2 0-.3-.1-.5-.2-.8-.6-1.4-.9-2.6-.9-1.2 0-2 .6-2 1.4.1 0 .1 0 .1.1z"></path></svg></a><div class="StickyNavdesktop__Subnavigation-sc-9maqdk-6 dwjYdZ"><a class="StyledLink-sc-3ea0mt-0 jTJfqD StickyNavdesktop__SiteLink-sc-9maqdk-4 clweAx" font-weight="light" href="/#featured-stories" rel="noopener"><span class="TextLabel-sc-8kw9oj-0 kNjZBr" font-weight="light">Featured</span></a><a class="StyledLink-sc-3ea0mt-0 jTJfqD StickyNavdesktop__SiteLink-sc-9maqdk-4 clweAx" font-weight="light" href="/#top-songs" rel="noopener"><span class="TextLabel-sc-8kw9oj-0 kNjZBr" font-weight="light">Charts</span></a><a class="StyledLink-sc-3ea0mt-0 jTJfqD StickyNavdesktop__SiteLink-sc-9maqdk-4 clweAx" font-weight="light" href="/#videos" rel="noopener"><span class="TextLabel-sc-8kw9oj-0 kNjZBr" font-weight="light">Videos</span></a><a class="StyledLink-sc-3ea0mt-0 jTJfqD StickyNavdesktop__SiteLink-sc-9maqdk-4 clweAx" font-weight="light" href="https://promote.genius.com" rel="noopener" target="_blank"><span class="TextLabel-sc-8kw9oj-0 kNjZBr" font-weight="light">Promote Your Music</span></a></div></div><div class="StickyNavdesktop__Right-sc-9maqdk-2 JliIh"><button class="TextButton-sc-192nsqv-0 hVAZmF StickyNavSignUp__Button-sc-14apwk1-0 bwWQCs StickyNavdesktop__AuthTextButton-sc-9maqdk-5 RakDs" type="button">Sign Up</button><form action="/search" class="StickyNavSearchdesktop__Form-sc-1wddxfx-0 dPICWx" method="get"><input autocomplete="off" class="StickyNavSearchdesktop__Input-sc-1wddxfx-2 cmGDeX" name="q" placeholder="Search lyrics & more" required=""/><div class="StickyNavSearchdesktop__Icon-sc-1wddxfx-1 QoIjR"><svg viewbox="0 0 21.48 21.59"><path d="M21.48 20.18L14.8 13.5a8.38 8.38 0 1 0-1.43 1.4l6.69 6.69zM2 8.31a6.32 6.32 0 1 1 6.32 6.32A6.32 6.32 0 0 1 2 8.31z"></path></svg></div></form></div></div><main class="SongPage__Container-sc-19xhmoi-0 buKnHw"><div class="PageGriddesktop-a6v82w-0 SongPageGriddesktop-sc-1px5b71-0 jecoie SongHeaderdesktop__Container-sc-1effuo1-0 gkVcFm"><div class="StickyNavSentinel__Sentinel-sc-1yh9i7p-0 hNLJnc"></div><div class="SongHeaderdesktop__Left-sc-1effuo1-1 diUihk"><div class="SongHeaderdesktop__PyongWrapper-sc-1effuo1-12 hLhFfl"><div class="Pyong__Container-yq95kq-0 eMjKRh"><div class="Tooltip__Container-sc-1uvy5c2-0 cRrFdP"><div class="Tooltip__Children-sc-1uvy5c2-2 dvOJud"><button class="LabelWithIcon__Container-hjli77-0 hrQuZg" height="1.313rem"><svg viewbox="0 0 11.37 22"><path d="M0 7l6.16-7 3.3 7H6.89S5.5 12.1 5.5 12.17h5.87L6.09 22l.66-7H.88l2.89-8z"></path></svg><span class="LabelWithIcon__Label-hjli77-1 jwfWMJ">34</span></button></div></div></div></div><div class="SongHeaderdesktop__CoverArtContainer-sc-1effuo1-6 jLdecJ"><div class="SongHeaderdesktop__CoverArt-sc-1effuo1-7 fVjbnr"><img alt="Cover art for Victory Lap by Nipsey Hussle" class="SizedImage__Image-sc-1hyeaua-1 iMdmgx SongHeaderdesktop__SizedImage-sc-1effuo1-13 eVLetJ"/></div></div></div><div class="SongHeaderdesktop__Right-sc-1effuo1-2 lfjman"><div class="SongHeaderdesktop__Information-sc-1effuo1-4 ieJVb"><div class="SongHeaderdesktop__SongDetails-sc-1effuo1-5 dhqXbj"><h1 class="SongHeaderdesktop__Title-sc-1effuo1-8 isLvDW" font-size="medium"><span class="SongHeaderdesktop__HiddenMask-sc-1effuo1-11 iMpFIj">Victory Lap</span></h1><div class="HeaderArtistAndTracklistdesktop__Container-sc-4vdeb8-0 hjExsS"><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 fcVxWP HeaderArtistAndTracklistdesktop__Artist-sc-4vdeb8-1 jhWHLb" font-size="reading" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></span></span><div class="HeaderArtistAndTracklistdesktop__Tracklist-sc-4vdeb8-2 glZsJC">Track 1 on<!-- --> <a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="#primary-album">Victory Lap<!-- --> <span class="InlineSvg__Wrapper-sc-1342j7p-0 blSbzj"><svg viewbox="0 0 6.6 16"><path d="M1.6 8.8l.6-.6 1 1 .5.7V6H0v-.8h4.5v4.6l.5-.6 1-1 .6.5L4 11.3 1.6 8.8z"></path></svg></span></a></div></div><div class="HeaderCredits__Container-wx7h8g-0 iVIbmD"><div class="HeaderCredits__Section-wx7h8g-1 jwiCow"><p class="HeaderCredits__Label-wx7h8g-2 ghcavQ">Featuring</p><div class="HeaderCredits__List-wx7h8g-3 cTzqde"><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Stacy-barthe">Stacy Barthe</a></span></span></div></div><div class="HeaderCredits__Section-wx7h8g-1 jwiCow"><p class="HeaderCredits__Label-wx7h8g-2 ghcavQ">Produced by</p><div class="HeaderCredits__List-wx7h8g-3 cTzqde"><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Mike-and-keys">Mike & Keys</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Amaire-johnson">Amaire Johnson</a></span></span> & <button class="List__More-sc-18puy0w-0 jYOOUb">1<!-- --> more</button></div></div></div></div><div class="SongHeaderdesktop__Bottom-sc-1effuo1-3 hEtDoX"><div class="HeaderBio__Container-oaxemt-0 jrQaBI SongHeaderdesktop__HeaderBio-sc-1effuo1-14 jDbgEP"><a class="StyledLink-sc-3ea0mt-0 fqTa-dX HeaderBio__Wrapper-oaxemt-1 brNcYU SongHeaderdesktop__HeaderBio-sc-1effuo1-14 jDbgEP" font-weight="light" href="#about">“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Victory Lap. On the track, Hussle boasts about his abilities; from rapping to… <span class="HeaderBio__ViewBio-oaxemt-2 dggIzN">Read More<!-- --> <span class="InlineSvg__Wrapper-sc-1342j7p-0 blSbzj"><svg viewbox="0 0 6.6 16"><path d="M1.6 8.8l.6-.6 1 1 .5.7V6H0v-.8h4.5v4.6l.5-.6 1-1 .6.5L4 11.3 1.6 8.8z"></path></svg></span></span></a></div><div class="MetadataStats__Container-sc-1t7d8ac-0 cDJyol"><span class="LabelWithIcon__Container-hjli77-0 gcYcIR MetadataStats__LabelWithIcon-sc-1t7d8ac-3 gZUIou" height="1em"><svg fill="currentColor" viewbox="0 0 18 18"><path d="M15.923 1.385h-2.77V0H11.77v1.385H6.231V0H4.846v1.385h-2.77c-.76 0-1.384.623-1.384 1.384v13.846c0 .762.623 1.385 1.385 1.385h13.846c.762 0 1.385-.623 1.385-1.385V2.77c0-.761-.623-1.384-1.385-1.384Zm0 15.23H2.077V6.923h13.846v9.692Zm0-11.077H2.077V2.77h2.77v1.385H6.23V2.769h5.538v1.385h1.385V2.769h2.77v2.77Z"></path></svg><span class="LabelWithIcon__Label-hjli77-1 hgsvkF">Feb. 16, 2018</span></span><span class="LabelWithIcon__Container-hjli77-0 gcYcIR MetadataStats__LabelWithIcon-sc-1t7d8ac-3 gZUIou" height="1em"><svg fill="currentColor" viewbox="0 0 18 18"><path clip-rule="evenodd" d="M4 16.483A9 9 0 1 0 14 1.518 9 9 0 0 0 4 16.483Zm.714-13.897a7.714 7.714 0 1 1 8.572 12.828A7.714 7.714 0 0 1 4.714 2.586Zm3.643 6.678 3.594 3.593.906-.906L9.643 8.73V3.214H8.357v6.05Z" fill-rule="evenodd"></path></svg><span class="LabelWithIcon__Label-hjli77-1 hgsvkF">1 viewer</span></span><span class="LabelWithIcon__Container-hjli77-0 gcYcIR MetadataStats__LabelWithIcon-sc-1t7d8ac-3 gZUIou" height="1em"><svg fill="currentColor" viewbox="0 0 26 18"><path clip-rule="evenodd" d="M20.418 2.53a13.655 13.655 0 0 1 4.806 6.192.818.818 0 0 1 0 .556A13.655 13.655 0 0 1 13 18 13.655 13.655 0 0 1 .776 9.278a.818.818 0 0 1 0-.556A13.655 13.655 0 0 1 13 0c2.667.1 5.246.98 7.418 2.53ZM2.421 9C4.08 13.148 8.664 16.364 13 16.364S21.918 13.148 23.58 9C21.917 4.852 17.335 1.636 13 1.636S4.082 4.852 2.42 9Zm7.852-4.082a4.91 4.91 0 1 1 5.454 8.164 4.91 4.91 0 0 1-5.454-8.164Zm.909 6.803a3.272 3.272 0 1 0 3.636-5.442 3.272 3.272 0 0 0-3.636 5.442Z" fill-rule="evenodd"></path></svg><span class="LabelWithIcon__Label-hjli77-1 hgsvkF">441.2K views</span></span></div></div></div><div class="SongHeaderdesktop__PrimisContainer-sc-1effuo1-15 nPqjG"><div class="PrimisPlayer__Container-sc-1tvdtf7-1 csMTdh"></div></div></div></div><div class="SectionScrollSentinel__Container-eoe1bv-0 icvVds"><div class="SectionScrollSentinel__Element-eoe1bv-1 gTVDnZ"></div><div class="SectionScrollSentinel__SectionAnchor-eoe1bv-2 difnmr" id="lyrics"></div><p class="SongPage__HeaderSpace-sc-19xhmoi-1 gloXyw"></p><div class="SongPage__LyricsWrapper-sc-19xhmoi-2 mkDeY" id="annotation-portal-target"><div id="lyrics-root-pin-spacer"><div class="PageGriddesktop-a6v82w-0 SongPageGriddesktop-sc-1px5b71-0 Lyrics__Root-sc-1ynbvzw-0 iEyyHq" id="lyrics-root"><div class="LyricsHeader__Container-ejidji-1 hbjTyd"><button class="ContributorsCreditSong__Container-sc-12hq27v-0 bvjTUg"><span class="ContributorsCreditSong__Label-sc-12hq27v-1 joWKqm"><svg class="ContributorsCreditSong__People-sc-12hq27v-3 fScxZH" height="0.75rem" viewbox="0 0 22 16.47"><path d="M12.55 6.76a4 4 0 1 0 0-4.59 4.41 4.41 0 0 1 0 4.59zm3.07 2.91v5.17H22V9.66l-6.38.01M7 9a4.43 4.43 0 0 0 3.87-2.23 4.41 4.41 0 0 0 0-4.59 4.47 4.47 0 0 0-8.38 2.3A4.48 4.48 0 0 0 7 9zm-7 1.35v6.12h13.89v-6.14l-6.04.01-7.85.01"></path></svg><span class="ContributorsCreditSong__ContributorsReference-sc-12hq27v-2 hymydu">107 Contributors</span></span></button><div><div class="Dropdown__Container-ugfjuc-0 gGGmJL"><button class="Dropdown__Toggle-ugfjuc-2 ikbJXY"><div class="LyricsHeader__TranslationsContainer-ejidji-6 kUKuYL"><svg class="LyricsHeader__Languages-ejidji-8 crJrtp" fill="currentColor" viewbox="0 0 20 19"><path clip-rule="evenodd" d="M11.335 2.6v1.333H9.2A11.76 11.76 0 0 1 6.588 9.02a9.654 9.654 0 0 0 3.413 2.247l-.473 1.226a11.279 11.279 0 0 1-3.84-2.56 12.314 12.314 0 0 1-3.853 2.574l-.5-1.24a11.227 11.227 0 0 0 3.44-2.28 10.98 10.98 0 0 1-2-3.72h1.4A9 9 0 0 0 5.7 8.053a9.807 9.807 0 0 0 2.127-4.12H.668V2.6h4.667v-2h1.333v2h4.667Zm7.997 16h-1.433l-1.067-2.667h-4.567L11.2 18.6H9.765l4-10h1.567l4 10Zm-4.787-8.373L12.8 14.6h3.5l-1.754-4.373Z" fill-rule="evenodd"></path></svg><span class="LyricsHeader__TranslationsText-ejidji-7 kGzSQz">Translations</span><span class="LyricsHeader__MenuIcon-ejidji-9 dKqQxi"><svg viewbox="0 0 9 7"><path d="M4.488 7 0 0h8.977L4.488 7Z"></path></svg></span></div></button><div class="Dropdown__ContentContainer-ugfjuc-1 gjsNwk"><ul class="LyricsHeader__DropdownContents-ejidji-4 fSmeGU"><li class="LyricsHeader__DropdownItem-ejidji-5 SfdQZ"><a class="TextButton-sc-192nsqv-0 hVAZmF LyricsHeader__TextButton-ejidji-10 iljvxT" href="https://genius.com/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics" title="Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español)" type="button"><div class="LyricsHeader__TextEllipsis-ejidji-11 fdKPz">English</div></a></li></ul></div></div></div><div class="LyricsHeader__TitleContainer-ejidji-2 dzLEIC"><div class="MetadataTooltip__Container-sc-435euq-0 dEGYli LyricsHeader__MetadataTooltip-ejidji-3 jeEHLx"><div class="Tooltip__Container-sc-1uvy5c2-0 cRrFdP"><div class="Tooltip__Children-sc-1uvy5c2-2 dvOJud"><svg class="MetadataTooltip__InfoIcon-sc-435euq-5 hwdUNy" fill="currentColor" viewbox="0 0 18 18"><path d="M4 16.483A9 9 0 1 0 14 1.516 9 9 0 0 0 4 16.483Zm.714-13.897a7.714 7.714 0 1 1 8.572 12.828A7.714 7.714 0 0 1 4.714 2.586ZM9 3.857a.964.964 0 1 0 0 1.928.964.964 0 0 0 0-1.928Zm.643 9V7.714H7.07V9h1.286v3.857H6.428v1.286h5.143v-1.286H9.643Z"></path></svg></div></div></div><h2 class="TextLabel-sc-8kw9oj-0 LyricsHeader__Title-ejidji-0 dddWnX" font-weight="light">Victory Lap Lyrics</h2></div></div><div class="Lyrics__Container-sc-1ynbvzw-1 kUgSbL" data-lyrics-container="true">[Intro: Stacy Barthe & <i>Arctic Monkeys</i>]<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Woah-oh<br/>Woah-oh<br/>Woah-oh<br/><i>Like the beginning of Mean Streets, you could</i> (Oh)<br/><i>Like the beginning of Mean Streets, you could<br/>Like the beginning of Mean Streets, you could</i></span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><br/>[Verse 1: Nipsey Hussle & <i>Arctic Monkeys</i>]<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16848700/Nipsey-hussle-victory-lap/Im-prolific-so-gifted-im-the-type-thats-gon-go-get-it-no-kiddin"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I'm prolific, so gifted<br/>I'm the type that's gon' go get it, no kiddin'</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Breaking down a Swisher front of your buildin'<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/21793318/Nipsey-hussle-victory-lap/Sitting-on-the-steps-feeling-no-feelings"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Sitting on the steps, feeling no feelings</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Last night, it was a cold killin'<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/17822769/Nipsey-hussle-victory-lap/You-gotta-keep-the-devil-in-his-hole-nigga"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">You gotta keep the devil in his hole, nigga</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>But you know how it go, nigga<br/>I'm front line every time it's on, nigga<br/>Hunnid proof flow, run and shoot pro<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14368766/Nipsey-hussle-victory-lap/458-drop-playin-bullet-proof-soul"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">458 drop, playin' "Bullet Proof Soul"</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Every few shows, I just buy some new gold<br/>Circle got smaller, everybody can't go<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16975760/Nipsey-hussle-victory-lap/Downtown-diamond-district-jewelers-like-yo-hussle-holla-at-me-i-got-cubans-on-the-low-flew-to-cancun-smokin-cubans-on-the-boat-then-docked-at-tulum-just-to-smoke-look"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Downtown, Diamond District, jewelers like, "Yo<br/>Hussle, holla at me, I got Cubans on the low"<br/>Flew to Cancun, smokin' Cubans on the boat<br/>Then docked at Tulum just to smoke, look</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16975867/Nipsey-hussle-victory-lap/Listening-to-music-at-the-mayan-ruins-true-devotion-on-the-bluest-ocean-cruisin"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Listening to music at the Mayan Ruins<br/>True devotion on the bluest ocean, cruisin'</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14014550/Nipsey-hussle-victory-lap/My-cultural-influence-even-rival-lucien"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">My cultural influence even rival Lucien</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16919385/Nipsey-hussle-victory-lap/Im-integrated-vertically-yall-niggas-blew-it"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I'm integrated vertically, y'all niggas blew it</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14558900/Nipsey-hussle-victory-lap/They-tell-me-hussle-dumb-it-down-you-might-confuse-em-this-aint-that-weirdo-rap-you-motherfuckers-used-to"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">They tell me, "Hussle, dumb it down, you might confuse 'em"<br/>This ain't that weirdo rap you motherfuckers used to</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw"><i>Like the beginning of Mean Streets</i></span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16845567/Nipsey-hussle-victory-lap/Im-an-urban-legend-south-central-in-a-certain-section-cant-express-how-i-curved-detectives-guess-its-evidence-of-a-divine-presence-blessings"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I'm an urban legend, South Central in a certain section<br/>Can't express how I curved detectives<br/>Guess it's evidence of a divine presence, blessings</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Held me down, at times, I seem reckless, F it<br/>You got an L, but got an E for effort, stretched him<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/18387974/Nipsey-hussle-victory-lap/Dropped-him-off-in-the-mojave-desert-then-left-him"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Dropped him off in the Mojave desert, then left him</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16043169/Nipsey-hussle-victory-lap/Aint-no-answer-to-these-trick-questions"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Ain't no answer to these trick questions</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/17168943/Nipsey-hussle-victory-lap/Money-makin-nip-straighten-out-my-jewelry-on-my-bitch-dresser"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Money Makin' Nip, straighten out my jewelry on my bitch dresser</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Well known, flick up and jail pose<br/>Snatch a champagne bottle from Rico's 'til T show<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16852982/Nipsey-hussle-victory-lap/Whatever-nigga-playin-chess-not-checkers-nigga"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Whatever, nigga, playin' chess, not checkers, nigga</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16856233/Nipsey-hussle-victory-lap/Thirty-eight-special-for-you-clever-niggas"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Thirty-eight special for you clever niggas</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>See, bro, if you ain't live and die by the street code<br/>Been through all these motions, up and down like a see-saw<br/>I can never view you as my equal<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/29497188/Nipsey-hussle-victory-lap/Fuck-i-wanna-hear-your-cd-for"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Fuck I wanna hear your CD for?</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/></div><div class="RightSidebar__Container-pajcl2-0 fuSJbt"><div class="SidebarAd__Container-sc-1cw85h6-0 kvuklz"><div class="SidebarAd__StickyContainer-sc-1cw85h6-1 bJESjt"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_lyrics_sidebar-desktop_song_lyrics_sidebar-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 ilfajN"></div></div></div></div><div class="LyricsSidebarAd__RecommendationsContainer-sc-1duvwla-0 jUHZcK"><aside class="RecommendedSongs__Container-fhtuij-0 fUyrrM LyricsSidebarAd__Recommendations-sc-1duvwla-1 hAVRTF"><div class="RecommendedSongs__Header-fhtuij-2 lfAvEQ">You might also like</div><div class="RecommendedSongs__Body-fhtuij-1 fVWWod"></div></aside></div></div><div class="InreadContainer__Container-sc-19040w5-0 cujBpY" data-exclude-from-selection="true"><div class="DfpAd__Container-sc-1tnbv7f-0 hOMcjE"><div id="div-gpt-ad-desktop_song_lyrics_inread-desktop_song_lyrics_inread-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 hoVEOg"></div></div></div><div class="Lyrics__Container-sc-1ynbvzw-1 kUgSbL" data-lyrics-container="true">[Chorus: Stacy Barthe & <i>Arctic Monkeys</i>]<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw"><i>Like the beginning of Mean Streets<br/>Like the beginning of Mean Streets<br/>Like the beginning of Mean Streets<br/>Like the beginning of Mean Streets<br/>Like the beginning of Mean Streets<br/>Like the beginning of Mean Streets</i><br/>(We gotta make it)<br/><i>Like the beginning of Mean Streets</i></span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><br/>[Verse 2: Nipsey Hussle]<br/>Yeah, look<br/>I'm finna take it there<br/>This time around, I'ma make it clear<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/20984448/Nipsey-hussle-victory-lap/Spoke-some-things-into-the-universe-and-they-appeared"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Spoke some things into the universe and they appeared</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/17195991/Nipsey-hussle-victory-lap/I-say-its-worth-it-i-wont-say-its-fair-find-your-purpose-or-you-wastin-air-fuck-it-though-yall-niggas-scared"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I say it's worth it, I won't say it's fair<br/>Find your purpose or you wastin' air<br/>Fuck it, though, y'all niggas scared</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>Eyes opened, I can see it clear<br/>They don't make 'em bar none, they don't make 'em real<br/>They don't make it where I'm from, they don't take it here<br/>They ain't see in due time, I be makin' mils<br/>Bossed up in this game, I been makin' deals<br/>Get your lawyer on the phone, we can make it real<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/16336404/Nipsey-hussle-victory-lap/I-got-checks-and-balance-i-flex-dramatic"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I got checks and balance, I flex dramatic</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/20645366/Nipsey-hussle-victory-lap/Other-fifty-on-my-neck-just-my-reckless-habit"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Other fifty on my neck, just my reckless habit</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/28499064/Nipsey-hussle-victory-lap/Aint-no-pussy-on-my-rep-disrespect-the-savage"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">Ain't no pussy on my rep, disrespect the savage</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/30319432/Nipsey-hussle-victory-lap/I-make-one-phone-call-and-the-rest-get-handled"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw">I make one phone call and the rest get handled</span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span><br/>It's just another front step with candles<br/>Lil' message from the set, "We accept your challenge"<br/></div><div class="RightSidebar__Container-pajcl2-0 fuSJbt"><div class="SidebarAd__Container-sc-1cw85h6-0 cFlBmm"><div class="SidebarAd__StickyContainer-sc-1cw85h6-1 bZuAng"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_lyrics_sidebar2-desktop_song_lyrics_sidebar2-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 ilfajN"></div></div></div></div></div><div class="InreadContainer__Container-sc-19040w5-0 cujBpY" data-exclude-from-selection="true"><div class="DfpAd__Container-sc-1tnbv7f-0 hOMcjE"><div id="div-gpt-ad-desktop_song_lyrics_inread2-desktop_song_lyrics_inread2-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 hoVEOg"></div></div></div><div class="Lyrics__Container-sc-1ynbvzw-1 kUgSbL" data-lyrics-container="true">[Outro: Stacy Barthe]<br/>Woah-oh<br/>Woah-oh<br/>Woah-oh<br/>Woah, woah<br/>We gotta make it, yeah, we gotta<br/>We gotta make it, oh, we gotta make it<br/>Oh, ah, ooh<br/>We gotta make it, oh<br/><a class="ReferentFragmentdesktop__ClickTarget-sc-110r0d9-0 cesxpW" href="/14023195/Nipsey-hussle-victory-lap/Victory-lap"><span class="ReferentFragmentdesktop__Highlight-sc-110r0d9-1 jAzSMw"><i>Victory Lap</i></span></a><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span><span style="position:absolute;opacity:0;width:0;height:0;pointer-events:none;z-index:-1" tabindex="0"></span></span></div><div class="RightSidebar__Container-pajcl2-0 fuSJbt"><div class="SidebarAd__Container-sc-1cw85h6-0 cFlBmm"><div class="SidebarAd__StickyContainer-sc-1cw85h6-1 bZuAng"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_lyrics_sidebar3-desktop_song_lyrics_sidebar3-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 ilfajN"></div></div></div></div></div><div class="LyricsFooter__Container-iqbcge-0 gBtUIQ"><div class="ShareButtons__Root-jws18q-0 dyewdM LyricsFooter__FooterShareButtons-iqbcge-1 bfWZQI"><div class="ShareButtons__Container-jws18q-1 ePvBqA"><div class="ShareButtons__ButtonWrapper-jws18q-3 ueUKD"><button aria-label="facebook" class="react-share__ShareButton" style="background-color:transparent;border:none;padding:0;font:inherit;color:inherit;cursor:pointer"><div class="Button__Container-rtu9rw-0 gexBFu ShareButtons__Button-jws18q-2 kJxpEi" type="button"><svg viewbox="0 0 9.95 20"><path d="M8.09 3.81c-1.4 0-1.58.84-1.58 1.67v1.3h3.35L9.49 11h-3v9H2.33v-9H0V6.88h2.42V3.81C2.42 1.3 3.81 0 6.6 0H10v3.81z"></path></svg></div></button></div><div class="ShareButtons__ButtonWrapper-jws18q-3 ueUKD"><button aria-label="twitter" class="react-share__ShareButton" style="background-color:transparent;border:none;padding:0;font:inherit;color:inherit;cursor:pointer"><div class="Button__Container-rtu9rw-0 gexBFu ShareButtons__Button-jws18q-2 kJxpEi" type="button"><svg viewbox="0 0 20 16.43"><path d="M20 1.89l-2.3 2.16v.68a12.28 12.28 0 0 1-3.65 8.92c-5 5.13-13.1 1.76-14.05.81 0 0 3.78.14 5.81-1.76A4.15 4.15 0 0 1 2.3 9.86h2S.81 9.05.81 5.81A11 11 0 0 0 3 6.35S-.14 4.05 1.49.95a11.73 11.73 0 0 0 8.37 4.19A3.69 3.69 0 0 1 13.51 0a3.19 3.19 0 0 1 2.57 1.08 12.53 12.53 0 0 0 3.24-.81l-1.75 1.89A10.46 10.46 0 0 0 20 1.89z"></path></svg></div></button></div><div class="ShareButtons__ButtonWrapper-jws18q-3 ueUKD"><div class="Button__Container-rtu9rw-0 gexBFu ShareButtons__Button-jws18q-2 kJxpEi" type="button"><div class="Pyong__Container-yq95kq-0 eMjKRh"><div class="Tooltip__Container-sc-1uvy5c2-0 cRrFdP"><div class="Tooltip__Children-sc-1uvy5c2-2 dvOJud"><button class="LabelWithIcon__Container-hjli77-0 bSorfX" height=".75rem"><svg viewbox="0 0 11.37 22"><path d="M0 7l6.16-7 3.3 7H6.89S5.5 12.1 5.5 12.17h5.87L6.09 22l.66-7H.88l2.89-8z"></path></svg><span class="LabelWithIcon__Label-hjli77-1 jwfWMJ">34</span></button></div></div></div></div></div><button class="ShareButtons__ButtonWrapper-jws18q-3 ueUKD"><div class="Button__Container-rtu9rw-0 gexBFu ShareButtons__Button-jws18q-2 kJxpEi" type="button">Embed</div></button></div></div></div></div></div><form class="PageGriddesktop-a6v82w-0 SongPageGriddesktop-sc-1px5b71-0 jecoie LyricsEditdesktop__Container-sc-19lxrhp-0 lmbLpy"><div class="LyricsEditdesktop__Editor-sc-19lxrhp-1 cOOPzk"></div><div class="LyricsEditdesktop__ControlsContainer-sc-19lxrhp-2 hGRoZE"><div class="LyricsEditdesktop__Controls-sc-19lxrhp-3 cEVdKO"><button class="Button__Container-rtu9rw-0 gexBFu LyricsEditdesktop__Button-sc-19lxrhp-4 kpOoZB" type="button">Cancel</button><div class="LyricsEditExplainer__Container-sc-1aeph76-0 hXQMRu LyricsEditdesktop__Explainer-sc-19lxrhp-6 LNnRX"><p>How to Format Lyrics:</p><ul><li>Type out all lyrics, even repeating song parts like the chorus</li><li>Lyrics should be broken down into individual lines</li><li>Use section headers above different song parts like [Verse], [Chorus], etc.</li><li>Use <span class="LyricsEditExplainer__Italic-sc-1aeph76-2 rncXA">italics</span> (<!-- --><i>lyric</i><!-- -->) and <span class="LyricsEditExplainer__Bold-sc-1aeph76-1 eDBQeK">bold</span> (<!-- --><b>lyric</b><!-- -->) to distinguish between different vocalists in the same song part</li><li>If you don’t understand a lyric, use [?]</li></ul><p>To learn more, check out our <a class="StyledLink-sc-3ea0mt-0 ietQTa" font-weight="light" href="https://genius.com/Genius-how-to-add-songs-to-genius-annotated">transcription guide</a> or visit our <a class="StyledLink-sc-3ea0mt-0 ietQTa" font-weight="light" href="https://genius.com/transcribers">transcribers forum</a></p></div></div></div></form></div><div class="SectionLeaderboard__Container-sc-1pjk0bw-0 cSKAwQ"><div class="SectionLeaderboard__Center-sc-1pjk0bw-1 fPpEQG"><div class="DfpAd__Container-sc-1tnbv7f-0 dTXQYT"><div id="div-gpt-ad-desktop_song_about_leaderboard-desktop_song_about_leaderboard-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 bIwkeM"></div></div></div></div></div><div class="SectionScrollSentinel__Container-eoe1bv-0 icvVds"><div class="SectionScrollSentinel__Element-eoe1bv-1 gTVDnZ"></div><div class="SectionScrollSentinel__SectionAnchor-eoe1bv-2 difnmr" id="about"></div><div class="PageGriddesktop-a6v82w-0 SongPageGriddesktop-sc-1px5b71-0 jecoie About__Grid-ut4i9m-0 jugbPq"><div class="About__Container-ut4i9m-1 eSiFpi"><h1 class="About__Title-ut4i9m-2 kcXwIY" font-size="xxLargeHeadline">About</h1><div class="SongDescription__Container-sc-615rvk-0 hYPlhL"><div class="Attribution__Container-sc-1nmry9o-0 dhIhSa"><div class="Attribution__Header-sc-1nmry9o-1 iPNsXE"><span>Genius Annotation</span><button class="TextButton-sc-192nsqv-0 ixMmYX" text-decoration="underline" type="button">2 contributors</button></div></div><div class="ExpandableContent__Container-sc-1165iv-0 ikywhQ"><div class="ExpandableContent__Content-sc-1165iv-4 huhsMa"><div class="SongDescription__Content-sc-615rvk-2 kRzyD"><div class="RichText__Container-oz284w-0 hZPbeU"><p>“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, <a data-api_path="/artists/1263" href="https://genius.com/artists/Nipsey-hussle" rel="noopener"><i>Victory Lap</i></a>. On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.</p>
<p>The <a data-api_path="/artists/13401" href="https://genius.com/artists/Stacy-barthe" rel="noopener">Stacy Barthe</a> sung chorus interpolates the <a data-api_path="/artists/12297" href="https://genius.com/artists/Arctic-monkeys" rel="noopener">Arctic Monkeys'</a> 2013 song <a data-api_path="/songs/213246" href="https://genius.com/Arctic-monkeys-knee-socks-lyrics" rel="noopener">“Knee Socks”</a> and references the movie <a href="https://www.imdb.com/title/tt0070379/" rel="noopener nofollow"><em>Mean Streets</em></a>.</p></div></div></div><div class="ExpandableContent__ButtonContainer-sc-1165iv-3 jzPNvv"><button class="Button__Container-rtu9rw-0 efSZT ExpandableContent__Button-sc-1165iv-1 gBcitk" type="button">Expand<!-- --> <span class="InlineSvg__Wrapper-sc-1342j7p-0 blSbzj"><svg viewbox="0 0 6.6 16"><path d="M1.6 8.8l.6-.6 1 1 .5.7V6H0v-.8h4.5v4.6l.5-.6 1-1 .6.5L4 11.3 1.6 8.8z"></path></svg></span></button></div></div><div class="AnnotationActions__Container-sc-1597gb-0 tqfBP SongDescription__AnnotationActions-sc-615rvk-7 bEHmko"><div class="VotingActions__Container-sc-1w1brao-0 eQBXrC"><svg aria-label="upvote" aria-pressed="false" class="VotingActions__ThumbsUp-sc-1w1brao-3 hEQpIA" viewbox="0 0 21.62 21.36"><path d="M16.52 21.29H6V8.5l.84-.13a3.45 3.45 0 0 0 1.82-1.09 13.16 13.16 0 0 0 .82-1.85c1.06-2.69 2-4.78 3.52-5.31a2.06 2.06 0 0 1 1.74.17c2.5 1.42 1 5 .16 6.95-.11.27-.25.6-.31.77a.78.78 0 0 0 .6.36h4.1a2.29 2.29 0 0 1 2.37 2.37c0 .82-1.59 5.4-2.92 9.09a2.39 2.39 0 0 1-2.22 1.46zm-8.52-2h8.56a.48.48 0 0 0 .31-.17c1.31-3.65 2.73-7.82 2.79-8.44 0-.22-.1-.32-.37-.32h-4.1A2.61 2.61 0 0 1 12.54 8 4.29 4.29 0 0 1 13 6.46c.45-1.06 1.64-3.89.7-4.43-.52 0-1.3 1.4-2.38 4.14a10 10 0 0 1-1.13 2.38A5.28 5.28 0 0 1 8 10.11zM0 8.4h4.86v12.96H0z"></path></svg><button class="VotingActions__Button-sc-1w1brao-1 VotingActions__VotingModalButton-sc-1w1brao-2 hPgYeJ">+60</button><svg aria-label="downvote" aria-pressed="false" class="VotingActions__ThumbsDown-sc-1w1brao-4 hKZXIk" viewbox="0 0 21.62 21.36"><path d="M8 21.36a2.12 2.12 0 0 1-1.06-.29c-2.5-1.42-1-5-.16-6.95.11-.27.25-.6.31-.77a.78.78 0 0 0-.6-.36H2.37A2.29 2.29 0 0 1 0 10.64c0-.82 1.59-5.4 2.92-9.09A2.39 2.39 0 0 1 5.1.07h10.56v12.79l-.84.13A3.45 3.45 0 0 0 13 14.08a13.16 13.16 0 0 0-.82 1.85c-1.06 2.69-2 4.79-3.49 5.31a2.06 2.06 0 0 1-.69.12zM5.1 2.07a.48.48 0 0 0-.31.17C3.48 5.89 2.07 10.06 2 10.68c0 .22.1.32.37.32h4.1a2.61 2.61 0 0 1 2.61 2.4 4.29 4.29 0 0 1-.48 1.51c-.46 1.09-1.65 3.89-.7 4.42.52 0 1.3-1.4 2.38-4.14a10 10 0 0 1 1.13-2.38 5.27 5.27 0 0 1 2.25-1.56V2.07zM16.76 0h4.86v12.96h-4.86z"></path></svg></div><div class="AnnotationActions__FlexSpace-sc-1597gb-1 kljthJ"></div><button class="LabelWithIcon__Container-hjli77-0 gcYcIR" height="1em"><svg viewbox="0 0 21.2 22"><path d="M19.29 1.91v11.46H7.69l-.57.7L5 16.64v-3.27H1.91V1.91h17.38M21.2 0H0v15.28h3.12V22l5.48-6.72h12.6V0z"></path><path d="M4.14 4.29h12.93V6.2H4.14zm0 4.09h12.93v1.91H4.14z"></path></svg><span class="LabelWithIcon__Label-hjli77-1 jwfWMJ">1</span></button><div class="Pyong__Container-yq95kq-0 eMjKRh AnnotationActions__Pyong-sc-1597gb-2 jQIgzS"><div class="Tooltip__Container-sc-1uvy5c2-0 cRrFdP"><div class="Tooltip__Children-sc-1uvy5c2-2 dvOJud"><button class="LabelWithIcon__Container-hjli77-0 gcYcIR" height="1em"><svg viewbox="0 0 11.37 22"><path d="M0 7l6.16-7 3.3 7H6.89S5.5 12.1 5.5 12.17h5.87L6.09 22l.66-7H.88l2.89-8z"></path></svg></button></div></div></div><button class="LabelWithIcon__Container-hjli77-0 gcYcIR" height="1em"><svg viewbox="0 0 17.94 22"><path d="M16.03 7.39v12.7H1.91V7.39H0V22h17.94V7.39h-1.91"></path><path d="M8.08 3.7v11.81h1.91V3.63l2.99 2.98 1.35-1.35L9.07 0 3.61 5.46l1.36 1.35L8.08 3.7"></path></svg><span class="LabelWithIcon__Label-hjli77-1 jwfWMJ">Share</span></button></div></div><div class="SectionScrollSentinel__Container-eoe1bv-0 icvVds"><div class="SectionScrollSentinel__Element-eoe1bv-1 gTVDnZ"></div><div class="SectionScrollSentinel__SectionAnchor-eoe1bv-2 difnmr" id="questions"></div><div class="InnerSectionDivider-sc-1x4onqw-0 iyrTpw"></div><div class="QuestionList__Container-sc-1a58vti-0 dbVnsR"><div class="QuestionList__Header-sc-1a58vti-1 cTVsHz"><h2 class="QuestionList__Title-sc-1a58vti-2 dssCKz" font-size="xxLargeHeadline">Q&A</h2><p class="QuestionList__SubTitle-sc-1a58vti-3 dZHUCL">Find answers to frequently asked questions about the song and explore its deeper meaning</p></div><div class="QuestionFormControls__Buttons-sc-79jhlr-1 dxxZLD"><button class="Button__Container-rtu9rw-0 efSZT" type="button">Ask a question</button></div><div class="QuestionList__Table-sc-1a58vti-5 geLHRn"><div class="QuestionTemplate__Container-sc-1is5n1p-1 cgTISK" id="artist_comment:song:3510797"><div class="QuestionTemplate__Title-sc-1is5n1p-4 cYEUqo"><span>What did Nipsey Hussle say about "Victory Lap"?</span><button class="TextButton-sc-192nsqv-0 hVAZmF QuestionTemplate__ExpandButton-sc-1is5n1p-5 duMtcj" type="button"><svg height="24" viewbox="0 0 24 24" width="24"><path d="M0 10h24v4h-24z"></path></svg></button></div><div class="Answer__Container-sc-2neq6u-0 iHvEbL"><div class="Attribution__Container-sc-1nmry9o-0 dhIhSa"><div class="Attribution__Header-sc-1nmry9o-1 iPNsXE"><span><div class="Answer__AttributionLabel-sc-2neq6u-3 doQBGH">Genius Answer</div></span><button class="TextButton-sc-192nsqv-0 ixMmYX" text-decoration="underline" type="button">1 contributor</button></div></div><div class="Answer__Body-sc-2neq6u-1 fzIWba"><div class="RichText__Container-oz284w-0 hZPbeU"><p>Nipsey to <a href="https://www.npr.org/sections/allsongs/2018/02/16/586361873/nipsey-hussle-tells-the-epic-stories-behind-victory-lap-track-by-track" rel="noopener nofollow"><em>NPR</em></a>:</p>
<blockquote>
<p><em>“I’m a urban legend / South Central in a certain section / Can’t explain how I curbed detectives, guess it’s / Evidence of a divine presence.”</em></p>
<p>If you check the stats — the murder rates and incarceration rates in the years I was a teenager in L.A. — in my section of the Crenshaw District in the Rollin' 60s, none of my peers survived. None of my peers avoided prison. None of ‘em. Everybody got bullet wounds and felonies and strikes. So to make it out mentally stable and not in prison and not on drugs, that’s a win. That’s a victory in itself. Then to be in the position I find myself in as an artist and entrepreneur who has respect around the world; that’s legendary. And I say it in the most humble way. That’s what I was talking about in that line. When I reflect on it, it’s unbelievable. It’s gotta be evidence of a divine presence, because it wasn’t that I’m just the smartest dude or just wiggled my way through. It had to be a calling on my life and I started to see that.</p>
</blockquote></div></div></div><div class="QuestionAnswerActions__Container-sc-6ne2ji-0 dTXIVU"></div></div><div class="QuestionTemplate__Container-sc-1is5n1p-1 cgTISK"><div class="QuestionTemplate__Title-sc-1is5n1p-4 cYEUqo"><span>What certifications has this track received?</span><button class="TextButton-sc-192nsqv-0 hVAZmF QuestionTemplate__ExpandButton-sc-1is5n1p-5 duMtcj" type="button"><svg height="24" viewbox="0 0 24 24" width="24"><path d="M0 10h24v4h-24z"></path></svg></button></div><div class="Answer__Container-sc-2neq6u-0 iHvEbL"><div class="Attribution__Container-sc-1nmry9o-0 dhIhSa"><div class="Attribution__Header-sc-1nmry9o-1 iPNsXE"><span><div class="Answer__AttributionLabel-sc-2neq6u-3 doQBGH">Genius Answer</div></span><button class="TextButton-sc-192nsqv-0 ixMmYX" text-decoration="underline" type="button">1 contributor</button></div></div><div class="Answer__Body-sc-2neq6u-1 fzIWba"><div class="RichText__Container-oz284w-0 hZPbeU"><p>On February 16, 2023, “Victory Lap” was <a href="https://www.riaa.com/gold-platinum/?tab_active=default-award&ar=&ti=Victory+L&lab=&genre=&format=Album&date_option=release&from=&to=&award=&type=&category=&adv=SEARCH#search_section" rel="noopener nofollow">certified 2x multi-platinum</a> by the RIAA.</p></div></div></div><div class="QuestionAnswerActions__Container-sc-6ne2ji-0 dTXIVU"></div></div><div class="MetadataQuestionTemplate__Container-sc-3cdvbz-0 eDiRSs"><a class="MetadataQuestionTemplate__Title-sc-3cdvbz-1 emVCuo" href="/Nipsey-hussle-victory-lap-lyrics/q/producer"><span class="MetadataQuestionTemplate__QuestionBody-sc-3cdvbz-3 iLvtam">Who produced “Victory Lap” by Nipsey Hussle?</span><button class="TextButton-sc-192nsqv-0 hVAZmF MetadataQuestionTemplate__ExpandButton-sc-3cdvbz-2 jTUclM" type="button"><svg height="24" viewbox="0 0 24 24" width="24"><path d="M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z"></path></svg></button></a></div><div class="MetadataQuestionTemplate__Container-sc-3cdvbz-0 eDiRSs"><a class="MetadataQuestionTemplate__Title-sc-3cdvbz-1 emVCuo" href="/Nipsey-hussle-victory-lap-lyrics/q/release-date"><span class="MetadataQuestionTemplate__QuestionBody-sc-3cdvbz-3 iLvtam">When did Nipsey Hussle release “Victory Lap”?</span><button class="TextButton-sc-192nsqv-0 hVAZmF MetadataQuestionTemplate__ExpandButton-sc-3cdvbz-2 jTUclM" type="button"><svg height="24" viewbox="0 0 24 24" width="24"><path d="M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z"></path></svg></button></a></div><div class="MetadataQuestionTemplate__Container-sc-3cdvbz-0 eDiRSs"><a class="MetadataQuestionTemplate__Title-sc-3cdvbz-1 emVCuo" href="/Nipsey-hussle-victory-lap-lyrics/q/writer"><span class="MetadataQuestionTemplate__QuestionBody-sc-3cdvbz-3 iLvtam">Who wrote “Victory Lap” by Nipsey Hussle?</span><button class="TextButton-sc-192nsqv-0 hVAZmF MetadataQuestionTemplate__ExpandButton-sc-3cdvbz-2 jTUclM" type="button"><svg height="24" viewbox="0 0 24 24" width="24"><path d="M24 10h-10v-10h-4v10h-10v4h10v10h4v-10h10z"></path></svg></button></a></div></div></div></div><div class="InnerSectionDivider-sc-1x4onqw-0 iyrTpw"></div><div class="PrimaryAlbum__Container-cuci8p-0 kqeVkf"><div class="PrimaryAlbum__SectionAnchor-cuci8p-1 lkEvgY" id="primary-album"></div><div class="PrimaryAlbum__CoverArt-cuci8p-2 fMIxkO"><div class="SizedImage__Container-sc-1hyeaua-0 ckQFBO" role="img"><noscript><img class="SizedImage__NoScript-sc-1hyeaua-2 UJCmI" src="https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg"/></noscript></div></div><div class="PrimaryAlbum__AlbumDetails-cuci8p-3 hGGOcK"><a class="PrimaryAlbum__Title-cuci8p-4 NcWGs" href="https://genius.com/albums/Nipsey-hussle/Victory-lap">Victory Lap<!-- --> <!-- -->(2018)</a><div class="PrimaryAlbum__Artist-cuci8p-5 hyzSGh"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></div></div><ol class="AlbumTracklist__Container-sc-123giuo-0 kGJQLs"><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 guEaas"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">1. </div>Victory Lap</div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">2. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-rap-niggas-lyrics">Rap Niggas</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">3. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-last-time-that-i-checcd-lyrics">Last Time That I Checc’d</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">4. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-young-nigga-lyrics">Young Nigga</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">5. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-dedication-lyrics">Dedication</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">6. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-blue-laces-2-lyrics">Blue Laces 2</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">7. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-hussle-and-motivate-lyrics">Hussle & Motivate</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">8. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-status-symbol-3-lyrics">Status Symbol 3</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">9. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-succa-proof-lyrics">Succa Proof</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">10. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-keyz-2-the-city-2-lyrics">Keyz 2 the City 2</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">11. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-grinding-all-my-life-lyrics">Grinding All My Life</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">12. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-million-while-you-young-lyrics">Million While You Young</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">13. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-loaded-bases-lyrics">Loaded Bases</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">14. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-real-big-lyrics">Real Big</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">15. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-double-up-lyrics">Double Up</a></div></li><li class="AlbumTracklist__Track-sc-123giuo-1 iLxPGk"><div class="AlbumTracklist__TrackName-sc-123giuo-2 bPLsDz"><div class="AlbumTracklist__TrackNumber-sc-123giuo-3 epTVob">16. </div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Nipsey-hussle-right-hand-2-god-lyrics">Right Hand 2 God</a></div></li></ol></div><div class="InnerSectionDivider-sc-1x4onqw-0 iyrTpw"></div><div class="ExpandableContent__Container-sc-1165iv-0 ikywhQ"><div class="ExpandableContent__Content-sc-1165iv-4 huhsMa"><div class="SongInfo__Container-nekw6x-0 kJtCmu"><div class="SongInfo__SectionAnchor-nekw6x-5 lopKUj" id="song-info"></div><div class="SongInfo__Title-nekw6x-1 iRKrFW">Credits</div><div class="SongInfo__Columns-nekw6x-2 dWcYSx"><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Featuring</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Stacy-barthe">Stacy Barthe</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Produced By</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Mike-and-keys">Mike & Keys</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Amaire-johnson">Amaire Johnson</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sap">Sap</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Written By</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Stacy-barthe">Stacy Barthe</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Amaire-johnson">Amaire Johnson</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sap">Sap</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Alex-turner">Alex Turner</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Licensing</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Warner-music-group">Warner Music Group</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Polaris-hub-ab">Polaris Hub AB</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Ascap">ASCAP</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Universal-music-group">Universal Music Group</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Vydia">Vydia</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Latinautorperf">LatinAutorPerf</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Solar-music-rights-management">SOLAR Music Rights Management</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sony-music-entertainment">Sony Music Entertainment</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Bmi">BMI</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Latinautor">LatinAutor</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Ubem">UBEM</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Global-music-rights">Global Music Rights</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Cmrra">CMRRA</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Vocals</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Stacy-barthe">Stacy Barthe</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Lyricist</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Stacy-barthe">Stacy Barthe</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Composer</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Mike-and-keys">Mike & Keys</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Amaire-johnson">Amaire Johnson</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sap">Sap</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Mixed At</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Paramount-recording-studio">Paramount Recording Studio</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Publisher</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Nipsey-hussle">Nipsey Hussle</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sound-of-a-pioneer-music">Sound of a Pioneer Music</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/It-takes-one-publishing">It Takes One Publishing</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Amaire-johnson">Amaire Johnson</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Emi-music-publishing">EMI Music Publishing</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sony-atv-tunes">Sony/ATV Tunes</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Sony-music-entertainment">Sony Music Entertainment</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Universal-music-group">Universal Music Group</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Performance Rights</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Ascap">ASCAP</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Bmi">BMI</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Prs">PRS</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Copyright ©</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/All-money-in-no-money-out">All Money In No Money Out</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Atlantic-records">Atlantic Records</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Phonographic Copyright ℗</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/All-money-in-no-money-out">All Money In No Money Out</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Atlantic-records">Atlantic Records</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Additional Vocals</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Lauren-london">Lauren London</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Cello</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Dad-r-b">Dad (R&B)</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Recording Engineer</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Garnett-flynn">Garnett Flynn</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Mixing Engineer</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Mixed-by-ali">Mixed by Ali</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Assistant Mixing Engineer</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Tyler-page">Tyler Page</a></span></span>, <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Ya-boy-nois">Ya Boy N.O.I.S.</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Matty-j">Matty J</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Mastering Engineer</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Dave-kutch">Dave Kutch</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Label</div><div><span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/Atlantic-records">Atlantic Records</a></span></span> & <span class="PortalTooltip__Container-yc1x8c-0 bOCNdp"><span class="PortalTooltip__Trigger-yc1x8c-1 ekJBqv"><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/artists/All-money-in-no-money-out">All Money In No Money Out</a></span></span></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Recorded At</div><div>Marathon Studios (Burbank, CA)</div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Release Date</div><div>February 16, 2018</div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Songs That Sample Victory Lap</div><div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Ajay-brownskin-and-successgang-a-hunned-remix-lyrics">A HUNNED REMIX by Ajay Brownskin & Successgang (Ft. SUCCESSGANG)</a> & <a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Moxalaqi-rip-nipsey-hussle-lyrics">R.I.P. Nipsey Hussle by MOXALAQI</a></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Victory Lap Interpolations</div><div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Arctic-monkeys-knee-socks-lyrics">Knee Socks by Arctic Monkeys</a></div></div><div class="SongInfo__Credit-nekw6x-3 fognin"><div class="SongInfo__Label-nekw6x-4 kOJa-dB">Victory Lap Translations</div><div><a class="StyledLink-sc-3ea0mt-0 iegxRM" font-weight="light" href="https://genius.com/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics">Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español) by Genius Traducciones al Español</a></div></div></div><a class="StyledLink-sc-3ea0mt-0 iegxRM SongInfo__RelationshipsPageLink-nekw6x-6 tYzLI" font-weight="light" href="https://genius.com/Nipsey-hussle-victory-lap-sample">View Victory Lap samples</a><div class="SongTags__Title-xixwg3-0 ceKRFE">Tags</div><div class="SongTags__Container-xixwg3-1 bZsZHM"><a class="SongTags__Tag-xixwg3-2 evrydK" href="https://genius.com/tags/rap">Rap</a><a class="SongTags__Tag-xixwg3-2 kykqAa" href="https://genius.com/tags/gangsta-rap">Gangsta Rap</a><a class="SongTags__Tag-xixwg3-2 kykqAa" href="https://genius.com/tags/hip-hop">Hip-Hop</a><a class="SongTags__Tag-xixwg3-2 kykqAa" href="https://genius.com/tags/hardcore-rap">Hardcore Rap</a><a class="SongTags__Tag-xixwg3-2 kykqAa" href="https://genius.com/tags/west-coast-rap">West Coast Rap</a></div></div></div><div class="ExpandableContent__ButtonContainer-sc-1165iv-3 jzPNvv"><button class="Button__Container-rtu9rw-0 efSZT ExpandableContent__Button-sc-1165iv-1 gBcitk" type="button">Expand<!-- --> <span class="InlineSvg__Wrapper-sc-1342j7p-0 blSbzj"><svg viewbox="0 0 6.6 16"><path d="M1.6 8.8l.6-.6 1 1 .5.7V6H0v-.8h4.5v4.6l.5-.6 1-1 .6.5L4 11.3 1.6 8.8z"></path></svg></span></button></div></div><div class="InnerSectionDivider-sc-1x4onqw-0 iyrTpw"></div><div class="MusicVideo__Container-sc-1980jex-0 cYtdTH"></div></div><div class="RightSidebar__Container-pajcl2-0 fuSJbt"><div class="SidebarAd__Container-sc-1cw85h6-0 kvuklz"><div class="SidebarAd__StickyContainer-sc-1cw85h6-1 bJESjt"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_about_sidebar-desktop_song_about_sidebar-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 hlDPCd"></div></div></div></div></div></div><div class="SectionLeaderboard__Container-sc-1pjk0bw-0 cSKAwQ"><div class="SectionLeaderboard__Center-sc-1pjk0bw-1 fPpEQG"><div class="DfpAd__Container-sc-1tnbv7f-0 dTXQYT"><div id="div-gpt-ad-desktop_song_comments_leaderboard-desktop_song_comments_leaderboard-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 bIwkeM"></div></div></div></div></div><div class="SectionScrollSentinel__Container-eoe1bv-0 icvVds"><div class="SectionScrollSentinel__Element-eoe1bv-1 gTVDnZ"></div><div class="SectionScrollSentinel__SectionAnchor-eoe1bv-2 difnmr" id="comments"></div><div class="PageGriddesktop-a6v82w-0 SongPageGriddesktop-sc-1px5b71-0 jecoie SongComments__Grid-sc-131p4fy-0 bIlJhm"><div class="SongComments__Container-sc-131p4fy-1 lgbAKX"><div class="SongComments__Title-sc-131p4fy-2 kojbqH" font-size="xxLargeHeadline">Comments</div><button class="CommentForm__FakeTextField-sc-1rfrnj0-5 leoUZe">Add a comment</button><div class="SongComments__SpinnerContainer-sc-131p4fy-9 gRiFtA"><div class="SongComments__InitialLoadSpinner-sc-131p4fy-10 fOsBvT"><div class="PlaceholderSpinner__Container-r4gz6r-0 jDxAhO"><svg viewbox="64 0 20 20"><circle cx="74" cy="10" r="9"></circle></svg></div></div></div><div class="InnerSectionDivider-sc-1x4onqw-0 vrxkS"></div><div class="SongComments__Footer-sc-131p4fy-11 gTBWpu"><div class="SongComments__CTASubHeading-sc-131p4fy-3 jZrfsi">Sign Up And Drop Knowledge 🤓</div><div class="SongComments__CTA-sc-131p4fy-6 euQZer">Genius is the ultimate source of music knowledge, created by scholars like you who share facts and insight about the songs and artists they love.</div><button class="Button__Container-rtu9rw-0 gexBFu SongComments__SignUpButton-sc-131p4fy-12 fHiIPi" type="button">Sign Up</button></div></div><div class="RightSidebar__Container-pajcl2-0 fuSJbt"><div class="SidebarAd__Container-sc-1cw85h6-0 kvuklz"><div class="SidebarAd__StickyContainer-sc-1cw85h6-1 bJESjt"><div class="DfpAd__Container-sc-1tnbv7f-0 kiNXoS"><div id="div-gpt-ad-desktop_song_comments_sidebar-desktop_song_comments_sidebar-1"></div><div class="DfpAd__Placeholder-sc-1tnbv7f-1 ilfajN"></div></div></div></div></div></div></div><div class="MediaPlayersContainer__Container-sc-1tibexe-0 bZruNU"></div></main><div class="PageFooterdesktop__Container-hz1fx1-0 boDKcJ SongPage__PageFooter-sc-19xhmoi-3 llTPXF"><div class="PageFootershared__FooterGridDesktop-bwy1q9-1 PageFooterdesktop__Section-hz1fx1-2 cjEbTp"><div class="PageFooterdesktop__Half-hz1fx1-3 mJdfj"><h1 class="PageFooterSocial__Slogan-sc-14u22mq-0 uGviF">Genius is the world’s biggest collection of song lyrics and musical knowledge</h1><div class="SocialLinks__Container-jwyj6b-2 iuNSEV"><a class="SocialLinks__Link-jwyj6b-1 cziiuX" height="22" href="https://www.facebook.com/Genius/" rel="noopener" target="_blank"><svg viewbox="0 0 9.95 20"><path d="M8.09 3.81c-1.4 0-1.58.84-1.58 1.67v1.3h3.35L9.49 11h-3v9H2.33v-9H0V6.88h2.42V3.81C2.42 1.3 3.81 0 6.6 0H10v3.81z"></path></svg></a><a class="SocialLinks__Link-jwyj6b-1 cziiuX" height="22" href="https://twitter.com/Genius" rel="noopener" target="_blank"><svg viewbox="0 0 20 16.43"><path d="M20 1.89l-2.3 2.16v.68a12.28 12.28 0 0 1-3.65 8.92c-5 5.13-13.1 1.76-14.05.81 0 0 3.78.14 5.81-1.76A4.15 4.15 0 0 1 2.3 9.86h2S.81 9.05.81 5.81A11 11 0 0 0 3 6.35S-.14 4.05 1.49.95a11.73 11.73 0 0 0 8.37 4.19A3.69 3.69 0 0 1 13.51 0a3.19 3.19 0 0 1 2.57 1.08 12.53 12.53 0 0 0 3.24-.81l-1.75 1.89A10.46 10.46 0 0 0 20 1.89z"></path></svg></a><a class="SocialLinks__Link-jwyj6b-1 cziiuX" height="22" href="https://www.instagram.com/genius/" rel="noopener" target="_blank"><svg viewbox="0 0 20 20"><path d="M10 0c2.724 0 3.062 0 4.125.06.83.017 1.65.175 2.426.467.668.254 1.272.65 1.77 1.162.508.498.902 1.1 1.153 1.768.292.775.45 1.595.467 2.424.06 1.063.06 1.41.06 4.123 0 2.712-.06 3.06-.06 4.123-.017.83-.175 1.648-.467 2.424-.52 1.34-1.58 2.402-2.922 2.92-.776.293-1.596.45-2.425.468-1.063.06-1.41.06-4.125.06-2.714 0-3.062-.06-4.125-.06-.83-.017-1.65-.175-2.426-.467-.668-.254-1.272-.65-1.77-1.162-.508-.498-.902-1.1-1.153-1.768-.292-.775-.45-1.595-.467-2.424C0 13.055 0 12.708 0 9.995c0-2.712 0-3.04.06-4.123.017-.83.175-1.648.467-2.424.25-.667.645-1.27 1.153-1.77.5-.507 1.103-.9 1.77-1.15C4.225.234 5.045.077 5.874.06 6.958 0 7.285 0 10 0zm0 1.798h.01c-2.674 0-2.992.06-4.046.06-.626.02-1.245.15-1.83.377-.434.16-.828.414-1.152.746-.337.31-.602.69-.775 1.113-.222.595-.34 1.224-.348 1.858-.06 1.064-.06 1.372-.06 4.045s.06 2.99.06 4.044c.007.633.125 1.262.347 1.857.17.434.434.824.775 1.142.31.33.692.587 1.113.754.596.222 1.224.34 1.86.348 1.063.06 1.37.06 4.045.06 2.674 0 2.992-.06 4.046-.06.635-.008 1.263-.126 1.86-.348.87-.336 1.56-1.025 1.897-1.897.217-.593.332-1.218.338-1.848.06-1.064.06-1.372.06-4.045s-.06-2.99-.06-4.044c-.01-.623-.128-1.24-.347-1.827-.16-.435-.414-.83-.745-1.152-.318-.34-.71-.605-1.143-.774-.596-.222-1.224-.34-1.86-.348-1.063-.06-1.37-.06-4.045-.06zm0 3.1c1.355 0 2.655.538 3.613 1.496.958.958 1.496 2.257 1.496 3.61 0 2.82-2.288 5.108-5.11 5.108-2.822 0-5.11-2.287-5.11-5.107 0-2.82 2.288-5.107 5.11-5.107zm0 8.415c.878 0 1.72-.348 2.34-.97.62-.62.97-1.46.97-2.338 0-1.827-1.482-3.31-3.31-3.31s-3.31 1.483-3.31 3.31 1.482 3.308 3.31 3.308zm6.51-8.633c0 .658-.533 1.192-1.192 1.192-.66 0-1.193-.534-1.193-1.192 0-.66.534-1.193 1.193-1.193.316 0 .62.126.844.35.223.223.35.526.35.843z"></path></svg></a><a class="SocialLinks__Link-jwyj6b-1 fRTMWj" height="19" href="https://www.youtube.com/genius" rel="noopener" target="_blank"><svg viewbox="0 0 20.01 14.07"><path d="M19.81 3A4.32 4.32 0 0 0 19 1a2.86 2.86 0 0 0-2-.8C14.21 0 10 0 10 0S5.8 0 3 .2A2.87 2.87 0 0 0 1 1a4.32 4.32 0 0 0-.8 2S0 4.51 0 6.06V8a30 30 0 0 0 .2 3 4.33 4.33 0 0 0 .8 2 3.39 3.39 0 0 0 2.2.85c1.46.14 5.9.19 6.68.2h.4c1 0 4.35 0 6.72-.21a2.87 2.87 0 0 0 2-.84 4.32 4.32 0 0 0 .8-2 30.31 30.31 0 0 0 .2-3.21V6.28A30.31 30.31 0 0 0 19.81 3zM7.94 9.63V4l5.41 2.82z"></path></svg></a></div></div><div class="PageFooterdesktop__Quarter-hz1fx1-4 hMUvCn"><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/about" rel="noopener">About Genius</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/contributor_guidelines" rel="noopener">Contributor Guidelines</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/press" rel="noopener">Press</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="https://shop.genius.com" rel="noopener">Shop</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="mailto:[email protected]" rel="noopener">Advertise</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/static/privacy_policy" rel="noopener">Privacy Policy</a></div><div class="PageFooterdesktop__Quarter-hz1fx1-4 hMUvCn"><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/static/licensing" rel="noopener">Licensing</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/jobs" rel="noopener">Jobs</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/developers" rel="noopener">Developers</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/static/copyright" rel="noopener">Copyright Policy</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/feedback/new" rel="noopener">Contact Us</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/login" rel="noopener">Sign In</a><a class="PageFooterdesktop__Link-hz1fx1-1 gwrcCS" href="/static/ccpa" rel="noopener">Do Not Sell My Personal Information</a></div><div class="PageFooterdesktop__Quarter-hz1fx1-4 PageFooterdesktop__OffsetQuarter-hz1fx1-5 diwZPD"><div class="PageFooterdesktop__FinePrint-hz1fx1-6 iDkyVM">© 2024 ML Genius Holdings, LLC</div></div><div class="PageFooterdesktop__Quarter-hz1fx1-4 hMUvCn"><a class="PageFooterdesktop__FinePrint-hz1fx1-6 iDkyVM" href="/static/terms">Terms of Use</a></div></div><div class="PageFootershared__FooterGridDesktop-bwy1q9-1 PageFooterdesktop__Section-hz1fx1-2 PageFooterdesktop__Bottom-hz1fx1-7 yRyiP"><div class="PageFooterdesktop__Row-hz1fx1-8 eIiYRJ"><a class="PageFooterdesktop__VerifiedArtists-hz1fx1-10 bMBKQI" href="/verified-artists"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Verified Artists</span></a><div class="PageFooterdesktop__FlexWrap-hz1fx1-9 hNrwqx"><div class="PageFooterdesktop__Label-hz1fx1-11 dcpJwP"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">All Artists:</span></div><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/a"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">a</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/b"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">b</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/c"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">c</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/d"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">d</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/e"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">e</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/f"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">f</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/g"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">g</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/h"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">h</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/i"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">i</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/j"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">j</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/k"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">k</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/l"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">l</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/m"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">m</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/n"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">n</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/o"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">o</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/p"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">p</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/q"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">q</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/r"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">r</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/s"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">s</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/t"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">t</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/u"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">u</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/v"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">v</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/w"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">w</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/x"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">x</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/y"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">y</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/z"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">z</span></a><a class="PageFooterArtistLinks__Link-sc-1ng9ih0-0 kTXFZQ" href="/artists-index/0"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">#</span></a></div></div><div class="PageFooterdesktop__Row-hz1fx1-8 eIiYRJ"><div class="PageFooterdesktop__Label-hz1fx1-11 dcpJwP"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Hot Songs:</span></div><div class="PageFooterdesktop__FlexWrap-hz1fx1-9 hNrwqx"><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="https://genius.com/Drake-push-ups-drop-and-give-me-fifty-lyrics"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Push Ups (Drop & Give Me Fifty)*</span></a><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="https://genius.com/Sabrina-carpenter-espresso-lyrics"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Espresso</span></a><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="https://genius.com/Jojo-siwa-karma-lyrics"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Karma</span></a><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="https://genius.com/Future-metro-boomin-and-kendrick-lamar-like-that-lyrics"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Like That</span></a><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="https://genius.com/Rick-ross-champagne-moments-lyrics"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">Champagne Moments</span></a><a class="PageFooterHotSongLinks__Link-sc-1adazwo-0 hAxKUd" href="/hot-songs"><span class="TextLabel-sc-8kw9oj-0 kokouQ" font-weight="normal">View All</span></a></div></div></div></div></div>
<script>
window.__PRELOADED_STATE__ = JSON.parse('{\"deviceType\":\"desktop\",\"session\":{\"cmpEnabled\":false,\"showAds\":true,\"logClientMetrics\":false,\"fringeEnabled\":true,\"features\":[\"song_stories_public_launch\"]},\"currentPage\":\"songPage\",\"songPage\":{\"longTailCacheExperiment\":null,\"song\":3510797,\"pinnedQuestions\":[230221,1069228],\"metadataQuestions\":[\"producer:song:3510797\",\"release-date:song:3510797\",\"writer:song:3510797\"],\"lyricsData\":{\"referents\":[14014002,16848700,21793318,17822769,14368766,16975760,16975867,14014550,16919385,14558900,14014002,16845567,18387974,16043169,17168943,16852982,16856233,29497188,14014002,20984448,17195991,16336404,20645366,28499064,30319432,14023195],\"body\":{\"html\":\"<p>[Intro: Stacy Barthe & <i>Arctic Monkeys<\/i>]<br>\\n<a href=\\\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\\\" data-id=\\\"14014002\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Woah-oh<br>\\nWoah-oh<br>\\nWoah-oh<br>\\n<i>Like the beginning of Mean Streets, you could<\/i> (Oh)<br>\\n<i>Like the beginning of Mean Streets, you could<br>\\nLike the beginning of Mean Streets, you could<\/i><\/a><br>\\n<br>\\n[Verse 1: Nipsey Hussle & <i>Arctic Monkeys<\/i>]<br>\\n<a href=\\\"/16848700/Nipsey-hussle-victory-lap/Im-prolific-so-gifted-im-the-type-thats-gon-go-get-it-no-kiddin\\\" data-id=\\\"16848700\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">I\'m prolific, so gifted<br>\\nI\'m the type that\'s gon\' go get it, no kiddin\'<\/a><br>\\nBreaking down a Swisher front of your buildin\'<br>\\n<a href=\\\"/21793318/Nipsey-hussle-victory-lap/Sitting-on-the-steps-feeling-no-feelings\\\" data-id=\\\"21793318\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Sitting on the steps, feeling no feelings<\/a><br>\\nLast night, it was a cold killin\'<br>\\n<a href=\\\"/17822769/Nipsey-hussle-victory-lap/You-gotta-keep-the-devil-in-his-hole-nigga\\\" data-id=\\\"17822769\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">You gotta keep the devil in his hole, nigga<\/a><br>\\nBut you know how it go, nigga<br>\\nI\'m front line every time it\'s on, nigga<br>\\nHunnid proof flow, run and shoot pro<br>\\n<a href=\\\"/14368766/Nipsey-hussle-victory-lap/458-drop-playin-bullet-proof-soul\\\" data-id=\\\"14368766\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">458 drop, playin\' \\\"Bullet Proof Soul\\\"<\/a><br>\\nEvery few shows, I just buy some new gold<br>\\nCircle got smaller, everybody can\'t go<br>\\n<a href=\\\"/16975760/Nipsey-hussle-victory-lap/Downtown-diamond-district-jewelers-like-yo-hussle-holla-at-me-i-got-cubans-on-the-low-flew-to-cancun-smokin-cubans-on-the-boat-then-docked-at-tulum-just-to-smoke-look\\\" data-id=\\\"16975760\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Downtown, Diamond District, jewelers like, \\\"Yo<br>\\nHussle, holla at me, I got Cubans on the low\\\"<br>\\nFlew to Cancun, smokin\' Cubans on the boat<br>\\nThen docked at Tulum just to smoke, look<\/a><br>\\n<a href=\\\"/16975867/Nipsey-hussle-victory-lap/Listening-to-music-at-the-mayan-ruins-true-devotion-on-the-bluest-ocean-cruisin\\\" data-id=\\\"16975867\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Listening to music at the Mayan Ruins<br>\\nTrue devotion on the bluest ocean, cruisin\'<\/a><br>\\n<a href=\\\"/14014550/Nipsey-hussle-victory-lap/My-cultural-influence-even-rival-lucien\\\" data-id=\\\"14014550\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">My cultural influence even rival Lucien<\/a><br>\\n<a href=\\\"/16919385/Nipsey-hussle-victory-lap/Im-integrated-vertically-yall-niggas-blew-it\\\" data-id=\\\"16919385\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">I\'m integrated vertically, y\'all niggas blew it<\/a><br>\\n<a href=\\\"/14558900/Nipsey-hussle-victory-lap/They-tell-me-hussle-dumb-it-down-you-might-confuse-em-this-aint-that-weirdo-rap-you-motherfuckers-used-to\\\" data-id=\\\"14558900\\\" class=\\\"has_pending_edits\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">They tell me, \\\"Hussle, dumb it down, you might confuse \'em\\\"<br>\\nThis ain\'t that weirdo rap you motherfuckers used to<\/a><br>\\n<a href=\\\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\\\" data-id=\\\"14014002\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\"><i>Like the beginning of Mean Streets<\/i><\/a><br>\\n<a href=\\\"/16845567/Nipsey-hussle-victory-lap/Im-an-urban-legend-south-central-in-a-certain-section-cant-express-how-i-curved-detectives-guess-its-evidence-of-a-divine-presence-blessings\\\" data-id=\\\"16845567\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">I\'m an urban legend, South Central in a certain section<br>\\nCan\'t express how I curved detectives<br>\\nGuess it\'s evidence of a divine presence, blessings<\/a><br>\\nHeld me down, at times, I seem reckless, F it<br>\\nYou got an L, but got an E for effort, stretched him<br>\\n<a href=\\\"/18387974/Nipsey-hussle-victory-lap/Dropped-him-off-in-the-mojave-desert-then-left-him\\\" data-id=\\\"18387974\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Dropped him off in the Mojave desert, then left him<\/a><br>\\n<a href=\\\"/16043169/Nipsey-hussle-victory-lap/Aint-no-answer-to-these-trick-questions\\\" data-id=\\\"16043169\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Ain\'t no answer to these trick questions<\/a><br>\\n<a href=\\\"/17168943/Nipsey-hussle-victory-lap/Money-makin-nip-straighten-out-my-jewelry-on-my-bitch-dresser\\\" data-id=\\\"17168943\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Money Makin\' Nip, straighten out my jewelry on my bitch dresser<\/a><br>\\nWell known, flick up and jail pose<br>\\nSnatch a champagne bottle from Rico\'s \'til T show<br>\\n<a href=\\\"/16852982/Nipsey-hussle-victory-lap/Whatever-nigga-playin-chess-not-checkers-nigga\\\" data-id=\\\"16852982\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Whatever, nigga, playin\' chess, not checkers, nigga<\/a><br>\\n<a href=\\\"/16856233/Nipsey-hussle-victory-lap/Thirty-eight-special-for-you-clever-niggas\\\" data-id=\\\"16856233\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">Thirty-eight special for you clever niggas<\/a><br>\\nSee, bro, if you ain\'t live and die by the street code<br>\\nBeen through all these motions, up and down like a see-saw<br>\\nI can never view you as my equal<br>\\n<a href=\\\"/29497188/Nipsey-hussle-victory-lap/Fuck-i-wanna-hear-your-cd-for\\\" data-id=\\\"29497188\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Fuck I wanna hear your CD for?<\/a><br>\\n<br>\\n[Chorus: Stacy Barthe & <i>Arctic Monkeys<\/i>]<br>\\n<a href=\\\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\\\" data-id=\\\"14014002\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\"><i>Like the beginning of Mean Streets<br>\\nLike the beginning of Mean Streets<br>\\nLike the beginning of Mean Streets<br>\\nLike the beginning of Mean Streets<br>\\nLike the beginning of Mean Streets<br>\\nLike the beginning of Mean Streets<\/i><br>\\n(We gotta make it)<br>\\n<i>Like the beginning of Mean Streets<\/i><\/a><br>\\n<br>\\n[Verse 2: Nipsey Hussle]<br>\\nYeah, look<br>\\nI\'m finna take it there<br>\\nThis time around, I\'ma make it clear<br>\\n<a href=\\\"/20984448/Nipsey-hussle-victory-lap/Spoke-some-things-into-the-universe-and-they-appeared\\\" data-id=\\\"20984448\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Spoke some things into the universe and they appeared<\/a><br>\\n<a href=\\\"/17195991/Nipsey-hussle-victory-lap/I-say-its-worth-it-i-wont-say-its-fair-find-your-purpose-or-you-wastin-air-fuck-it-though-yall-niggas-scared\\\" data-id=\\\"17195991\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">I say it\'s worth it, I won\'t say it\'s fair<br>\\nFind your purpose or you wastin\' air<br>\\nFuck it, though, y\'all niggas scared<\/a><br>\\nEyes opened, I can see it clear<br>\\nThey don\'t make \'em bar none, they don\'t make \'em real<br>\\nThey don\'t make it where I\'m from, they don\'t take it here<br>\\nThey ain\'t see in due time, I be makin\' mils<br>\\nBossed up in this game, I been makin\' deals<br>\\nGet your lawyer on the phone, we can make it real<br>\\n<a href=\\\"/16336404/Nipsey-hussle-victory-lap/I-got-checks-and-balance-i-flex-dramatic\\\" data-id=\\\"16336404\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\">I got checks and balance, I flex dramatic<\/a><br>\\n<a href=\\\"/20645366/Nipsey-hussle-victory-lap/Other-fifty-on-my-neck-just-my-reckless-habit\\\" data-id=\\\"20645366\\\" class=\\\"has_comments\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Other fifty on my neck, just my reckless habit<\/a><br>\\n<a href=\\\"/28499064/Nipsey-hussle-victory-lap/Aint-no-pussy-on-my-rep-disrespect-the-savage\\\" data-id=\\\"28499064\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">Ain\'t no pussy on my rep, disrespect the savage<\/a><br>\\n<a href=\\\"/30319432/Nipsey-hussle-victory-lap/I-make-one-phone-call-and-the-rest-get-handled\\\" data-id=\\\"30319432\\\" data-editorial-state=\\\"pending\\\" data-classification=\\\"unreviewed\\\">I make one phone call and the rest get handled<\/a><br>\\nIt\'s just another front step with candles<br>\\nLil\' message from the set, \\\"We accept your challenge\\\"<br>\\n<br>\\n[Outro: Stacy Barthe]<br>\\nWoah-oh<br>\\nWoah-oh<br>\\nWoah-oh<br>\\nWoah, woah<br>\\nWe gotta make it, yeah, we gotta<br>\\nWe gotta make it, oh, we gotta make it<br>\\nOh, ah, ooh<br>\\nWe gotta make it, oh<br>\\n<a href=\\\"/14023195/Nipsey-hussle-victory-lap/Victory-lap\\\" data-id=\\\"14023195\\\" data-editorial-state=\\\"accepted\\\" data-classification=\\\"accepted\\\"><i>Victory Lap<\/i><\/a><\/p>\\n\\n\",\"children\":[{\"children\":[\"[Intro: Stacy Barthe & \",{\"children\":[\"Arctic Monkeys\"],\"tag\":\"i\"},\"]\",{\"tag\":\"br\"},\"\",{\"children\":[\"Woah-oh\",{\"tag\":\"br\"},\"Woah-oh\",{\"tag\":\"br\"},\"Woah-oh\",{\"tag\":\"br\"},\"\",{\"children\":[\"Like the beginning of Mean Streets, you could\"],\"tag\":\"i\"},\" (Oh)\",{\"tag\":\"br\"},\"\",{\"children\":[\"Like the beginning of Mean Streets, you could\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets, you could\"],\"tag\":\"i\"}],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14014002\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"tag\":\"br\"},\"[Verse 1: Nipsey Hussle & \",{\"children\":[\"Arctic Monkeys\"],\"tag\":\"i\"},\"]\",{\"tag\":\"br\"},\"\",{\"children\":[\"I\'m prolific, so gifted\",{\"tag\":\"br\"},\"I\'m the type that\'s gon\' go get it, no kiddin\'\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16848700\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/16848700/Nipsey-hussle-victory-lap/Im-prolific-so-gifted-im-the-type-thats-gon-go-get-it-no-kiddin\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Breaking down a Swisher front of your buildin\'\",{\"tag\":\"br\"},\"\",{\"children\":[\"Sitting on the steps, feeling no feelings\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"21793318\"},\"attributes\":{\"href\":\"/21793318/Nipsey-hussle-victory-lap/Sitting-on-the-steps-feeling-no-feelings\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Last night, it was a cold killin\'\",{\"tag\":\"br\"},\"\",{\"children\":[\"You gotta keep the devil in his hole, nigga\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"17822769\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/17822769/Nipsey-hussle-victory-lap/You-gotta-keep-the-devil-in-his-hole-nigga\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"But you know how it go, nigga\",{\"tag\":\"br\"},\"I\'m front line every time it\'s on, nigga\",{\"tag\":\"br\"},\"Hunnid proof flow, run and shoot pro\",{\"tag\":\"br\"},\"\",{\"children\":[\"458 drop, playin\' \\\"Bullet Proof Soul\\\"\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14368766\"},\"attributes\":{\"href\":\"/14368766/Nipsey-hussle-victory-lap/458-drop-playin-bullet-proof-soul\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Every few shows, I just buy some new gold\",{\"tag\":\"br\"},\"Circle got smaller, everybody can\'t go\",{\"tag\":\"br\"},\"\",{\"children\":[\"Downtown, Diamond District, jewelers like, \\\"Yo\",{\"tag\":\"br\"},\"Hussle, holla at me, I got Cubans on the low\\\"\",{\"tag\":\"br\"},\"Flew to Cancun, smokin\' Cubans on the boat\",{\"tag\":\"br\"},\"Then docked at Tulum just to smoke, look\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16975760\"},\"attributes\":{\"href\":\"/16975760/Nipsey-hussle-victory-lap/Downtown-diamond-district-jewelers-like-yo-hussle-holla-at-me-i-got-cubans-on-the-low-flew-to-cancun-smokin-cubans-on-the-boat-then-docked-at-tulum-just-to-smoke-look\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Listening to music at the Mayan Ruins\",{\"tag\":\"br\"},\"True devotion on the bluest ocean, cruisin\'\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16975867\"},\"attributes\":{\"href\":\"/16975867/Nipsey-hussle-victory-lap/Listening-to-music-at-the-mayan-ruins-true-devotion-on-the-bluest-ocean-cruisin\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"My cultural influence even rival Lucien\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14014550\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/14014550/Nipsey-hussle-victory-lap/My-cultural-influence-even-rival-lucien\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"I\'m integrated vertically, y\'all niggas blew it\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16919385\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/16919385/Nipsey-hussle-victory-lap/Im-integrated-vertically-yall-niggas-blew-it\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"They tell me, \\\"Hussle, dumb it down, you might confuse \'em\\\"\",{\"tag\":\"br\"},\"This ain\'t that weirdo rap you motherfuckers used to\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14558900\"},\"attributes\":{\"class\":\"has_pending_edits\",\"href\":\"/14558900/Nipsey-hussle-victory-lap/They-tell-me-hussle-dumb-it-down-you-might-confuse-em-this-aint-that-weirdo-rap-you-motherfuckers-used-to\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[{\"children\":[\"Like the beginning of Mean Streets\"],\"tag\":\"i\"}],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14014002\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"I\'m an urban legend, South Central in a certain section\",{\"tag\":\"br\"},\"Can\'t express how I curved detectives\",{\"tag\":\"br\"},\"Guess it\'s evidence of a divine presence, blessings\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16845567\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/16845567/Nipsey-hussle-victory-lap/Im-an-urban-legend-south-central-in-a-certain-section-cant-express-how-i-curved-detectives-guess-its-evidence-of-a-divine-presence-blessings\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Held me down, at times, I seem reckless, F it\",{\"tag\":\"br\"},\"You got an L, but got an E for effort, stretched him\",{\"tag\":\"br\"},\"\",{\"children\":[\"Dropped him off in the Mojave desert, then left him\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"18387974\"},\"attributes\":{\"href\":\"/18387974/Nipsey-hussle-victory-lap/Dropped-him-off-in-the-mojave-desert-then-left-him\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Ain\'t no answer to these trick questions\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16043169\"},\"attributes\":{\"href\":\"/16043169/Nipsey-hussle-victory-lap/Aint-no-answer-to-these-trick-questions\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Money Makin\' Nip, straighten out my jewelry on my bitch dresser\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"17168943\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/17168943/Nipsey-hussle-victory-lap/Money-makin-nip-straighten-out-my-jewelry-on-my-bitch-dresser\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Well known, flick up and jail pose\",{\"tag\":\"br\"},\"Snatch a champagne bottle from Rico\'s \'til T show\",{\"tag\":\"br\"},\"\",{\"children\":[\"Whatever, nigga, playin\' chess, not checkers, nigga\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16852982\"},\"attributes\":{\"href\":\"/16852982/Nipsey-hussle-victory-lap/Whatever-nigga-playin-chess-not-checkers-nigga\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Thirty-eight special for you clever niggas\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16856233\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/16856233/Nipsey-hussle-victory-lap/Thirty-eight-special-for-you-clever-niggas\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"See, bro, if you ain\'t live and die by the street code\",{\"tag\":\"br\"},\"Been through all these motions, up and down like a see-saw\",{\"tag\":\"br\"},\"I can never view you as my equal\",{\"tag\":\"br\"},\"\",{\"children\":[\"Fuck I wanna hear your CD for?\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"29497188\"},\"attributes\":{\"href\":\"/29497188/Nipsey-hussle-victory-lap/Fuck-i-wanna-hear-your-cd-for\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"data\":{\"name\":\"desktop_song_lyrics_inread\"},\"tag\":\"inread-ad\"},\"[Chorus: Stacy Barthe & \",{\"children\":[\"Arctic Monkeys\"],\"tag\":\"i\"},\"]\",{\"tag\":\"br\"},\"\",{\"children\":[{\"children\":[\"Like the beginning of Mean Streets\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets\",{\"tag\":\"br\"},\"Like the beginning of Mean Streets\"],\"tag\":\"i\"},{\"tag\":\"br\"},\"(We gotta make it)\",{\"tag\":\"br\"},\"\",{\"children\":[\"Like the beginning of Mean Streets\"],\"tag\":\"i\"}],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14014002\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/14014002/Nipsey-hussle-victory-lap/Woah-oh-woah-oh-woah-oh-like-the-beginning-of-mean-streets-you-could-oh-like-the-beginning-of-mean-streets-you-could-like-the-beginning-of-mean-streets-you-could\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"tag\":\"br\"},\"[Verse 2: Nipsey Hussle]\",{\"tag\":\"br\"},\"Yeah, look\",{\"tag\":\"br\"},\"I\'m finna take it there\",{\"tag\":\"br\"},\"This time around, I\'ma make it clear\",{\"tag\":\"br\"},\"\",{\"children\":[\"Spoke some things into the universe and they appeared\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"20984448\"},\"attributes\":{\"href\":\"/20984448/Nipsey-hussle-victory-lap/Spoke-some-things-into-the-universe-and-they-appeared\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"I say it\'s worth it, I won\'t say it\'s fair\",{\"tag\":\"br\"},\"Find your purpose or you wastin\' air\",{\"tag\":\"br\"},\"Fuck it, though, y\'all niggas scared\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"17195991\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/17195991/Nipsey-hussle-victory-lap/I-say-its-worth-it-i-wont-say-its-fair-find-your-purpose-or-you-wastin-air-fuck-it-though-yall-niggas-scared\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"Eyes opened, I can see it clear\",{\"tag\":\"br\"},\"They don\'t make \'em bar none, they don\'t make \'em real\",{\"tag\":\"br\"},\"They don\'t make it where I\'m from, they don\'t take it here\",{\"tag\":\"br\"},\"They ain\'t see in due time, I be makin\' mils\",{\"tag\":\"br\"},\"Bossed up in this game, I been makin\' deals\",{\"tag\":\"br\"},\"Get your lawyer on the phone, we can make it real\",{\"tag\":\"br\"},\"\",{\"children\":[\"I got checks and balance, I flex dramatic\"],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"16336404\"},\"attributes\":{\"href\":\"/16336404/Nipsey-hussle-victory-lap/I-got-checks-and-balance-i-flex-dramatic\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Other fifty on my neck, just my reckless habit\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"20645366\"},\"attributes\":{\"class\":\"has_comments\",\"href\":\"/20645366/Nipsey-hussle-victory-lap/Other-fifty-on-my-neck-just-my-reckless-habit\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"Ain\'t no pussy on my rep, disrespect the savage\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"28499064\"},\"attributes\":{\"href\":\"/28499064/Nipsey-hussle-victory-lap/Aint-no-pussy-on-my-rep-disrespect-the-savage\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"\",{\"children\":[\"I make one phone call and the rest get handled\"],\"data\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":\"30319432\"},\"attributes\":{\"href\":\"/30319432/Nipsey-hussle-victory-lap/I-make-one-phone-call-and-the-rest-get-handled\"},\"tag\":\"a\"},{\"tag\":\"br\"},\"It\'s just another front step with candles\",{\"tag\":\"br\"},\"Lil\' message from the set, \\\"We accept your challenge\\\"\",{\"tag\":\"br\"},\"\",{\"data\":{\"name\":\"desktop_song_lyrics_inread2\"},\"tag\":\"inread-ad\"},\"[Outro: Stacy Barthe]\",{\"tag\":\"br\"},\"Woah-oh\",{\"tag\":\"br\"},\"Woah-oh\",{\"tag\":\"br\"},\"Woah-oh\",{\"tag\":\"br\"},\"Woah, woah\",{\"tag\":\"br\"},\"We gotta make it, yeah, we gotta\",{\"tag\":\"br\"},\"We gotta make it, oh, we gotta make it\",{\"tag\":\"br\"},\"Oh, ah, ooh\",{\"tag\":\"br\"},\"We gotta make it, oh\",{\"tag\":\"br\"},\"\",{\"children\":[{\"children\":[\"Victory Lap\"],\"tag\":\"i\"}],\"data\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":\"14023195\"},\"attributes\":{\"href\":\"/14023195/Nipsey-hussle-victory-lap/Victory-lap\"},\"tag\":\"a\"}],\"tag\":\"p\"},\"\"],\"tag\":\"root\"},\"lyricsPlaceholderReason\":null,\"clientTimestamps\":{\"updatedByHumanAt\":1707481592,\"lyricsUpdatedAt\":1702342274}},\"hotSongsPreview\":[{\"url\":\"https://genius.com/Drake-push-ups-drop-and-give-me-fifty-lyrics\",\"title\":\"Push Ups (Drop & Give Me Fifty)*\",\"id\":10277795},{\"url\":\"https://genius.com/Sabrina-carpenter-espresso-lyrics\",\"title\":\"Espresso\",\"id\":10257779},{\"url\":\"https://genius.com/Jojo-siwa-karma-lyrics\",\"title\":\"Karma\",\"id\":10178839},{\"url\":\"https://genius.com/Future-metro-boomin-and-kendrick-lamar-like-that-lyrics\",\"title\":\"Like That\",\"id\":10125497},{\"url\":\"https://genius.com/Rick-ross-champagne-moments-lyrics\",\"title\":\"Champagne Moments\",\"id\":10278955}],\"featuredQuestion\":null,\"defaultQuestions\":[],\"unansweredDefaultQuestions\":[\"live_performance:song:3510797\",\"song_meaning:song:3510797\"],\"showFeaturedQuestion\":false,\"pendingQuestionCount\":0,\"dfpKv\":[{\"values\":[\"3510797\"],\"name\":\"song_id\"},{\"values\":[\"Victory Lap\"],\"name\":\"song_title\"},{\"values\":[\"1263\"],\"name\":\"artist_id\"},{\"values\":[\"Nipsey Hussle\"],\"name\":\"artist_name\"},{\"values\":[\"true\"],\"name\":\"is_explicit\"},{\"values\":[\"441168\"],\"name\":\"pageviews\"},{\"values\":[\"1434\"],\"name\":\"primary_tag_id\"},{\"values\":[\"rap\"],\"name\":\"primary_tag\"},{\"values\":[\"2741\",\"3783\",\"3171\",\"798\",\"1434\"],\"name\":\"tag_id\"},{\"values\":[\"D\"],\"name\":\"song_tier\"},{\"values\":[],\"name\":\"topic\"},{\"values\":[\"false\"],\"name\":\"in_top_10\"},{\"values\":[\"false\"],\"name\":\"artist_in_top_10\"},{\"values\":[\"false\"],\"name\":\"album_in_top_10\"},{\"values\":[\"false\"],\"name\":\"new_release\"},{\"values\":[\"201802\"],\"name\":\"release_month\"},{\"values\":[\"2018\"],\"name\":\"release_year\"},{\"values\":[\"2010\"],\"name\":\"release_decade\"},{\"values\":[\"false\"],\"name\":\"stubhub_is_active\"},{\"values\":[\"false\"],\"name\":\"in_top_10_rap\"},{\"values\":[\"false\"],\"name\":\"in_top_10_rock\"},{\"values\":[\"false\"],\"name\":\"in_top_10_country\"},{\"values\":[\"false\"],\"name\":\"in_top_10_r_and_b\"},{\"values\":[\"false\"],\"name\":\"in_top_10_pop\"},{\"values\":[\"production\"],\"name\":\"environment\"},{\"values\":[\"web\"],\"name\":\"platform\"},{\"values\":[\"desktop_react\"],\"name\":\"platform_variant\"},{\"values\":[\"control\"],\"name\":\"interstitial_variant\"},{\"values\":[\"song\"],\"name\":\"ad_page_type\"}],\"trackingData\":[{\"value\":3510797,\"key\":\"Song ID\"},{\"value\":\"Victory Lap\",\"key\":\"Title\"},{\"value\":\"Nipsey Hussle\",\"key\":\"Primary Artist\"},{\"value\":1263,\"key\":\"Primary Artist ID\"},{\"value\":\"Victory Lap\",\"key\":\"Primary Album\"},{\"value\":78280,\"key\":\"Primary Album ID\"},{\"value\":\"rap\",\"key\":\"Tag\"},{\"value\":\"rap\",\"key\":\"Primary Tag\"},{\"value\":1434,\"key\":\"Primary Tag ID\"},{\"value\":true,\"key\":\"Music?\"},{\"value\":\"Song\",\"key\":\"Annotatable Type\"},{\"value\":3510797,\"key\":\"Annotatable ID\"},{\"value\":false,\"key\":\"featured_video\"},{\"value\":[],\"key\":\"cohort_ids\"},{\"value\":false,\"key\":\"has_verified_callout\"},{\"value\":true,\"key\":\"has_featured_annotation\"},{\"value\":\"2018-02-09T16:03:05Z\",\"key\":\"created_at\"},{\"value\":\"2018-02-01\",\"key\":\"created_month\"},{\"value\":2018,\"key\":\"created_year\"},{\"value\":\"D\",\"key\":\"song_tier\"},{\"value\":true,\"key\":\"Has Recirculated Articles\"},{\"value\":\"en\",\"key\":\"Lyrics Language\"},{\"value\":true,\"key\":\"Has Apple Match\"},{\"value\":\"2018-02-16\",\"key\":\"Release Date\"},{\"value\":3,\"key\":\"NRM Tier\"},{\"value\":\"2000-01-01\",\"key\":\"NRM Target Date\"},{\"value\":true,\"key\":\"Has Description\"},{\"value\":true,\"key\":\"Has Youtube URL\"},{\"value\":false,\"key\":\"Has Translation Q&A\"},{\"value\":42,\"key\":\"Comment Count\"},{\"value\":false,\"key\":\"hot\"},{\"value\":true,\"key\":\"has_recommendations\"},{\"value\":false,\"key\":\"has_stubhub_artist\"},{\"value\":false,\"key\":\"has_stubhub_link\"},{\"value\":false,\"key\":\"Translation\"},{\"value\":\"mixpanel\",\"key\":\"recommendation_strategy\"},{\"value\":\"control\",\"key\":\"web_interstitial_variant\"},{\"value\":\"desktop_react\",\"key\":\"platform_variant\"}],\"title\":\"Nipsey Hussle – Victory Lap Lyrics | Genius Lyrics\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics\",\"pageType\":\"song\",\"initialAdUnits\":[\"desktop_song_inread\",\"desktop_song_inread2\",\"desktop_song_inread3\",\"desktop_song_leaderboard\",\"desktop_song_lyrics_footer\",\"desktop_song_marquee\",\"desktop_song_medium1\",\"desktop_song_sidebar_top\",\"desktop_song_recommended_song\",\"desktop_song_sponsored_minicharts\"],\"hotSongsLink\":\"/hot-songs\",\"headerBidPlacements\":[],\"dmpDataLayer\":{\"page\":{\"type\":\"song\"}},\"controllerAndAction\":\"songs#show\",\"chartbeat\":{\"title\":\"Nipsey Hussle – Victory Lap Lyrics | Genius Lyrics\",\"sections\":\"songs,tag:rap\",\"authors\":\"Nipsey Hussle,Stacy Barthe\"},\"unreviewedTopAnnotations\":{}},\"entities\":{\"artists\":{\"1263\":{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"}},\"songs\":{\"3014837\":{\"url\":\"https://genius.com/Nipsey-hussle-grinding-all-my-life-lyrics\",\"title\":\"Grinding All My Life\",\"path\":\"/Nipsey-hussle-grinding-all-my-life-lyrics\",\"lyricsState\":\"complete\",\"id\":3014837,\"apiPath\":\"/songs/3014837\",\"type\":\"song\"},\"3207981\":{\"url\":\"https://genius.com/Nipsey-hussle-rap-niggas-lyrics\",\"title\":\"Rap Niggas\",\"path\":\"/Nipsey-hussle-rap-niggas-lyrics\",\"lyricsState\":\"complete\",\"id\":3207981,\"apiPath\":\"/songs/3207981\",\"type\":\"song\"},\"3387726\":{\"url\":\"https://genius.com/Nipsey-hussle-last-time-that-i-checcd-lyrics\",\"title\":\"Last Time That I Checc’d\",\"path\":\"/Nipsey-hussle-last-time-that-i-checcd-lyrics\",\"lyricsState\":\"complete\",\"id\":3387726,\"apiPath\":\"/songs/3387726\",\"type\":\"song\"},\"3510797\":{\"url\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics\",\"title\":\"Victory Lap\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics\",\"lyricsState\":\"complete\",\"id\":3510797,\"apiPath\":\"/songs/3510797\",\"type\":\"song\",\"writerArtists\":[{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Stacy-barthe\",\"slug\":\"Stacy-barthe\",\"name\":\"Stacy Barthe\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"id\":13401,\"headerImageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"apiPath\":\"/artists/13401\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Amaire-johnson\",\"slug\":\"Amaire-johnson\",\"name\":\"Amaire Johnson\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"id\":330059,\"headerImageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"apiPath\":\"/artists/330059\",\"type\":\"artist\"},{\"iq\":446,\"url\":\"https://genius.com/artists/Sap\",\"slug\":\"Sap\",\"name\":\"Sap\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"id\":27653,\"headerImageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"apiPath\":\"/artists/27653\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Alex-turner\",\"slug\":\"Alex-turner\",\"name\":\"Alex Turner\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/b56fa14e127c49c66fe9f0a3c4e5b5c6.480x480x1.jpg\",\"id\":26178,\"headerImageUrl\":\"https://images.genius.com/e0e93163d69021b297dc1a008ca09d40.1000x667x1.jpg\",\"apiPath\":\"/artists/26178\",\"type\":\"artist\"}],\"verifiedLyricsBy\":[],\"verifiedContributors\":[],\"verifiedAnnotationsBy\":[],\"translationSongs\":[{\"url\":\"https://genius.com/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics\",\"title\":\"Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español)\",\"path\":\"/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics\",\"lyricsState\":\"complete\",\"language\":\"en\",\"id\":9028116,\"apiPath\":\"/songs/9028116\",\"type\":\"song\"}],\"topScholar\":{\"user\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/xMERLYN\",\"roleForDisplay\":\"editor\",\"name\":\"MERLYN\",\"login\":\"xMERLYN\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":193769,\"id\":4117133,\"humanReadableRoleForDisplay\":\"Editor\",\"headerImageUrl\":\"https://images.genius.com/2c7deb606042ff6cf124606741d2e5af.1000x369x1.png\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/a21350eafef014d91742e737824a7f57\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/a21350eafef014d91742e737824a7f57\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/a21350eafef014d91742e737824a7f57\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/a21350eafef014d91742e737824a7f57\"}},\"apiPath\":\"/users/4117133\",\"aboutMeSummary\":\"\",\"type\":\"user\"},\"pinnedRole\":null,\"attributionValue\":980.1,\"type\":\"user_attribution\"},\"tags\":[{\"url\":\"https://genius.com/tags/gangsta-rap\",\"primary\":false,\"name\":\"Gangsta Rap\",\"id\":2741,\"type\":\"tag\"},{\"url\":\"https://genius.com/tags/hip-hop\",\"primary\":false,\"name\":\"Hip-Hop\",\"id\":3783,\"type\":\"tag\"},{\"url\":\"https://genius.com/tags/hardcore-rap\",\"primary\":false,\"name\":\"Hardcore Rap\",\"id\":3171,\"type\":\"tag\"},{\"url\":\"https://genius.com/tags/west-coast-rap\",\"primary\":false,\"name\":\"West Coast Rap\",\"id\":798,\"type\":\"tag\"},{\"url\":\"https://genius.com/tags/rap\",\"primary\":true,\"name\":\"Rap\",\"id\":1434,\"type\":\"tag\"}],\"songRelationships\":[{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"samples\"},{\"songs\":[{\"primaryArtist\":{\"url\":\"https://genius.com/artists/Ajay-brownskin-and-successgang\",\"slug\":\"Ajay-brownskin-and-successgang\",\"name\":\"Ajay Brownskin & Successgang\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":2365919,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/2365919\",\"type\":\"artist\"},\"featuredArtists\":[{\"url\":\"https://genius.com/artists/Successgang\",\"slug\":\"Successgang\",\"name\":\"SUCCESSGANG\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":2365918,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/2365918\",\"type\":\"artist\"}],\"url\":\"https://genius.com/Ajay-brownskin-and-successgang-a-hunned-remix-lyrics\",\"updatedByHumanAt\":1667024754,\"titleWithFeatured\":\"A HUNNED REMIX (Ft. SUCCESSGANG)\",\"title\":\"A HUNNED REMIX\",\"stats\":{\"hot\":false,\"unreviewedAnnotations\":1},\"songArtImageUrl\":\"https://youtu.be/6Ucr_tVZYi4\",\"songArtImageThumbnailUrl\":\"https://youtu.be/6Ucr_tVZYi4\",\"releaseDateWithAbbreviatedMonthForDisplay\":\"Aug. 20, 2020\",\"releaseDateForDisplay\":\"August 20, 2020\",\"releaseDateComponents\":{\"day\":20,\"month\":8,\"year\":2020},\"relationshipsIndexUrl\":\"https://genius.com/Ajay-brownskin-and-successgang-a-hunned-remix-sample\",\"pyongsCount\":null,\"path\":\"/Ajay-brownskin-and-successgang-a-hunned-remix-lyrics\",\"lyricsUpdatedAt\":1597915775,\"lyricsState\":\"complete\",\"lyricsOwnerId\":10982598,\"instrumental\":false,\"id\":5885298,\"headerImageUrl\":\"https://youtu.be/6Ucr_tVZYi4\",\"headerImageThumbnailUrl\":\"https://youtu.be/6Ucr_tVZYi4\",\"fullTitle\":\"A HUNNED REMIX by Ajay Brownskin & Successgang (Ft. SUCCESSGANG)\",\"artistNames\":\"Ajay Brownskin & Successgang (Ft. SUCCESSGANG)\",\"apiPath\":\"/songs/5885298\",\"annotationCount\":1,\"type\":\"song\"},{\"primaryArtist\":{\"url\":\"https://genius.com/artists/Moxalaqi\",\"slug\":\"Moxalaqi\",\"name\":\"MOXALAQI\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"m\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":1943388,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/1943388\",\"type\":\"artist\"},\"featuredArtists\":[],\"url\":\"https://genius.com/Moxalaqi-rip-nipsey-hussle-lyrics\",\"updatedByHumanAt\":1598543008,\"titleWithFeatured\":\"R.I.P. Nipsey Hussle\",\"title\":\"R.I.P. Nipsey Hussle\",\"stats\":{\"hot\":false,\"unreviewedAnnotations\":1},\"songArtImageUrl\":\"https://images.genius.com/fa2bb96cee5f53e6b369e61eb14f734b.1000x1000x1.jpg\",\"songArtImageThumbnailUrl\":\"https://images.genius.com/fa2bb96cee5f53e6b369e61eb14f734b.300x300x1.jpg\",\"releaseDateWithAbbreviatedMonthForDisplay\":\"Apr. 13, 2019\",\"releaseDateForDisplay\":\"April 13, 2019\",\"releaseDateComponents\":{\"day\":13,\"month\":4,\"year\":2019},\"relationshipsIndexUrl\":\"https://genius.com/Moxalaqi-rip-nipsey-hussle-sample\",\"pyongsCount\":null,\"path\":\"/Moxalaqi-rip-nipsey-hussle-lyrics\",\"lyricsUpdatedAt\":1577454475,\"lyricsState\":\"complete\",\"lyricsOwnerId\":7062555,\"instrumental\":false,\"id\":4463575,\"headerImageUrl\":\"https://images.genius.com/fa2bb96cee5f53e6b369e61eb14f734b.1000x1000x1.jpg\",\"headerImageThumbnailUrl\":\"https://images.genius.com/fa2bb96cee5f53e6b369e61eb14f734b.300x300x1.jpg\",\"fullTitle\":\"R.I.P. Nipsey Hussle by MOXALAQI\",\"artistNames\":\"MOXALAQI\",\"apiPath\":\"/songs/4463575\",\"annotationCount\":7,\"type\":\"song\"}],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"sampled_in\"},{\"songs\":[{\"primaryArtist\":{\"url\":\"https://genius.com/artists/Arctic-monkeys\",\"slug\":\"Arctic-monkeys\",\"name\":\"Arctic Monkeys\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/22b5c9613f7cfc559fa2d11e3fcdc829.664x664x1.jpg\",\"id\":12297,\"headerImageUrl\":\"https://images.genius.com/c3c80cbb98d33004ad932e8e486f4f09.664x1000x1.jpg\",\"apiPath\":\"/artists/12297\",\"type\":\"artist\"},\"featuredArtists\":[],\"url\":\"https://genius.com/Arctic-monkeys-knee-socks-lyrics\",\"updatedByHumanAt\":1701818254,\"titleWithFeatured\":\"Knee Socks\",\"title\":\"Knee Socks\",\"stats\":{\"pageviews\":734393,\"hot\":false,\"unreviewedAnnotations\":0},\"songArtImageUrl\":\"https://images.genius.com/af4ac59ba9e3e8b0fe70d7c1156ff8f2.1000x1000x1.jpg\",\"songArtImageThumbnailUrl\":\"https://images.genius.com/af4ac59ba9e3e8b0fe70d7c1156ff8f2.300x300x1.jpg\",\"releaseDateWithAbbreviatedMonthForDisplay\":\"Sep. 6, 2013\",\"releaseDateForDisplay\":\"September 6, 2013\",\"releaseDateComponents\":{\"day\":6,\"month\":9,\"year\":2013},\"relationshipsIndexUrl\":\"https://genius.com/Arctic-monkeys-knee-socks-sample\",\"pyongsCount\":144,\"path\":\"/Arctic-monkeys-knee-socks-lyrics\",\"lyricsUpdatedAt\":1675694097,\"lyricsState\":\"complete\",\"lyricsOwnerId\":150910,\"instrumental\":false,\"id\":213246,\"headerImageUrl\":\"https://images.genius.com/af4ac59ba9e3e8b0fe70d7c1156ff8f2.1000x1000x1.jpg\",\"headerImageThumbnailUrl\":\"https://images.genius.com/af4ac59ba9e3e8b0fe70d7c1156ff8f2.300x300x1.jpg\",\"fullTitle\":\"Knee Socks by Arctic Monkeys\",\"artistNames\":\"Arctic Monkeys\",\"apiPath\":\"/songs/213246\",\"annotationCount\":21,\"type\":\"song\"}],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"interpolates\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"interpolated_by\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"cover_of\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"covered_by\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"remix_of\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"remixed_by\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"live_version_of\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"performed_live_as\"},{\"songs\":[],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"translation_of\"},{\"songs\":[{\"primaryArtist\":{\"url\":\"https://genius.com/artists/Genius-traducciones-al-espanol\",\"slug\":\"Genius-traducciones-al-espanol\",\"name\":\"Genius Traducciones al Español\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"g\",\"imageUrl\":\"https://images.genius.com/766a687c3e07f9acd993d7f8ac3e9902.1000x1000x1.png\",\"id\":1376254,\"headerImageUrl\":\"https://images.genius.com/d43c9375eda8e9c8e8768a3a911b7d49.1000x213x44.gif\",\"apiPath\":\"/artists/1376254\",\"type\":\"artist\"},\"featuredArtists\":[],\"url\":\"https://genius.com/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics\",\"updatedByHumanAt\":1709174959,\"titleWithFeatured\":\"Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español)\",\"title\":\"Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español)\",\"stats\":{\"hot\":false,\"unreviewedAnnotations\":2},\"songArtImageUrl\":\"https://images.genius.com/8f0c6f51f926458cdd3f6548bfad87ee.1000x1000x1.jpg\",\"songArtImageThumbnailUrl\":\"https://images.genius.com/8f0c6f51f926458cdd3f6548bfad87ee.300x300x1.jpg\",\"releaseDateWithAbbreviatedMonthForDisplay\":\"Feb. 16, 2018\",\"releaseDateForDisplay\":\"February 16, 2018\",\"releaseDateComponents\":{\"day\":16,\"month\":2,\"year\":2018},\"relationshipsIndexUrl\":\"https://genius.com/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-sample\",\"pyongsCount\":null,\"path\":\"/Genius-traducciones-al-espanol-nipsey-hussle-victory-lap-ft-stacy-barthe-traduccion-al-espanol-lyrics\",\"lyricsUpdatedAt\":1684281846,\"lyricsState\":\"complete\",\"lyricsOwnerId\":16118330,\"instrumental\":false,\"id\":9028116,\"headerImageUrl\":\"https://images.genius.com/8f0c6f51f926458cdd3f6548bfad87ee.1000x1000x1.jpg\",\"headerImageThumbnailUrl\":\"https://images.genius.com/8f0c6f51f926458cdd3f6548bfad87ee.300x300x1.jpg\",\"fullTitle\":\"Nipsey Hussle - Victory Lap ft. Stacy Barthe (Traducción al Español) by Genius Traducciones al Español\",\"artistNames\":\"Genius Traducciones al Español\",\"apiPath\":\"/songs/9028116\",\"annotationCount\":2,\"type\":\"song\"}],\"url\":null,\"type\":\"song_relationship\",\"relationshipType\":\"translations\"}],\"producerArtists\":[{\"iq\":235,\"url\":\"https://genius.com/artists/Mike-and-keys\",\"slug\":\"Mike-and-keys\",\"name\":\"Mike & Keys\",\"isVerified\":true,\"isMemeVerified\":false,\"indexCharacter\":\"m\",\"imageUrl\":\"https://images.genius.com/7ccfbd140ca01a33864e992b445255f8.400x400x1.jpg\",\"id\":589827,\"headerImageUrl\":\"https://images.genius.com/7ccfbd140ca01a33864e992b445255f8.400x400x1.jpg\",\"apiPath\":\"/artists/589827\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Amaire-johnson\",\"slug\":\"Amaire-johnson\",\"name\":\"Amaire Johnson\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"id\":330059,\"headerImageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"apiPath\":\"/artists/330059\",\"type\":\"artist\"},{\"iq\":446,\"url\":\"https://genius.com/artists/Sap\",\"slug\":\"Sap\",\"name\":\"Sap\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"id\":27653,\"headerImageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"apiPath\":\"/artists/27653\",\"type\":\"artist\"}],\"primaryTag\":{\"url\":\"https://genius.com/tags/rap\",\"primary\":true,\"name\":\"Rap\",\"id\":1434,\"type\":\"tag\"},\"primaryArtist\":1263,\"media\":[{\"url\":\"http://www.youtube.com/watch?v=iYC9iMTC5QM\",\"type\":\"video\",\"start\":0,\"provider\":\"youtube\"}],\"lyricsMarkedStaffApprovedBy\":54639,\"lyricsMarkedCompleteBy\":null,\"featuredArtists\":[{\"url\":\"https://genius.com/artists/Stacy-barthe\",\"slug\":\"Stacy-barthe\",\"name\":\"Stacy Barthe\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"id\":13401,\"headerImageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"apiPath\":\"/artists/13401\",\"type\":\"artist\"}],\"descriptionAnnotation\":14168169,\"customPerformances\":[{\"artists\":[{\"url\":\"https://genius.com/artists/Warner-music-group\",\"slug\":\"Warner-music-group\",\"name\":\"Warner Music Group\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"w\",\"imageUrl\":\"https://images.genius.com/216b858e2ab39c9e230ced74ae3831e9.960x960x1.jpg\",\"id\":1112276,\"headerImageUrl\":\"https://images.genius.com/216b858e2ab39c9e230ced74ae3831e9.960x960x1.jpg\",\"apiPath\":\"/artists/1112276\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Polaris-hub-ab\",\"slug\":\"Polaris-hub-ab\",\"name\":\"Polaris Hub AB\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"p\",\"imageUrl\":\"https://images.genius.com/3675e235c420f8bbe55308272231208f.300x300x1.png\",\"id\":2676380,\"headerImageUrl\":\"https://images.genius.com/01c4d4d2f882c0bce56b86e36962d60c.300x79x1.png\",\"apiPath\":\"/artists/2676380\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Ascap\",\"slug\":\"Ascap\",\"name\":\"ASCAP\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/57f079713f9cfe26ccb293cd3ceb4838.850x850x1.png\",\"id\":551598,\"headerImageUrl\":\"https://images.genius.com/45ac77d82c5c8e53bebcafcbc2e71262.1000x1000x1.png\",\"apiPath\":\"/artists/551598\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Universal-music-group\",\"slug\":\"Universal-music-group\",\"name\":\"Universal Music Group\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"u\",\"imageUrl\":\"https://images.genius.com/7b3fb2c00317cb2eb2453f9f4e7473d1.600x600x1.png\",\"id\":1104563,\"headerImageUrl\":\"https://images.genius.com/c1a1794200220213746e8e651a5dc211.1000x175x1.png\",\"apiPath\":\"/artists/1104563\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Vydia\",\"slug\":\"Vydia\",\"name\":\"Vydia\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"v\",\"imageUrl\":\"https://images.genius.com/b827d626af7be9b6f0f03d849ea068c2.900x900x1.jpg\",\"id\":1572244,\"headerImageUrl\":\"https://images.genius.com/83227b6b4008a9306a295781f97df9c9.200x200x1.jpg\",\"apiPath\":\"/artists/1572244\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Latinautorperf\",\"slug\":\"Latinautorperf\",\"name\":\"LatinAutorPerf\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"l\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":3173381,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/3173381\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Solar-music-rights-management\",\"slug\":\"Solar-music-rights-management\",\"name\":\"SOLAR Music Rights Management\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":1650066,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/1650066\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Sony-music-entertainment\",\"slug\":\"Sony-music-entertainment\",\"name\":\"Sony Music Entertainment\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/2a8cce70d4827d126ecbbc648a8ad62f.1000x1000x1.png\",\"id\":88331,\"headerImageUrl\":\"https://images.genius.com/b46212847df33dcc782ffff51fc737b4.1000x207x1.png\",\"apiPath\":\"/artists/88331\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Bmi\",\"slug\":\"Bmi\",\"name\":\"BMI\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"b\",\"imageUrl\":\"https://images.genius.com/aaee1868923f7e92591f7f41bbbc4d97.1000x1000x1.png\",\"id\":1138091,\"headerImageUrl\":\"https://images.genius.com/893ee5498339f0bd6bfd6447803d7c72.1000x1000x1.jpg\",\"apiPath\":\"/artists/1138091\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Latinautor\",\"slug\":\"Latinautor\",\"name\":\"LatinAutor\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"l\",\"imageUrl\":\"https://images.genius.com/384fcf7d810274ec0aa5197c9364d703.800x800x1.png\",\"id\":1725513,\"headerImageUrl\":\"https://images.genius.com/384fcf7d810274ec0aa5197c9364d703.800x800x1.png\",\"apiPath\":\"/artists/1725513\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Ubem\",\"slug\":\"Ubem\",\"name\":\"UBEM\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"u\",\"imageUrl\":\"https://images.genius.com/b305110c88ee5f9d5b3c8c6be94e9fe1.196x196x1.png\",\"id\":1544671,\"headerImageUrl\":\"https://images.genius.com/b305110c88ee5f9d5b3c8c6be94e9fe1.196x196x1.png\",\"apiPath\":\"/artists/1544671\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Global-music-rights\",\"slug\":\"Global-music-rights\",\"name\":\"Global Music Rights\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"g\",\"imageUrl\":\"https://images.genius.com/b4aba1e6d323461735b291be342cc225.225x225x1.jpg\",\"id\":1148777,\"headerImageUrl\":\"https://images.genius.com/0e5174366cfce663596c57d34c925e6d.1000x563x1.jpg\",\"apiPath\":\"/artists/1148777\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Cmrra\",\"slug\":\"Cmrra\",\"name\":\"CMRRA\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"c\",\"imageUrl\":\"https://images.genius.com/2672ab7877120660b0e30363d5585462.600x600x1.png\",\"id\":1544669,\"headerImageUrl\":\"https://images.genius.com/e62d68ffb935647a584bf4fd1b7734ce.1000x563x1.jpg\",\"apiPath\":\"/artists/1544669\",\"type\":\"artist\"}],\"label\":\"Licensing\"},{\"artists\":[{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Stacy-barthe\",\"slug\":\"Stacy-barthe\",\"name\":\"Stacy Barthe\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"id\":13401,\"headerImageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"apiPath\":\"/artists/13401\",\"type\":\"artist\"}],\"label\":\"Vocals\"},{\"artists\":[{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Stacy-barthe\",\"slug\":\"Stacy-barthe\",\"name\":\"Stacy Barthe\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"id\":13401,\"headerImageUrl\":\"https://images.genius.com/e7594db4cfa5f1470243fe3afbb47df3.750x1000x1.jpg\",\"apiPath\":\"/artists/13401\",\"type\":\"artist\"}],\"label\":\"Lyricist\"},{\"artists\":[{\"iq\":235,\"url\":\"https://genius.com/artists/Mike-and-keys\",\"slug\":\"Mike-and-keys\",\"name\":\"Mike & Keys\",\"isVerified\":true,\"isMemeVerified\":false,\"indexCharacter\":\"m\",\"imageUrl\":\"https://images.genius.com/7ccfbd140ca01a33864e992b445255f8.400x400x1.jpg\",\"id\":589827,\"headerImageUrl\":\"https://images.genius.com/7ccfbd140ca01a33864e992b445255f8.400x400x1.jpg\",\"apiPath\":\"/artists/589827\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Amaire-johnson\",\"slug\":\"Amaire-johnson\",\"name\":\"Amaire Johnson\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"id\":330059,\"headerImageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"apiPath\":\"/artists/330059\",\"type\":\"artist\"},{\"iq\":446,\"url\":\"https://genius.com/artists/Sap\",\"slug\":\"Sap\",\"name\":\"Sap\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"id\":27653,\"headerImageUrl\":\"https://images.genius.com/8f5a82996b09f33726236d5c6f99cbc5.500x500x1.jpg\",\"apiPath\":\"/artists/27653\",\"type\":\"artist\"}],\"label\":\"Composer\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Paramount-recording-studio\",\"slug\":\"Paramount-recording-studio\",\"name\":\"Paramount Recording Studio\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"p\",\"imageUrl\":\"https://images.genius.com/e6aad1efc244340e1712fce0d396f639.900x900x1.jpg\",\"id\":1019078,\"headerImageUrl\":\"https://images.genius.com/e6aad1efc244340e1712fce0d396f639.900x900x1.jpg\",\"apiPath\":\"/artists/1019078\",\"type\":\"artist\"}],\"label\":\"Mixed At\"},{\"artists\":[{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Sound-of-a-pioneer-music\",\"slug\":\"Sound-of-a-pioneer-music\",\"name\":\"Sound of a Pioneer Music\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":2280921,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/2280921\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/It-takes-one-publishing\",\"slug\":\"It-takes-one-publishing\",\"name\":\"It Takes One Publishing\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"i\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":2281879,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/2281879\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Amaire-johnson\",\"slug\":\"Amaire-johnson\",\"name\":\"Amaire Johnson\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"id\":330059,\"headerImageUrl\":\"https://images.genius.com/522ae0fe61ca0000abd18f8011a9fc80.525x525x1.jpg\",\"apiPath\":\"/artists/330059\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Emi-music-publishing\",\"slug\":\"Emi-music-publishing\",\"name\":\"EMI Music Publishing\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"e\",\"imageUrl\":\"https://images.genius.com/03347dd9a7ca1b6e653241d7b9c9ec8b.240x240x1.jpg\",\"id\":648041,\"headerImageUrl\":\"https://images.genius.com/db97ab2a66fd8f2e1ff550b403f37e84.240x240x1.jpg\",\"apiPath\":\"/artists/648041\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Sony-atv-tunes\",\"slug\":\"Sony-atv-tunes\",\"name\":\"Sony/ATV Tunes\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://filepicker-images.genius.com/6filx7uda04\",\"id\":2261510,\"headerImageUrl\":\"https://filepicker-images.genius.com/6filx7uda04\",\"apiPath\":\"/artists/2261510\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Sony-music-entertainment\",\"slug\":\"Sony-music-entertainment\",\"name\":\"Sony Music Entertainment\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"s\",\"imageUrl\":\"https://images.genius.com/2a8cce70d4827d126ecbbc648a8ad62f.1000x1000x1.png\",\"id\":88331,\"headerImageUrl\":\"https://images.genius.com/b46212847df33dcc782ffff51fc737b4.1000x207x1.png\",\"apiPath\":\"/artists/88331\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Universal-music-group\",\"slug\":\"Universal-music-group\",\"name\":\"Universal Music Group\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"u\",\"imageUrl\":\"https://images.genius.com/7b3fb2c00317cb2eb2453f9f4e7473d1.600x600x1.png\",\"id\":1104563,\"headerImageUrl\":\"https://images.genius.com/c1a1794200220213746e8e651a5dc211.1000x175x1.png\",\"apiPath\":\"/artists/1104563\",\"type\":\"artist\"}],\"label\":\"Publisher\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Ascap\",\"slug\":\"Ascap\",\"name\":\"ASCAP\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/57f079713f9cfe26ccb293cd3ceb4838.850x850x1.png\",\"id\":551598,\"headerImageUrl\":\"https://images.genius.com/45ac77d82c5c8e53bebcafcbc2e71262.1000x1000x1.png\",\"apiPath\":\"/artists/551598\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Bmi\",\"slug\":\"Bmi\",\"name\":\"BMI\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"b\",\"imageUrl\":\"https://images.genius.com/aaee1868923f7e92591f7f41bbbc4d97.1000x1000x1.png\",\"id\":1138091,\"headerImageUrl\":\"https://images.genius.com/893ee5498339f0bd6bfd6447803d7c72.1000x1000x1.jpg\",\"apiPath\":\"/artists/1138091\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Prs\",\"slug\":\"Prs\",\"name\":\"PRS\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"p\",\"imageUrl\":\"https://images.genius.com/00788019f60760a89012a64cb9356d64.999x999x1.png\",\"id\":1112945,\"headerImageUrl\":\"https://images.genius.com/5628014635b8cfcfde42fc0e3ab35502.1000x747x1.jpg\",\"apiPath\":\"/artists/1112945\",\"type\":\"artist\"}],\"label\":\"Performance Rights\"},{\"artists\":[{\"url\":\"https://genius.com/artists/All-money-in-no-money-out\",\"slug\":\"All-money-in-no-money-out\",\"name\":\"All Money In No Money Out\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"id\":1399400,\"headerImageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"apiPath\":\"/artists/1399400\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Atlantic-records\",\"slug\":\"Atlantic-records\",\"name\":\"Atlantic Records\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/ded045557ddf5991ba4134151023e614.315x315x1.png\",\"id\":68978,\"headerImageUrl\":\"https://images.genius.com/5fb8d27c10b1cc7a7678d21943a03feb.650x552x31.gif\",\"apiPath\":\"/artists/68978\",\"type\":\"artist\"}],\"label\":\"Copyright ©\"},{\"artists\":[{\"url\":\"https://genius.com/artists/All-money-in-no-money-out\",\"slug\":\"All-money-in-no-money-out\",\"name\":\"All Money In No Money Out\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"id\":1399400,\"headerImageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"apiPath\":\"/artists/1399400\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Atlantic-records\",\"slug\":\"Atlantic-records\",\"name\":\"Atlantic Records\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/ded045557ddf5991ba4134151023e614.315x315x1.png\",\"id\":68978,\"headerImageUrl\":\"https://images.genius.com/5fb8d27c10b1cc7a7678d21943a03feb.650x552x31.gif\",\"apiPath\":\"/artists/68978\",\"type\":\"artist\"}],\"label\":\"Phonographic Copyright ℗\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Lauren-london\",\"slug\":\"Lauren-london\",\"name\":\"Lauren London\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"l\",\"imageUrl\":\"https://images.genius.com/47e49bcb5a54d86d89784ef0b89b908d.800x800x1.jpg\",\"id\":1280789,\"headerImageUrl\":\"https://images.genius.com/41f853ab280b7354e844c7a586db5a74.435x680x1.jpg\",\"apiPath\":\"/artists/1280789\",\"type\":\"artist\"}],\"label\":\"Additional Vocals\"},{\"artists\":[{\"iq\":381,\"url\":\"https://genius.com/artists/Dad-r-b\",\"slug\":\"Dad-r-b\",\"name\":\"Dad (R&B)\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"d\",\"imageUrl\":\"https://images.genius.com/26d8de1b215123a620e39b0f1755991c.1000x1000x1.jpg\",\"id\":2249202,\"headerImageUrl\":\"https://images.genius.com/26d8de1b215123a620e39b0f1755991c.1000x1000x1.jpg\",\"apiPath\":\"/artists/2249202\",\"type\":\"artist\"}],\"label\":\"Cello\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Garnett-flynn\",\"slug\":\"Garnett-flynn\",\"name\":\"Garnett Flynn\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"g\",\"imageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"id\":984520,\"headerImageUrl\":\"https://assets.genius.com/images/default_avatar_300.png?1713210365\",\"apiPath\":\"/artists/984520\",\"type\":\"artist\"}],\"label\":\"Recording Engineer\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Mixed-by-ali\",\"slug\":\"Mixed-by-ali\",\"name\":\"Mixed by Ali\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"m\",\"imageUrl\":\"https://images.genius.com/6bf42f8958d4e9916db1fd12381b36a4.620x400x1.jpg\",\"id\":640014,\"headerImageUrl\":\"https://images.genius.com/6bf42f8958d4e9916db1fd12381b36a4.620x400x1.jpg\",\"apiPath\":\"/artists/640014\",\"type\":\"artist\"}],\"label\":\"Mixing Engineer\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Tyler-page\",\"slug\":\"Tyler-page\",\"name\":\"Tyler Page\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"t\",\"imageUrl\":\"https://images.genius.com/28c84c08b180a47dee9dde0ad8a1028b.200x200x1.jpg\",\"id\":1118290,\"headerImageUrl\":\"https://images.genius.com/28c84c08b180a47dee9dde0ad8a1028b.200x200x1.jpg\",\"apiPath\":\"/artists/1118290\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Ya-boy-nois\",\"slug\":\"Ya-boy-nois\",\"name\":\"Ya Boy N.O.I.S.\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"y\",\"imageUrl\":\"https://images.genius.com/354955a8add8110dc994f74b391f9880.901x901x1.jpg\",\"id\":162817,\"headerImageUrl\":\"https://images.genius.com/61ac3a9fdda58b309c6293ef9e8c64a1.1000x788x1.jpg\",\"apiPath\":\"/artists/162817\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/Matty-j\",\"slug\":\"Matty-j\",\"name\":\"Matty J\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"m\",\"imageUrl\":\"https://images.genius.com/ca211f3fd39f1c69d2e5b18168c8e570.1000x1000x1.png\",\"id\":1786191,\"headerImageUrl\":\"https://images.genius.com/ca211f3fd39f1c69d2e5b18168c8e570.1000x1000x1.png\",\"apiPath\":\"/artists/1786191\",\"type\":\"artist\"}],\"label\":\"Assistant Mixing Engineer\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Dave-kutch\",\"slug\":\"Dave-kutch\",\"name\":\"Dave Kutch\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"d\",\"imageUrl\":\"https://images.genius.com/1375f5c7c360bd60098736bcc81119d0.492x492x1.png\",\"id\":641341,\"headerImageUrl\":\"https://images.genius.com/f883736541eabbfb08e6d079a720db9f.1000x535x1.jpg\",\"apiPath\":\"/artists/641341\",\"type\":\"artist\"}],\"label\":\"Mastering Engineer\"},{\"artists\":[{\"url\":\"https://genius.com/artists/Atlantic-records\",\"slug\":\"Atlantic-records\",\"name\":\"Atlantic Records\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/ded045557ddf5991ba4134151023e614.315x315x1.png\",\"id\":68978,\"headerImageUrl\":\"https://images.genius.com/5fb8d27c10b1cc7a7678d21943a03feb.650x552x31.gif\",\"apiPath\":\"/artists/68978\",\"type\":\"artist\"},{\"url\":\"https://genius.com/artists/All-money-in-no-money-out\",\"slug\":\"All-money-in-no-money-out\",\"name\":\"All Money In No Money Out\",\"isVerified\":false,\"isMemeVerified\":false,\"indexCharacter\":\"a\",\"imageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"id\":1399400,\"headerImageUrl\":\"https://images.genius.com/21409e5e36bf39b2e876f661ccd8be90.300x300x1.jpg\",\"apiPath\":\"/artists/1399400\",\"type\":\"artist\"}],\"label\":\"Label\"}],\"albums\":[{\"tracklist\":[{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics\",\"title\":\"Victory Lap\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics\",\"lyricsState\":\"complete\",\"id\":3510797,\"apiPath\":\"/songs/3510797\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":1,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-rap-niggas-lyrics\",\"title\":\"Rap Niggas\",\"path\":\"/Nipsey-hussle-rap-niggas-lyrics\",\"lyricsState\":\"complete\",\"id\":3207981,\"apiPath\":\"/songs/3207981\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":2,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-last-time-that-i-checcd-lyrics\",\"title\":\"Last Time That I Checc’d\",\"path\":\"/Nipsey-hussle-last-time-that-i-checcd-lyrics\",\"lyricsState\":\"complete\",\"id\":3387726,\"apiPath\":\"/songs/3387726\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":3,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-young-nigga-lyrics\",\"title\":\"Young Nigga\",\"path\":\"/Nipsey-hussle-young-nigga-lyrics\",\"lyricsState\":\"complete\",\"id\":3510798,\"apiPath\":\"/songs/3510798\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":4,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-dedication-lyrics\",\"title\":\"Dedication\",\"path\":\"/Nipsey-hussle-dedication-lyrics\",\"lyricsState\":\"complete\",\"id\":3510799,\"apiPath\":\"/songs/3510799\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":5,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-blue-laces-2-lyrics\",\"title\":\"Blue Laces 2\",\"path\":\"/Nipsey-hussle-blue-laces-2-lyrics\",\"lyricsState\":\"complete\",\"id\":3510800,\"apiPath\":\"/songs/3510800\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":6,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-hussle-and-motivate-lyrics\",\"title\":\"Hussle & Motivate\",\"path\":\"/Nipsey-hussle-hussle-and-motivate-lyrics\",\"lyricsState\":\"complete\",\"id\":3510801,\"apiPath\":\"/songs/3510801\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":7,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-status-symbol-3-lyrics\",\"title\":\"Status Symbol 3\",\"path\":\"/Nipsey-hussle-status-symbol-3-lyrics\",\"lyricsState\":\"complete\",\"id\":3510802,\"apiPath\":\"/songs/3510802\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":8,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-succa-proof-lyrics\",\"title\":\"Succa Proof\",\"path\":\"/Nipsey-hussle-succa-proof-lyrics\",\"lyricsState\":\"complete\",\"id\":3510803,\"apiPath\":\"/songs/3510803\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":9,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-keyz-2-the-city-2-lyrics\",\"title\":\"Keyz 2 the City 2\",\"path\":\"/Nipsey-hussle-keyz-2-the-city-2-lyrics\",\"lyricsState\":\"complete\",\"id\":3510804,\"apiPath\":\"/songs/3510804\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":10,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-grinding-all-my-life-lyrics\",\"title\":\"Grinding All My Life\",\"path\":\"/Nipsey-hussle-grinding-all-my-life-lyrics\",\"lyricsState\":\"complete\",\"id\":3014837,\"apiPath\":\"/songs/3014837\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":11,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-million-while-you-young-lyrics\",\"title\":\"Million While You Young\",\"path\":\"/Nipsey-hussle-million-while-you-young-lyrics\",\"lyricsState\":\"complete\",\"id\":3510806,\"apiPath\":\"/songs/3510806\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":12,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-loaded-bases-lyrics\",\"title\":\"Loaded Bases\",\"path\":\"/Nipsey-hussle-loaded-bases-lyrics\",\"lyricsState\":\"complete\",\"id\":3510807,\"apiPath\":\"/songs/3510807\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":13,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-real-big-lyrics\",\"title\":\"Real Big\",\"path\":\"/Nipsey-hussle-real-big-lyrics\",\"lyricsState\":\"complete\",\"id\":3510808,\"apiPath\":\"/songs/3510808\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":14,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-double-up-lyrics\",\"title\":\"Double Up\",\"path\":\"/Nipsey-hussle-double-up-lyrics\",\"lyricsState\":\"complete\",\"id\":3525281,\"apiPath\":\"/songs/3525281\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":15,\"type\":\"album_appearance\"},{\"song\":{\"url\":\"https://genius.com/Nipsey-hussle-right-hand-2-god-lyrics\",\"title\":\"Right Hand 2 God\",\"path\":\"/Nipsey-hussle-right-hand-2-god-lyrics\",\"lyricsState\":\"complete\",\"id\":3510809,\"apiPath\":\"/songs/3510809\",\"type\":\"song\"},\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":16,\"type\":\"album_appearance\"}],\"artist\":{\"iq\":3841,\"url\":\"https://genius.com/artists/Nipsey-hussle\",\"slug\":\"Nipsey-hussle\",\"name\":\"Nipsey Hussle\",\"isVerified\":true,\"isMemeVerified\":true,\"indexCharacter\":\"n\",\"imageUrl\":\"https://images.genius.com/294a7b3b0009e710be0cc01db8c6fa70.874x874x1.jpg\",\"id\":1263,\"headerImageUrl\":\"https://images.genius.com/d17c9ece2ecf27b100f884f5e99d0be9.1000x345x1.jpg\",\"apiPath\":\"/artists/1263\",\"type\":\"artist\"},\"url\":\"https://genius.com/albums/Nipsey-hussle/Victory-lap\",\"releaseDateForDisplay\":\"February 16, 2018\",\"releaseDateComponents\":{\"day\":16,\"month\":2,\"year\":2018},\"nameWithArtist\":\"Victory Lap (artist: Nipsey Hussle)\",\"name\":\"Victory Lap\",\"id\":78280,\"fullTitle\":\"Victory Lap by Nipsey Hussle\",\"coverArtUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg\",\"coverArtThumbnailUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.300x300x1.jpg\",\"apiPath\":\"/albums/78280\",\"type\":\"album\"}],\"album\":78280,\"stubhubDeal\":\"viagogo\",\"songArtTextColor\":\"#fff\",\"songArtSecondaryColor\":\"#621111\",\"songArtPrimaryColor\":\"#c4743c\",\"currentUserMetadata\":{\"iqByAction\":{},\"relationships\":{},\"interactions\":{\"following\":false,\"pyong\":false},\"excludedPermissions\":[\"follow\",\"award_transcription_iq\",\"remove_transcription_iq\",\"pyong\",\"edit_lyrics\",\"view_annotation_engagement_data\",\"publish\",\"unpublish\",\"edit_spotify_details\",\"hide\",\"unhide\",\"toggle_featured_video\",\"add_pinned_annotation_to\",\"add_community_annotation_to\",\"destroy\",\"mark_as_not_spam\",\"edit_spotify_annotations_for\",\"verify_lyrics\",\"unverify_lyrics\",\"edit_anything\",\"edit_any_media\",\"edit\",\"rename\",\"edit_tags\",\"reindex\",\"view_lyrics_synchronization\",\"enable_media\",\"disable_media\",\"edit_lyrics_or_annotation_brackets\",\"see_editorial_indicators\",\"view_attribution_visualization\",\"edit_annotation_brackets\",\"preview_lyrics_for_export\",\"hide_apple_player\",\"unhide_apple_player\",\"trigger_apple_match\",\"mark_lyrics_evaluation_as_complete\",\"mark_lyrics_evaluation_as_staff_approved\",\"unmark_lyrics_evaluation_as_complete\",\"mark_lyrics_evaluation_as_un_staff_approved\",\"view_transcriber_media_player\",\"override_apple_match\",\"set_song_color_gradient\",\"mark_as_hot\",\"unmark_as_hot\",\"use_mark_complete_button\",\"edit_youtube_url\",\"edit_soundcloud_url\",\"edit_spotify_uuid\",\"edit_vevo_url\",\"create_comment\",\"moderate_annotations\",\"create_annotation\",\"see_short_id\",\"manage_chart_item\",\"create_tag\",\"propose_lyrics_edit\",\"view_lyrics_edit_proposals_on_song\",\"create_question\",\"answer_question_with_source\",\"create_additional_role\",\"add_qa\",\"pin_qa\"],\"permissions\":[\"see_pageviews\",\"view_apple_music_player\",\"view_recommendations\",\"view_relationships_page\",\"view_song_story_gallery\"]},\"youtubeUrl\":\"http://www.youtube.com/watch?v=iYC9iMTC5QM\",\"youtubeStart\":null,\"vttpId\":null,\"viewableByRoles\":[],\"updatedByHumanAt\":1707481592,\"twitterShareMessageWithoutUrl\":\"Nipsey Hussle – Victory Lap @NipseyHussle\",\"twitterShareMessage\":\"Nipsey Hussle – Victory Lap @NipseyHussle https://genius.com/Nipsey-hussle-victory-lap-lyrics\",\"transcriptionPriority\":\"normal\",\"trackingPaths\":{\"concurrent\":\"/Nipsey-hussle-victory-lap-lyrics\",\"aggregate\":\"/Nipsey-hussle-victory-lap-lyrics\"},\"trackingData\":[{\"value\":3510797,\"key\":\"Song ID\"},{\"value\":\"Victory Lap\",\"key\":\"Title\"},{\"value\":\"Nipsey Hussle\",\"key\":\"Primary Artist\"},{\"value\":1263,\"key\":\"Primary Artist ID\"},{\"value\":\"Victory Lap\",\"key\":\"Primary Album\"},{\"value\":78280,\"key\":\"Primary Album ID\"},{\"value\":\"rap\",\"key\":\"Tag\"},{\"value\":\"rap\",\"key\":\"Primary Tag\"},{\"value\":1434,\"key\":\"Primary Tag ID\"},{\"value\":true,\"key\":\"Music?\"},{\"value\":\"Song\",\"key\":\"Annotatable Type\"},{\"value\":3510797,\"key\":\"Annotatable ID\"},{\"value\":false,\"key\":\"featured_video\"},{\"value\":[],\"key\":\"cohort_ids\"},{\"value\":false,\"key\":\"has_verified_callout\"},{\"value\":true,\"key\":\"has_featured_annotation\"},{\"value\":\"2018-02-09T16:03:05Z\",\"key\":\"created_at\"},{\"value\":\"2018-02-01\",\"key\":\"created_month\"},{\"value\":2018,\"key\":\"created_year\"},{\"value\":\"D\",\"key\":\"song_tier\"},{\"value\":true,\"key\":\"Has Recirculated Articles\"},{\"value\":\"en\",\"key\":\"Lyrics Language\"},{\"value\":true,\"key\":\"Has Apple Match\"},{\"value\":\"2018-02-16\",\"key\":\"Release Date\"},{\"value\":3,\"key\":\"NRM Tier\"},{\"value\":\"2000-01-01\",\"key\":\"NRM Target Date\"},{\"value\":true,\"key\":\"Has Description\"},{\"value\":true,\"key\":\"Has Youtube URL\"},{\"value\":false,\"key\":\"Has Translation Q&A\"},{\"value\":42,\"key\":\"Comment Count\"},{\"value\":false,\"key\":\"hot\"},{\"value\":true,\"key\":\"has_recommendations\"},{\"value\":false,\"key\":\"has_stubhub_artist\"},{\"value\":false,\"key\":\"has_stubhub_link\"},{\"value\":false,\"key\":\"Translation\"},{\"value\":\"mixpanel\",\"key\":\"recommendation_strategy\"},{\"value\":\"control\",\"key\":\"web_interstitial_variant\"},{\"value\":\"desktop_react\",\"key\":\"platform_variant\"}],\"titleWithFeatured\":\"Victory Lap (Ft. Stacy Barthe)\",\"stats\":{\"pageviews\":441168,\"hot\":false,\"verifiedAnnotations\":0,\"unreviewedAnnotations\":10,\"transcribers\":7,\"iqEarners\":106,\"contributors\":107,\"acceptedAnnotations\":14},\"spotifyUuid\":null,\"soundcloudUrl\":null,\"songArtImageUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg\",\"songArtImageThumbnailUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.300x300x1.jpg\",\"shareUrl\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics\",\"releaseDateWithAbbreviatedMonthForDisplay\":\"Feb. 16, 2018\",\"releaseDateForDisplay\":\"February 16, 2018\",\"releaseDateComponents\":{\"day\":16,\"month\":2,\"year\":2018},\"releaseDate\":\"2018-02-16\",\"relationshipsIndexUrl\":\"https://genius.com/Nipsey-hussle-victory-lap-sample\",\"recordingLocation\":\"Marathon Studios (Burbank, CA)\",\"pyongsCount\":34,\"pusherChannel\":\"song-3510797\",\"published\":false,\"pendingLyricsEditsCount\":0,\"metadataFieldsNa\":{\"songMeaning\":false,\"albums\":false},\"lyricsVerified\":false,\"lyricsUpdatedAt\":1702342274,\"lyricsPlaceholderReason\":null,\"lyricsOwnerId\":1849231,\"language\":\"en\",\"isMusic\":true,\"instrumental\":false,\"hidden\":false,\"headerImageUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg\",\"headerImageThumbnailUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.300x300x1.jpg\",\"hasInstagramReelAnnotations\":null,\"fullTitle\":\"Victory Lap by Nipsey Hussle (Ft. Stacy Barthe)\",\"featuredVideo\":false,\"facebookShareMessageWithoutUrl\":\"Nipsey Hussle – Victory Lap\",\"explicit\":true,\"embedContent\":\"<div id=\'rg_embed_link_3510797\' class=\'rg_embed_link\' data-song-id=\'3510797\'>Read <a href=\'https://genius.com/Nipsey-hussle-victory-lap-lyrics\'>“Victory Lap” by Nipsey Hussle<\/a> on Genius<\/div> <script crossorigin src=\'//genius.com/songs/3510797/embed.js\'><\/script>\",\"descriptionPreview\":\"“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Victory Lap. On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.\\n\\nThe Stacy Barthe sung chorus interpolates the Arctic Monkeys\' 2013 song “Knee Socks” and references the movie Mean Streets.\",\"description\":{\"markdown\":\"\\\"Victory Lap\\\" serves as both the titular track and intro song on Nipsey Hussle\'s debut album, [<i>Victory Lap<\/i>](https://genius.com/artists/Nipsey-hussle). On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.\\n\\nThe [Stacy Barthe](https://genius.com/artists/Stacy-barthe) sung chorus interpolates the [Arctic Monkeys\'](/artists/Arctic-monkeys) 2013 song [\\\"Knee Socks\\\"](https://genius.com/Arctic-monkeys-knee-socks-lyrics) and references the movie [*Mean Streets*](https://www.imdb.com/title/tt0070379/).\",\"html\":\"<p>“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, <a href=\\\"https://genius.com/artists/Nipsey-hussle\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/1263\\\"><i>Victory Lap<\/i><\/a>. On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.<\/p>\\n\\n<p>The <a href=\\\"https://genius.com/artists/Stacy-barthe\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/13401\\\">Stacy Barthe<\/a> sung chorus interpolates the <a href=\\\"https://genius.com/artists/Arctic-monkeys\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/12297\\\">Arctic Monkeys\'<\/a> 2013 song <a href=\\\"https://genius.com/Arctic-monkeys-knee-socks-lyrics\\\" rel=\\\"noopener\\\" data-api_path=\\\"/songs/213246\\\">“Knee Socks”<\/a> and references the movie <a href=\\\"https://www.imdb.com/title/tt0070379/\\\" rel=\\\"noopener nofollow\\\"><em>Mean Streets<\/em><\/a>.<\/p>\"},\"customSongArtImageUrl\":null,\"customHeaderImageUrl\":null,\"commentCount\":42,\"artistNames\":\"Nipsey Hussle (Ft. Stacy Barthe)\",\"appleMusicPlayerUrl\":\"https://genius.com/songs/3510797/apple_music_player\",\"appleMusicId\":\"1316706678\",\"annotationCount\":25},\"3510798\":{\"url\":\"https://genius.com/Nipsey-hussle-young-nigga-lyrics\",\"title\":\"Young Nigga\",\"path\":\"/Nipsey-hussle-young-nigga-lyrics\",\"lyricsState\":\"complete\",\"id\":3510798,\"apiPath\":\"/songs/3510798\",\"type\":\"song\"},\"3510799\":{\"url\":\"https://genius.com/Nipsey-hussle-dedication-lyrics\",\"title\":\"Dedication\",\"path\":\"/Nipsey-hussle-dedication-lyrics\",\"lyricsState\":\"complete\",\"id\":3510799,\"apiPath\":\"/songs/3510799\",\"type\":\"song\"},\"3510800\":{\"url\":\"https://genius.com/Nipsey-hussle-blue-laces-2-lyrics\",\"title\":\"Blue Laces 2\",\"path\":\"/Nipsey-hussle-blue-laces-2-lyrics\",\"lyricsState\":\"complete\",\"id\":3510800,\"apiPath\":\"/songs/3510800\",\"type\":\"song\"},\"3510801\":{\"url\":\"https://genius.com/Nipsey-hussle-hussle-and-motivate-lyrics\",\"title\":\"Hussle & Motivate\",\"path\":\"/Nipsey-hussle-hussle-and-motivate-lyrics\",\"lyricsState\":\"complete\",\"id\":3510801,\"apiPath\":\"/songs/3510801\",\"type\":\"song\"},\"3510802\":{\"url\":\"https://genius.com/Nipsey-hussle-status-symbol-3-lyrics\",\"title\":\"Status Symbol 3\",\"path\":\"/Nipsey-hussle-status-symbol-3-lyrics\",\"lyricsState\":\"complete\",\"id\":3510802,\"apiPath\":\"/songs/3510802\",\"type\":\"song\"},\"3510803\":{\"url\":\"https://genius.com/Nipsey-hussle-succa-proof-lyrics\",\"title\":\"Succa Proof\",\"path\":\"/Nipsey-hussle-succa-proof-lyrics\",\"lyricsState\":\"complete\",\"id\":3510803,\"apiPath\":\"/songs/3510803\",\"type\":\"song\"},\"3510804\":{\"url\":\"https://genius.com/Nipsey-hussle-keyz-2-the-city-2-lyrics\",\"title\":\"Keyz 2 the City 2\",\"path\":\"/Nipsey-hussle-keyz-2-the-city-2-lyrics\",\"lyricsState\":\"complete\",\"id\":3510804,\"apiPath\":\"/songs/3510804\",\"type\":\"song\"},\"3510806\":{\"url\":\"https://genius.com/Nipsey-hussle-million-while-you-young-lyrics\",\"title\":\"Million While You Young\",\"path\":\"/Nipsey-hussle-million-while-you-young-lyrics\",\"lyricsState\":\"complete\",\"id\":3510806,\"apiPath\":\"/songs/3510806\",\"type\":\"song\"},\"3510807\":{\"url\":\"https://genius.com/Nipsey-hussle-loaded-bases-lyrics\",\"title\":\"Loaded Bases\",\"path\":\"/Nipsey-hussle-loaded-bases-lyrics\",\"lyricsState\":\"complete\",\"id\":3510807,\"apiPath\":\"/songs/3510807\",\"type\":\"song\"},\"3510808\":{\"url\":\"https://genius.com/Nipsey-hussle-real-big-lyrics\",\"title\":\"Real Big\",\"path\":\"/Nipsey-hussle-real-big-lyrics\",\"lyricsState\":\"complete\",\"id\":3510808,\"apiPath\":\"/songs/3510808\",\"type\":\"song\"},\"3510809\":{\"url\":\"https://genius.com/Nipsey-hussle-right-hand-2-god-lyrics\",\"title\":\"Right Hand 2 God\",\"path\":\"/Nipsey-hussle-right-hand-2-god-lyrics\",\"lyricsState\":\"complete\",\"id\":3510809,\"apiPath\":\"/songs/3510809\",\"type\":\"song\"},\"3525281\":{\"url\":\"https://genius.com/Nipsey-hussle-double-up-lyrics\",\"title\":\"Double Up\",\"path\":\"/Nipsey-hussle-double-up-lyrics\",\"lyricsState\":\"complete\",\"id\":3525281,\"apiPath\":\"/songs/3525281\",\"type\":\"song\"}},\"albumAppearances\":{\"3014837\":{\"song\":3014837,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":11,\"type\":\"album_appearance\"},\"3207981\":{\"song\":3207981,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":2,\"type\":\"album_appearance\"},\"3387726\":{\"song\":3387726,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":3,\"type\":\"album_appearance\"},\"3510797\":{\"song\":3510797,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":1,\"type\":\"album_appearance\"},\"3510798\":{\"song\":3510798,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":4,\"type\":\"album_appearance\"},\"3510799\":{\"song\":3510799,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":5,\"type\":\"album_appearance\"},\"3510800\":{\"song\":3510800,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":6,\"type\":\"album_appearance\"},\"3510801\":{\"song\":3510801,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":7,\"type\":\"album_appearance\"},\"3510802\":{\"song\":3510802,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":8,\"type\":\"album_appearance\"},\"3510803\":{\"song\":3510803,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":9,\"type\":\"album_appearance\"},\"3510804\":{\"song\":3510804,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":10,\"type\":\"album_appearance\"},\"3510806\":{\"song\":3510806,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":12,\"type\":\"album_appearance\"},\"3510807\":{\"song\":3510807,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":13,\"type\":\"album_appearance\"},\"3510808\":{\"song\":3510808,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":14,\"type\":\"album_appearance\"},\"3510809\":{\"song\":3510809,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":16,\"type\":\"album_appearance\"},\"3525281\":{\"song\":3525281,\"currentUserMetadata\":{\"excludedPermissions\":[],\"permissions\":[\"view_song\"]},\"number\":15,\"type\":\"album_appearance\"}},\"albums\":{\"78280\":{\"tracklist\":[3510797,3207981,3387726,3510798,3510799,3510800,3510801,3510802,3510803,3510804,3014837,3510806,3510807,3510808,3525281,3510809],\"artist\":1263,\"url\":\"https://genius.com/albums/Nipsey-hussle/Victory-lap\",\"releaseDateForDisplay\":\"February 16, 2018\",\"releaseDateComponents\":{\"day\":16,\"month\":2,\"year\":2018},\"nameWithArtist\":\"Victory Lap (artist: Nipsey Hussle)\",\"name\":\"Victory Lap\",\"id\":78280,\"fullTitle\":\"Victory Lap by Nipsey Hussle\",\"coverArtUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg\",\"coverArtThumbnailUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.300x300x1.jpg\",\"apiPath\":\"/albums/78280\",\"type\":\"album\"}},\"users\":{\"54639\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/WriteNProppa\",\"roleForDisplay\":\"staff\",\"name\":\"WriteNProppa\",\"login\":\"WriteNProppa\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":3216726,\"id\":54639,\"humanReadableRoleForDisplay\":\"Staff\",\"headerImageUrl\":\"https://images.genius.com/avatars/medium/a552d37ef4dfc8c4ba1e4aba7f8d122d\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/a552d37ef4dfc8c4ba1e4aba7f8d122d\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/a552d37ef4dfc8c4ba1e4aba7f8d122d\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/a552d37ef4dfc8c4ba1e4aba7f8d122d\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/a552d37ef4dfc8c4ba1e4aba7f8d122d\"}},\"apiPath\":\"/users/54639\",\"aboutMeSummary\":\"I transcribe music.\\n\\nThe most popular songs I’ve transcribed on Genius.\\n\\nFirst activity on Genius: December 5, 2011.\\n\\nMade Editor by FanaHOVA on May 18, 2014.\\n\\nMade Moderator by streetlights on August 5, 2015.\\n\\nMade Staff by empath on November 8, 2018.\",\"type\":\"user\"},\"3499648\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/AlexanderJamesM\",\"roleForDisplay\":\"editor\",\"name\":\"AlexanderJamesM\",\"login\":\"AlexanderJamesM\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":1618130,\"id\":3499648,\"humanReadableRoleForDisplay\":\"Editor\",\"headerImageUrl\":\"https://images.genius.com/e2ed622a063794b85e7e4ed340975df3.1000x750x1.jpg\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/837849de0aff27899074a268354f6b6f.1000x1000x1.jpg\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/837849de0aff27899074a268354f6b6f.1000x1000x1.jpg\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/837849de0aff27899074a268354f6b6f.1000x1000x1.jpg\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/837849de0aff27899074a268354f6b6f.1000x1000x1.jpg\"}},\"apiPath\":\"/users/3499648\",\"aboutMeSummary\":\"Hey, my name is Alexander, but you can call me Alex! I’m 33 years old, born on July 8, 1990. My favorite type of music is pop, but I also enjoy rock, country, dance, and a little bit of rap as well.\\n\\nTo track or following my music plays, make sure to check out my official Last.fm page!\\n\\nI became a member on Genius in 2016, but officially became active in 2017. The same year in 2017, I was given the role as Editor by EwokABdevito.\\n\\nMost of my work on here consists of song transcriptions, metadata, and album bios throughout Genius!\\n\\nI reached the one million Genius IQ mark on July 5, 2021.\\n\\nAccomplishments\\n#1 in Pop genre for the weeks of:\\n(July 24, 2021)\\n(August 7, 2021)\\n(August 23, 2021)\\n\\n#1 Dance-Pop Scholar of All Time\\n#2 Country-Pop Scholar of All Time\\n#2 Remix Scholar of All Time\\n#4 Dance Scholar of All Time\\n#6 Pop Scholar of All Time\\n#6 Country Scholar of All Time\\n\\nTop 10 Scholar Accomplishments\\n#1 Lady Gaga Scholar\\n#1 Ashlee Simpson Scholar\\n#1 Madonna Scholar\\n#1 Maroon 5 Scholar\\n#1 Kelly Clarkson Scholar\\n#1 Katy Perry Scholar\\n#1 Jennifer Lopez Scholar\\n#5 Rihanna Scholar\",\"type\":\"user\"},\"4117133\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/xMERLYN\",\"roleForDisplay\":\"editor\",\"name\":\"MERLYN\",\"login\":\"xMERLYN\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":193769,\"id\":4117133,\"humanReadableRoleForDisplay\":\"Editor\",\"headerImageUrl\":\"https://images.genius.com/2c7deb606042ff6cf124606741d2e5af.1000x369x1.png\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/a21350eafef014d91742e737824a7f57\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/a21350eafef014d91742e737824a7f57\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/a21350eafef014d91742e737824a7f57\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/a21350eafef014d91742e737824a7f57\"}},\"apiPath\":\"/users/4117133\",\"aboutMeSummary\":\"\",\"type\":\"user\"},\"4903064\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/totbthepodcast\",\"roleForDisplay\":\"editor\",\"name\":\"totbthepodcast\",\"login\":\"totbthepodcast\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":2543,\"id\":4903064,\"humanReadableRoleForDisplay\":\"Editor\",\"headerImageUrl\":\"https://filepicker-images.genius.com/Hh5WOyBDStiZpTaMwu74_TOTB%20Logo.png\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://pbs.twimg.com/profile_images/622987583019196416/1QKxY_Dz.jpg\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://pbs.twimg.com/profile_images/622987583019196416/1QKxY_Dz.jpg\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://pbs.twimg.com/profile_images/622987583019196416/1QKxY_Dz.jpg\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://pbs.twimg.com/profile_images/622987583019196416/1QKxY_Dz.jpg\"}},\"apiPath\":\"/users/4903064\",\"aboutMeSummary\":\"Thinking Outside The Boombox is a podcast dedicated to exploring what’s going on in hip-hop & R&B. On iTunes! Website: https://t.co/8pb1vWKCEJ\",\"type\":\"user\"},\"8117646\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/TrappaChiNo\",\"roleForDisplay\":\"contributor\",\"name\":\"TrappaChiNo\",\"login\":\"TrappaChiNo\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":493404,\"id\":8117646,\"humanReadableRoleForDisplay\":\"Contributor\",\"headerImageUrl\":\"https://images.genius.com/7367f5ae5b4de0f05a6ee48cc22833b7.1000x1000x8.gif\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/b82391d26056f643e1ca6a70231d79a8\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/b82391d26056f643e1ca6a70231d79a8\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/b82391d26056f643e1ca6a70231d79a8\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/b82391d26056f643e1ca6a70231d79a8\"}},\"apiPath\":\"/users/8117646\",\"aboutMeSummary\":\"Trying to figure out my next move\\n\\n-EwokABdevito\",\"type\":\"user\"},\"9719196\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/JeremyDjSkeezySelph\",\"roleForDisplay\":null,\"name\":\"JeremyDjSkeezySelph\",\"login\":\"JeremyDjSkeezySelph\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":108,\"id\":9719196,\"humanReadableRoleForDisplay\":null,\"headerImageUrl\":\"https://images.genius.com/avatars/medium/5a5cd698a94fcacdd678637573049756\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/5a5cd698a94fcacdd678637573049756\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/5a5cd698a94fcacdd678637573049756\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/5a5cd698a94fcacdd678637573049756\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/5a5cd698a94fcacdd678637573049756\"}},\"apiPath\":\"/users/9719196\",\"aboutMeSummary\":\"Tupac Thug Theory YouTube Music Channel Creator. Jeremy DjSkeezy Selph Music Producer and CEO of Makaveli City Records\",\"type\":\"user\"},\"9856377\":{\"currentUserMetadata\":{\"interactions\":{\"following\":false},\"excludedPermissions\":[\"follow\"],\"permissions\":[]},\"url\":\"https://genius.com/JuroesAKAGeniusGod\",\"roleForDisplay\":\"transcriber\",\"name\":\"JurõesAKAGeniusGod\",\"login\":\"JuroesAKAGeniusGod\",\"isVerified\":false,\"isMemeVerified\":false,\"iq\":383875,\"id\":9856377,\"humanReadableRoleForDisplay\":\"Transcriber\",\"headerImageUrl\":\"https://images.genius.com/avatars/medium/2d74604f77f450a41631bb4177420d64\",\"avatar\":{\"medium\":{\"boundingBox\":{\"height\":400,\"width\":300},\"url\":\"https://images.genius.com/avatars/medium/2d74604f77f450a41631bb4177420d64\"},\"small\":{\"boundingBox\":{\"height\":100,\"width\":100},\"url\":\"https://images.genius.com/avatars/small/2d74604f77f450a41631bb4177420d64\"},\"thumb\":{\"boundingBox\":{\"height\":32,\"width\":32},\"url\":\"https://images.genius.com/avatars/thumb/2d74604f77f450a41631bb4177420d64\"},\"tiny\":{\"boundingBox\":{\"height\":16,\"width\":16},\"url\":\"https://images.genius.com/avatars/tiny/2d74604f77f450a41631bb4177420d64\"}},\"apiPath\":\"/users/9856377\",\"aboutMeSummary\":\"🇺🇸\\nWho Am I And What I do Here?\\n\\nHey, people, I’m a small-time transcriber in Genius. I like to annotate, scribe and try to correct songs\' lyrics here, same with metadata of songs. I also like to pyong songs, especially the ones that I scribe. Mentored and made Transcriber by CG7777. If you have any question about something I did here or need help with anything or just want to talk to me, send me a message. My native language is Portuguese.\\n\\n\\n\\nMusic Taste\\n\\nI almost like every type of music, but rap/trap is my favorite genre.\\n\\nTen Fav Rappers\\n1. Young Thug\\n2. Lil Wayne\\n3. Roddy Ricch\\n4. XXXTENTACION (R.I.P.)\\n5. NLE Choppa\\n6. Lil Baby\\n7. Juice WRLD (R.I.P.)\\n8. Quando Rondo (He was my 8 fav rapper even before the whole King Von beef, I also like King Von’s music a lot and I still like Quando, I ain’t got nothing to do with their beef TBH, R.I.P. to my fav drill rapper)\\n9. Gucci Mane\\n10. Lil Uzi Vert\\n\\nFav Producer\\nMetro Boomin\\n\\nProjects With No Skips\\n556zoo – Fish Fry Vibes\\n556zoo – Scoring Leader – EP\\n556zoo – ZooTober\\nBabyface Ray – Summer’s Mine\\nDDG – Maybe It’s Me…\\nGetRichZay – Ard Come On\\nGetRichZay – Pilot St – EP\\nGucci Mane & B.G. – Choppers & Bricks\\nLi Rye – Go Li Rye, Pt. 3\\nLil Tjay – 222\\nLil Uzi Vert – Eternal Atake (Deluxe) – LUV vs. The World 2\\nNLE Choppa – Cottonwood (Deluxe)\\nPop Smoke (R.I.P) – Meet The Woo 2 (Deluxe)\\nPost Malone – AUSTIN (Bonus)\\nTravis Scott – UTOPIA\\nYBT – The Rich Target\\nYoung Thug – BUSINESS IS BUSINESS (Metro’s Version)\\nYoung Thug – Slime Season 3\\n\\n\\n\\nAchievements\\n\\nMy IQ Milestones\\n1 – 5000 (Nov. 5, 2020)\\n2 – 10000 (Jan. 9, 2021)\\n3 – 15000 (Mar. 5, 2021)\\n4 – 20000 (Apr. 4, 2021)\\n5 – 25000 (May 6, 2021)\\n6 – 30000 (Jun. 7, 2021)\\n7 – 40000 (Jul. 7, 2021)\\n8 – 50000 (Sep. 3, 2021)\\n9 – 75000 (Nov. 12, 2021)\\n10 – 100000 (Dec. 10, 2021)\\n\\nMaximum IQ in one day only\\n2403\\n\\n\\n\\n🇧🇷\\nQuem Eu Sou E O Que Faço Aqui?\\nOi, galera, sou um transcritor aqui há um pequeno tempo. Eu gosto de anotar, escrever e tentar corrigir letras de músicas aqui, o mesmo vale para metadata de músicas. Eu também gosto de dar pyong em músicas, especificamente as que eu transcrevo. CG7777 foi meu mentor e me tornou um Transcritor. Se você tem alguma questão sobre algo que fiz aqui, precisa de ajuda com algo ou somente quer falar comigo, me mande uma mensagem.\\n\\n\\n\\nGosto Musical\\n\\nGosto quase de todo estilo musical, mas meu genêro favorito é rap/trap.\\n\\nDez Rappers Favoritos \\n1. Klyn\\n2. Duzz\\n3. Big Rush\\n4. Raffa Moreira\\n5. Sueth\\n6. Sidoka\\n7. THE BOY\\n8. Felp 22\\n9. Orochi\\n10. MHRAP\\n\\nProdutor Favorito \\nWillsBife\\n\\nProjetos Sem Músicas Ruins\\nBig Bllakk – ERREJOTACULTDRILL Vol. 2 – Esquema Novo\\nBig Rush – Eu Encontrei Com Satã e Enfiei a Porrada Nele\\nChefin – O Mais Novo Romântico\\nLeozin & Dudu – Jordan Boy\'z\\nMC Hariel – Guerra\\nMC Kevin – O Menino Ainda Encanta a Quebrada\\nRaffa Moreira – BC Raff Album\\nRyu, the Runner – EVDC (Deluxe)\\nUCLÃ – Vida de Farsa\\nUCLÃ – Caribe\\n\\n\\n\\nConquistas\\n\\nMeus Marcos de IQ\\n1 – 5000 (Nov. 5, 2020)\\n2 – 10000 (Jan. 9, 2021)\\n3 – 15000 (Mar. 5, 2021)\\n4 – 20000 (Abr. 4, 2021)\\n5 – 25000 (Mai. 6, 2021)\\n6 – 30000 (Jun. 7, 2021)\\n7 – 40000 (Jul. 7, 2021)\\n8 – 50000 (Set. 3, 2021)\\n9 – 75000 (Nov. 12, 2021)\\n10 – 100000 (Dez. 10, 2021)\\n\\nMáximo de IQ apenas num dia\\n2403\",\"type\":\"user\"}},\"comments\":{\"7344084\":{\"reason\":null,\"author\":9719196,\"anonymousAuthor\":null,\"currentUserMetadata\":{\"interactions\":{\"vote\":null},\"excludedPermissions\":[\"vote\",\"accept\",\"reject\",\"mark_spam\",\"integrate\",\"archive\",\"destroy\"],\"permissions\":[]},\"votesTotal\":1,\"pinnedRole\":null,\"id\":7344084,\"hasVoters\":true,\"createdAt\":1573398321,\"commentableType\":\"Annotation\",\"commentableId\":14168169,\"body\":{\"markdown\":\"DjSkeezy Mixtape Bullets Ain\'t got No Name featuring Nipsey Hussel\",\"html\":\"<p>DjSkeezy Mixtape Bullets Ain’t got No Name featuring Nipsey Hussel<\/p>\"},\"apiPath\":\"/comments/7344084\",\"type\":\"comment\"}},\"annotations\":{\"14168169\":{\"verifiedBy\":null,\"topComment\":7344084,\"rejectionComment\":null,\"createdBy\":8117646,\"cosignedBy\":[],\"authors\":[{\"user\":8117646,\"pinnedRole\":null,\"attribution\":0.896551724137931,\"type\":\"user_attribution\"},{\"user\":4117133,\"pinnedRole\":null,\"attribution\":0.10344827586206896,\"type\":\"user_attribution\"}],\"acceptedBy\":3499648,\"currentUserMetadata\":{\"iqByAction\":{},\"interactions\":{\"vote\":null,\"pyong\":false,\"cosign\":false},\"excludedPermissions\":[\"vote\",\"edit\",\"cosign\",\"uncosign\",\"destroy\",\"accept\",\"reject\",\"see_unreviewed\",\"clear_votes\",\"propose_edit_to\",\"pin_to_profile\",\"unpin_from_profile\",\"update_source\",\"edit_custom_preview\",\"create_comment\"],\"permissions\":[]},\"votesTotal\":60,\"verified\":false,\"url\":\"https://genius.com/14168169/Nipsey-hussle-victory-lap/Victory-lap\",\"twitterShareMessage\":\"““Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Victory La…” —@Genius\",\"state\":\"accepted\",\"source\":null,\"shareUrl\":\"https://genius.com/14168169\",\"referentId\":14168169,\"pyongsCount\":null,\"proposedEditCount\":0,\"pinned\":false,\"needsExegesis\":false,\"id\":14168169,\"hasVoters\":true,\"embedContent\":\"<blockquote class=\'rg_standalone_container\' data-src=\'//genius.com/annotations/14168169/standalone_embed\'><a href=\'https://genius.com/14168169/Nipsey-hussle-victory-lap/Victory-lap\'>Victory Lap<\/a><br><a href=\'https://genius.com/Nipsey-hussle-victory-lap-lyrics\'>― Nipsey Hussle (Ft. Stacy Barthe) – Victory Lap<\/a><\/blockquote><script async crossorigin src=\'//genius.com/annotations/load_standalone_embeds.js\'><\/script>\",\"deleted\":false,\"customPreview\":null,\"createdAt\":1554166534,\"community\":true,\"commentCount\":1,\"body\":{\"markdown\":\"\\\"Victory Lap\\\" serves as both the titular track and intro song on Nipsey Hussle\'s debut album, [<i>Victory Lap<\/i>](https://genius.com/artists/Nipsey-hussle). On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.\\n\\nThe [Stacy Barthe](https://genius.com/artists/Stacy-barthe) sung chorus interpolates the [Arctic Monkeys\'](/artists/Arctic-monkeys) 2013 song [\\\"Knee Socks\\\"](https://genius.com/Arctic-monkeys-knee-socks-lyrics) and references the movie [*Mean Streets*](https://www.imdb.com/title/tt0070379/).\",\"html\":\"<p>“Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, <a href=\\\"https://genius.com/artists/Nipsey-hussle\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/1263\\\"><i>Victory Lap<\/i><\/a>. On the track, Hussle boasts about his abilities; from rapping to firing weapons, while also reflecting on his journey to fame.<\/p>\\n\\n<p>The <a href=\\\"https://genius.com/artists/Stacy-barthe\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/13401\\\">Stacy Barthe<\/a> sung chorus interpolates the <a href=\\\"https://genius.com/artists/Arctic-monkeys\\\" rel=\\\"noopener\\\" data-api_path=\\\"/artists/12297\\\">Arctic Monkeys\'<\/a> 2013 song <a href=\\\"https://genius.com/Arctic-monkeys-knee-socks-lyrics\\\" rel=\\\"noopener\\\" data-api_path=\\\"/songs/213246\\\">“Knee Socks”<\/a> and references the movie <a href=\\\"https://www.imdb.com/title/tt0070379/\\\" rel=\\\"noopener nofollow\\\"><em>Mean Streets<\/em><\/a>.<\/p>\"},\"beingCreated\":false,\"apiPath\":\"/annotations/14168169\",\"type\":\"annotation\"}},\"referents\":{\"14014002\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":14014002},\"14014550\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":14014550},\"14023195\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":14023195},\"14168169\":{\"annotations\":[14168169],\"annotatable\":{\"url\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics\",\"type\":\"song\",\"title\":\"Victory Lap\",\"linkTitle\":\"Victory Lap by Nipsey Hussle (Ft. Stacy Barthe)\",\"imageUrl\":\"https://images.genius.com/3fb1d47db45b6a1952eb93a6abae7c3b.1000x1000x1.jpg\",\"id\":3510797,\"context\":\"Nipsey Hussle\",\"clientTimestamps\":{\"lyricsUpdatedAt\":1702342274,\"updatedByHumanAt\":1707481592},\"apiPath\":\"/songs/3510797\"},\"twitterShareMessage\":\"““Victory Lap” serves as both the titular track and intro song on Nipsey Hussle’s debut album, Vi…” —@Genius\",\"trackingPaths\":{\"concurrent\":\"/Nipsey-hussle-victory-lap-lyrics\",\"aggregate\":\"/14168169/Nipsey-hussle-victory-lap/Victory-lap\"},\"currentUserMetadata\":{\"relationships\":{},\"excludedPermissions\":[\"add_pinned_annotation_to\",\"add_community_annotation_to\"],\"permissions\":[]},\"verifiedAnnotatorIds\":[],\"url\":\"https://genius.com/14168169/Nipsey-hussle-victory-lap/Victory-lap\",\"songId\":3510797,\"range\":{\"content\":\"Victory Lap\"},\"path\":\"/14168169/Nipsey-hussle-victory-lap/Victory-lap\",\"isImage\":false,\"isDescription\":true,\"iosAppUrl\":\"genius://referents/14168169\",\"id\":14168169,\"fragment\":\"Victory Lap\",\"classification\":\"accepted\",\"apiPath\":\"/referents/14168169\",\"annotatorLogin\":\"TrappaChiNo\",\"annotatorId\":8117646,\"type\":\"referent\"},\"14368766\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":14368766},\"14558900\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":14558900},\"16043169\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16043169},\"16336404\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16336404},\"16845567\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16845567},\"16848700\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16848700},\"16852982\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16852982},\"16856233\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16856233},\"16919385\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16919385},\"16975760\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16975760},\"16975867\":{\"classification\":\"accepted\",\"editorialState\":\"accepted\",\"id\":16975867},\"17168943\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":17168943},\"17195991\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":17195991},\"17822769\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":17822769},\"18387974\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":18387974},\"20645366\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":20645366},\"20984448\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":20984448},\"21793318\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":21793318},\"28499064\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":28499064},\"29497188\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":29497188},\"30319432\":{\"classification\":\"unreviewed\",\"editorialState\":\"pending\",\"id\":30319432}},\"answers\":{\"96310\":{\"authors\":[{\"user\":4903064,\"pinnedRole\":null,\"attribution\":1,\"type\":\"user_attribution\"}],\"answerSource\":null,\"currentUserMetadata\":{\"interactions\":{\"vote\":null},\"excludedPermissions\":[\"vote\",\"edit\",\"destroy\"],\"permissions\":[]},\"votesTotal\":10,\"id\":96310,\"hasVoters\":true,\"editorialState\":\"normal\",\"createdAt\":1519056548,\"bodyForEdit\":\"Nipsey to [*NPR*](https://www.npr.org/sections/allsongs/2018/02/16/586361873/nipsey-hussle-tells-the-epic-stories-behind-victory-lap-track-by-track):\\n\\n> *\\\"I\'m a urban legend / South Central in a certain section / Can\'t explain how I curbed detectives, guess it\'s / Evidence of a divine presence.\\\"*\\n\\n> If you check the stats — the murder rates and incarceration rates in the years I was a teenager in L.A. — in my section of the Crenshaw District in the Rollin\' 60s, none of my peers survived. None of my peers avoided prison. None of \'em. Everybody got bullet wounds and felonies and strikes. So to make it out mentally stable and not in prison and not on drugs, that\'s a win. That\'s a victory in itself. Then to be in the position I find myself in as an artist and entrepreneur who has respect around the world; that\'s legendary. And I say it in the most humble way. That\'s what I was talking about in that line. When I reflect on it, it\'s unbelievable. It\'s gotta be evidence of a divine presence, because it wasn\'t that I\'m just the smartest dude or just wiggled my way through. It had to be a calling on my life and I started to see that.\",\"body\":{\"markdown\":\"Nipsey to [*NPR*](https://www.npr.org/sections/allsongs/2018/02/16/586361873/nipsey-hussle-tells-the-epic-stories-behind-victory-lap-track-by-track):\\n\\n> *\\\"I\'m a urban legend / South Central in a certain section / Can\'t explain how I curbed detectives, guess it\'s / Evidence of a divine presence.\\\"*\\n\\n> If you check the stats — the murder rates and incarceration rates in the years I was a teenager in L.A. — in my section of the Crenshaw District in the Rollin\' 60s, none of my peers survived. None of my peers avoided prison. None of \'em. Everybody got bullet wounds and felonies and strikes. So to make it out mentally stable and not in prison and not on drugs, that\'s a win. That\'s a victory in itself. Then to be in the position I find myself in as an artist and entrepreneur who has respect around the world; that\'s legendary. And I say it in the most humble way. That\'s what I was talking about in that line. When I reflect on it, it\'s unbelievable. It\'s gotta be evidence of a divine presence, because it wasn\'t that I\'m just the smartest dude or just wiggled my way through. It had to be a calling on my life and I started to see that.\",\"html\":\"<p>Nipsey to <a href=\\\"https://www.npr.org/sections/allsongs/2018/02/16/586361873/nipsey-hussle-tells-the-epic-stories-behind-victory-lap-track-by-track\\\" rel=\\\"noopener nofollow\\\"><em>NPR<\/em><\/a>:<\/p>\\n\\n<blockquote>\\n<p><em>“I’m a urban legend / South Central in a certain section / Can’t explain how I curbed detectives, guess it’s / Evidence of a divine presence.”<\/em><\/p>\\n\\n<p>If you check the stats — the murder rates and incarceration rates in the years I was a teenager in L.A. — in my section of the Crenshaw District in the Rollin\' 60s, none of my peers survived. None of my peers avoided prison. None of ‘em. Everybody got bullet wounds and felonies and strikes. So to make it out mentally stable and not in prison and not on drugs, that’s a win. That’s a victory in itself. Then to be in the position I find myself in as an artist and entrepreneur who has respect around the world; that’s legendary. And I say it in the most humble way. That’s what I was talking about in that line. When I reflect on it, it’s unbelievable. It’s gotta be evidence of a divine presence, because it wasn’t that I’m just the smartest dude or just wiggled my way through. It had to be a calling on my life and I started to see that.<\/p>\\n<\/blockquote>\"},\"type\":\"answer\"},\"677111\":{\"authors\":[{\"user\":9856377,\"pinnedRole\":null,\"attribution\":1,\"type\":\"user_attribution\"}],\"answerSource\":null,\"currentUserMetadata\":{\"interactions\":{\"vote\":null},\"excludedPermissions\":[\"vote\",\"edit\",\"destroy\"],\"permissions\":[]},\"votesTotal\":13,\"id\":677111,\"hasVoters\":true,\"editorialState\":\"normal\",\"createdAt\":1677875488,\"bodyForEdit\":\"On February 16, 2023, \\\"Victory Lap\\\" was [certified 2x multi-platinum](https://www.riaa.com/gold-platinum/?tab_active=default-award&ar=&ti=Victory+L&lab=&genre=&format=Album&date_option=release&from=&to=&award=&type=&category=&adv=SEARCH#search_section) by the RIAA.\",\"body\":{\"markdown\":\"On February 16, 2023, \\\"Victory Lap\\\" was [certified 2x multi-platinum](https://www.riaa.com/gold-platinum/?tab_active=default-award&ar=&ti=Victory+L&lab=&genre=&format=Album&date_option=release&from=&to=&award=&type=&category=&adv=SEARCH#search_section) by the RIAA.\",\"html\":\"<p>On February 16, 2023, “Victory Lap” was <a href=\\\"https://www.riaa.com/gold-platinum/?tab_active=default-award&ar=&ti=Victory+L&lab=&genre=&format=Album&date_option=release&from=&to=&award=&type=&category=&adv=SEARCH#search_section\\\" rel=\\\"noopener nofollow\\\">certified 2x multi-platinum<\/a> by the RIAA.<\/p>\"},\"type\":\"answer\"}},\"questions\":{\"230221\":{\"defaultQuestion\":{\"id\":\"artist_comment:song:3510797\",\"answerPrefix\":null},\"author\":4903064,\"answer\":96310,\"currentUserMetadata\":{\"interactions\":{\"vote\":null},\"iqByAction\":{},\"excludedPermissions\":[\"vote\",\"add_answer\",\"update_answer_source\",\"update\",\"archive\",\"pin\",\"unpin\",\"move\",\"moderate\",\"add_verified_answer\",\"view_qa_page\"],\"permissions\":[]},\"votesTotal\":0,\"url\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics/questions/230221\",\"state\":\"pinned\",\"pinOrder\":65536,\"id\":230221,\"hasVoters\":false,\"defaultKey\":\"artist_comment\",\"createdAt\":1519056548,\"contributorsCount\":1,\"body\":\"What did Nipsey Hussle say about \\\"Victory Lap\\\"?\",\"bagonUrl\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics/questions/230221\",\"type\":\"question\"},\"1069228\":{\"defaultQuestion\":null,\"author\":9856377,\"answer\":677111,\"currentUserMetadata\":{\"interactions\":{\"vote\":null},\"iqByAction\":{},\"excludedPermissions\":[\"vote\",\"add_answer\",\"update_answer_source\",\"update\",\"archive\",\"pin\",\"unpin\",\"move\",\"moderate\",\"add_verified_answer\",\"view_qa_page\"],\"permissions\":[]},\"votesTotal\":0,\"url\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics/questions/1069228\",\"state\":\"pinned\",\"pinOrder\":131072,\"id\":1069228,\"hasVoters\":false,\"defaultKey\":null,\"createdAt\":1677875485,\"contributorsCount\":1,\"body\":\"What certifications has this track received?\",\"bagonUrl\":\"https://genius.com/Nipsey-hussle-victory-lap-lyrics/questions/1069228\",\"type\":\"question\"}},\"questionAnswers\":{\"producer:song:3510797\":{\"question\":\"Who produced “Victory Lap” by Nipsey Hussle?\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics/q/producer\",\"id\":\"producer:song:3510797\",\"answer\":\"“<a href=\\\"/Nipsey-hussle-victory-lap-lyrics\\\">Victory Lap<\/a>” by <a href=\\\"/artists/Nipsey-hussle\\\">Nipsey Hussle<\/a> was produced by <a href=\\\"/artists/Mike-and-keys\\\">Mike & Keys<\/a>, <a href=\\\"/artists/Amaire-johnson\\\">Amaire Johnson<\/a> & <a href=\\\"/artists/Sap\\\">Sap<\/a>.\",\"type\":\"song_producer\"},\"release-date:song:3510797\":{\"question\":\"When did Nipsey Hussle release “Victory Lap”?\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics/q/release-date\",\"id\":\"release-date:song:3510797\",\"answer\":\"<a href=\\\"/artists/Nipsey-hussle\\\">Nipsey Hussle<\/a> released “<a href=\\\"/Nipsey-hussle-victory-lap-lyrics\\\">Victory Lap<\/a>” on February 16, 2018.\",\"type\":\"song_release_date\"},\"writer:song:3510797\":{\"question\":\"Who wrote “Victory Lap” by Nipsey Hussle?\",\"path\":\"/Nipsey-hussle-victory-lap-lyrics/q/writer\",\"id\":\"writer:song:3510797\",\"answer\":\"“<a href=\\\"/Nipsey-hussle-victory-lap-lyrics\\\">Victory Lap<\/a>” by <a href=\\\"/artists/Nipsey-hussle\\\">Nipsey Hussle<\/a> was written by <a href=\\\"/artists/Nipsey-hussle\\\">Nipsey Hussle<\/a>, <a href=\\\"/artists/Stacy-barthe\\\">Stacy Barthe<\/a>, <a href=\\\"/artists/Amaire-johnson\\\">Amaire Johnson<\/a>, <a href=\\\"/artists/Sap\\\">Sap<\/a> & <a href=\\\"/artists/Alex-turner\\\">Alex Turner<\/a>.\",\"type\":\"song_writer\"}}}}');
window.__APP_CONFIG__ = {"env":"production","api_root_url":"/api","microsite_label":"","microsite_url":"","transform_domain":"transform.genius.com","facebook_app_id":"265539304824","facebook_opengraph_api_version":"8.0","pusher_app_key":"6d893fcc6a0c695853ac","embedly_key":"fc778e44915911e088ae4040f9f86dcd","a9_pub_id":"3459","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":"https://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":"https://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":"https://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":"https://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"}],"comment_reasons_help_url":"https://genius.com/8846441/Genius-how-genius-works/More-on-annotations","filepicker_api_key":"Ar03MDs73TQm241ZgLwfjz","filepicker_policy":"eyJleHBpcnkiOjIzNTEwOTE1NTgsImNhbGwiOlsicGljayIsInJlYWQiLCJzdG9yZSIsInN0YXQiLCJjb252ZXJ0Il19","filepicker_signature":"68597b455e6c09bce0bfd73f758e299c95d49a5d5c8e808aaf4877da7801c4da","filepicker_s3_image_bucket":"filepicker-images-rapgenius","filepicker_cdn_domain":"filepicker-images.genius.com","available_roles":["moderator","mega_boss","in_house_staff","verified_artist","meme_artist","engineer","editor","educator","staff","whitehat","tech_liaison","mediator","transcriber"],"canonical_domain":"genius.com","enable_angular_debug":false,"fact_track_launch_article_url":"https://genius.com/a/genius-and-spotify-together","user_authority_roles":["moderator","editor","mediator","transcriber"],"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","unreviewed_annotation_tooltip_info_url":"https://genius.com/8846524/Genius-how-genius-works/More-on-editorial-review","community_policy_and_moderation_guidelines":"https://genius.com/Genius-community-policy-and-moderation-guidelines-annotated","video_placements":{"desktop_song_page":[{"name":"sidebar","min_relevance":"high","fringe_min_relevance":"low","max_videos":0},{"name":"sidebar_thumb","min_relevance":"medium","fringe_min_relevance":"low","max_videos":0},{"name":"recirculated","min_relevance":"low","max_videos":3}],"mobile_song_page":[{"name":"footer","min_relevance":"medium","max_videos":1},{"name":"recirculated","min_relevance":"low","max_videos":3}],"desktop_artist_page":[{"name":"sidebar","min_relevance":"medium","fringe_min_relevance":"low","max_videos":2}],"mobile_artist_page":[{"name":"carousel","min_relevance":"medium","fringe_min_relevance":"low","max_videos":5}],"amp_song_page":[{"name":"footer","min_relevance":"medium","max_videos":1}],"amp_video_page":[{"name":"related","min_relevance":"low","max_videos":8}],"desktop_video_page":[{"name":"series_related","min_relevance":"low","max_videos":8,"series":true},{"name":"related","min_relevance":"low","max_videos":8}],"desktop_article_page":[{"name":"carousel","min_relevance":"low","max_videos":5}],"mobile_article_page":[{"name":"carousel","min_relevance":"low","max_videos":5}],"desktop_album_page":[{"name":"sidebar","min_relevance":"medium","fringe_min_relevance":"low","max_videos":1}],"amp_album_page":[{"name":"carousel","min_relevance":"low","max_videos":5}]},"app_name":"rapgenius-cedar","vttp_parner_id":"719c82b0-266e-11e7-827d-7f7dc47f6bc0","default_cover_art_url":"https://assets.genius.com/images/default_cover_art.png?1713210365","sizies_base_url":"https://t2.genius.com/unsafe","max_line_item_event_count":10,"dmp_match_threshold":0.05,"ab_tests_version":"bac11b32611c0590f9d3f495de4950404741522b0118d03f5e3c086020602b10","external_song_match_purposes":["streaming_service_lyrics","streaming_service_player"],"release_version":"Production fef54bed","react_bugsnag_api_key":"a3ab84a89baa4ee509c9e3f71b9296e0","mixpanel_token":"77967c52dc38186cc1aadebdd19e2a82","mixpanel_enabled":true,"get_involved_page_url":"https://genius.com/Genius-getting-involved-with-genius-projects-annotated","solidarity_text":"","solidarity_url":"http://so.genius.com/aroYTdx","track_gdpr_banner_shown_event":true,"show_cmp_modal":true,"recaptcha_v3_site_key":"6LewuscaAAAAABNevDiTNPHrKCs8viRjfPnm6xc6","ga_web_vitals_sampling_percentage":"10","mixpanel_web_vitals_sampling_percentage":{"mobile":"5","desktop":"10"},"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"],"top_level_standalone_blocks":["img","hr"],"zendesk_ccpa_link":"https://support.genius.com/hc/en-us/requests/new","artist_promo_portal_launched":true,"transcriber_guide_url":"https://genius.com/25045402/Genius-what-is-a-transcriber/Mark-lyrics-complete","recommended_content_unit_enabled":true,"tmg_livestreams_index_public":false,"fingerprint_api_key":"dEe6R1Hyzg87t38keh0R","song_derivation_types":{"sample":{"upstream":"samples","downstream":"sampled_in","route_name":"samples"},"interpolation":{"upstream":"interpolates","downstream":"interpolated_by","route_name":"interpolations"},"cover":{"upstream":"cover_of","downstream":"covered_by","route_name":"covers"},"remix":{"upstream":"remix_of","downstream":"remixed_by","route_name":"remixes"},"live":{"upstream":"live_version_of","downstream":"performed_live_as","route_name":"live-versions"},"translation":{"upstream":"translation_of","downstream":"translations","route_name":"translations"}},"primis_demand_test_fraction":0.0,"outbrain_rollout_percentage":100,"stubhub_url_proxy":"https://stubhub-proxy.genius.com/stubhub","viagogo_url_proxy":"https://stubhub-proxy.genius.com/viagogo","stubhub_partnerize_url":"https://stubhub.prf.hn/click/camref:1100lqTK8","viagogo_partnerize_url":"https://viagogo.prf.hn/click/camref:1101l3DfTB","ga4_measurement_ids":["G-BJ6QSCFYD0","G-JRDWPGGXWW"],"brightcove_mobile_thumbnail_web_player_id":"SyGQSOxol","brightcove_modal_web_player_id":"S1LI5bh0","brightcove_song_story_web_player_id":"SkfSovRVf","brightcove_standard_web_player_id":"S1ZcmcOC1x","brightcove_standard_no_autoplay_web_player_id":"ByRtIUBvx","brightcove_sitemap_player_id":"BJfoOE1ol"};
window.__IQ_BY_EVENT_TYPE__ = {"accepted_a_lyrics_edit":3.0,"annotation_downvote_by_contrib":-1.0,"annotation_downvote_by_default":-1.0,"annotation_downvote_by_editor":-1.0,"annotation_downvote_by_high_iq_user":-1.0,"annotation_downvote_by_moderator":-1.0,"annotation_upvote_by_contrib":4.0,"annotation_upvote_by_default":2.0,"annotation_upvote_by_editor":6.0,"annotation_upvote_by_high_iq_user":4.0,"annotation_upvote_by_moderator":10.0,"answer_downvote_by_contrib":-1.0,"answer_downvote_by_default":-1.0,"answer_downvote_by_editor":-1.0,"answer_downvote_by_high_iq_user":-1.0,"answer_downvote_by_moderator":-1.0,"answered_a_question":5.0,"answered_a_question_meme":25.0,"answered_a_question_verified":10.0,"answer_upvote_by_contrib":4.0,"answer_upvote_by_default":2.0,"answer_upvote_by_editor":6.0,"answer_upvote_by_high_iq_user":4.0,"answer_upvote_by_moderator":10.0,"archived_a_question":1.0,"article_downvote":-1.0,"article_upvote":1.0,"asked_a_question":1.0,"auto_accepted_explanation":15.0,"comment_downvote":-0.5,"comment_upvote":0.5,"created_a_lyrics_edit":2.0,"created_a_real_high_priority_song":60.0,"created_a_real_song":30.0,"created_a_song":5.0,"forum_post_downvote":-0.5,"forum_post_upvote":0.5,"historical_you_published_a_song":60.0,"metadata_update_or_addition":2.0,"pending_explanation":5.0,"pinned_a_question_not_your_own":2.0,"question_downvote":-2.0,"question_upvote":2.0,"rejected_a_lyrics_edit":2.0,"song_metadata_update_or_addition":2.0,"song_pageviews_1000":25.0,"song_pageviews_10000":50.0,"song_pageviews_100000":125.0,"song_pageviews_1000000":500.0,"song_pageviews_2500":30.0,"song_pageviews_25000":75.0,"song_pageviews_250000":150.0,"song_pageviews_2500000":1000.0,"song_pageviews_500":20.0,"song_pageviews_5000":35.0,"song_pageviews_50000":100.0,"song_pageviews_500000":200.0,"song_pageviews_5000000":2000.0,"suggestion_downvote_by_contrib":-1.0,"suggestion_downvote_by_default":-0.5,"suggestion_downvote_by_editor":-1.0,"suggestion_downvote_by_high_iq_user":-1.0,"suggestion_downvote_by_moderator":-1.0,"suggestion_upvote_by_contrib":2.0,"suggestion_upvote_by_default":1.0,"suggestion_upvote_by_editor":3.0,"suggestion_upvote_by_high_iq_user":2.0,"suggestion_upvote_by_moderator":4.0,"verified_explanation_by_meme":100.0,"verified_explanation_by_non_meme":15.0,"verified_lyrics_by_meme_featured":50.0,"verified_lyrics_by_meme_primary":75.0,"verified_lyrics_by_meme_writer":75.0,"verified_lyrics_by_non_meme_featured":10.0,"verified_lyrics_by_non_meme_primary":15.0,"verified_lyrics_by_non_meme_writer":15.0,"you_accepted_a_comment":6.0,"you_accepted_an_annotation":10.0,"you_added_a_photo":100.0,"you_archived_a_comment":2.0,"you_contributed_to_a_marked_complete_song":10.0,"you_contributed_to_a_recent_marked_complete_song":20.0,"you_deleted_an_annotation":5.0,"you_incorporated_an_annotation":5.0,"you_integrated_a_comment":2.0,"you_linked_an_identity":100.0,"you_marked_a_song_complete":10.0,"you_merged_an_annotation_edit":4.0,"you_published_a_song":5.0,"your_annotation_accepted":10.0,"your_annotation_edit_merged":5.0,"your_annotation_edit_rejected":-0.5,"your_annotation_incorporated":15.0,"your_annotation_rejected":0.0,"your_annotation_was_cosigned_by_community_verified":2.0,"your_annotation_was_cosigned_by_meme":50.0,"your_annotation_was_cosigned_by_verified_verified":20.0,"your_answer_cleared":-5.0,"your_answer_pinned":5.0,"your_comment_accepted":2.0,"your_comment_archived":0.0,"your_comment_integrated":2.0,"your_comment_rejected":-0.5,"you_rejected_a_comment":2.0,"you_rejected_an_annotation":2.0,"you_rejected_an_annotation_edit":2.0,"your_lyrics_edit_accepted":3.0,"your_lyrics_edit_rejected":-2.0,"your_question_answered":4.0,"your_question_archived":-1.0,"your_question_pinned":5.0};
</script>
<script type="text/javascript">_qevents.push({ qacct: "p-f3CPQ6vHckedE"});</script>
<noscript>
<div style="display: none;">
<img alt="Quantcast" height="1" src="http://pixel.quantserve.com/pixel/p-f3CPQ6vHckedE.gif" width="1"/>
</div>
</noscript>
<script type="text/javascript">
var _sf_async_config={};
_sf_async_config.uid = 3877;
_sf_async_config.domain = 'genius.com';
_sf_async_config.title = 'Nipsey Hussle – Victory Lap Lyrics | Genius Lyrics';
_sf_async_config.sections = 'songs,tag:rap';
_sf_async_config.authors = 'Nipsey Hussle,Stacy Barthe';
var _cbq = window._cbq || [];
(function(){
function loadChartbeat() {
window._sf_endpt=(new Date()).getTime();
var e = document.createElement('script');
e.setAttribute('language', 'javascript');
e.setAttribute('type', 'text/javascript');
e.setAttribute('src', 'https://static.chartbeat.com/js/chartbeat.js');
document.body.appendChild(e);
}
var oldonload = window.onload;
window.onload = (typeof window.onload != 'function') ?
loadChartbeat : function() { oldonload(); loadChartbeat(); };
})();
</script>
<!-- Begin comScore Tag -->
<script>
var _comscore = _comscore || [];
_comscore.push({
c1: "2", c2: "22489583",
options: {
enableFirstPartyCookie: true,
}
});
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = "https://sb.scorecardresearch.com/cs/22489583/beacon.js"
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=22489583&cv=2.0&cj=1"/>
</noscript>
<!-- End comScore Tag -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '201983886890479');
fbq('track', 'PageView');
</script>
<noscript><img height="1" src="https://www.facebook.com/tr?id=201983886890479&ev=PageView&noscript=1" style="display:none" width="1"/></noscript>
<script>
!function(a,l,b,c,k,s,t,g,A){a.CustomerConnectAnalytics=k,a[k]=a[k]||function(){
(a[k].q=a[k].q||[]).push(arguments)},g=l.createElement(b),A=l.getElementsByTagName(b)[0],
g.type="text/javascript",g.async=!0,g.src=c+"?id="+s+"&parentId="+t,A.parentNode.insertBefore(g,A)
}(window,document,"script","//carbon-cdn.ccgateway.net/script","cca",window.location.hostname, "e8a16a4090");
window.googletag = window.googletag || {};
window.googletag.cmd = window.googletag.cmd || [];
window.googletag.cmd.push(function () {
if (googletag.pubads().getTargeting('carbon_segment').length === 0) {
const carbon = JSON.parse(window.localStorage.getItem('ccRealtimeData'));
googletag.pubads().setTargeting('carbon_segment', carbon ? carbon.audiences.map(function (i) { return i.id; }) : []);
}
if (googletag.pubads().getTargeting('cc-iab-class-id').length === 0) {
const iabIds = JSON.parse(window.localStorage.getItem('ccContextualData'));
if (iabIds) {
googletag.pubads().setTargeting('cc-iab-class-id', iabIds);
}
}
});
</script>
</body>
</html>