This repository has been archived by the owner on Mar 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.js
2062 lines (2053 loc) · 179 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module.exports.Soundtracks = {
flash: {
season1: 'https://open.spotify.com/album/0xiJwfDcZRQ77bsbjS9TF5',
season2: 'https://open.spotify.com/album/2EE7W74Rk1LDHzbYC9js2Z',
season3: 'https://open.spotify.com/album/0DCUAyJVmG1fNxkBaZqFLt',
season4: 'https://open.spotify.com/album/12WS02J0JBAVeEGj6aJ7R8',
},
arrow: {
season1: 'https://open.spotify.com/album/0Hsit07149488kiRI1UiaJ',
season2: 'https://open.spotify.com/album/234N1BIHMSxaKSVAM0JrOC',
season3: 'https://open.spotify.com/album/2SYmYysseasonloAQkkr2TEncT',
season4: 'https://open.spotify.com/album/1IA3XNL6kv5zOpFG18M1au',
season5: 'https://open.spotify.com/album/7ivC8XKulyl3akjhiRtJjA',
season6: 'https://open.spotify.com/album/2sT1ks3i5yn0ZAGGvZQv92',
},
supergirl: {
season1: 'https://open.spotify.com/album/0jSqj8Tr0BrQIdqV4DZ9jD',
season2: 'https://open.spotify.com/album/7x4PDyJb3FJoYkRnF2hu2K',
season3: 'https://open.spotify.com/album/6zXns0k78HUh5UlNprKhvf',
},
lot: {
season1: 'https://open.spotify.com/album/0ceTcs3rDUEiyzshxjJFdB',
season2: 'https://open.spotify.com/album/4r6t4EyqVZskLi0jD9yOhU',
season3: 'https://open.spotify.com/album/0FPZ6xZBcwsupOaxKULGAF',
},
crossovers: {
crossover1: 'https://open.spotify.com/album/4AtHQFEn8Qrp9aSSt0ehob', //Flash vs. Arrow
crossover2: 'https://open.spotify.com/album/7vs9fu0ORNPmV2opBjLu5z', //Duet
crossover3: 'https://open.spotify.com/album/1jFljSQGFqtKkFNURoEOeI', //COEX
}
};
module.exports.Quotees = [
{title: 'Category:Alexandra_Danvers_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Abra_Kadabra_(Arrowverse)/Quotes'},
{title: 'Category:Francisco_Ramon_(Arrowverse)/Quotes'},
{title: 'Category:Emiko_Queen_(Arrowverse)/Quotes'},
{title: 'Category:Floyd_Lawton_(Arrowverse)/Quotes'},
{title: 'Category:John_Diggle_(Arrowverse)/Quotes' },
{title: 'Category:Carrie_Cutter_(Arrowverse)/Quotes'},
{title: 'Category:Jefferson_Jackson_(Arrowverse)/Quotes'},
{title: 'Category:Ricardo_Diaz_(Arrowverse)/Quotes'},
{title: 'Category:Maseo_Yamashiro_(Arrowverse)/Quotes'},
{title: 'Category:Rene_Ramirez_(Arrowverse)/Quotes'},
{title: 'Category:Benjamin_Turner_(Arrowverse)/Quotes'},
{title: 'Category:Felicity_Smoak_(Arrowverse)/Quotes'},
{title: 'Category:Barry_Allen_(Arrowverse)/Quotes'},
{title: 'Category:Harrison_Wells_(Arrowverse:_Earth-19)/Quotes'},
{title: 'Category:Evelyn_Sharp_(Arrowverse)/Quotes'},
{title: 'Category:Amanda_Waller_(Arrowverse)/Quotes'},
{title: 'Category:Helena_Bertinelli_(Arrowverse)/Quotes'},
{title: 'Category:Tobias_Church_(Arrowverse)/Quotes'},
{title: 'Category:Simon_Morrison_(Arrowverse)/Quotes'},
{title: 'Category:Damien_Darhk_(Arrowverse)/Quotes'},
{title: 'Category:Roy_Harper_(Arrowverse)/Quotes'},
{title: 'Category:Samandra_Watson_(Arrowverse)/Quotes'},
{title: 'Category:Kara_Zor-El_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Henry_Allen_(Arrowverse)/Quotes'},
{title: 'Category:Nathaniel_Heywood_(Arrowverse)/Quotes'},
{title: 'Category:Nora_Thompson_(Arrowverse)/Quotes'},
{title: 'Category:Catherine_Grant_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Jesse_Wells_(Arrowverse:_Earth-2)/Quotes'},
{title: 'Category:George_Lucas_(Arrowverse)/Quotes'},
{title: 'Category:Mia_Smoak_(Arrowverse)/Quotes'},
{title: 'Category:Zari_Tomaz_(Arrowverse)/Quotes'},
{title: 'Category:Winslow_Schott,_Jr._(Arrowverse:_Earth-X)/Quotes'},
{title: 'Category:Robert_Queen_(Arrowverse)/Quotes'},
{title: 'Category:Kal-El_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Leonard_Snart_(Arrowverse)/Quotes'},
{title: 'Category:Raymond_Palmer_(Arrowverse)/Quotes'},
{title: 'Category:John_Constantine_(Arrowverse)/Quotes'},
{title: 'Category:Dinah_Laurel_Lance_(Arrowverse:_Earth-2)/Quotes'},
{title: 'Category:Martin_Stein_(Arrowverse)/Quotes'},
{title: 'Category:Barry_Allen_(Arrowverse:_Earth-2)/Quotes'},
{title: 'Category:Rip_Hunter_(Arrowverse)/Quotes'},
{title: 'Category:Anatoli_Knyazev_(Arrowverse)/Quotes'},
{title: 'Category:Mallus_(Arrowverse)/Quotes'},
{title: 'Category:Hartley_Rathaway_(Arrowverse)/Quotes'},
{title: 'Category:Leslie_Jocoy_(Arrowverse)/Quotes'},
{title: 'Category:Harrison_Wells_(Arrowverse:_Earth-2)/Quotes'},
{title: 'Category:Malcolm_Merlyn_(Arrowverse)/Quotes'},
{title: 'Category:Nora_West-Allen_(Arrowverse)/Quotes'},
{title: 'Category:Dinah_Lance_(Arrowverse)/Quotes'},
{title: 'Category:J%27onn_J%27onzz_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Leonard_Snart_(Arrowverse:_Earth-X)/Quotes'},
{title: 'Category:Jay_Garrick_(Arrowverse:_Earth-3)/Quotes'},
{title: 'Category:Amaya_Jiwe_(Arrowverse)/Quotes'},
{title: 'Category:John_Diggle,_Jr._(Arrowverse:_Star_City_2046)/Quotes'},
{title: 'Category:Julian_Albert_Desmond_(Arrowverse)/Quotes'},
{title: 'Category:Eobard_Thawne_(Arrowverse)/Quotes'},
{title: 'Category:Hunter_Zolomon_(Arrowverse:_Earth-2)/Quotes'},
{title: 'Category:Mick_Rory_(Arrowverse)/Quotes'},
{title: 'Category:James_Olsen_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Samantha_Clayton_(Arrowverse)/Quotes'},
{title: 'Category:James_Jesse_(Arrowverse)/Quotes'},
{title: 'Category:Donna_Smoak_(Arrowverse)/Quotes'},
{title: 'Category:Music_Meister_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Nyssa_al_Ghul_(Arrowverse)/Quotes'},
{title: 'Category:Grodd_(Arrowverse)/Quotes'},
{title: 'Category:Edward_Clariss_(Arrowverse)/Quotes'},
{title: 'Category:Ralph_Dibny_(Arrowverse)/Quotes'},
{title: 'Category:Clyde_Mardon_(Arrowverse)/Quotes'},
{title: 'Category:Brainiac_8_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Desmond_(Arrowverse)/Quotes'},
{title: 'Category:Sara_Lance_(Arrowverse)/Quotes'},
{title: 'Category:Harleen_Quinzel_(Arrowverse)/Quotes'},
{title: 'Category:Thomas_Merlyn_(Arrowverse:_Earth-X)/Quotes'},
{title: 'Category:Katherine_Kane_(Arrowverse)/Quotes'},
{title: 'Category:Dinah_Laurel_Lance_(Arrowverse)/Quotes'},
{title: 'Category:Izzy_Bowin_(Arrowverse)/Quotes'},
{title: 'Category:Edward_Thawne_(Arrowverse)/Quotes'},
{title: 'Category:Clifford_DeVoe_(Arrowverse)/Quotes'},
{title: 'Category:John_Deegan_(Arrowverse)/Quotes'},
{title: 'Category:Iris_West_(Arrowverse)/Quotes'},
{title: 'Category:Eliza_Danvers_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Kelex_(Arrowverse:_Earth-38)/Quotes'},
{title: 'Category:Savitar_(Arrowverse)/Quotes'},
{title: 'Category:Caitlin_Snow_(Arrowverse)/Quotes'}
];
module.exports.Quotes = [
{
"quote": "You saved the world, and then I saved you, with your pod. You're not the only bad-ass in the family.",
"quotee": "Alexandra Danvers (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/5f/Alexandra_Danvers_Arrow_Earth-38_002.jpg/revision/latest/scale-to-width-down/350?cb=20190804030154"
},
{
"quote": "You always wanted to be normal, right? So, having a crappy boss and absolutely nothing to wear... this is what normal looks like.",
"quotee": "Alexandra Danvers (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/5f/Alexandra_Danvers_Arrow_Earth-38_002.jpg/revision/latest/scale-to-width-down/350?cb=20190804030154"
},
{
"quote": "I'm from the future. You don't believe me? Let's see, uh, 2017. Hmm. How are things going on with your doomed love, Iris West? Or your greatest foe, Savitar?",
"quotee": "Abra Kadabra (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/da/Abra_Kadabra_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20171127214850"
},
{
"quote": "I'm doing you a favor by killing you now, Flash. This way, you'll never have to face the wrath of the Chronarch.",
"quotee": "Abra Kadabra (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/da/Abra_Kadabra_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20171127214850"
},
{
"quote": "Nerd.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "We're not letting you sacrifice yourself. There's no way. I don't care if that's what it means to be a hero. You're not a hero to me. You're my friend.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "No, I mean those two, they were geniuses. We depended on them. But with you, the roles are reversed. You depend on us. Harrison Wells was always there for me. So I just...I want to be there for Harrison Wells.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Are we doing OK? Are we doing OK?! Does it look like we're doing OK?! We're two inches tall, Caitlin!",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Just when you thought it was safe to go back in the suburbs, King Shark shows up at your house!",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Sometimes the truth is the hardest lie to see through. When you can't put your faith in the truth, all you have is yourself.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Since when did our lives suddenly become an Indiana Jones movie?",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Ignoring the problem does not get rid of it: you have to face it, don't we?",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Your childhood nemesis is now an unstoppable metahuman? That is seriously messed up.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Holy 2001. I feel like I just opened my third eye.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "...the Artificial Speed Force gave you increased cognitive function, a thousand times over, but... it's done the exact opposite to your emotional response.",
"quotee": "Francisco Ramon (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/4f/Cisco_Ramon_Arrow_001.jpg/revision/latest/scale-to-width-down/350?cb=20140517124428"
},
{
"quote": "Love is a bullet in the brain.",
"quotee": "Floyd Lawton (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e8/Floyd_Lawton_Arrow_TV_Series_002.jpg/revision/latest/scale-to-width-down/350?cb=20130411075557"
},
{
"quote": "Give me a break, this ain't no task force. Let's call it like it is. Welcome to the Suicide Squad.",
"quotee": "Floyd Lawton (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e8/Floyd_Lawton_Arrow_TV_Series_002.jpg/revision/latest/scale-to-width-down/350?cb=20130411075557"
},
{
"quote": "Felicity Smoak is one of the smartest, most badass women on the planet.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Then you have to find a way to make it work. Comprise, do whatever you have to do because if you want a new future for this baby of yours it won't come by doing the same thing we used to do. We have to... we have to be something else. Something better.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Life is a marathon, not a sprint Barry. Slow down and enjoy it.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "My brother needed me. The Green one.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Gone but not forgotten.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Oliver, for six years, I have followed the chain of command without question, even when my heart told me there was a better way. I trusted it. I trusted you. But the inescapable truth is that people have lost faith in your leadership. Truth is, Oliver, you have become a better man. But with your focus split... a worse leader. The Green Arrow allows you to become the best version of yourself, and I respect that. I respect you. But if I'm gonna be the best version of myself... Oliver, it can't be with you.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "What I know, Oliver, is that you started something, something strong enough to live on past you. Question is, can you live with what it's become?",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "The Oliver that I met eight years ago is not the one that we say goodbye to today. Oliver always told me that in order to save his city, he had to become someone else, he had to become something else. I always thought that meant becoming the Green Arrow, but...today, I realized that meant becoming a better man, the best man he knew how to be, and he took all of us with him on that journey. He changed everything. Oliver brought heroes into the world, he inspired heroes, he inspired all of us here. I was his brother, and Oliver Queen was mine. Of course, life will go on. It always does. But how? What twists and turns it will take, I can't say. I don't know what the future holds...except to say expect the unexpected. Oliver may be gone, but his mission endures. That mission lives on, Oliver lives on, in the people he inspired. Some will take that mission to the rest of the world...maybe even beyond that. Because if the past eight years has shown us anything...it's that this universe is far bigger than any of us could have dared imagine. Even if it is a little less bright, without him in it.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "I don't know. For the first time since I met Oliver Queen I don't know what happens next. I know it's silly, but I still like to think of myself as Oliver's bodyguard. I just couldn't protect him. It's funny. He was worried something would happen to me.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Oliver, after everything we've been through, man, I couldn't fathom why you didn't trust me. Then I realized you couldn't. It's not who you are. You don't trust. You don't love. You were able to fool Ra's and join the League because inside you are every bit as dark as they are.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Somewhere where I'm going to try to trust you again.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "You've been in denial, Oliver. Holding onto hope with both hands that you don't have to give into that hate, use that hate, to do what needs to be done. But Oliver, this needs to be done. You have to kill Malcolm Merlyn.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "Thea is dead. And yes, Tommy's alive. But, he's trying another undertaking with Rene and Dinah helping, who, if you haven't noticed, are very bad people here. Oliver, this world isn't better. It's much, much worse. You know why? Because you weren't in it.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "So this is your unit, huh, Waller? What, OJ and Charles Manson weren't available?",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "He's like you, Curtis, and Felicity all rolled into one.",
"quotee": "John Diggle (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a6/John_Diggle_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20131010022630"
},
{
"quote": "I'm Cupid, stupid.",
"quotee": "Carrie Cutter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Carrie_Cutter_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20141114214354"
},
{
"quote": "Love it a bullet to the brain... or an arrow to the heart.",
"quotee": "Carrie Cutter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Carrie_Cutter_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20141114214354"
},
{
"quote": "I saw hope, I saw dignity. Those men and women? They were treated worse than animals, but they never let anybody stop them from being people, ya know?",
"quotee": "Jefferson Jackson (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/77/Jefferson_Jackson_Arrow_003.jpg/revision/latest/scale-to-width-down/350?cb=20190927204721"
},
{
"quote": "We're just gonna pretend like none of this happened? That Mick Rory wasn't part of our team? If you can just ice your best friend like that, I'd hate to think what you could do to us.",
"quotee": "Jefferson Jackson (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/77/Jefferson_Jackson_Arrow_003.jpg/revision/latest/scale-to-width-down/350?cb=20190927204721"
},
{
"quote": "Don't act like you actually care about me, man. I'm just a life-support system. I didn't even want to come on this stupid trip. You kidnapped me.",
"quotee": "Jefferson Jackson (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/77/Jefferson_Jackson_Arrow_003.jpg/revision/latest/scale-to-width-down/350?cb=20190927204721"
},
{
"quote": "Think you're so tough 'cause you spent five years in hell? I was born in it.",
"quotee": "Ricardo Diaz (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/31/Ricardo_Diaz_Arrow_0002.png/revision/latest/scale-to-width-down/350?cb=20180421181203"
},
{
"quote": "This is my city! You want to stop me? You're going to have to kill me!",
"quotee": "Ricardo Diaz (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/31/Ricardo_Diaz_Arrow_0002.png/revision/latest/scale-to-width-down/350?cb=20180421181203"
},
{
"quote": "They don't see you as Green Arrow in here. You're just a number. It's pretty dehumanizing, isn't it? Bet you weren't thinking about that when you were locking these people up in here.",
"quotee": "Ricardo Diaz (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/31/Ricardo_Diaz_Arrow_0002.png/revision/latest/scale-to-width-down/350?cb=20180421181203"
},
{
"quote": "A man cannot live by two names.",
"quotee": "Maseo Yamashiro (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/75/Maseo_Yamashiro_%28Arrowverse%29_001.png/revision/latest/scale-to-width-down/350?cb=20141030061735"
},
{
"quote": "Maybe this team is all about finding second chances.",
"quotee": "Rene Ramirez (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/62/Rene_Ramirez_Arrow_003.png/revision/latest/scale-to-width-down/350?cb=20200204123720"
},
{
"quote": "No kill shots? I was promised a fight. I hope you haven't lost your nerve.",
"quotee": "Benjamin Turner (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e5/Benjamin_Turner_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/333?cb=20131017110249"
},
{
"quote": "Hi. I'll be your interrogator.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "If you're not leaving I'm not leaving.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "Marriage is about inclusion. It's about leaning on your partner when things get complicated. But I don't think you know how to do that.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "Seems like Cisco spent so much time making this place impenetrable, he's turned it into an impenetrable death trap.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "Before you left, the last thing you said to me was that you loved me. Now you're back and the first thing you tell me is that you're working with the man who turned your sister, a woman you're supposed to love, into a killer who killed a woman you used to love! I don't want to be a woman that you love.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "Wherever you go, whatever happens to you, you'll never leave me. On our wedding day, you told me I was the best part of you, but the truth is we are the best parts of each other and that is so much bigger than the friggin' universe.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "And we're going to stop him. Not out of guilt, or vengeance or regret. We're gonna stop him because it's what we do and who we are.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "We're in a Die Hard movie with bees.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "If you loved me, if you trusted me, telling me this wouldn't be such a burden; It would be a relief.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "You're joking. You're working with the man who threatened to kill my entire family?",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "You're at war with two sides of yourself.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "The recruits didn't get to see the real you because you showed them this angry guy in a mask.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "Maybe you're not supposed to. Maybe it's not about Sara, or Oliver or anyone else that we care about who we lost. Maybe what we're doing, we've been doing because there are people that we care about that are still alive. Maybe we're doing it for them.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "When we thought you were dead, each one of us had to figure out why we were doing all this. Seems like it's your turn.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "I don't accept that. You shouldn't, either. You can't just accept things, Oliver. If I'd accepted my life, I would be a cocktail waitress in Vegas like my mother, and I never would have gone to college, and I never would have moved a thousand miles away to work at Queen Consolidated, and I never would have believed some crazy guy in a hood when he told me I could be more than just an IT girl.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "He's the Phantom Stranger. He knows tons.",
"quotee": "Felicity Smoak (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e3/Felicity_Smoak_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/324?cb=20131010022322"
},
{
"quote": "I know men like you. Peaked in high school. [...] Bullies then, bullies now.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "I know he's a murderer. But how many murderers have we put in prison? How many bad guys have we taken down? Don't we deserve one win? After everything that we've done?",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Harrison Wells is the Reverse-Flash.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Okay, he's a giant gorilla Who is probably leading an army of giant gorillas. How can you not find him?",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Everything's better in song.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "You are my lightning rod, Iris.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Every time I falter, the thought of you is what picks me up or keeps me going.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Joe, there's no such thing as normal. Love is the only thing that makes the fight worth it. And it's the only thing that's going to get us through it.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Aliens?",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "What you're seeing as optimism is me, for the first time, just not being afraid anymore.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "It's just a memory! One warped from the perspective of a sad, angry little girl! Don't you get it? That person that we saw in there? The bad mom that Nora told us about? She doesn't even exist! In any timeline. I told you that you had to be different in the future but I was wrong. You don't have to change who you are, you don't even have to change the name of your newspaper! I know any future with you in it is going to be a good one. You just have to believe it too.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "That's because I work hard to hide who I really am.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Sometimes great possibilities are right in front of us but we don't see them because we choose not to. I think that we need to be open to exploring something new.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "The truth is, Iris, I don't know what this is or where we go from here. All I know is you're everything to me, and you always have been, and the sound of your voice will always bring me home.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "I think you're full of crap. Look, you've convinced yourself that you've traded away your humanity, but I think it's because of your humanity that you made it through. You wouldn't have survived, much less come out a hero - somebody that wants to do good - if you didn't have a light inside of you.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Usually when I meet a meta for the first time, I get beat up a little.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "How do you feel about a team-up ... with the Suicide Squad?",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "That's it. I know how to stop the cannon. This is what The Monitor meant that day in the Time Vault. This is what I've been running towards all these years. It's time for the Flash to vanish in Crisis.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "You will always be my lightning rod.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Dr. McGee said that after the accident, Wells became a completely different person. It's because he is a different person.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "You may be from the future, but the reason that you’re here… You’re trying to change the past.",
"quotee": "Barry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/9f/Barry_Allen_Arrow_0004.png/revision/latest/scale-to-width-down/350?cb=20160420041627"
},
{
"quote": "Greetings, Earthlings. Haha, I'm just kidding, I always wanted to say that!",
"quotee": "Harrison Wells (Arrowverse: Earth-19)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/7a/Harrison_Wells_Arrow_Earth-19_0002.jpg/revision/latest/scale-to-width-down/267?cb=20161130201226"
},
{
"quote": "Barry's real superpower isn't speed, it's hope. The kid's got an endless reservoir. Believes everything's gonna work out.",
"quotee": "Harrison Wells (Arrowverse: Earth-19)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/7a/Harrison_Wells_Arrow_Earth-19_0002.jpg/revision/latest/scale-to-width-down/267?cb=20161130201226"
},
{
"quote": "Her name is Gypsy. And she's what's known on my Earth as a collector.",
"quotee": "Harrison Wells (Arrowverse: Earth-19)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/7a/Harrison_Wells_Arrow_Earth-19_0002.jpg/revision/latest/scale-to-width-down/267?cb=20161130201226"
},
{
"quote": "Who gets to decide who's a psycho and who's a vigilante?",
"quotee": "Evelyn Sharp (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/cf/Evelyn_Sharp_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20161103090057"
},
{
"quote": "You should know it's extremely easy to kill someone the world already thinks is dead.",
"quotee": "Amanda Waller (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Cynthia_Addai-Robinson_Mug.jpg/revision/latest/scale-to-width-down/350?cb=20150203183017"
},
{
"quote": "Because once you let the darkness inside, it never comes out.",
"quotee": "Helena Bertinelli (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/53/Helena_Bertinelli_Arrow_TV_Series_002.jpg/revision/latest/scale-to-width-down/332?cb=20121117093903"
},
{
"quote": "After getting threatened by a freak, I hired one of my own.",
"quotee": "Tobias Church (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/52/Tobias_Church_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20170114011752"
},
{
"quote": "Haven't you heard? All of the justice in this city comes from vigilantes.",
"quotee": "Simon Morrison (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/de/Prometheus_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20161124201222"
},
{
"quote": "You've told yourself you kill because you have to. Confess, Oliver. You don't kill because you have to, so why? Why do you do it?",
"quotee": "Simon Morrison (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/de/Prometheus_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20161124201222"
},
{
"quote": "You haven't been listening. I'm not going to kill him. I'm going to make him wish he was dead.",
"quotee": "Simon Morrison (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/de/Prometheus_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20161124201222"
},
{
"quote": "I wanna be clear about something. I have shown you repeatedly that you cannot beat me. You saved my family, so I will give you a few weeks to spend with yours. Enjoy your time. What's left of it.",
"quotee": "Damien Darhk (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/d3/Damien_Darhk_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151102231326"
},
{
"quote": "I know you'll never forgive me. To tell you the truth, I won't either.",
"quotee": "Damien Darhk (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/d3/Damien_Darhk_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151102231326"
},
{
"quote": "I was a terrible father. I was obsessed with world domination. Because of that, I died. Leaving you all alone as a child. Trapped with my name and my foolish dream. Oh, I turned you into a demon long before Mallus did. That's why I'm begging you, do not let him take you away from me.",
"quotee": "Damien Darhk (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/d3/Damien_Darhk_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151102231326"
},
{
"quote": "You really shoved the wrong guy out of this helicopter, buddy. You should've picked my partner. He didn't grow up on the streets. He wasn't taught how to fight by having to survive against the most vicious gangbangers in the Glades. He wouldn't do...this.",
"quotee": "Roy Harper (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/7/71/Roy_Harper_%28Arrowverse%29_003.jpg/revision/latest/scale-to-width-down/350?cb=20141217223301"
},
{
"quote": "My cousin once said in an interview that he stood for \"Truth, Justice and the American Way.\" If anyone asked me, I'd say I stand for \"Hope, Help and Compassion for all.\"",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Okay, fine. You wanna make this a punching contest? I can oblige.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "The Rokyn Society's gravitistics doesn't quite line up with Isaac Newton's Law of Universal Gravitation. Try explaining that to your 9th grade Science teacher when English isn't your first language. Might as well tell her you can fly... um, not that I did that.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "She wanted to kill me, yes... She wanted revenge for her sister. Who wouldn't? Caren helped commit a heinous crime as a child, but she also served out her time... served for over a lifetime. How long should we punish the guilty?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "One of my worst fears is that someone will figure out that CatCo office assistant Kara Danvers is really Supergirl... and they'll come after me and my friends. And just like I told that guy... not everyone is bulletproof like me.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Cockroaches like you are the reason some of us are scared to use the internet. This ends right now.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "This isn't real, is it? I recognize this... the logic of it. You're trying to bury me in a dream, aren't you? Who are you? Why are you doing this to me? Hello? Show yourself!",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Feels like I've been at this for days. I've been pushing through various scenarios... searching for whoemever is keeping me here. In every dream, there is always a fight... always something to distract me from cutting to the dream's heart.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Besides, I'm a dream warrior and you're the most hardcore D.E.O. agent I know. What's the worst that could happen down there?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Secrets are dangerous. They're usually why people get hurt in mysteries. Feels like I'm living in a mystery novel right now... only none of the secrets are mine.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Ever since I arrived on Earth, your decisions have been coming back to haunt me. Do you know that? Understand that? Do you even know what that's like?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "\"Break your problems into pieces and solve what you know first\". But what happens when all those pieces pile up on you? So high you can't even breathe?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "What happens when you let go of your anger? Your grief? Your rage? Do you feel happy? Sad? Or do you just feel sweet relief?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "She's probably taunting me, asking what I'm going to do next. But here's the thing about messing with people who can fly when you can't... They choose how you land.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "The Danvers Family took me into their home the first day I arrived on Earth. I trusted them completely. But what if... What if one day I discovered someone in that family had broken that trust and kept secrets from me? And not for the first time...?",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "That's why Kal keeps his secret identity. To protect those he loves... but also to protect himself. Same reason people use screen names. Anonimity gives people power to do whatever they want-- both to those who would use it for good... and those who would use it to hurt others.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "You're using my memories and feelings against me in the dream state. But you forgot one important thing... One thing you couldn't possibly know. Krypton died, and I went to sleep. I slept for decades. I learned how to control my dreams.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Alex and I came down here because of a mystery. We thought we were helping someone... But it was a lie. A trap. Someone has been sending Fort Rozz fugitives after me. Clue after clue, they led us right to this place. Led me and Alex right to her.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "This is stupid. How could I expect you to understand anyway? You're just a ghost in a machine.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "Keep my mother's name out of your mouth. You made two mistakes today, Facet. The first was coming after my family... The second, giving me an hour to prepare. Whatever you think it is you're doing to me, strengthening me, whatever... This is the END.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "My cousin worked with a vigilante once. Tons of gadgets, lots of demons.",
"quotee": "Kara Zor-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b1/Kara_Zor-El_Arrow_Earth-38_007.png/revision/latest/scale-to-width-down/333?cb=20190723023912"
},
{
"quote": "I am in awe at the remarkable man that you are becoming. All the things you've achieved, and not just as The Flash, but you, Barry, your honesty, your heart. You were always a hero. [...] Barry, what I hope for you, maybe the greatest thing that a father can hope for his son, is that one day you will become a father yourself. And then you will know how much I truly love you.",
"quotee": "Henry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/3e/Henry_Allen_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20141008011500"
},
{
"quote": "Sometimes you just gotta slow down to get back to where you want to be.",
"quotee": "Henry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/3e/Henry_Allen_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20141008011500"
},
{
"quote": "Well, that's not really true. Don't you have another family in this room? They need your help, too, Barry. When you need me, I will be here. But right now Central City doesn't need you to be Henry Allen's son, it needs you to be The Flash. My Kid, the superhero. I have to go. I need you to tell me that it's OK.",
"quotee": "Henry Allen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/3/3e/Henry_Allen_%28Arrowverse%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20141008011500"
},
{
"quote": "He's so damn huggable.",
"quotee": "Nathaniel Heywood (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/43/Nathan_Heywood_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20161014182400"
},
{
"quote": "You know, for a homicidal gangster, Capone was very organized, and he had exquisite penmanship.",
"quotee": "Nathaniel Heywood (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/43/Nathan_Heywood_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20161014182400"
},
{
"quote": "When Mick and I started, we were doing Predator. Then, we ran into Mick's dad, and now we're doing Apocalypse Now!",
"quotee": "Nathaniel Heywood (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/4/43/Nathan_Heywood_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20161014182400"
},
{
"quote": "It's better to have a good heart than fast legs.",
"quotee": "Nora Thompson (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/a/a4/Nora_Allen_%28Arrowverse%29_002.png/revision/latest/scale-to-width-down/350?cb=20141008024525"
},
{
"quote": "Lois Lane's kid sister? Well congratulations, you got the looks.",
"quotee": "Catherine Grant (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Catherine_Grant_%28Supergirl_TV_Series%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151027135711"
},
{
"quote": "Give me a salad for lunch. I don't care what kind as long as it has a cheeseburger on top.",
"quotee": "Catherine Grant (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Catherine_Grant_%28Supergirl_TV_Series%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151027135711"
},
{
"quote": "You have the wit of a YouTube comment.",
"quotee": "Catherine Grant (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Catherine_Grant_%28Supergirl_TV_Series%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151027135711"
},
{
"quote": "All four of you standing there doing nothing. You look like the attractive, yet non-threatening racially diverse cast of a CW show.",
"quotee": "Catherine Grant (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Catherine_Grant_%28Supergirl_TV_Series%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151027135711"
},
{
"quote": "You don't build a company like CatCo by being a wallflower and not having an opinion and a strong point of view.",
"quotee": "Catherine Grant (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/6a/Catherine_Grant_%28Supergirl_TV_Series%29_001.jpg/revision/latest/scale-to-width-down/350?cb=20151027135711"
},
{
"quote": "Yeah, I understand why you did everything you did. You were only missing one day, and I would have done anything to find you.",
"quotee": "Jesse Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/d/db/Jesse_Wells_Arrow_Earth-2_0001.jpg/revision/latest/scale-to-width-down/350?cb=20161021155411"
},
{
"quote": "Oh. Oh, okay, what, what, that you guys are from the future, that you've somehow seen a bunch of movies that I haven't even made yet?",
"quotee": "George Lucas (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/e/e4/George_Lucas_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20170129215854"
},
{
"quote": "Look, I don't know what you think you are, but this planet has been at war for generations. We are tired! There are men dying for the same cause as their grandfathers did!",
"quotee": "Winslow Schott Jr. (Arrowverse: Earth-X)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/c4/Winslow_Schott%2C_Jr._Arrowverse_Earth-38_0002.jpg/revision/latest?cb=20200217195612"
},
{
"quote": "Survive!",
"quotee": "Robert Queen (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/93/Robert_Queen_Arrow_TV_Series_002.jpg/revision/latest/scale-to-width-down/350?cb=20130422232527"
},
{
"quote": "You see, right? If the bullets don't work... why the punching?",
"quotee": "Kal-El (Arrowverse: Earth-38)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/fc/Kal-El_Arrowverse_Earth-38_0006.jpg/revision/latest/scale-to-width-down/337?cb=20210308012839"
},
{
"quote": "The Scarlet Speedster. Any preference on the way you'd like to die? The flame or the frost?",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "Could never really say, \"I love you\", except with his fists.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "You actually care about these losers? Because I guarantee they don't care about you, Mick.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "Raymond, you don't break into a candy store and steal one gumball.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "He broke my sister's heart. Only fair I break his.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "No one could've gotten there fast enough to stop us. But something did.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "The Scarlet Speedster. Any preference on how you'd like to die? The flame or the frost?",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "Tell the rest of the Santini family that there's a new godfather, and his name is Cold.",
"quotee": "Leonard Snart (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/6/63/Captain_Cold_Flash_2014_0001.jpg/revision/latest/scale-to-width-down/350?cb=20141029203131"
},
{
"quote": "He traded his life for ours. He was a hero. Which I'm pretty sure is the last thing he wanted to be remembered as.",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "Come with me if you want to live. I've always wanted to say that!",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "I died once. At least the world thought I did. You know what happened? Nothing. All the money, all the buildings, all the inventions. The world didn't care. My life ultimately didn't matter. Rip Hunter is giving me the chance to help save the world. I have to take it.",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "Why can't a gang ever be a bunch of good guys?",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "Saying goodbye to Nate is my biggest mission yet.",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "Wait, the bust in your lobby is of my stupid brother? Of course. He must have gone to work for Felicity in 2016 after I vanished. He allowed my tech to be perverted by the defense industry. That is so Sydney.",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "I'm Ray Palmer. I can science my way out of anything.",
"quotee": "Raymond Palmer (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b6/Ray_Palmer_Arrow_0002.jpg/revision/latest/scale-to-width-down/333?cb=20150326104906"
},
{
"quote": "My name is John Constantine. I am the one who steps on the shadows, all trench coat and arrogance. I'll drive your demons away, kick 'em in the bollocks, and spit on them when they're down, leaving only a nod and a wink and a wisecrack. I walk my path alone because, let's be honest... who would be crazy enough to walk it with me?",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "It's a town in the north of England. Horrible weather, and even worse football team.",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "You know if I knew you were surrounded by so many pretty girls, Oliver, I would have stopped by sooner.",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "Papa Midnite! Hell of a party mate. Sorry I came empty handed but it's kind of hard to find a dessert that pairs with pig's blood.",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "Hell must be short on souls if you're bothering with a sorry one like mine.",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "I'm off to see a man about a dog. Or rather, a shaman about a bloody demon.",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "I've been carrying Hell with me my whole life. How much worse can the actual place be?",
"quotee": "John Constantine (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/c/ce/John_Constantine_Arrow_0002.jpg/revision/latest/scale-to-width-down/350?cb=20180412123809"
},
{
"quote": "I want you to know that you are the reason that I'm trying to be a hero. It's because of you.",
"quotee": "Dinah Laurel Lance (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/95/Dinah_Laurel_Lance_Arrow_Earth-2_0005.jpg/revision/latest/scale-to-width-down/350?cb=20191016125943"
},
{
"quote": "Your honor, the hardest thing to do is to be a hero when no one expects you to be. The easier path is to be a criminal. The past six months, Oliver Queen has chosen the hard road and has been a hero in terrible conditions. And since the FBI has not held up their end of the deal, Oliver Queen deserves to be a free man.",
"quotee": "Dinah Laurel Lance (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/95/Dinah_Laurel_Lance_Arrow_Earth-2_0005.jpg/revision/latest/scale-to-width-down/350?cb=20191016125943"
},
{
"quote": "You may not be a Canary, but you still have a long way to go to prove that you're a hero. Take it from someone who knows how hard it can be. And don't screw it up.",
"quotee": "Dinah Laurel Lance (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/9/95/Dinah_Laurel_Lance_Arrow_Earth-2_0005.jpg/revision/latest/scale-to-width-down/350?cb=20191016125943"
},
{
"quote": "We came, we saw, we kicked Caesar's ass!",
"quotee": "Martin Stein (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/1/14/Martin_Stein_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20170504113744"
},
{
"quote": "What's the point of stopping Savage if we become as immoral as he is in the process?",
"quotee": "Martin Stein (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/1/14/Martin_Stein_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20170504113744"
},
{
"quote": "Ms. Lance speaks for all of us. I have watched her become the beating heart and steady hand of this team. She is the proper person to lead us. If she says that we are going to rescue our people, that is what we are going to do.",
"quotee": "Martin Stein (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/1/14/Martin_Stein_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20170504113744"
},
{
"quote": "Now, if I can do the impossible today, so can you. I'm just Barry Allen. You're The Flash.",
"quotee": "Barry Allen (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/1/1e/Bartholomew_Allen_Arrow_Earth-2_0001.jpg/revision/latest/scale-to-width-down/350?cb=20160212224857"
},
{
"quote": "My reticence to kill you, Per Degaton, is not weakness. It is goodness.",
"quotee": "Rip Hunter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b5/Rip_Hunter_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20160130193926"
},
{
"quote": "He slaughtered my family. And thousands of families. And that body that I swore an oath to serve turned a blind eye. They continue to turn a blind eye. I won't. The last thing that my child saw in this world was that monster's face. You can be damn well sure when Savage dies the last face that he sees will be mine.",
"quotee": "Rip Hunter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b5/Rip_Hunter_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20160130193926"
},
{
"quote": "One person acting alone cannot save the world.",
"quotee": "Rip Hunter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b5/Rip_Hunter_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20160130193926"
},
{
"quote": "I know it's difficult for you to fathom, but where...when I'm from, the year 2166, you and everyone on this roof aren't just considered heroes...You're legends.",
"quotee": "Rip Hunter (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/b/b5/Rip_Hunter_Arrow_0001.jpg/revision/latest/scale-to-width-down/350?cb=20160130193926"
},
{
"quote": "Hardly impressive. Left to his own devices, Oliver Queen will always push away the people he loves most.",
"quotee": "Anatoli Knyazev (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/5b/Anatoli_Knyazev_%28Arrowverse%29_002.jpg/revision/latest/scale-to-width-down/350?cb=20131106091559"
},
{
"quote": "You never should have come back to Russia.",
"quotee": "Anatoli Knyazev (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/5b/Anatoli_Knyazev_%28Arrowverse%29_002.jpg/revision/latest/scale-to-width-down/350?cb=20131106091559"
},
{
"quote": "It's time to pay the Piper!",
"quotee": "Hartley Rathaway (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/53/Hartley_Rathaway_Arrowverse_0001.jpg/revision/latest/scale-to-width-down/340?cb=20200213190718"
},
{
"quote": "Being scooped up by a guy clad head-to-toe in leather is a long time fantasy of mine, so thanks.",
"quotee": "Hartley Rathaway (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/53/Hartley_Rathaway_Arrowverse_0001.jpg/revision/latest/scale-to-width-down/340?cb=20200213190718"
},
{
"quote": "My world is over. I hope yours burns.",
"quotee": "Hartley Rathaway (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/5/53/Hartley_Rathaway_Arrowverse_0001.jpg/revision/latest/scale-to-width-down/340?cb=20200213190718"
},
{
"quote": "You, Caitlin Snow, are and have always been remarkable. You are bright, resourceful, resilient, and I am more than certain you can do this.",
"quotee": "Leslie Jocoy (Arrowverse)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/2/2b/Blacksmith_Arrow_001.jpg/revision/latest/scale-to-width-down/333?cb=20171108091307"
},
{
"quote": "You're coming home, Jesse. You're coming home.",
"quotee": "Harrison Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/f4/Harrison_Wells_%28Arrow_Earth-2%29.jpg/revision/latest/scale-to-width-down/333?cb=20151105175505"
},
{
"quote": "I was always too good at forgiving myself, Allen. You were never good enough.",
"quotee": "Harrison Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/f4/Harrison_Wells_%28Arrow_Earth-2%29.jpg/revision/latest/scale-to-width-down/333?cb=20151105175505"
},
{
"quote": "No, because he he is not like you. Barry runs towards danger, not from it, because Barry is not a coward!",
"quotee": "Harrison Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/f4/Harrison_Wells_%28Arrow_Earth-2%29.jpg/revision/latest/scale-to-width-down/333?cb=20151105175505"
},
{
"quote": "Yeah, locking up Barry. That was the easy part. Using our plan to take down Zoom, without Barry, that will be the hard part.",
"quotee": "Harrison Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/f4/Harrison_Wells_%28Arrow_Earth-2%29.jpg/revision/latest/scale-to-width-down/333?cb=20151105175505"
},
{
"quote": "Wanna take a shortcut? You want to take a shortcut? Remember this. You lose a chunk of your humanity every time you compromise your values.",
"quotee": "Harrison Wells (Arrowverse: Earth-2)",
"image": "https://static.wikia.nocookie.net/marvel_dc/images/f/f4/Harrison_Wells_%28Arrow_Earth-2%29.jpg/revision/latest/scale-to-width-down/333?cb=20151105175505"