File size: 181,918 Bytes
436a026 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 |
<head data-webtasks-id="6cf217e5-bab0-47f6">
<meta charset="utf-8" data-webtasks-id="0b34692b-d077-4d64">
<title data-webtasks-id="949f12ec-e2db-41d0">10 Great Moments from the Arrowverse | Fandom</title>
<meta http-equiv="x-ua-compatible" content="ie=edge" data-webtasks-id="b6451c9f-b0c6-4f25">
<meta name="viewport" content="width=device-width, initial-scale=1" data-webtasks-id="c6cca4fd-1597-4df5">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.fandom.com/f2/assets/favicons/apple-touch-icon.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="b5b95bc2-076b-409a">
<link rel="icon" type="image/png" href="https://www.fandom.com/f2/assets/favicons/favicon-32x32.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" sizes="32x32" data-webtasks-id="46561f42-17fe-4726">
<link rel="icon" type="image/png" href="https://www.fandom.com/f2/assets/favicons/favicon-16x16.png?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" sizes="16x16" data-webtasks-id="a7335e3a-d7aa-4fea">
<link rel="manifest" href="https://www.fandom.com/f2/assets/favicons/manifest.json?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="a2f9c920-b2c4-4d37">
<link rel="shortcut icon" href="https://www.fandom.com/f2/assets/favicons/favicon.ico?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="402f79b3-6f90-448c">
<meta name="msapplication-config" content="https://www.fandom.com/f2/assets/favicons/browserconfig.xml?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="d0930b46-8c85-4ebc">
<meta name="apple-mobile-web-app-title" content="Fandom" data-webtasks-id="8af59f88-bcb5-4995">
<meta name="application-name" content="Fandom" data-webtasks-id="715aa323-6f11-4ab6">
<meta name="theme-color" content="#ffffff" data-webtasks-id="8c55d561-1cb6-4150">
<meta name="google-site-verification" content="gpjDSKft3IX1rWylaTa_VAAgbn0SoAbo2VWfrqTxeB8" data-webtasks-id="094ee9ed-c07b-4dc6">
<script src="https://script.crazyegg.com/pages/versioned/common-scripts/794a0020b62922d4240428b047e7b861.js" type="text/javascript" async="" data-webtasks-id="a8d5c224-c9f7-45a3"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="7962fbf0-14f1-49a1"></script><script type="text/javascript" async="" src="https://script.crazyegg.com/pages/scripts/0097/8082.js" data-webtasks-id="35ea0e40-21b6-4bb2"></script><script type="text/javascript" integrity="sha384-7x9NaHX3HxCUYCmCnbfq2CSxglcaiO7vhMln0q050owSIgqOj8bI4xWsWkxZ1nyn" crossorigin="anonymous" async="" src="https://cdn.amplitude.com/libs/marketing-analytics-browser-gtm-0.8.0-min.js.gz" data-webtasks-id="d776c0e4-9c44-46b8"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-TSCX7VD&l=dataLayer" data-webtasks-id="a0b73a65-4786-46ec"></script><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-K3C2HJ2&l=dataLayer" data-webtasks-id="8378c81a-a1fe-4ce6"></script><script type="text/javascript" async="" src="https://cdn.jsdelivr.net/npm/@amplitude/[email protected]/dist/index.js" data-webtasks-id="2eaabedc-604d-4a5d"></script><script async="" src="//cdn.petametrics.com/l9ehhrb6mtv75bp2.js?ts=468922" data-webtasks-id="d98599d7-8200-417c"></script><script id="twitter-wjs" src="https://platform.twitter.com/widgets.js" data-webtasks-id="e00e87c0-1144-4bca"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-5LPWXZP" data-webtasks-id="8a0bd0f7-2c32-40fa"></script><script data-webtasks-id="8bcdea87-1ba5-43cc"> window.fandom = {"ads":{"adStack":[],"runtime":[]},"config":{"environment":{"debug":false,"env":"prod","locale":"en","siteType":"web"},"assetPath":"https:\/\/www.fandom.com\/f2\/assets","tracking":{"googleAnalytics":{"accounts":{"production":[{"id":"UA-71552437-1","name":"fandomProd","sampleRate":100},{"id":"UA-32129070-1","name":"wikiSampledProd","sampleRate":100},{"id":"UA-32132943-1","name":"wikiUnsampledProd","sampleRate":100}],"development":[{"id":"UA-71552437-2","name":"fandomDev","sampleRate":100},{"id":"UA-32129070-2","name":"wikiSampledDev","sampleRate":100},{"id":"UA-32132943-2","name":"wikiUnsampledDev","sampleRate":100}]}},"dataWarehouse":{"routes":{"adRenderEndedEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengadinfo","adPageInfoPropEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengpageinfo_props","adVideoEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengplayerinfo","adViewabilityEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/adengviewability","event":"https:\/\/beacon.wikia-services.com\/__track\/special\/trackingevent","videoEvent":"https:\/\/beacon.wikia-services.com\/__track\/special\/videoplayerevent","pageView":"https:\/\/beacon.wikia-services.com\/__track\/view","performanceMonitoring":"https:\/\/beacon.wikia-services.com\/__track\/special\/performance_metrics","identityInfo":"https:\/\/beacon.wikia-services.com\/__track\/special\/identityinfo"},"wikiId":1452001},"simpleReach":{"pid":{"production":"58eea050736b792e840016ba","development":"000000000000000000000000"}},"samplingFactor":{"performanceMonitoring":10}},"dsSpriteFile":"sprite.svg","cookieDomain":".fandom.com"},"endpoints":{"getVideoPlaylist":"https:\/\/www.fandom.com\/f2\/api\/public\/video\/playlist-for-id","getKibanaLog":"https:\/\/www.fandom.com\/f2\/api\/debug"},"pageType":"article","user":{"region":"united-kingdom"},"regions":{"AU":"australia","UK":"united-kingdom","US":"united-states"},"comscore":{"id":"6177433","keyword":"movies","url":"https%3A%2F%2Fwww.fandom.com%2Farticles%2Farrowverse-the-flash-top-ten-10%3Fcomscorekw%3Dmovies"},"quantcastUrl":"https:\/\/secure.quantserve.com\/quant.js","article":{"featuredImage":"https:\/\/static.wikia.nocookie.net\/eae22e99-7894-43c7-8a41-e43e30500cc4\/scale-to-width-down\/550","id":1594293,"slug":"arrowverse-the-flash-top-ten-10","tags":["Arrow","Arrowverse","Black Lightning","Boatwoman","CW","DC","DC Comics","Legends of Tomorrow","Supergirl","The CW","The Flash","TV"],"topics":[{"id":"10","name":"DC","topicSlug":"dc","pinned":false},{"id":"48","name":"Streaming","topicSlug":"streaming","pinned":false},{"id":"8","name":"Comics","topicSlug":"comics","pinned":false},{"id":"50","name":"TV","topicSlug":"tv","pinned":false}],"topicNames":["DC","Streaming","Comics","TV"],"publishedTime":"2023-05-24T17:41:38+00:00","authorName":"Blair Marnell","isArticlePlus":false,"contentId":138781},"feed":{"hotContentModuleUrl":"https:\/\/www.fandom.com\/f2\/api\/public\/hot-content-module?region=united-kingdom"},"disableJwplayer":null}; </script>
<link rel="canonical" href="https://www.fandom.com/articles/arrowverse-the-flash-top-ten-10" data-webtasks-id="0e059370-4212-411d">
<meta name="parsely-metadata" content="{"postID":1594293,"authorType":"Staff","isVideo":false,"postType":"post","userID":46773010}" data-webtasks-id="3da84d15-39f6-49f5">
<script type="application/ld+json" data-webtasks-id="eb6703e9-6b07-406c">[{"@context":"http://schema.org","@type":"NewsArticle","author":"Blair Marnell","dateModified":"2023-05-24T17:41:38+00:00","datePublished":"2023-05-24T17:41:38+00:00","headline":"10 Great Moments from the Arrowverse","image":"https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/1000","keywords":["DC","Streaming","Comics","TV","Arrow","Arrowverse","Black Lightning","Boatwoman","CW","DC","DC Comics","Legends of Tomorrow","Supergirl","The CW","The Flash","TV","topic-dc","topic-streaming","topic-comics","topic-tv"],"name":"10 Great Moments from the Arrowverse","publisher":{"@type":"Organization","name":"FANDOM","logo":{"@type":"ImageObject","url":"https://static.wikia.nocookie.net/fa525fd0-cb27-439f-8334-6121da20a706"}},"thumbnailUrl":"https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/400","url":"https://www.fandom.com/articles/arrowverse-the-flash-top-ten-10","articleSection":"articles","wordCount":2639,"creator":"Blair Marnell","dateCreated":"2023-05-24T17:41:38+00:00","articleBody":"After eleven years and 41 seasons of TV spread out across six live-action series and two animated programs, the Arrowverse comes to an end this week with the final episode of The Flash. This sprawling superhero universe had somewhat humble beginnings in 2012, with the premiere of Arrow. That hit series started off as a grounded take on superheroes but soon led to a spinoff for The Flash and the acknowledgment that superpowers would indeed play a part in this universe. From there, Supergirl, DC’s Legends of Tomorrow, Batwoman, and Black Lightning shared so much real estate on The CW that it was practically an all-superhero network at times. For now, Superman & Lois could possibly carry the superhero flame for Arrowverse fans if it is renewed for a fourth season. But only as an echo, since the producers of that series have previously revealed it does not take place on the same world as the primary Arrowverse and is considered its own reality with distinct versions of the characters rather than a continuation of the Supergirl Clark and Lois who came before (not that we should rule out universe-hopping of course, since we’ve seen it before). With The Flash’s finale here, we’re taking a look back at ten of the greatest moments from the Arrowverse. There were a lot of options to choose from, and not everything made the cut even though it was terrific as well (Beebo, you were awesome!). But there are among the stories and episodes that we’ll remember the most looking back at the Arrowverse. Deathstroke vs. Arrow The ultimate confrontation between Oliver Queen (Stephen Amell) and Slade Wilson (Manu Bennett) was hinted at during the opening moments of Arrow when Deathstroke’s mask was seen with an arrow through its right eye while staked on the beach of Lian Yu. Slade didn’t actually appear until later during Season 1, but he unexpectedly became a friend and mentor to Oliver. Unfortunately, their bond was broken in Season 2. Within the flashbacks to Oliver’s time on the island, viewers saw Slade’s obvious attraction to Shado (Celina Jade), a woman who was clearly more in love with Oliver than she was with Slade. At one point, to save Slade’s life, Oliver and Shado injected him with Mirakuru, a drug that gave him superhuman abilities and drove him insane. Shortly thereafter, Shado was murdered, and Slade vowed revenge on Oliver. In the present, Slade revealed himself to be Oliver’s ultimate enemy in Season 2 as he fully adopted the persona of Deathstroke, the Terminator. Slade even murdered Oliver’s mother, Moira Queen (Susanna Thompson), just to break Oliver’s spirit. Events came to a head in the second season finale, “Unthinkable,” when past and present collided. The final battle between Oliver and Slade was intercut between their climatic fight five years earlier. It was a truly epic conclusion for the season, and one of the highpoints of the Arrowverse. The Brave and the Bold Arrow’s success didn’t immediately lead to a full-blown Arrowverse. But the stage was set for a spinoff in Arrow season 2’s two-part episode, “The Scientist” and “Three Ghosts,” which introduced Grant Gustin as Barry Allen, a CSI investigator from Central City who came to Starling City in the hope of finding the man who murdered his mother years earlier. Soon enough, Barry was in on Oliver’s secret and he saved his life before giving Oliver his first domino mask. Barry and Oliver briefly reunited in the first episode of The Flash, when the former was inspired to become his own kind of hero. A few episodes later, the first-ever true Arrowverse crossover took place over two episodes: “Flash vs. Arrow” and “The Brave and the Bold.” In the first part, Barry was temporarily turned against Oliver, leading to their obligatory superhero fight. And in the second episode, Barry and Oliver further solidified their bond while going after Digger Harkness (Nick E. Tarabay), a renegade member of Task Force X. This event became a yearly tradition for the two series, and it became even bigger as more spinoff shows were added to the mix. Flash vs. Reverse-Flash The Flash’s first season was arguably the best part of the show for several reasons. In particular, there was a lot of tension because viewers learned long before Barry that his mentor, Harrison Wells (Tom Cavanagh), was secretly Eobard Thawne, the Reverse-Flash, and the man who murdered Barry’s mother. Thawne and Flash have constantly clashed throughout the duration of the show, but their battles near the end of Season 1 really stand out. In the penultimate episode of the season, there was even a minor crossover as Oliver Queen traveled to Central City to team up with Barry and Firestorm (Robbie Amell) to subdue Thawne. But in the season finale, the battle belonged to Barry alone. And Barry wouldn’t have triumphed unless his romantic rival (and Thawne’s ancestor), Eddie Thawne (Rick Cosnett), took his own life to ensure that the Reverse-Flash could never be born. In a cruel twist for Team Flash, Thawne always found a way to cheat his fate before returning time and time again. World’s Finest Before Supergirl officially joined the Arrowverse on The CW, it was all by itself on CBS. Regardless, that didn’t stop the show’s producers from getting the clearance needed from the networks to have Grant Gustin’s Flash guest star for a one-off appearance, as he reunited with his former Glee co-star, Melissa Benoist, who headlined the series as Kara/Supergirl. Within the episode, Barry found himself temporarily trapped on Supergirl’s world, where he quickly befriended Kara and teamed up with her against Silver Banshee (Italia Ricci) and Livewire (Brit Morgan). In the episode’s most adorable scene, Kara was absolutely giddy when Barry gave her ice cream after a super-speedy delivery. This was easily the most light-hearted crossover of the Arrowverse, and also one of the most fun. A Hellblazer Returns Arrow star Stephen Amell was very supportive of NBC’s Constantine series, which featured Matt Ryan as John Constantine. Amell even offered to guest star as Oliver Queen on Constantine before NBC ultimately canceled the show after 13 episodes. Thankfully, the producers of Arrow shared Amell’s affection for the series, and they managed to get permission to use Ryan’s version of Constantine for a guest appearance in Season 4. Ryan reprised his role in both the past and present day sequences in “Haunted,” as it was revealed how Constantine met Oliver on Lian Yu. That’s why Oliver was able to call upon Constantine for help in the present when Sara Lance (Caity Lotz) was resurrected without a soul. This story was a prequel for DC’s Legends of Tomorrow, which featured Lotz in a leading role alongside Brandon Routh’s Ray Palmer, who has a vocal cameo in this episode. Constantine’s return went over very well with the fans, and Ryan came back for a long stint on Legends of Tomorrow that further cemented his take on DC’s occult hero. Showdown on Lian Yu Arrow season 5 pushed Oliver to his limits, thanks to Adrian Chase (Josh Segarra). In the comics, Adrian was Vigilante, but in a swerve, the Arrowverse’s incarnation of Adrian was actually Simon Morrison, the son of Justin Claybourne (Garwin Sanford), one of Oliver’s first victims during his stint as the Arrow. “Adrian” reinvented himself as Prometheus and he used Oliver’s tactics against him while assembling his own twisted version of Team Arrow including Black Siren (Katie Cassidy), Talia al Ghul (Lexa Doig), and Evelyn Sharp (Madison McLaughlin). In the season 5 finale, “Lian Yu,” Prometheus had captured most of Team Arrow, and Oliver’s son, William Clayton (Jack Moore), and taken them to the infamous island where Oliver became the Arrow. That’s why Oliver turned to two of his former foes, Malcolm Merlyn (John Barrowman) and Slade Wilson (Bennett), to help even the odds. This led to a battle for the ages and one of the few cliffhanger season finales in the history of the show. It also marked the end of Oliver’s flashbacks on Lian Yu and sent Arrow in a new direction for its remaining seasons. Star-Crossed Duet As mentioned above, Gustin and Benoist both were cast members on Glee, which was geared towards showing off their singing abilities. So perhaps it was inevitable that The Flash would get a musical episode, “Duet,” guest starring Benoist’s Kara, alongside yet another Glee veteran, Darren Criss, as the Music Meister, a villain who likes to make his victims sing. The Supergirl episode, “Star-Crossed,” briefly sets up the crossover when the Music Meister put Kara in a hypnotic coma that trapped her mind in an alternate world where she was a nightclub singer. Barry suffered the same fate in “Duet,” and he joined Kara before they were warned by the Music Meister that they had to follow his script to escape. And if they died in this world, they would die in reality as well. Barry and Kara encountered several familiar faces in this world who resembled their friends and family. But the Music Meister’s real test forced them to confront their respective feelings for Iris (Candice Patton) and Mon-El (Chris Wood). Crisis on Earth-X While Invasion! was the first Arrowverse crossover to feature the characters from four different shows, Crisis on Earth-X took things to another level by running through episodes of Supergirl, Arrow, The Flash, and Legends of Tomorrow. It also marked the live-action debut of The Ray (Russell Tovey), who was previously introduced on the animated series, Freedom Fighters: The Ray. At the long-delayed wedding of Barry and Iris, villains from Earth-X crashed the ceremony including Dark Arrow (Oliver’s counterpart), Overgirl (Kara’s counterpart), and Prometheus, an alternate version of Oliver’s late friend, Tommy Meryln (Colin Donnell). In the multiverse, Earth-X is the world where the Nazis won World War II, and Dark Arrow ruled alongside his wife, Overgirl. Additionally, Barry’s old enemy, Eobard Thawne, was working with these super Nazis as they attempted to steal Supergirl’s heart so that they could save Overgirl’s life. Out of the four shows, this crossover had a more profound effect on Legends of Tomorrow, thanks to the death of one half of Firestorm, Martin Stein (Victor Garber), and the appearance of The Ray’s boyfriend, Leo Snart (Wentworth Miller), who was a variant of their late teammate, Leonard Snart/Captain Cold. The crossover also ended with the double wedding of Barry and Iris and Oliver and Felicity, but it was kind of uncool of Team Arrow to steal Barry and Iris’ thunder, so to speak. Elseworlds Compared to Crisis on Earth-X, Elseworlds was a rather compact three-episode crossover that set the stage for an even bigger event to come. When John Deegan (Jeremy Davies) got his hands on the Book of Destiny, his revisions to history led to Barry and Oliver literally living each other’s lives. Even their closest friends and family didn’t believe that anything had changed, which is why Barry and Oliver recruited Supergirl and her famous cousin, Superman (Tyler Hoechlin), for additional help. This storyline also featured the introduction of Ruby Rose’s Kate Kane before she headlined the first season of Batwoman on The CW. But an even bigger treat for old school fans was the return of John Wesley Shipp as Barry Allen from The Flash TV series that aired in 1990. Shipp had already appeared in the Arrowverse as Henry Allen and Jay Garrick, but this was the first time that he got to play his version of Barry opposite Gustin’s Flash. Shipp’s Barry also carried a dire warning about The Monitor (LaMonica Garrett), an enigmatic alien who provided Deegan with the Book of Destiny. This paved the way for the Arrowverse’s biggest event, Crisis on Infinite Earths. Crisis on Infinite Earths In retrospect, there was no way to capture the full grandeur of Marv Wolfman and artist George Perez’s 1985 crossover epic, Crisis on Infinite Earths, on a TV budget, even with five episodes to play with. But the producers still managed the impressive feat of recruiting several stars from previous DC shows and movies to make cameo appearances, including Clark Kent (Tom Welling) and Lois Lane (Erica Durance) from Smallville, Lucifer Morningstar (Tom Ellis) from Lucifer, Helena Kyle (Ashley Scott) from Birds of Prey, Alexander Knox (Robert Wuhl) from Tim Burton’s Batman, and even Burt Ward as a long-retired Dick Grayson from the world of Batman ‘66. However, it fell upon the Arrowverse heroes to prevent the complete destruction of the DC multiverse. The most talked about cameo in the crossover was Ezra Miller’s brief appearance as The Flash from the DC Extended Universe, and the interplay between Miller and Gustin’s Barry Allens was so much fun that it was over far too quickly. This was also a complete surprise, as the creative team pulled off the Herculean feat of keeping Miller’s appearance a secret. Almost all of the other cameos were officially announced or leaked ahead of time. Superman Returns star Brandon Routh also got a chance to revisit his take on the Man of Steel after playing The Atom for years on Arrow and Legends of Tomorrow. Routh’s Superman had a costume similar to the character’s look in Kingdom Come, and a similar backstory where he lost his Lois and several of his closest friends to an attack by The Joker. Yet this Superman never lost his hope, and it was genuinely exciting to hear John Williams’ “Superman March” theme as Routh’s Superman put on his costume again. The Flash had been heading towards his death in the Crisis since the very first episode of the series. But he cheated fate thanks to his older counterpart, Barry (Shipp), who fulfilled the prophecy of The Flash’s demise with some emotional callbacks to his time with the character. Oliver Queen was not as lucky, as he pulled off the rare trick of dying twice during the crossover. After Oliver’s first death, he was reborn as The Spectre, but he gave his life once again for the sake of restoring the multiverse. In the aftermath, several worlds were merged into the prime Arrowverse Earth, including the alternate Earths of Black Lightning and Supergirl. With most of the Arrowverse heroes finally on a single world, this allowed them form their own version of the Justice League. In many ways, the rest of the Arrowverse didn’t live up to the promise of Crisis’ finale. But it was a triumph for a superhero TV universe that has earned its place in the comic book pantheon. We also asked the community at the Arrowverse Wiki their favorite moments and here are some of your choices! “‘Tricksters‘ is my favorite Flash episode. Frankly, I could say any moment with Mark Hamill as The Trickster, but it was that first episode that was really special.” – J Fan “Lena‘s speech against Reign when she was locked up within Sam. Just was giving complete chills.” – Xandermcc “The Legends vs. Zagurons and Bishop in the Season 6 finale.” – Tommy,Klaus&Kol2012+ “Black Lightning 1×13: Jennifer restores Jefferson‘s powers. Inspiring moment after a nail biting lead up with the threat of the A.S.A.” – GrandTemplar98 “Arrow in prison beating the hell out of everyone.” – Vbmjkmc “‘My goals are beyond your understanding.’ My favorite DC supervillain couldn’t have been better adapted to the screen.” – IlDottore0 “My favorite show was Legends of Tomorrow. Sara Lance, my favorite character. Love Avalance, ‘Bullet Blondes.'” – 7Marie7 “The pilot episode of The Flash. Such a brilliant setup.” – Multifander "}]</script>
<meta property="og:locale" content="en_US" data-webtasks-id="2aa1cc85-8448-41d2">
<meta property="og:type" content="article" data-webtasks-id="db14146f-08ff-4c99">
<meta property="og:title" content="10 Great Moments from the Arrowverse" data-webtasks-id="a758dd7b-2646-42cd">
<meta property="og:description" content="As The Flash comes to an end, and the entire Arrowverse with it, we're taking a look back at some standout moments from across its many series." data-webtasks-id="c5933499-0d4a-400e">
<meta name="description" content="As The Flash comes to an end, and the entire Arrowverse with it, we're taking a look back at some standout moments from across its many series." data-webtasks-id="c975724c-819e-4dbd">
<meta property="og:url" content="https://www.fandom.com/articles/arrowverse-the-flash-top-ten-10" data-webtasks-id="81f65833-2582-4eaa">
<meta property="og:site_name" content="Fandom" data-webtasks-id="e07c349c-173f-4686">
<meta property="og:image" content="https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/thumbnail-down/width/1280/height/720" data-webtasks-id="dbf5c0a9-78b3-403f">
<meta property="og:image:width" content="1280" data-webtasks-id="3f76c5f1-9cbf-46fd">
<meta property="og:image:height" content="720" data-webtasks-id="667aefca-55f6-4e32">
<meta property="article:publisher" content="https://www.facebook.com/getfandom" data-webtasks-id="a1fab621-a714-4c66">
<meta property="article:tag" content="DC" data-webtasks-id="0948d87a-5b1f-472f">
<meta property="article:tag" content="Streaming" data-webtasks-id="b4f8d756-c5e5-4858">
<meta property="article:tag" content="Comics" data-webtasks-id="a76fa482-cb4e-41c4">
<meta property="article:tag" content="TV" data-webtasks-id="972f61f6-5a49-4efe">
<meta property="article:published_time" content="2023-05-24T17:41:38+00:00" data-webtasks-id="e8f3bc49-77d9-4e35">
<meta property="fb:app_id" content="112328095453510" data-webtasks-id="2a5681de-635e-4ffa">
<meta name="twitter:card" content="summary" data-webtasks-id="6383fcab-c102-46d1">
<meta name="twitter:title" content="10 Great Moments from the Arrowverse" data-webtasks-id="a7cf4418-8001-4b52">
<meta name="twitter:description" content="As The Flash comes to an end, and the entire Arrowverse with it, we're taking a look back at some standout moments from across its many series." data-webtasks-id="7a29829e-0c0c-4f57">
<meta name="twitter:site" content="@getfandom" data-webtasks-id="2455fbdc-a4d2-448c">
<meta name="twitter:image" content="https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/thumbnail-down/width/1280/height/720" data-webtasks-id="a829aabc-e166-44ac">
<meta name="apple-itunes-app" content="app-id=1230063803" data-webtasks-id="f049dda0-dc46-4751">
<script async="" src="https://www.googletagservices.com/tag/js/gpt.js" data-webtasks-id="a4da6697-f40f-4a1a"></script>
<link href="https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,hebrew,latin-ext" rel="stylesheet" data-webtasks-id="ac135cfb-e6ad-4ae4">
<link rel="stylesheet" href="https://www.fandom.com/f2/assets/common.css?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="5d6ebb01-840e-45ae">
<link rel="stylesheet" href="https://www.fandom.com/f2/assets/news-and-stories.css?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" data-webtasks-id="7c7b8696-d3d4-43d9">
<script data-webtasks-id="02c40b2d-085e-4bc6">!function(r){var n=window.webpackJsonp;window.webpackJsonp=function(e,u,c){for(var f,i,p,a=0,l=[];a<e.length;a++)i=e[a],o[i]&&l.push(o[i][0]),o[i]=0;for(f in u)Object.prototype.hasOwnProperty.call(u,f)&&(r[f]=u[f]);for(n&&n(e,u,c);l.length;)l.shift()();if(c)for(a=0;a<c.length;a++)p=t(t.s=c[a]);return p};var e={},o={24:0};function t(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return r[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=r,t.c=e,t.d=function(r,n,e){t.o(r,n)||Object.defineProperty(r,n,{configurable:!1,enumerable:!0,get:e})},t.n=function(r){var n=r&&r.__esModule?function(){return r.default}:function(){return r};return t.d(n,"a",n),n},t.o=function(r,n){return Object.prototype.hasOwnProperty.call(r,n)},t.p="",t.oe=function(r){throw console.error(r),r}}([]);</script>
<script src="https://www.fandom.com/f2/assets/common.en.js?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" defer="" data-webtasks-id="a7a50b39-6a94-410b"></script>
<script src="https://www.fandom.com/f2/assets/news-and-stories.en.js?v=e7327b1613358a74d36bdec00e91ca9e4fbc7dee" defer="" data-webtasks-id="561a5671-61bb-4ce4"></script>
<link rel="prefetch" href="https://www.google-analytics.com/analytics.js" data-webtasks-id="49c5b202-7d90-4367">
<script data-webtasks-id="30a44671-75cb-491b">
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
</script>
<script async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="3c2c3ff9-1a91-4194"></script>
<!-- Google Tag Manager -->
<script data-webtasks-id="64c6142b-ed02-4844">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-5LPWXZP');</script>
<!-- End Google Tag Manager -->
<!-- sjc -->
<script src="//script.wikia.nocookie.net/fandom-ae-assets/tracking-opt-in/v11.2.1/tracking-opt-in.min.js" type="text/javascript" async="" data-webtasks-id="4510ecfc-e9fa-4914"></script><script src="//script.wikia.nocookie.net/fandom-ae-assets/identity-service/v2.5.0/index.js" type="text/javascript" async="" data-webtasks-id="43d8e6e3-67a6-4984"></script><script src="//script.wikia.nocookie.net/fandom-ae-assets/platforms/v145.1.2/f2/main.bundle.js" type="text/javascript" async="" data-webtasks-id="6902a7c4-3958-4ac1"></script><link href="//script.wikia.nocookie.net/fandom-ae-assets/platforms/v145.1.2/f2/styles.css" rel="stylesheet" data-webtasks-id="331ddc59-ca7a-4b25"><meta http-equiv="origin-trial" content="A7CQXglZzTrThjGTBEn1rWTxHOEtkWivwzgea+NjyardrwlieSjVuyG44PkYgIPGs8Q9svD8sF3Yedn0BBBjXAkAAACFeyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="589c1e23-8410-4a9b"><meta http-equiv="origin-trial" content="A3vKT9yxRPjmXN3DpIiz58f5JykcWHjUo/W7hvmtjgh9jPpQgem9VbADiNovG8NkO6mRmk70Kex8/KUqAYWVWAEAAACLeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="58a23ff8-2784-4913"><meta http-equiv="origin-trial" content="A4A26Ymj79UVY7C7JGUS4BG1s7MdcDokAQf/RP0paks+RoTYbXHxceT/5L4iKcsleFCngi75YfNRGW2+SpVv1ggAAACLeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXRhZ3NlcnZpY2VzLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1N1YmRvbWFpbiI6dHJ1ZSwiaXNUaGlyZFBhcnR5Ijp0cnVlfQ==" data-webtasks-id="07d6bdbb-d4bf-475a"><meta http-equiv="origin-trial" content="As0hBNJ8h++fNYlkq8cTye2qDLyom8NddByiVytXGGD0YVE+2CEuTCpqXMDxdhOMILKoaiaYifwEvCRlJ/9GcQ8AAAB8eyJvcmlnaW4iOiJodHRwczovL2RvdWJsZWNsaWNrLm5ldDo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" data-webtasks-id="053a7148-d061-4881"><meta http-equiv="origin-trial" content="AgRYsXo24ypxC89CJanC+JgEmraCCBebKl8ZmG7Tj5oJNx0cmH0NtNRZs3NB5ubhpbX/bIt7l2zJOSyO64NGmwMAAACCeyJvcmlnaW4iOiJodHRwczovL2dvb2dsZXN5bmRpY2F0aW9uLmNvbTo0NDMiLCJmZWF0dXJlIjoiV2ViVmlld1hSZXF1ZXN0ZWRXaXRoRGVwcmVjYXRpb24iLCJleHBpcnkiOjE3MTk1MzI3OTksImlzU3ViZG9tYWluIjp0cnVlfQ==" data-webtasks-id="8c636f64-d86e-4417"><script src="https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202306270101/pubads_impl.js" async="" data-webtasks-id="9406f158-bd27-4dab"></script><style type="text/css" data-webtasks-id="34d9c416-b288-499b">._3nfntY7bV6Lslqu8hQRMHp{display:inline-flex}._3nfntY7bV6Lslqu8hQRMHp input{height:0;visibility:hidden;width:0}._3nfntY7bV6Lslqu8hQRMHp label{align-items:center;background:#595458;border-radius:50px;cursor:pointer;display:flex;height:30px;justify-content:space-between;position:relative;transition:background-color .2s;width:50px}._3nfntY7bV6Lslqu8hQRMHp label span{background:#fff;border-radius:26px;box-shadow:0 0 2px 0 rgba(0,0,0,.2);content:"";height:26px;left:2px;position:absolute;top:2px;transition:.2s;width:26px}._3nfntY7bV6Lslqu8hQRMHp input:checked+label{background-color:#520044}._3nfntY7bV6Lslqu8hQRMHp input:checked+label span{left:calc(100% - 2px);transform:translateX(-100%)}._3nfntY7bV6Lslqu8hQRMHp ._2JYcc5VzXwpLbIkBga-fyt:active span{background:#520044;width:30px}</style><style type="text/css" data-webtasks-id="0396cb8b-29df-4353">._2CE3idgw4xgGVje2bvPxLv{overflow:hidden}._1MLS_xjiUjam_u2qmURY4i{background-color:rgba(0,0,0,.5);bottom:0;color:#000;left:0;max-width:100vw;position:fixed;right:0;top:0}._3GZth0RBCN1lL5Uj9D2ipN{background-color:#fff;border-top-left-radius:4px;border-top-right-radius:4px;display:flex;flex-direction:column;font-family:Rubik,Helvetica Neue,Helvetica,Arial,sans-serif!important;font-weight:400}._1L9HOak_x4YyxmRKu67v03{position:absolute}._1r08nyekFdI7_2d8r3AIBf{background-color:#fff;box-shadow:0 0 6px 0 hsla(0,0%,76.5%,.5);box-sizing:border-box;padding:12px 27px;text-align:center;display:flex;gap:16px}@media only screen and (min-width:768px){._1r08nyekFdI7_2d8r3AIBf{text-align:right;flex-direction:row-reverse}}@media only screen and (max-width:767px){._1r08nyekFdI7_2d8r3AIBf{display:flex;height:auto;flex-direction:column;gap:8px}}.XHcr6qf5Sub2F2zBJ53S_{border-radius:3px;box-sizing:border-box;cursor:pointer;display:inline-block;font-size:12px;font-weight:700;line-height:1;outline:none;padding:11px 18px;text-transform:uppercase}._2O--J403t2VqCuF8XJAZLK{display:flex;height:auto;gap:18px;flex-direction:row}@media only screen and (max-width:767px){._2O--J403t2VqCuF8XJAZLK{flex-direction:column-reverse;gap:8px}}.NN0_TB_DIsNmMHgJWgT7U,.ctUA_BYxme4s8b2T66wjD,.hscaUBZW7rwd_U4uzKfml{background-color:#520044;border:1px solid #520044;color:#fff}.Q9ccfZxMajKC1-OiA2d_d,.bXhNiA09CDOuFH0Zi9NOx{background-color:#fff;border:1px solid #291927;color:#291927}.bXhNiA09CDOuFH0Zi9NOx{order:2}.Q9ccfZxMajKC1-OiA2d_d{order:3}.NN0_TB_DIsNmMHgJWgT7U{order:1}._3dtr-jV1nbqqThntJSAoVu{color:#520044!important;font-size:12px;font-weight:700;text-decoration:none}._2tTt9QTzBMmwNw5yz2JxDV{fill:#595458;height:12px;margin-bottom:-2px;margin-left:10px;width:12px}.rwiI87jHlfiD5iV1_8GJF{transform:rotate(180deg)}</style><style type="text/css" data-webtasks-id="79ec9f27-6d99-4fd9">._9St5abedXLD9eTv3FBDBK{border-top:1px solid #291927;padding:20px 0}.NkQeAYwGCBVAGhrYAHUGk{display:flex;justify-content:space-between}._1GHCkwZiwOtY5rByP3ndrX{color:#000;font-size:14px;font-weight:500}._1hNWKDVJf2Z0Wsp4jQFbmV{color:#291927;cursor:pointer;font-size:12px;font-weight:700;margin-top:14px}._1Rj4hHh0-ZRvEFSgEpV4JR{margin-top:0}.pbzB-OMrajwaSLfnj4AqI{font-size:12px;line-height:1.6;margin-top:24px;white-space:pre-line}</style><style type="text/css" data-webtasks-id="f7b8e16a-afab-48e6">._3MzFGYqqqgGfxN7P_T7MjC{border:1px solid #291927;margin-top:24px}.Gsw5bcLKsUulxrKo-zq_H{background-color:#291927;color:#fff;font-size:14px;font-weight:500;padding:4px 12px}.cBoIN3nD2E_BfIseJC9ny{background-color:#595458;color:#fff;font-size:12px;font-weight:700;padding:4px 10px}._3IWdS6NF2DsZvr9f5hwWv0{display:flex;justify-content:space-between}.s0w4Tf78Zuh7mDfcd4GV-{border-top:1px solid #291927;font-size:12px;padding:12px}._1EcnA2c7YUk8TmMFmPpJFB{color:#000;font-weight:500}._19jEJrzAJvHYnFQRYPD9GU{color:#291927;cursor:pointer;font-weight:700;margin-top:6px}._3pT8Ec9HBoE7DPYo82rV07{border:1px solid #291927;margin-top:12px}._1CWh8yPijOKSyqwHV7ajQg{color:#000}._1DXQjfGKBYCwJE3bUZM1C3{border-top:1px solid #291927;padding:8px 10px}._2cnA1PnI3KXXhusDoJsKY7{font-style:italic;margin-top:12px;white-space:pre-line}._1ByZTgiYepEr4L21zjyyUN{color:#520044!important;font-size:12px;text-decoration:none}._23TYaWkeSwByhxKm3SweIH{margin-top:5px}</style><style type="text/css" data-webtasks-id="a2e72f27-1a33-4143">._313xXaUmtx0RPAurqDYear{position:absolute}@media only screen and (max-width:767px){._313xXaUmtx0RPAurqDYear{height:calc(100% - 55px);top:55px;width:100vw}}@media only screen and (min-width:768px){._313xXaUmtx0RPAurqDYear{height:600px;left:50%;max-height:90vh;top:50%;transform:translate(-50%,-50%);max-width:768px}}._2LbAMqjIM0ZZlgkTKKiw50{line-height:1;padding:10px;overflow-y:auto}._2zXub0jN93FIGMC0Ks9gIK{color:#002a32;font-size:16px;font-weight:500}.Xs_q5GtBM4DjS9MOZCxM0{font-size:14px;margin:20px auto;text-align:center}@media only screen and (min-width:768px){.Xs_q5GtBM4DjS9MOZCxM0{font-size:16px}}._3FctDt3JQRdHFFHEGCKUN_{font-size:12px;line-height:20px;margin-bottom:20px}._3FctDt3JQRdHFFHEGCKUN_ p{margin:1em 0}._3zi8OLpklfmiLcCzY4tXHh{margin:15px 0 10px}</style><style type="text/css" data-webtasks-id="a823a938-21a0-475a">._1mGqz5e1PoTaTD4bCYWXFP{bottom:0;display:flex;flex-direction:column;position:fixed;width:100vw}@media only screen and (max-width:767px){._1mGqz5e1PoTaTD4bCYWXFP{max-height:calc(100% - 55px);position:absolute}}._1Pw3-inZyk15JAcJfFTZv6{line-height:1.43!important;overflow-y:auto;padding:28px 17px 20px}@media only screen and (max-width:767px){._1Pw3-inZyk15JAcJfFTZv6{margin-left:auto;margin-right:auto;text-align:center}}@media only screen and (min-width:768px){._1Pw3-inZyk15JAcJfFTZv6{line-height:1.57;padding:30px}}._1Pw3-inZyk15JAcJfFTZv6 p{font-size:14px;margin:1em 0}._2sSZyj2We3n1OhY3G5hRNL{color:#000;font-size:14px;font-weight:700;margin-bottom:12px;text-align:center}@media only screen and (min-width:768px){._2sSZyj2We3n1OhY3G5hRNL{font-size:16px}}._28Jd9gUhiwiUAkvsrV7_Cn{font-size:11px;line-height:21px;margin:0 -10px;max-height:383px;overflow-y:auto;padding:0 10px}@media only screen and (max-width:767px){._28Jd9gUhiwiUAkvsrV7_Cn{padding-left:0}}@media only screen and (min-width:768px){._28Jd9gUhiwiUAkvsrV7_Cn{max-height:176px;padding-bottom:0}}._28Jd9gUhiwiUAkvsrV7_Cn p:first-child{margin-top:0}._28Jd9gUhiwiUAkvsrV7_Cn p:last-child{margin-bottom:0}._3GLVjNcI1qrYOoFKpndQ3z{color:#520044;font-size:12px;font-weight:500;text-decoration:none}</style></head>
<body class="article-show" data-webtasks-id="7104ca7a-cf59-477a">
<div class="top-ads-container" data-webtasks-id="cb66303c-b9d9-402e">
<div class="ad-slot-placeholder top-leaderboard is-loading" data-webtasks-id="e9328450-c0e8-4ae3"></div>
</div>
<!-- Google Tag Manager (noscript) -->
<noscript data-webtasks-id="2298748a-02ea-462d"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5LPWXZP" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="global-navigation anon" data-lang="nav-desktop-en" data-webtasks-id="a9f11875-6795-4ba9">
<div class="global-navigation__top" data-webtasks-id="1bdd7153-2eb2-4e8f">
<nav class="global-navigation__nav" data-webtasks-id="3ea0a869-dd36-4e4d">
<a href="https://www.fandom.com/" aria-label="Fandom homepage" class="global-navigation__logo" data-webtasks-id="85b8ef9d-3542-4229">
<svg class="wds-icon" id="wds-brand-fandom-logomark" viewBox="0 0 174 242" data-webtasks-id="2075cb5b-e246-43a8">
<path fill="#FA005A" d="M166.935 118.154L50.108 1.273C49.504.67 48.735.259 47.898.093c-.837-.166-1.705-.08-2.493.247-.788.327-1.461.88-1.935 1.59-.474.71-.727 1.546-.727 2.4v98.276L7.365 67.22c-.604-.604-1.373-1.014-2.21-1.18-.837-.166-1.704-.08-2.492.247-.789.327-1.462.88-1.936 1.59-.474.71-.727 1.545-.727 2.4v101.487c-.003 3.172.62 6.312 1.833 9.242 1.214 2.929 2.993 5.59 5.237 7.83l46.037 46.099c4.528 4.53 10.666 7.078 17.068 7.085h33.68c6.4-.003 12.537-2.547 17.063-7.075l46.027-46.099c2.239-2.242 4.014-4.904 5.225-7.833 1.21-2.93 1.832-6.069 1.83-9.239v-36.533c.002-3.173-.621-6.315-1.834-9.247-1.212-2.932-2.989-5.596-5.231-7.84z" data-webtasks-id="ca1bdf86-0129-4ff7"></path>
<path fill="#FFC500" d="M131.297 160.901c.001 1.915-.757 3.754-2.108 5.111l-37.11 37.3c-.672.677-1.472 1.215-2.354 1.582-.88.366-1.826.555-2.78.555-.954 0-1.9-.189-2.78-.555-.882-.367-1.682-.905-2.355-1.582l-36.99-37.3c-1.352-1.351-2.114-3.184-2.117-5.096v-14.191c0-.951.19-1.892.554-2.77.366-.878.9-1.675 1.574-2.346l13.317-13.328c.672-.675 1.47-1.209 2.35-1.574.879-.365 1.82-.553 2.772-.553.952 0 1.894.188 2.773.553.879.365 1.677.899 2.35 1.574l18.624 18.645 18.596-18.65c.672-.675 1.47-1.209 2.349-1.574.879-.365 1.821-.553 2.773-.553.951 0 1.893.188 2.772.553.879.365 1.677.899 2.349 1.574l13.318 13.328c.673.671 1.207 1.469 1.571 2.347.364.877.552 1.819.552 2.769v14.181z" data-webtasks-id="75aea87e-043c-4d8e"></path>
</svg>
<div class="global-navigation__link-text" data-webtasks-id="362dedad-6686-4c3b">
FANDOM
</div>
</a>
<a href="#" class="global-navigation__search global-navigation__icon" accesskey="f" data-webtasks-id="04838935-a9b7-4118">
<svg class="wds-icon" width="23" height="22" viewBox="0 0 23 22" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="498cb8a7-44d7-45c3">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="b106ba3a-9bb9-483a"></use>
</svg>
</a>
<div class="global-navigation__links" data-webtasks-id="8b3ac303-3391-4c39">
<a href="https://www.fandom.com/fancentral/home" class="global-navigation__link is-fan-central" data-webtasks-id="0a55758f-e9e7-4977">
<div class="global-navigation__link-icon is-fan-central" data-webtasks-id="1b23d7e5-f2bc-4432">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="50d6895d-d0e2-4c87">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.526 5.004a3.502 3.502 0 1 0 0 7.004 3.502 3.502 0 0 0 0-7.004zm-1.502 3.502a1.502 1.502 0 1 1 3.004 0 1.502 1.502 0 0 1-3.003 0z" fill="#FA005A" data-webtasks-id="4aeca02b-d0a8-47e0"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.192 3.817A13.004 13.004 0 0 1 18.279 1h3.752a1 1 0 0 1 1 1V5.753c0 2.974-1.014 5.815-2.816 8.086l.795 3.977a1 1 0 0 1-.273.903l-4.003 4.003a1 1 0 0 1-1.688-.51l-.718-3.593-.736.515a.995.995 0 0 1-1.11.058.992.992 0 0 1-.422-.502.993.993 0 0 1-.064-.293 7.022 7.022 0 0 0-6.382-6.363.997.997 0 0 1-.778-.49 1.002 1.002 0 0 1 .048-1.086l.528-.754-3.592-.718a1 1 0 0 1-.511-1.688l4.003-4.003a1 1 0 0 1 .903-.274l3.977.796zm1.022 1.747A11.003 11.003 0 0 1 18.28 3h2.752v2.753c0 2.616-.927 5.11-2.564 7.066-.062.055-.116.119-.162.188a10.957 10.957 0 0 1-1.97 1.763L13.7 16.618a9.04 9.04 0 0 0-6.285-6.285L9.26 7.698l.001-.002a10.958 10.958 0 0 1 1.762-1.968c.07-.047.134-.102.191-.164zm-2.78-.06-2.086-.416L4.044 7.39l2.621.524.956-1.363c.254-.365.526-.714.813-1.047zM17.48 16.41c.365-.255.714-.526 1.047-.813l.417 2.086-2.303 2.304-.524-2.621 1.363-.956z" fill="#FA005A" data-webtasks-id="71584ad8-346d-4ead"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.974 23.061c2.26.057 5.259-.223 6.708-1.672a4.253 4.253 0 1 0-6.015-6.015C1.224 16.818.965 19.87 1.004 22.082c.009.535.435.966.97.98zm3.264-2.232c1.064-.214 1.716-.54 2.03-.854a2.253 2.253 0 1 0-3.186-3.186c-.303.302-.627.954-.84 2.037-.14.711-.21 1.485-.233 2.235.754-.02 1.524-.09 2.229-.232z" fill="#FA005A" data-webtasks-id="0c5e2b81-5a95-44cd"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="0a461113-950c-4693">
Fan Central
</div>
<div class="beta-tag" data-webtasks-id="c12c65b0-d930-4102">Beta</div>
</a>
<a href="https://www.fandom.com/topics/games" class="global-navigation__link" data-webtasks-id="92e8fb27-5ffd-434c">
<div class="global-navigation__link-icon" data-webtasks-id="ef0bd1f5-5b2c-4a4e">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="a62a4fdc-9954-4d98">
<path d="M7 15V11" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="d93fbf80-50e5-4c3a"></path>
<path d="M5 13H9" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="2bb138ec-264d-447f"></path>
<path d="M17 15C18.1046 15 19 14.1046 19 13C19 11.8954 18.1046 11 17 11C15.8954 11 15 11.8954 15 13C15 14.1046 15.8954 15 17 15Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="1ab48a59-f47b-4ad1"></path>
<path d="M12 6V2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="c202b6de-0e0d-4179"></path>
<path d="M23 8V15.17C23 15.7 22.79 16.21 22.41 16.58L19.58 19.41C19.21 19.79 18.7 20 18.17 20H5.83C5.3 20 4.79 19.79 4.42 19.41L1.59 16.58C1.21 16.21 1 15.7 1 15.17V8C1 6.9 1.9 6 3 6H21C22.1 6 23 6.9 23 8Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="bff44d76-c26b-4516"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="9b5bd422-9ca2-4dcb">
Games
</div>
</a>
<a href="https://www.fandom.com/topics/anime" class="global-navigation__link" data-webtasks-id="7f812b56-7747-4167">
<div class="global-navigation__link-icon" data-webtasks-id="97c73100-02ee-43e6">
<svg class="nav-icon wds-icon" width="24" height="24" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" data-webtasks-id="866c6349-6507-4786">
<path stroke="#FA005A" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m5.41 19.41-2.83-2.83c-.37-.37-.58-.88-.58-1.41V6c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v9.17c0 .53-.21 1.04-.59 1.41l-2.83 2.83c-.37.38-.88.59-1.41.59H6.83c-.53 0-1.04-.21-1.42-.59z" data-webtasks-id="27c44b3d-0aa7-4da9"></path>
<path stroke="#FA005A" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M6.09 10.09 7.3 8.88a.996.996 0 0 1 1.41 0l1.21 1.21M14.09 10.09l1.21-1.21a.996.996 0 0 1 1.41 0l1.21 1.21M15 15H9" data-webtasks-id="be971c20-de32-4ef4"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="5f099128-b25f-4209">
Anime
</div>
</a>
<a href="https://www.fandom.com/topics/movies" class="global-navigation__link" data-webtasks-id="555c0609-c10b-46a0">
<div class="global-navigation__link-icon" data-webtasks-id="e28e0aba-a1f9-4933">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="85fb8c0a-bcd1-4b6a">
<path d="M20 20H4C2.9 20 2 19.1 2 18V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6V18C22 19.1 21.1 20 20 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="48dd1f5b-068d-4806"></path>
<path d="M2 9H22" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="6dac2364-5804-4d40"></path>
<path d="M11 9L6 4" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="2e78f50a-4de1-46c3"></path>
<path d="M18 9L13 4" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="80c47d94-a739-461d"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="b30f22eb-2aaf-40c4">
Movies
</div>
</a>
<a href="https://www.fandom.com/topics/tv" class="global-navigation__link" data-webtasks-id="c713e2ef-6391-45da">
<div class="global-navigation__link-icon" data-webtasks-id="47589fe0-8fc3-43fa">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="331d9307-2550-48d5">
<path d="M4 20H20C21.1 20 22 19.1 22 18V8C22 6.9 21.1 6 20 6H4C2.9 6 2 6.9 2 8V18C2 19.1 2.9 20 4 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="eaa72519-9235-44af"></path>
<path d="M12 6L16 2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="789e7556-7dd3-4929"></path>
<path d="M12 6L8 2" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="b918e4ec-126a-4742"></path>
<path d="M17 11H18" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="9cb49d0d-c182-451c"></path>
<path d="M17 15H18" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="a01db2d8-e92a-4233"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="3a55fcd9-c680-49ab">
TV
</div>
</a>
<a href="https://www.fandom.com/video" class="global-navigation__link" data-webtasks-id="e00eff69-4d02-410b">
<div class="global-navigation__link-icon" data-webtasks-id="cc93b65f-50d4-41a9">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="c1b18dcf-abfb-40c1">
<path d="M16 12L10 8.54001V15.46L16 12Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="5a89f87d-7c2b-43be"></path>
<path d="M20 20H4C2.9 20 2 19.1 2 18V6C2 4.9 2.9 4 4 4H20C21.1 4 22 4.9 22 6V18C22 19.1 21.1 20 20 20Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="0c72905f-746b-48ea"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="4a11b27a-a88f-4c7b">
Video
</div>
</a>
<div tabindex="0" class="global-navigation__link wds-dropdown wds-open-to-right wds-has-shadow attach-to-bottom" data-webtasks-id="62b7f61f-f550-4c07">
<div class="wds-dropdown__toggle" data-webtasks-id="aa847b06-89a8-4cf4">
<div class="global-navigation__link-icon" data-webtasks-id="4b2f49a3-5703-4f5b">
<svg class="nav-icon wds-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="8c09b8fc-a85f-49a2">
<path d="M12 7L14.41 4.59C14.79 4.21 15.3 4 15.83 4H21C22.1 4 23 4.9 23 6V16C23 17.1 22.1 18 21 18H15.83C15.3 18 14.79 18.21 14.42 18.59L12 21L9.59 18.59C9.21 18.21 8.7 18 8.17 18H3C1.9 18 1 17.1 1 16V6C1 4.9 1.9 4 3 4H8.17C8.7 4 9.21 4.21 9.59 4.59L12 7Z" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="51677183-7472-4dc7"></path>
<path d="M12 20V7" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="cfe48d11-e0a0-47af"></path>
<path d="M16 9H19" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="d5b7c476-52a4-4406"></path>
<path d="M16 13H19" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="7f415465-205a-4360"></path>
<path d="M5 9H8" stroke="#FA005A" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" data-webtasks-id="6eb868b0-0365-493e"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="c396356c-9d23-43dc">
Wikis
</div>
</div>
<div class="wds-dropdown__content" data-webtasks-id="97a2c571-599d-4e99">
<ul class="wds-list wds-is-linked" data-webtasks-id="f66b6081-f70b-4b4a">
<li data-webtasks-id="45bb202f-8ce9-4e89">
<a href="https://www.fandom.com/explore" data-tracking="{"label": "global-navigation.link.explore"}" data-webtasks-id="3b64fccb-9c09-4a22">
Explore Wikis
</a>
</li>
<li data-webtasks-id="e82008bf-d7e7-4458">
<a href="//community.fandom.com/wiki/Community_Central" data-tracking="{"label": "global-navigation.link.community-central"}" data-webtasks-id="c1b3d0fb-1bfe-4ab2">
Community Central
</a>
</li>
</ul>
</div>
</div>
<a href="//createnewwiki.fandom.com/wiki/Special:CreateNewWiki" class="global-navigation__link" data-webtasks-id="74148614-e7ee-4818">
<div class="global-navigation__link-icon start-a-wiki" data-webtasks-id="ff6655a2-f892-4a67">
<svg class="nav-icon wds-icon" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="0b587d45-0c77-4c25">
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 8H10V2C10 1.447 9.552 1 9 1C8.448 1 8 1.447 8 2V8H2C1.448 8 1 8.447 1 9C1 9.553 1.448 10 2 10H8V16C8 16.553 8.448 17 9 17C9.552 17 10 16.553 10 16V10H16C16.552 10 17 9.553 17 9C17 8.447 16.552 8 16 8Z" fill="#520044" data-webtasks-id="b977cef3-a60e-4b01"></path>
</svg>
</div>
<div class="global-navigation__link-text" data-webtasks-id="e27a9841-65a7-44be">Start a Wiki</div>
</a>
</div>
</nav>
</div>
<div class="global-navigation__bottom" data-webtasks-id="b4b772ec-a38b-4b22">
<div class="wds-dropdown wds-open-to-right attached-to-bottom is-anon-dropdown" data-webtasks-id="c2b7bdad-ad36-4892">
<div class="wds-dropdown__toggle" data-webtasks-id="6cbc0cc4-bc91-47f7">
<div class="global-navigation__icon" data-webtasks-id="23301c2c-1f0c-4983">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="4fe1e094-b9c2-4395">
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9998 10.9999C11.0348 10.9999 10.2498 10.2149 10.2498 9.24988C10.2498 8.28488 11.0348 7.49988 11.9998 7.49988C12.9648 7.49988 13.7498 8.28488 13.7498 9.24988C13.7498 10.2149 12.9648 10.9999 11.9998 10.9999ZM11.9998 5.49988C9.93179 5.49988 8.24979 7.18188 8.24979 9.24988C8.24979 11.3179 9.93179 12.9999 11.9998 12.9999C14.0678 12.9999 15.7498 11.3179 15.7498 9.24988C15.7498 7.18188 14.0678 5.49988 11.9998 5.49988ZM19.679 18.414C17.692 16.31 14.952 15.125 12 15.125C9.04705 15.125 6.30805 16.31 4.32105 18.414C2.81705 16.61 2.00005 14.369 2.00005 12C2.00005 6.486 6.48605 2 12 2C17.514 2 22 6.486 22 12C22 14.371 21.181 16.613 19.679 18.414ZM12 22C9.71402 22 7.52702 21.229 5.75002 19.813C7.36302 18.094 9.59402 17.125 12 17.125C14.406 17.125 16.637 18.094 18.249 19.813C16.472 21.229 14.286 22 12 22ZM12 0C5.383 0 0 5.383 0 12C0 15.268 1.294 18.33 3.651 20.63C3.655 20.634 3.659 20.639 3.663 20.643C5.923 22.808 8.883 24 12 24H12.036C15.139 23.99 18.086 22.799 20.337 20.643C20.338 20.641 20.34 20.639 20.342 20.637C22.701 18.341 24 15.273 24 12C24 5.383 18.617 0 12 0Z" fill="#520044" data-webtasks-id="15871582-8728-4b47"></path>
</svg>
</div>
</div>
<div class="wds-dropdown__content" data-webtasks-id="fedc4333-e92f-44a2">
<div class="global-navigation__register-text" data-webtasks-id="db78ee71-bba5-4ffd">
Don't have an account?
</div>
<a href="https://auth.fandom.com/register?source=mw" data-param-name="redirect" data-tracking="{"label": "global-navigation.account.register"}" id="global-navigation-register-link" class="wds-button wds-is-secondary wds-is-full-width" data-webtasks-id="ad231c94-23a0-4c23">
Register
</a>
<hr data-webtasks-id="7ab5f24e-387f-4470">
<a href="https://auth.fandom.com/signin?source=mw" data-param-name="redirect" data-tracking="{"label": "global-navigation.account.sign-in"}" id="global-navigation-sign-in-link" class="wds-button wds-is-full-width" data-webtasks-id="5097469d-a6a7-45f9">
Sign In
</a>
</div>
</div>
</div>
<div class="global-nav-search-modal" data-webtasks-id="59ae5c79-d4f2-4c9c">
<div class="global-nav-search-modal-content" data-webtasks-id="3b732312-b560-4077">
<form class="search-box is-desktop-view is-modal" action="/" autocomplete="off" data-webtasks-id="45da1d4b-32f7-41ef">
<div class="global-nav-search-modal__close-container" data-webtasks-id="7a6bd01b-7a4b-4bba">
<button type="button" class="global-nav-search-modal__close" data-webtasks-id="f6c90755-95b1-4e99">
<svg class="wds-icon wds-icons-cross global-nav-search-modal__close-icon" alt="Close" data-webtasks-id="24a2e3fe-4e9b-45fe">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="1aebb11a-5988-47bc"></use>
</svg>
</button>
</div>
<div class="search-box__container" data-webtasks-id="959ade91-c869-4ac7">
<label class="search-box__search-label" data-webtasks-id="e9968548-865f-40a6">
<span class="search-box__search-label-text" data-webtasks-id="23fb4e22-73d8-4352">
Search the world's largest fan wiki platform
</span>
<input class="search-box__input-search-box" placeholder="Search" required="" name="s" data-webtasks-id="aca5483c-d517-411e">
</label>
<button class="search-box__search-submit" type="submit" data-webtasks-id="65307d4e-2836-4cf9">
<svg class="search-box__search-icon-submit" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="aa70868d-6c43-47e2">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7.947C7.991 7.955 7.981 7.964 7.973 7.973C7.963 7.982 7.955 7.991 7.946 8.001C7.315 8.619 6.451 9 5.5 9C3.57 9 2 7.43 2 5.5C2 3.571 3.57 2 5.5 2C7.429 2 9 3.571 9 5.5C9 6.451 8.618 7.316 8 7.947ZM11.707 10.293L10.03 8.616C10.641 7.73 11 6.656 11 5.5C11 2.468 8.532 0 5.5 0C2.467 0 0 2.468 0 5.5C0 8.533 2.467 11 5.5 11C6.655 11 7.729 10.642 8.615 10.03L10.292 11.707C10.488 11.903 10.744 12 11 12C11.255 12 11.511 11.903 11.707 11.707C12.097 11.317 12.097 10.684 11.707 10.293Z" fill="#520044" data-webtasks-id="cb418ffc-66af-4dea"></path>
</svg>
</button>
</div>
</form>
<form class="search-box is-mobile-view is-modal" action="/" autocomplete="off" data-webtasks-id="7b3ceb3c-ba0f-4656">
<div class="global-nav-search-modal__close-container" data-webtasks-id="4779a9e8-b7c1-46ee">
<button type="button" class="global-nav-search-modal__close" data-webtasks-id="bff6a5f6-5f2f-4463">
<svg class="wds-icon wds-icons-cross global-nav-search-modal__close-icon" alt="Close" data-webtasks-id="e0753805-ff4a-456e">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="ced50cf2-8ae3-4791"></use>
</svg>
</button>
</div>
<div class="search-box__container" data-webtasks-id="faf0748d-2b55-4667">
<label class="search-box__search-label" data-webtasks-id="ef1acc65-0b2e-464e">
<span class="search-box__search-label-text" data-webtasks-id="2656bf2d-f2f2-46f5">
Search
</span>
<input class="search-box__input-search-box" placeholder="Search" required="" name="s" data-webtasks-id="139a97b1-87e5-4b55">
</label>
<button class="search-box__search-submit" type="submit" data-webtasks-id="4a174522-a9bb-4ea9">
<svg class="search-box__search-icon-submit" width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="7e54dc2c-b5de-4326">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 7.947C7.991 7.955 7.981 7.964 7.973 7.973C7.963 7.982 7.955 7.991 7.946 8.001C7.315 8.619 6.451 9 5.5 9C3.57 9 2 7.43 2 5.5C2 3.571 3.57 2 5.5 2C7.429 2 9 3.571 9 5.5C9 6.451 8.618 7.316 8 7.947ZM11.707 10.293L10.03 8.616C10.641 7.73 11 6.656 11 5.5C11 2.468 8.532 0 5.5 0C2.467 0 0 2.468 0 5.5C0 8.533 2.467 11 5.5 11C6.655 11 7.729 10.642 8.615 10.03L10.292 11.707C10.488 11.903 10.744 12 11 12C11.255 12 11.511 11.903 11.707 11.707C12.097 11.317 12.097 10.684 11.707 10.293Z" fill="#520044" data-webtasks-id="375730e5-c9c2-47c1"></path>
</svg>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="global-navigation-mobile-wrapper is-f2" data-lang="nav-mobile-en" data-webtasks-id="12173f2e-60d0-43d1">
<div class="global-navigation-mobile" data-webtasks-id="4fade2b1-9583-487d">
<div class="global-navigation-mobile__content-bar" data-webtasks-id="c8f69a83-90e3-4dfc">
<a href="https://www.fandom.com/" class="global-navigation-mobile__logo" data-webtasks-id="06143792-32f1-4517">
<img class="global-navigation-mobile__logo-fandom" src="https://static.wikia.nocookie.net/85e470bc-0c8e-41e4-8367-7fdd4bcd05da" alt="Fandom" data-webtasks-id="cdb5fbd5-5931-4eb2">
</a>
<div class="global-navigation-mobile__spacing" data-webtasks-id="d68d4953-d61a-44ac"></div>
<a class="global-navigation-mobile__icon is-search" href="#" data-webtasks-id="f8d1a3bc-583a-4af4">
<svg class="wds-icon global-navigation-mobile__search-icon" alt="Search" data-webtasks-id="118575ff-dbc9-4fe3">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="e6fbb00e-dc34-4f7e"></use>
</svg>
<svg class="wds-icon global-navigation-mobile__search-icon-close" alt="Close" data-webtasks-id="1e409f34-0a10-4fad">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-cross" data-webtasks-id="84114d76-99aa-425b"></use>
</svg>
</a>
<a class="global-navigation-mobile__icon is-user" href="https://www.fandom.com/signin?redirect=https%3A%2F%2Fwww.fandom.com" data-webtasks-id="d6c99bc7-391a-45fe">
<svg class="wds-icon global-navigation-mobile__user-icon" alt="Profile" data-webtasks-id="8efea65c-a366-4b6d">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-avatar" data-webtasks-id="c0aa3277-5c6d-4c56"></use>
</svg>
</a>
</div>
<form class="global-navigation-mobile__search-panel" action="https://www.fandom.com/" data-webtasks-id="e2c0af06-5598-4e35">
<div class="global-navigation-mobile__search-input-wrapper" data-webtasks-id="5752ea0d-128c-47cf">
<svg class="wds-icon wds-icon-small global-navigation-mobile__search-label-icon" data-webtasks-id="9512c736-2e95-44e4">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-magnifying-glass" data-webtasks-id="ef41a8b5-4546-452c"></use>
</svg>
<input class="global-navigation-mobile__search-input" name="s" placeholder="Search Fandom..." placeholder-active="Search Stories and Wikis..." placeholder-inactive="Search Fandom..." data-webtasks-id="ffcfd691-8876-40b0">
</div>
</form>
</div>
</div>
<div class="nav-bg-hack" data-webtasks-id="72033481-eb87-4229"></div>
<style data-webtasks-id="8455cd15-ce6d-403f">
/* START - Global Navigation Mobile Styles*/
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile {
background-color: #ffc500;
height: auto;
}
@media screen and (min-width: 768px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile {
display: none;
}
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
box-sizing: border-box;
display: flex;
height: 55px;
}
@media only screen and (max-width:767px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 100%;
}
}
@media only screen and (min-width:768px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
margin: 0 auto;
}
}
@media only screen and (min-width:768px) and (max-width:1023px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 768px;
}
}
@media only screen and (min-width:1024px) and (max-width:1083px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1004px;
}
}
@media only screen and (min-width:1084px) and (max-width:1595px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1064px;
}
}
@media only screen and (min-width:1596px) {
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__content-bar {
width: 1238px;
}
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__spacing {
flex-basis: 99%;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo {
display: inline-block;
margin: 14px 12px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo-fandom {
height: inherit;
width: inherit;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__logo img {
max-width: none;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__icon {
align-items: center;
color: inherit;
display: flex;
flex: 0 0 49px;
justify-content: center;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__icon-anon-login {
border: 0.125rem solid;
border-radius: 50%;
margin-right: 0.5rem;
padding: 0.125rem;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon-close {
fill: #520044;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-menu-active .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-panel {
display: block;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__user-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-icon-close, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-menu-active .global-navigation-mobile__user-icon, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__icon.is-user, .global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile.is-search-active .global-navigation-mobile__search-icon {
display: none;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__menu-panel {
color: #fff;
display: none;
height: calc(100% - 56px);
position: fixed;
top: 56px;
width: 100%;
z-index: 10;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-panel {
background-color: #ffc500;
display: none;
left: 0;
margin: 0;
position: absolute;
right: 0;
z-index: 10;
padding: 18px 12px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input-wrapper {
position: relative;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-label-icon {
fill: #520044;
height: 16px;
margin-top: 4px;
position: absolute;
width: 16px;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input {
background-color: #ffc500;
border-color: #520044;
border-width: 0 0 1px 0;
color: #280033;
margin-left: 24px;
outline: none;
padding: 0;
width: 90%;
}
.global-navigation-mobile-wrapper:not(.is-old) .global-navigation-mobile__search-input::placeholder {
color: #520044;
}
body.is-menu-active .nav-bg-hack {
height: 10000000px;
left: 0;
position: absolute;
top: 0;
width: 100vw;
}
/* END - Global Navigation Mobile Styles*/
@media (min-width: 1024px) and (max-width: 1279px) {
.wds-global-footer.is-f2 .wds-global-footer__main {
width: 988px;
}
}
/* START - Styles for new global navigation. Generated through the Sass npm module*/
@media screen and (min-width: 768px) {
body {
border-left: 66px solid #ffc500;
}
}
.global-navigation {
background-color: #ffc500;
bottom: 0;
box-shadow: 0px 3px 12px 0px rgba(14, 25, 26, 0.3);
color: #520044;
display: flex;
flex-direction: column;
font-family: rubik, helvetica, arial, sans-serif;
justify-content: space-between;
left: 0;
padding: 10px 0 18px;
position: fixed;
top: 0;
width: 66px;
z-index: 500;
}
@media screen and (max-width: 767px) {
.global-navigation {
display: none;
}
}
.global-navigation__links {
width: 100%;
}
.global-navigation__top, .global-navigation__bottom, .global-navigation__nav {
display: flex;
flex-direction: column;
align-items: center;
}
.global-navigation__top .nav-icon.wds-icon, .global-navigation__bottom .nav-icon.wds-icon, .global-navigation__nav .nav-icon.wds-icon {
fill: none !important;
}
.global-navigation__bottom {
position: fixed;
bottom: 0;
padding: 8px 0 18px;
}
.global-navigation__nav {
width: 100%;
}
.global-navigation .wds-dropdown__content {
z-index: 900;
}
.global-navigation__logo .wds-icon {
margin: 0 auto;
display: block;
height: 45px;
width: 60px;
}
.global-navigation__logo .global-navigation__link-text {
max-width: 100%;
}
.global-navigation__search {
width: 54px;
text-align: center;
color: #00cdd0;
border: 2px solid transparent;
}
.global-navigation__icon.global-navigation__search {
margin-top: 5px;
}
.global-navigation__search:active {
background-color: #FFFFFF !important;
border: 2px solid #520044 !important;
}
.global-navigation a:hover {
text-decoration: none;
}
.global-navigation__link {
width: 100%;
padding: 0;
display: flex;
align-items: center;
flex-direction: column;
margin-top: 10px;
}
@media only screen and (max-height: 750px) {
.global-navigation__link {
margin-top: 4px;
}
}
.global-navigation__link__link-icon {
background-color: #f9edd8;
}
.global-navigation__link:hover .global-navigation__link-icon {
background-color: #f9edd8;
border: 2px solid rgba(82, 0, 68, 0.25);
}
.global-navigation__link:active .global-navigation__link-icon {
background-color: #FFFFFF;
border: 2px solid #520044;
}
.global-navigation__link-text {
margin-top: 4px;
color: #520044;
max-width: 54px;
text-transform: uppercase;
font-size: 10px;
line-height: 1.25;
text-align: center;
transition: color, opacity 0.3s;
position: relative;
font-weight: 700;
overflow: hidden;
}
.global-navigation__link-text.text-overflow::after {
content: "";
position: absolute;
right: 0;
top: 0;
z-index: 1;
width: 15px;
height: 100%;
background-image: linear-gradient(to right, transparent, #002a32);
}
.global-navigation__link-icon {
margin: 0;
height: 30px;
width: 30px;
display: inline-grid;
align-items: center;
justify-items: center;
border-radius: 50%;
transition: background-color 0.5s;
border: 2px solid transparent;
background-color: rgba(249, 237, 216, 0.75);
}
.global-navigation__link-icon svg {
fill: #fff;
height: 18px;
min-width: 18px;
transition: fill 0.5s;
width: 18px;
}
.global-navigation__link-icon.start-a-wiki {
background-color: transparent;
border: 2px solid #520044;
}
@media only screen and (max-height: 750px) {
.global-navigation__link-icon {
height: 28px;
width: 28px;
}
.global-navigation__link-icon svg {
height: 14px;
min-width: 14px;
width: 14px;
}
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__toggle {
display: flex;
align-items: center;
flex-direction: column;
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content {
top: -40%;
left: 100%;
transform: none;
}
.global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content.wds-list::before .global-navigation__link.wds-dropdown.wds-open-to-right .wds-dropdown__content.wds-list::after {
background-color: #fff;
content: "";
display: block;
height: 10px;
margin: 0 0 -10px;
position: relative;
}
.global-navigation__link.wds-dropdown.wds-open-to-right::after {
top: auto;
bottom: 30px;
transform: rotate(-90deg);
margin-left: 18px;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li {
margin: 0 9px;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li a {
color: #1E0C1B;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li:hover {
background: rgba(82, 0, 68, 0.1);
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li a:hover {
color: #520044;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li .wds-sign-out__button {
color: #1E0C1B;
}
.global-navigation .wds-dropdown.wds-open-to-right .wds-dropdown__content .wds-list.wds-is-linked > li .wds-sign-out__button:hover {
color: #520044;
}
.global-navigation__icon {
margin-top: 10px;
position: relative;
display: inline-grid;
align-items: center;
justify-items: center;
height: 36px;
width: 36px;
background-color: rgba(255, 255, 255, 0);
border-radius: 50%;
transition-duration: 0.5s;
transition-property: background-color, color;
}
.global-navigation__icon svg {
fill: black;
}
.global-navigation__icon.has-background {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
.wds-dropdown.wds-is-active .global-navigation__icon, .wds-dropdown:hover .global-navigation__icon, .global-navigation__icon:hover {
border: 2px solid rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
color: #fff;
}
.wds-dropdown .global-navigation__icon {
margin-bottom: 0;
}
.global-navigation .notifications {
margin-bottom: 0;
}
.global-navigation .notifications__counter {
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: #5f7a7b;
font-size: 10px;
font-weight: 500;
line-height: 1;
}
.global-navigation .notifications__counter:empty {
display: none;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom {
position: static;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom::before {
top: auto;
bottom: 62px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom::after {
top: auto;
bottom: 64px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom .wds-dropdown__content {
flex-direction: column;
padding: 0;
top: 0;
width: 320px;
line-height: 1.75;
transition: top 0.5s;
position: fixed;
}
.fandom-sticky-header.is-visible + .global-navigation .notifications .wds-dropdown.is-attached-to-bottom .wds-dropdown__content {
top: 46px;
}
.global-navigation .notifications .wds-dropdown.is-attached-to-bottom.wds-is-active .wds-dropdown__content {
display: flex;
}
.global-navigation__bottom {
background-color: #ffc500;
}
.global-navigation__bottom .wds-avatar {
display: inline-block;
position: relative;
height: 30px;
min-width: 30px;
width: 30px;
}
.global-navigation__bottom .wds-avatar__image {
border-radius: 50%;
}
.global-navigation__bottom .wds-dropdown {
line-height: 0;
margin-left: 15px;
}
.global-navigation__bottom .wds-dropdown__toggle {
justify-items: start;
width: 51px;
}
.global-navigation__bottom .wds-dropdown__toggle .global-navigation__icon {
border: 2px solid transparent;
}
.global-navigation__bottom .wds-dropdown.wds-open-to-right.attached-to-bottom::before {
display: none !important;
}
.global-navigation__bottom .wds-dropdown.wds-open-to-right.attached-to-bottom::after {
top: 26px;
transform: rotate(-90deg);
margin-left: 11px;
}
.global-navigation__bottom .wds-dropdown.attached-to-bottom .wds-dropdown__content {
bottom: 0;
left: 66px;
position: fixed;
top: auto;
transform: none;
min-width: 0;
max-width: 200px;
}
.global-navigation__bottom .wds-dropdown:hover:not(.is-anon-dropdown) .wds-dropdown__toggle .global-navigation__icon {
border-color: rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
}
.global-navigation__bottom .wds-dropdown:hover.is-anon-dropdown .wds-dropdown__toggle .global-navigation__icon {
border-color: rgba(82, 0, 68, 0.25);
background-color: #f9edd8;
}
.global-navigation__bottom .wds-dropdown:active:not(.is-anon-dropdown) .wds-dropdown__toggle .global-navigation__icon {
border-color: #280033;
background-color: #fff;
}
.global-navigation__bottom .wds-dropdown:active.is-anon-dropdown .wds-dropdown__toggle .global-navigation__icon {
border-color: #280033;
background-color: #fff;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content {
padding: 0 12px;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content > * {
margin: 12px 0;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content hr {
border-top: 1px solid #bed1cf;
border-bottom: 0;
}
.global-navigation__bottom .wds-dropdown.is-anon-dropdown .wds-dropdown__content .global-navigation__register-text {
line-height: 1.75;
}
.global-navigation__bottom .wds-dropdown:not(.is-anon-dropdown) .wds-avatar__image {
border: 2px solid #520044;
}
.global-navigation__bottom .wds-button {
color: #280033;
}
.global-navigation__bottom .wds-button:not(.wds-is-secondary) {
background-color: #280033;
border-color: #280033;
color: #fff;
}
.global-navigation__bottom .wds-button:not(.wds-is-secondary):hover {
background-color: #b80099 !important;
border: 1px solid #b80099 !important;
}
.global-navigation__bottom .wds-button.wds-is-secondary:hover {
border: 1px solid #b80099;
color: #67295d;
}
body.is-home-page .wds-global-navigation-wrapper.is-placeholder {
background-color: #ffc500;
}
@media screen and (min-width: 1024px) {
body.is-home-page .wds-global-navigation-wrapper.is-placeholder {
display: none;
}
}
.global-navigation__link.is-fan-central {
display: none;
}
.global-navigation .beta-tag {
align-items: center;
background-color: #fa005a;
border-radius: 3px;
color: #fff;
display: flex;
font-size: 8px;
font-weight: bold;
height: 15px;
justify-content: center;
margin-top: 3px;
text-transform: uppercase;
width: 28px;
}
/* START - Styles for global navigation search.*/
.global-nav-search-modal {
align-items: center;
justify-content: center;
display: none;
position: fixed;
right: 0;
top: 0;
z-index: 1;
left: 66px;
}
.global-nav-search-modal__close-container {
display: flex;
flex-flow: row-reverse;
}
.global-nav-search-modal__close {
background: transparent;
border: 0;
z-index: 800;
margin-right: 7px;
margin-bottom: 13px;
}
.global-nav-search-modal__close-icon {
fill: #f9edd8 !important;
}
.global-nav-search-modal::before {
background-color: rgba(14, 25, 26, 0.6);
content: "";
display: block;
bottom: 0;
width: 100%;
height: 100%;
position: fixed;
}
.global-nav-search-modal-content {
width: 100%;
height: 100%;
background-color: transparent;
z-index: 799;
border: 0;
/*START - Change search-box properties when it is placed in the modal*/
/*END - Change search-box properties when it is placed in the modal*/
}
.global-nav-search-modal-content .search-box__container {
background-color: #F8F8F8;
border: 2px solid #C7C7C7;
}
.global-nav-search-modal-content .search-box__input-search-box {
color: #3A3A3A !important;
}
.global-nav-search-modal-content .search-box__search-submit {
background: #7C4373;
}
.global-nav-search-modal-content .search-box__search-submit svg path {
fill: #FFFFFF;
}
.global-nav-search-modal.is-visible {
display: flex;
width: 100%;
height: 100%;
}
/* END - Styles for global navigation search.*/
/* START - Styles for new search-box */
.search-box-bottom-wrapper {
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(0deg, rgba(41, 0, 34, 0.5), rgba(41, 0, 34, 0.5)), url(https://static.wikia.nocookie.net/a1b620c0-0b7c-478f-ae53-3ddc8870ccdf), #280033;
background-position: right 50%;
}
.search-box {
margin: 24px auto;
width: 100%;
}
@media only screen and (min-width: 768px) {
.search-box {
max-width: 550px;
}
}
@media only screen and (min-width: 1024px) {
.search-box {
max-width: 800px;
}
}
.search-box input {
padding: 0;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
}
.search-box.is-mobile-view {
display: none;
}
@media only screen and (max-width: 767px) {
.search-box.is-mobile-view {
display: block;
}
}
.search-box.is-desktop-view {
display: none;
}
@media only screen and (min-width: 768px) {
.search-box.is-desktop-view {
display: block;
}
}
.search-box__search-icon-placeholder > svg > path {
fill: #f9edd8;
}
.search-box__search-icon-submit {
width: 12px;
height: 12px;
}
.search-box__search-label {
align-items: center;
display: flex;
flex: 1 1 auto;
z-index: 2;
height: 24px;
margin-right: 6px;
}
.search-box__search-label-text {
color: #f9edd8;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
}
.search-box__container {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: auto;
background-color: #280033;
padding: 6px 12px 6px 12px;
border: 2px solid #f9edd8;
border-radius: 100px;
}
@media only screen and (max-width: 767px) {
.search-box__container {
margin: 0 30px;
}
}
.search-box.homepage-search-is-active .search-box__container .search-box__search-label .search-box__input-search-box {
display: block;
font-family: Rubik, Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 32px;
color: #f9edd8;
}
.search-box.homepage-search-is-active .search-box__container .search-box__search-label .search-box__search-label-text {
display: none;
}
.search-box__input-search-box {
color: #f9edd8;
width: 100%;
outline: none;
background: none;
border: 0 transparent;
display: none;
}
.search-box__search-submit {
display: inherit;
border: 0 transparent;
border-radius: 50px;
height: 24px;
width: 24px;
background: #f9edd8;
align-items: center;
justify-content: center;
cursor: pointer;
}
.search-box__search-submit:hover {
background: #fa005a;
}
.search-box__search-submit svg {
width: 12px;
height: 12px;
}
/* END - Styles for new search-box */
/* END - Styles for new global navigation. Generated through the Sass npm module*/
/* START - Global-nav-overrides styles */
.global-navigation-mobile-wrapper.is-f2 {
position: sticky;
top: 0;
width: 100%;
z-index: 5000101;
}
.global-navigation-mobile-wrapper.is-f2.has-active-menu {
position: fixed;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__content-bar {
height: 56px;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-panel {
border-top: 1px solid #0e191a;
overflow-y: scroll;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-panel, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-panel {
background: #ffc500;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link.is-author-profile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-item.is-wiki-profile {
background: #1a1a1a;
color: #00d6d6;
margin-bottom: 0;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__icon.is-menu, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__icon.is-search {
color: #fff;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link.is-author-profile, .global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-item.is-wiki-profile {
font-size: 12px;
font-weight: 500;
text-transform: uppercase;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link {
border-left: none;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__menu-link-text {
border-bottom: 4px solid #fff;
color: #00d6d6;
padding-bottom: 5px;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-input-wrapper {
border-bottom: none;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-label-icon {
color: #fff;
}
.global-navigation-mobile-wrapper.is-f2 .global-navigation-mobile__search-input-border {
margin-left: 32px;
width: 80%;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
.wds-global-footer.is-f2 .wds-global-footer__main {
width: 988px;
}
}
/**
* Special part for explore-XX/contact/about?uselang=xx
*/
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video) {
background: #002a32;
border-top-color: #002a32;
color: #fff;
font-size: 14px;
font-weight: 500;
padding-right: 120px;
text-transform: uppercase;
}
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video):hover {
color: #ccc;
}
body.page-template-default .wds-global-navigation.is-f2.wds-search-is-active .wds-global-navigation__links-and-search > .wds-global-navigation__link:not(.wds-is-games):not(.wds-is-movies):not(.wds-is-tv):not(.wds-is-video) {
padding: 0;
}
body.page-template-default .wds-global-navigation.is-f2 .wds-global-navigation__links-and-search > .wds-global-navigation__link:hover {
color: #98a7a5;
}
html:not([lang=en]) body.page-template-default .wds-global-navigation.is-f2.wds-search-is-active .wds-global-navigation__links-and-search {
padding-right: 36px;
}
/* END - Global-nav-overrides styles */
</style>
<script data-webtasks-id="177e7dab-7e87-4803">
window.twttr = (function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
}(document, "script", "twitter-wjs"));
</script>
<div id="parsely-root" style="display: none" data-webtasks-id="9808cf39-39ad-48b4">
<span id="parsely-cfg" data-parsely-site="fandom.wikia.com" data-webtasks-id="4e47f906-bbb2-48f8"></span>
</div>
<div class="dotted-background__wrapper" data-webtasks-id="5082df49-2d27-4d66">
<div class="dotted-background" style="background-color: #002a32" data-dots-color="transparent" data-webtasks-id="68ef91cb-2038-470a">
<div class="dotted-background__dots" style="background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22transparent%22%20viewBox%3D%220%200%2014.3%20281%22%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22133.2%22%20r%3D%221.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22147.1%22%20r%3D%221.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22161.4%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22175.8%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22190.2%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22204.7%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22219%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22233.5%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22247.9%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22262.3%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22276.6%22%20r%3D%22.6%22%2F%3E%3Cg%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22118.9%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%22104.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2290.1%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2275.7%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2261.3%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2246.9%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2232.5%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%2218%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%223.3%22%20cy%3D%223.7%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22125.8%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22111.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2297%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2282.6%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2268.2%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2253.8%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2239.4%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2224.9%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%2210.6%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22154.2%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22140.1%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22168.5%22%20r%3D%221.4%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22183%22%20r%3D%221.3%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22197.4%22%20r%3D%221.1%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22211.8%22%20r%3D%221%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22226.2%22%20r%3D%22.8%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22240.6%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22255.1%22%20r%3D%22.7%22%2F%3E%3Ccircle%20cx%3D%2210.7%22%20cy%3D%22269.4%22%20r%3D%22.6%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E)" data-webtasks-id="d14a71b9-cb6f-4593"></div>
</div>
</div>
<div class="article-layout-wrapper" data-webtasks-id="0f377e73-22de-4468">
<div class="article-layout fandom-theme-1" data-webtasks-id="a2fc051b-f6a7-41aa">
<div class="article-layout__rail" data-webtasks-id="b5594520-49de-4aea">
</div>
<article class="article-layout__main" data-webtasks-id="0e0107ca-8002-4f42">
<div class="article-layout__header" data-webtasks-id="37f63c2a-5462-498e">
<div class="article-header" data-webtasks-id="8effea52-a158-4c1b">
<img class="article-header__image" src="https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/800" srcset="https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/200 200w, https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/400 400w, https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/600 600w, https://static.wikia.nocookie.net/eae22e99-7894-43c7-8a41-e43e30500cc4/scale-to-width-down/800 800w" sizes="(min-width: 800px) 800px, (min-width: 600px) 600px, (min-width: 400px) 400px, 200px" data-webtasks-id="19944770-98df-4136">
<div class="article-header__title " data-webtasks-id="62319ff4-7af4-4c74">
<h1 data-webtasks-id="cf40fe1e-a4cf-4577">10 Great Moments from the Arrowverse</h1>
</div>
<div class="article-header__attribution" data-webtasks-id="e1375034-fd9c-4938">
<a href="https://www.fandom.com/u/Blair%20Marnell" class="article-header__author" data-webtasks-id="2ad94e99-76f5-4c0e">
<span class="author vcard" data-webtasks-id="9218cc9d-066a-4e43">
<span class="author-name fn" data-webtasks-id="77143481-68d9-42b1">Blair Marnell</span>
</span>
</a>
<time class="article-header__timeago updated" datetime="2023-05-24T17:41:38+00:00" data-webtasks-id="5eb5da1b-a38d-49d6">
May 24
</time>
</div>
<div class="article-header__topic-tags" data-webtasks-id="563ab007-1689-43c7">
<div class="article-topic-tags is-mobile" data-webtasks-id="c893c6ff-6178-4c94">
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/tv" target="_top" data-webtasks-id="ad1d93cc-e936-40da">TV</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/comics" target="_top" data-webtasks-id="e0f1aaaa-1644-4391">Comics</a>
</div>
<div class="article-topic-tags is-desktop" data-webtasks-id="4581c548-91b0-4d80">
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/tv" target="_top" data-webtasks-id="3a524415-4873-4ded">TV</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/comics" target="_top" data-webtasks-id="f55bf057-4caf-49a3">Comics</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/streaming" target="_top" data-webtasks-id="ac3fc3ed-a1a3-4e0d">Streaming</a>
<a data-tracking="{"category":"card","label":"topic.link","action":138781,"post_id":138781}" class="article-topic-tags__tag" href="https://www.fandom.com/topics/dc" target="_top" data-webtasks-id="7699c3e1-9b2a-4810">DC</a>
</div>
</div>
<div class="article-share" data-webtasks-id="9ac7eb30-b018-4d95">
<a class="article-share__button is-facebook" title="Facebook" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.fandom.com%2Farticles%2Farrowverse-the-flash-top-ten-10" data-open-in-window="" data-webtasks-id="59ad6e2f-a0e4-45a6">
<svg class="wds-icon" alt="" data-webtasks-id="fda25fb0-66cf-4f65">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-facebook" data-webtasks-id="18684332-9c9e-47df"></use>
</svg>
</a>
<a class="article-share__button is-twitter" title="Twitter" href="https://twitter.com/share?url=https%3A%2F%2Fwww.fandom.com%2Farticles%2Farrowverse-the-flash-top-ten-10" data-open-in-window="" data-webtasks-id="a078c148-6895-4e21">
<svg class="wds-icon" alt="" data-webtasks-id="a2c897e2-331b-4f7a">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-twitter" data-webtasks-id="4cfa6243-91ee-4d79"></use>
</svg>
</a>
<a class="article-share__button is-reddit" title="Reddit" href="http://www.reddit.com/submit?url=https%3A%2F%2Fwww.fandom.com%2Farticles%2Farrowverse-the-flash-top-ten-10" data-open-in-window="" data-webtasks-id="8d655c9e-b031-4271">
<svg class="wds-icon" alt="" data-webtasks-id="c614699a-9329-4d3a">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-reddit" data-webtasks-id="239bcf2f-7d35-4eb8"></use>
</svg>
</a>
</div>
</div>
</div>
<div class="article-layout__review" data-webtasks-id="ac009487-e04b-4e57">
</div>
<div class="article-layout__content" data-webtasks-id="789cc862-cab0-492c">
<div class="article-content entry-content" data-webtasks-id="3707499c-90a0-47dc">
<p data-webtasks-id="b3232352-8bf7-4239">After eleven years and 41 seasons of TV spread out across six live-action series and two animated programs, the <a href="https://arrow.fandom.com/wiki/Arrowverse" data-webtasks-id="bbbf3bb8-4b04-49b0">Arrowverse</a> comes to an end this week with the final episode of <em data-webtasks-id="d1f33769-852c-4eb4"><a href="https://arrow.fandom.com/wiki/The_Flash_(The_CW)" data-webtasks-id="a1d252e4-5243-4266">The Flash</a></em>. This sprawling superhero universe had somewhat humble beginnings in 2012, with the premiere of <em data-webtasks-id="b0e15819-ba45-48f0"><a href="https://arrow.fandom.com/wiki/Arrow" data-webtasks-id="a48ca140-405e-4c6e">Arrow</a></em>. That hit series started off as a grounded take on superheroes but soon led to a spinoff for <a href="https://arrow.fandom.com/wiki/Barry_Allen_(Earth-1)" data-webtasks-id="20ac4520-1245-4a7f">The Flash</a> and the acknowledgment that superpowers would indeed play a part in this universe. From there, <em data-webtasks-id="d390ef65-ddeb-464c"><a href="https://arrow.fandom.com/wiki/Supergirl" data-webtasks-id="fcfcd0bc-cc66-498a">Supergirl</a></em>, <em data-webtasks-id="697b293d-4de2-4643"><a href="https://arrow.fandom.com/wiki/DC%27s_Legends_of_Tomorrow" data-webtasks-id="c725d002-6623-451e">DC’s Legends of Tomorrow</a></em>,<em data-webtasks-id="e22acfe3-44be-4636"> <a href="https://arrow.fandom.com/wiki/Batwoman" data-webtasks-id="b81b679b-31a9-4df7">Batwoman</a></em>, and <em data-webtasks-id="d2cc35d6-e446-4e29"><a href="https://arrow.fandom.com/wiki/Black_Lightning" data-webtasks-id="8d685d6d-2d05-45d7">Black Lightning</a></em> shared so much real estate on The CW that it was practically an all-superhero network at times.</p>
<p data-webtasks-id="23bd2eae-1244-4115">For now, <em data-webtasks-id="31ae2775-99af-4d26"><a href="https://arrow.fandom.com/wiki/Superman_%26_Lois" data-webtasks-id="9c58a8de-42d1-4eaf">Superman & Lois</a></em> could possibly carry the superhero flame for Arrowverse fans if it is renewed for a fourth season. But only as an echo, since the producers of that series have previously revealed it does not take place on the same world as the primary Arrowverse and is considered its own reality with distinct versions of the characters rather than a continuation of the <em data-webtasks-id="f352f56d-d536-441f">Supergirl</em> Clark and Lois who came before (not that we should rule out universe-hopping of course, since we’ve seen it before).</p>
<p data-webtasks-id="f30d581d-6b0a-4bda">With <em data-webtasks-id="f7584b5d-4694-4dbc">The Flash</em>’s finale here, we’re taking a look back at ten of the greatest moments from the Arrowverse. There were a lot of options to choose from, and not everything made the cut even though it was terrific as well (<a href="https://arrow.fandom.com/wiki/Beebo" data-webtasks-id="c5d9d560-d85c-443d">Beebo</a>, you were awesome!). But there are among the stories and episodes that we’ll remember the most looking back at the Arrowverse.</p>
<h2 data-webtasks-id="4576d699-0bb3-4cec">Deathstroke vs. Arrow</h2>
<figure data-blot="image" data-blot-data="{"src":"00db520b-5417-452a-8f46-0e3d21bd7e1d","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="42937a29-6b62-4d99">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/00db520b-5417-452a-8f46-0e3d21bd7e1d/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/00db520b-5417-452a-8f46-0e3d21bd7e1d/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/00db520b-5417-452a-8f46-0e3d21bd7e1d/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/00db520b-5417-452a-8f46-0e3d21bd7e1d/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/00db520b-5417-452a-8f46-0e3d21bd7e1d/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="424ec535-13bf-4209">
</figure>
<p data-webtasks-id="6765bd62-ac99-4f48">The ultimate confrontation between <a href="https://arrow.fandom.com/wiki/Oliver_Queen" data-webtasks-id="0a85684d-f043-4535">Oliver Queen</a> (<a href="https://arrow.fandom.com/wiki/Stephen_Amell" data-webtasks-id="30169852-e89e-4037">Stephen Amell</a>) and <a href="https://arrow.fandom.com/wiki/Slade_Wilson" data-webtasks-id="55a153b0-ed88-4108">Slade Wilson</a> (<a href="https://arrow.fandom.com/wiki/Manu_Bennett" data-webtasks-id="fa74c9f4-5620-4c72">Manu Bennett</a>) was hinted at during <a href="https://arrow.fandom.com/wiki/Pilot_(Arrow)" data-webtasks-id="bc8ad812-5b05-453b">the opening moments</a> of <em data-webtasks-id="bca406cc-3975-4831">Arrow </em>when Deathstroke’s mask was seen with an arrow through its right eye while staked on the beach of Lian Yu. Slade didn’t actually appear until later during Season 1, but he unexpectedly became a friend and mentor to Oliver. Unfortunately, their bond was broken in Season 2.</p>
<p data-webtasks-id="39347b0b-99c9-4439">Within the flashbacks to Oliver’s time on the island, viewers saw Slade’s obvious attraction to <a href="https://arrow.fandom.com/wiki/Shado" data-webtasks-id="899918f0-4c85-4f8c">Shado</a> (<a href="https://arrow.fandom.com/wiki/Celina_Jade" data-webtasks-id="2d9342ec-0410-4227">Celina Jade</a>), a woman who was clearly more in love with Oliver than she was with Slade. At one point, to save Slade’s life, Oliver and Shado injected him with <a href="https://arrow.fandom.com/wiki/Mirakuru" data-webtasks-id="317c4f79-a307-4533">Mirakuru</a>, a drug that gave him superhuman abilities and drove him insane. Shortly thereafter, Shado was murdered, and Slade vowed revenge on Oliver.</p>
<p data-webtasks-id="c9e169f0-0e27-4f51">In the present, Slade revealed himself to be Oliver’s ultimate enemy in Season 2 as he fully adopted the persona of Deathstroke, the Terminator. Slade even murdered Oliver’s mother, <a href="https://arrow.fandom.com/wiki/Moira_Queen" data-webtasks-id="43b52f4b-8d66-4dfa">Moira Queen</a> (<a href="https://arrow.fandom.com/wiki/Susanna_Thompson" data-webtasks-id="44232388-a912-40ff">Susanna Thompson</a>), just to break Oliver’s spirit. Events came to a head in the second season finale, “<a href="https://arrow.fandom.com/wiki/Unthinkable" data-webtasks-id="82d817fe-0064-4631">Unthinkable</a>,” when past and present collided. The final battle between Oliver and Slade was intercut between their climatic fight five years earlier. It was a truly epic conclusion for the season, and one of the highpoints of the Arrowverse.</p>
<h2 data-webtasks-id="a50ed714-a578-47e3">The Brave and the Bold</h2>
<figure data-blot="image" data-blot-data="{"src":"3d3a79ac-0333-4f01-ad23-1b6ef32462d6","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="65f39a77-32e7-437f">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/3d3a79ac-0333-4f01-ad23-1b6ef32462d6/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/3d3a79ac-0333-4f01-ad23-1b6ef32462d6/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/3d3a79ac-0333-4f01-ad23-1b6ef32462d6/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/3d3a79ac-0333-4f01-ad23-1b6ef32462d6/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/3d3a79ac-0333-4f01-ad23-1b6ef32462d6/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="5ad1c061-a5e5-4f68">
</figure>
<p data-webtasks-id="99afe914-2214-472c"><em data-webtasks-id="93ca7268-e7e2-4789">Arrow</em>’s success didn’t immediately lead to a full-blown Arrowverse. But the stage was set for a spinoff in <em data-webtasks-id="e1241c97-9fd2-4f6b">Arrow</em> season 2’s two-part episode, “<a href="https://arrow.fandom.com/wiki/The_Scientist" data-webtasks-id="7b875d75-26ec-4bda">The Scientist</a>” and “<a href="https://arrow.fandom.com/wiki/Three_Ghosts" data-webtasks-id="e5c3069f-6c48-45e9">Three Ghosts</a>,” which introduced <a href="https://arrow.fandom.com/wiki/Grant_Gustin" data-webtasks-id="7a87cad7-771e-46bf">Grant Gustin</a> as Barry Allen, a CSI investigator from Central City who came to Starling City in the hope of finding the man who murdered his mother years earlier. Soon enough, Barry was in on Oliver’s secret and he saved his life before giving Oliver his first domino mask.</p>
<p data-webtasks-id="ecf41ca2-92ac-4154">Barry and Oliver briefly reunited in the first episode of <em data-webtasks-id="59b9e9e5-58e8-47fd">The Flash</em>, when the former was inspired to become his own kind of hero. A few episodes later, the first-ever true Arrowverse crossover took place over two episodes: “<a href="https://arrow.fandom.com/wiki/Flash_vs._Arrow" data-webtasks-id="f8675aad-01b6-4a62">Flash vs. Arrow</a>” and “<a href="https://arrow.fandom.com/wiki/The_Brave_and_the_Bold" data-webtasks-id="26fb100d-eb6d-4637">The Brave and the Bold</a>.” In the first part, Barry was temporarily turned against Oliver, leading to their obligatory superhero fight. And in the second episode, Barry and Oliver further solidified their bond while going after <a href="https://arrow.fandom.com/wiki/Digger_Harkness" data-webtasks-id="c1c94b8f-c37c-4a2c">Digger Harkness</a> (<a href="https://arrow.fandom.com/wiki/Nick_E._Tarabay" data-webtasks-id="ebbf7b41-283a-4937">Nick E. Tarabay</a>), a renegade member of <a href="https://arrow.fandom.com/wiki/Ghost_Initiative" data-webtasks-id="e476da6b-4ff0-4f3d">Task Force X</a>.</p>
<p data-webtasks-id="e7387283-9630-480a">This event became a yearly tradition for the two series, and it became even bigger as more spinoff shows were added to the mix.</p>
<h2 data-webtasks-id="5c0d44e9-5b04-4f58">Flash vs. Reverse-Flash</h2>
<figure data-blot="image" data-blot-data="{"src":"b5794d7b-05bd-4a8b-9ddf-c25b069382e3","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="6c30ad80-5c3b-4fd0">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/b5794d7b-05bd-4a8b-9ddf-c25b069382e3/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/b5794d7b-05bd-4a8b-9ddf-c25b069382e3/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/b5794d7b-05bd-4a8b-9ddf-c25b069382e3/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/b5794d7b-05bd-4a8b-9ddf-c25b069382e3/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/b5794d7b-05bd-4a8b-9ddf-c25b069382e3/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="e47abe9d-e180-4316">
</figure>
<p data-webtasks-id="80389ebe-67ff-4edb"><em data-webtasks-id="b034fb83-15c2-4913">The Flash</em>’s first season was arguably the best part of the show for several reasons. In particular, there was a lot of tension because viewers learned long before Barry that his mentor, <a href="https://arrow.fandom.com/wiki/Harrison_Wells_(Earth-1)" data-webtasks-id="71d6f166-e259-498e">Harrison Wells</a> (<a href="https://arrow.fandom.com/wiki/Tom_Cavanagh" data-webtasks-id="e15dd91e-8c58-4b13">Tom Cavanagh</a>), was secretly <a href="https://arrow.fandom.com/wiki/Eobard_Thawne" data-webtasks-id="183ce246-e088-44ed">Eobard Thawne</a>, the <a href="https://arrow.fandom.com/wiki/Reverse-Flash_(disambiguation)" data-webtasks-id="3756d958-d6f8-46be">Reverse-Flash</a>, and the man who murdered Barry’s mother.</p>
<p data-webtasks-id="65cd6bed-dbd9-47cc">Thawne and Flash have constantly clashed throughout the duration of the show, but their battles near the end of Season 1 really stand out. In <a href="https://arrow.fandom.com/wiki/Rogue_Air" data-webtasks-id="e3b13804-f1ef-4d5f">the penultimate episode</a> of the season, there was even a minor crossover as Oliver Queen traveled to Central City to team up with Barry and <a href="https://arrow.fandom.com/wiki/Ronnie_Raymond" data-webtasks-id="50d1863b-1d05-45eb">Firestorm</a> (<a href="https://arrow.fandom.com/wiki/Robbie_Amell" data-webtasks-id="4808dbf4-3cd8-4ef5">Robbie Amell</a>) to subdue Thawne.</p>
<p data-webtasks-id="c7c20f9d-1424-40dc">But in <a href="https://arrow.fandom.com/wiki/Fast_Enough" data-webtasks-id="fd81906c-5089-4b97">the season finale</a>, the battle belonged to Barry alone. And Barry wouldn’t have triumphed unless his romantic rival (and Thawne’s ancestor), <a href="https://arrow.fandom.com/wiki/Eddie_Thawne" data-webtasks-id="aa94b1ce-ff05-4e61">Eddie Thawne</a> (<a href="https://arrow.fandom.com/wiki/Rick_Cosnett" data-webtasks-id="2cceb212-b731-400c">Rick Cosnett</a>), took his own life to ensure that the Reverse-Flash could never be born. In a cruel twist for Team Flash, Thawne always found a way to cheat his fate before returning time and time again.</p>
<h2 data-webtasks-id="210c3cb7-95ff-4292">World’s Finest</h2>
<figure data-blot="image" data-blot-data="{"src":"d573e982-180a-4cd4-91f8-1193e35fae20","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="8451a139-c5d4-43bb">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/d573e982-180a-4cd4-91f8-1193e35fae20/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/d573e982-180a-4cd4-91f8-1193e35fae20/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/d573e982-180a-4cd4-91f8-1193e35fae20/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/d573e982-180a-4cd4-91f8-1193e35fae20/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/d573e982-180a-4cd4-91f8-1193e35fae20/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="f6e0780e-5351-4586">
</figure>
<p data-webtasks-id="3b293993-26d7-45ac">Before <em data-webtasks-id="991f99b0-5c2b-4390">Supergirl</em> officially joined the Arrowverse on The CW, it was all by itself on CBS. Regardless, that didn’t stop the show’s producers from getting the clearance needed from the networks to have Grant Gustin’s Flash guest star for a one-off appearance, as he reunited with his former <em data-webtasks-id="253f47ca-5a2e-44f8"><a href="https://glee.fandom.com/wiki/Glee_(TV_Series)" data-webtasks-id="c76e157b-949c-46e2">Glee</a> </em>co-star, <a href="https://arrow.fandom.com/wiki/Melissa_Benoist" data-webtasks-id="cde2203e-d7a4-44b6">Melissa Benoist</a>, who headlined the series as <a href="https://arrow.fandom.com/wiki/Kara_Danvers" data-webtasks-id="8ba3dc94-0319-430d">Kara/Supergirl</a>.</p>
<p data-webtasks-id="a48f0bb5-8f45-471a">Within <a href="https://arrow.fandom.com/wiki/Worlds_Finest" data-webtasks-id="4e3cf603-0d2e-47cf">the episode</a>, Barry found himself temporarily trapped on Supergirl’s world, where he quickly befriended Kara and teamed up with her against <a href="https://arrow.fandom.com/wiki/Siobhan_Smythe" data-webtasks-id="ddcfb3db-bcfc-44db">Silver Banshee</a> (<a href="https://arrow.fandom.com/wiki/Italia_Ricci" data-webtasks-id="022246a7-c664-4bfc">Italia Ricci</a>) and <a href="https://arrow.fandom.com/wiki/Leslie_Willis" data-webtasks-id="b4b4060c-312f-4201">Livewire</a> (<a href="https://arrow.fandom.com/wiki/Brit_Morgan" data-webtasks-id="f1c4ff68-d14c-4b66">Brit Morgan</a>). In the episode’s most adorable scene, Kara was absolutely giddy when Barry gave her ice cream after a super-speedy delivery. This was easily the most light-hearted crossover of the Arrowverse, and also one of the most fun.</p>
<h2 data-webtasks-id="8f35b9ac-3c13-4ddf">A Hellblazer Returns</h2>
<figure data-blot="image" data-blot-data="{"src":"acba337a-3f0e-4bbf-9323-2568d69b5dbd","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="266c3f7a-c745-4652">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/acba337a-3f0e-4bbf-9323-2568d69b5dbd/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/acba337a-3f0e-4bbf-9323-2568d69b5dbd/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/acba337a-3f0e-4bbf-9323-2568d69b5dbd/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/acba337a-3f0e-4bbf-9323-2568d69b5dbd/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/acba337a-3f0e-4bbf-9323-2568d69b5dbd/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="f98589b3-c9aa-4689">
</figure>
<p data-webtasks-id="ab6f43dc-9636-4f01"><em data-webtasks-id="87bb5190-322b-4cc0">Arrow</em> star Stephen Amell was very supportive of NBC’s <em data-webtasks-id="467a9dc7-0f59-407f"><a href="https://arrow.fandom.com/wiki/Constantine" data-webtasks-id="2a3f1c7d-87ae-4bd6">Constantine</a></em> series, which featured <a href="https://arrow.fandom.com/wiki/Matt_Ryan" data-webtasks-id="d3b7e309-d609-4891">Matt Ryan</a> as <a href="https://arrow.fandom.com/wiki/John_Constantine" data-webtasks-id="73577b59-a726-4855">John Constantine</a>. Amell even offered to guest star as Oliver Queen on <em data-webtasks-id="17a1451f-dfc5-4bda">Constantine </em>before NBC ultimately canceled the show after 13 episodes. Thankfully, the producers of <em data-webtasks-id="3942beae-e193-4232">Arrow</em> shared Amell’s affection for the series, and they managed to get permission to use Ryan’s version of Constantine for a guest appearance in Season 4.</p>
<p data-webtasks-id="ba5b2e97-3b7c-4a49">Ryan reprised his role in both the past and present day sequences in “<a href="https://arrow.fandom.com/wiki/Haunted" data-webtasks-id="ae0782a9-1f84-48e8">Haunted</a>,” as it was revealed how Constantine met Oliver on Lian Yu. That’s why Oliver was able to call upon Constantine for help in the present when <a href="https://arrow.fandom.com/wiki/Sara_Lance" data-webtasks-id="69c160d7-be70-4113">Sara Lance</a> (<a href="https://arrow.fandom.com/wiki/Caity_Lotz" data-webtasks-id="8aecce69-a9fc-4325">Caity Lotz</a>) was resurrected without a soul. This story was a prequel for <em data-webtasks-id="19a2ed3b-c3e0-4384">DC’s Legends of Tomorrow</em>, which featured Lotz in a leading role alongside <a href="https://arrow.fandom.com/wiki/Brandon_Routh" data-webtasks-id="bddb102a-71e7-48db">Brandon Routh</a>’s <a href="https://arrow.fandom.com/wiki/Ray_Palmer" data-webtasks-id="cc4b1bfb-c8da-4512">Ray Palmer</a>, who has a vocal cameo in this episode.</p>
<p data-webtasks-id="c95ea03d-a62c-45c5">Constantine’s return went over very well with the fans, and Ryan came back for a long stint on <em data-webtasks-id="edb46c75-a3ff-4310">Legends of Tomorrow </em>that further cemented his take on DC’s occult hero.</p>
<h2 data-webtasks-id="2675988c-e0c0-4cf2">Showdown on Lian Yu</h2>
<figure data-blot="image" data-blot-data="{"src":"f4cd7067-e1db-40dd-80ff-cb957e2fbb9a","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="7bdaface-417e-49b7">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/f4cd7067-e1db-40dd-80ff-cb957e2fbb9a/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/f4cd7067-e1db-40dd-80ff-cb957e2fbb9a/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/f4cd7067-e1db-40dd-80ff-cb957e2fbb9a/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/f4cd7067-e1db-40dd-80ff-cb957e2fbb9a/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/f4cd7067-e1db-40dd-80ff-cb957e2fbb9a/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="4d35ebe2-a25e-483a">
</figure>
<p data-webtasks-id="1bf006e6-fe0e-4a30"><em data-webtasks-id="d76e7561-724b-45f0">Arrow </em>season 5 pushed Oliver to his limits, thanks to <a href="https://arrow.fandom.com/wiki/Adrian_Chase" data-webtasks-id="69c18f42-fe60-492f">Adrian Chase</a> (<a href="https://arrow.fandom.com/wiki/Josh_Segarra" data-webtasks-id="392dbe59-33bd-47f0">Josh Segarra</a>). In the comics, Adrian was <a href="https://dc.fandom.com/wiki/Adrian_Chase_(New_Earth)" data-webtasks-id="375eb4f4-3f81-486b">Vigilante</a>, but in a swerve, the Arrowverse’s incarnation of Adrian was actually Simon Morrison, the son of <a href="https://arrow.fandom.com/wiki/Justin_Claybourne" data-webtasks-id="4dcde750-cf1f-4a4c">Justin Claybourne</a> (<a href="https://arrow.fandom.com/wiki/Garwin_Sanford" data-webtasks-id="c0ee3bca-8f86-4519">Garwin Sanford</a>), one of Oliver’s first victims during his stint as the Arrow. “Adrian” reinvented himself as Prometheus and he used Oliver’s tactics against him while assembling his own twisted version of Team Arrow including <a href="https://arrow.fandom.com/wiki/Laurel_Lance_(Earth-2)" data-webtasks-id="552847f3-58a7-4125">Black Siren</a> (<a href="https://arrow.fandom.com/wiki/Katie_Cassidy" data-webtasks-id="a88cb5c4-d8a2-4823">Katie Cassidy</a>), <a href="https://arrow.fandom.com/wiki/Talia_al_Ghul" data-webtasks-id="9cf9f5c6-5710-43c9">Talia al Ghul</a> (<a href="https://arrow.fandom.com/wiki/Lexa_Doig" data-webtasks-id="d7bd8a19-320e-479d">Lexa Doig</a>), and <a href="https://arrow.fandom.com/wiki/Evelyn_Sharp" data-webtasks-id="c8cb6637-d89f-4dc9">Evelyn Sharp</a> (<a href="https://arrow.fandom.com/wiki/Madison_McLaughlin" data-webtasks-id="99aa0acd-222b-46b1">Madison McLaughlin</a>).</p>
<p data-webtasks-id="2b981309-7da5-4c2b">In the season 5 finale, “<a href="https://arrow.fandom.com/wiki/Lian_Yu" data-webtasks-id="522e8b41-ed9a-4aba">Lian Yu</a>,” Prometheus had captured most of Team Arrow, and Oliver’s son, <a href="https://arrow.fandom.com/wiki/William_Clayton" data-webtasks-id="d233d924-94b8-47e0">William Clayton</a> (<a href="https://arrow.fandom.com/wiki/Jack_Moore" data-webtasks-id="4d31bbfb-bf34-44aa">Jack Moore</a>), and taken them to the infamous island where Oliver became the Arrow. That’s why Oliver turned to two of his former foes, <a href="https://arrow.fandom.com/wiki/Malcolm_Merlyn" data-webtasks-id="8844879b-e14b-4801">Malcolm Merlyn</a> (<a href="https://arrow.fandom.com/wiki/John_Barrowman" data-webtasks-id="21fd22b7-010e-4722">John Barrowman</a>) and Slade Wilson (Bennett), to help even the odds. This led to a battle for the ages and one of the few cliffhanger season finales in the history of the show. It also marked the end of Oliver’s flashbacks on Lian Yu and sent <em data-webtasks-id="effa1d5c-ee20-47fe">Arrow</em> in a new direction for its remaining seasons.</p>
<h2 data-webtasks-id="a46af9e7-5b2a-453f">Star-Crossed Duet</h2>
<figure data-blot="image" data-blot-data="{"src":"548abb53-0704-4f43-a398-7ea0cda65641","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="78502b8c-d481-453e">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/548abb53-0704-4f43-a398-7ea0cda65641/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/548abb53-0704-4f43-a398-7ea0cda65641/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/548abb53-0704-4f43-a398-7ea0cda65641/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/548abb53-0704-4f43-a398-7ea0cda65641/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/548abb53-0704-4f43-a398-7ea0cda65641/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="77653e53-afe8-4a4b">
</figure>
<p data-webtasks-id="7b9c04b0-72af-455c">As mentioned above, Gustin and Benoist both were cast members on <em data-webtasks-id="9b676111-cfc3-467a">Glee</em>, which was geared towards showing off their singing abilities. So perhaps it was inevitable that <em data-webtasks-id="63a4e675-0ecf-4a01">The Flash</em> would get a musical episode, “<a href="https://arrow.fandom.com/wiki/Duet" data-webtasks-id="995b42bc-8195-4046">Duet</a>,” guest starring Benoist’s Kara, alongside yet another <em data-webtasks-id="b9ad6291-2ff4-478e">Glee </em>veteran, <a href="https://arrow.fandom.com/wiki/Darren_Criss" data-webtasks-id="34e977c6-e661-4c19">Darren Criss</a>, as the <a href="https://arrow.fandom.com/wiki/Music_Meister" data-webtasks-id="d9ca9bb2-f118-48eb">Music Meister</a>, a villain who likes to make his victims sing.</p>
<p data-webtasks-id="3870d232-9ade-4c2f">The <em data-webtasks-id="9900bf63-b7b5-4db2">Supergirl</em> episode, “<a href="https://arrow.fandom.com/wiki/Star-Crossed" data-webtasks-id="a71463d2-354a-459e">Star-Crossed</a>,” briefly sets up the crossover when the Music Meister put Kara in a hypnotic coma that trapped her mind in an alternate world where she was a nightclub singer. Barry suffered the same fate in “Duet,” and he joined Kara before they were warned by the Music Meister that they had to follow his script to escape. And if they died in this world, they would die in reality as well.</p>
<p data-webtasks-id="0b2729d7-536b-41d0">Barry and Kara encountered several familiar faces in this world who resembled their friends and family. But the Music Meister’s real test forced them to confront their respective feelings for <a href="https://arrow.fandom.com/wiki/Iris_West-Allen" data-webtasks-id="4ef34e3f-d4a0-4a51">Iris</a> (<a href="https://arrow.fandom.com/wiki/Candice_Patton" data-webtasks-id="131ff430-15bf-43cc">Candice Patton</a>) and <a href="https://arrow.fandom.com/wiki/Mon-El" data-webtasks-id="46f6975f-f86d-4df2">Mon-El</a> (<a href="https://arrow.fandom.com/wiki/Chris_Wood" data-webtasks-id="a3ce3e7d-fcf8-425f">Chris Wood</a>).</p>
<h2 data-webtasks-id="eeed1d8b-57b2-4618">Crisis on Earth-X</h2>
<figure data-blot="image" data-blot-data="{"src":"ec25cf7b-ba73-429a-a803-e77908ea2fb2","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="7260699b-7b41-4e3e">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/ec25cf7b-ba73-429a-a803-e77908ea2fb2/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/ec25cf7b-ba73-429a-a803-e77908ea2fb2/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/ec25cf7b-ba73-429a-a803-e77908ea2fb2/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/ec25cf7b-ba73-429a-a803-e77908ea2fb2/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/ec25cf7b-ba73-429a-a803-e77908ea2fb2/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="9f81885a-3065-43ca">
</figure>
<p data-webtasks-id="0e5b82c9-dbf4-45e9">While <em data-webtasks-id="9937ef63-04c6-4f57"><a href="https://arrow.fandom.com/wiki/Invasion!" data-webtasks-id="969d4ccf-7a5b-4ff5">Invasion!</a></em> was the first Arrowverse crossover to feature the characters from four different shows, <em data-webtasks-id="76519098-43a6-47ad"><a href="https://arrow.fandom.com/wiki/Crisis_on_Earth-X" data-webtasks-id="f8e77018-9ce0-4ed9">Crisis on Earth-X</a></em> took things to another level by running through episodes of <em data-webtasks-id="e286aa1c-cdf7-447f">Supergirl</em>, <em data-webtasks-id="40e417d5-217a-4fa2">Arrow</em>, <em data-webtasks-id="30c95f1b-d3e5-4cc2">The Flash</em>, and <em data-webtasks-id="5cbb0210-be0d-4751">Legends of Tomorrow</em>. It also marked the live-action debut of <a href="https://arrow.fandom.com/wiki/Ray_Terrill" data-webtasks-id="3d57464b-1419-47c7">The Ray</a> (<a href="https://arrow.fandom.com/wiki/Russell_Tovey" data-webtasks-id="62677c6a-1e14-4c18">Russell Tovey</a>), who was previously introduced on the animated series, <em data-webtasks-id="0bd1e727-e0bc-4194"><a href="https://arrow.fandom.com/wiki/Freedom_Fighters:_The_Ray" data-webtasks-id="fce383a8-c3a7-4a93">Freedom Fighters: The Ray</a></em>.</p>
<p data-webtasks-id="112a89fc-ec05-443e">At the long-delayed wedding of Barry and Iris, villains from Earth-X crashed the ceremony including <a href="https://arrow.fandom.com/wiki/Oliver_(Earth-X)" data-webtasks-id="7e7b3847-22ed-4b3a">Dark Arrow</a> (Oliver’s counterpart), <a href="https://arrow.fandom.com/wiki/Kara_(Earth-X)" data-webtasks-id="8af512c3-f484-4c24">Overgirl</a> (Kara’s counterpart), and <a href="https://arrow.fandom.com/wiki/Tommy_Merlyn_(Earth-X)" data-webtasks-id="0ba37c35-4806-4698">Prometheus</a>, an alternate version of Oliver’s late friend, <a href="https://arrow.fandom.com/wiki/Tommy_Merlyn" data-webtasks-id="489f0341-d1ef-436e">Tommy Meryln</a> (<a href="https://arrow.fandom.com/wiki/Colin_Donnell" data-webtasks-id="9c0f430d-b51b-49d8">Colin Donnell</a>). In the multiverse, Earth-X is the world where the Nazis won World War II, and Dark Arrow ruled alongside his wife, Overgirl. Additionally, Barry’s old enemy, Eobard Thawne, was working with these super Nazis as they attempted to steal Supergirl’s heart so that they could save Overgirl’s life.</p>
<p data-webtasks-id="b72030ba-f14e-412d">Out of the four shows, this crossover had a more profound effect on <em data-webtasks-id="db5e73a9-651d-40ec">Legends of Tomorrow</em>, thanks to the death of one half of Firestorm, <a href="https://arrow.fandom.com/wiki/Martin_Stein" data-webtasks-id="152e99c7-58b9-482e">Martin Stein</a> (<a href="https://arrow.fandom.com/wiki/Victor_Garber" data-webtasks-id="fd9a893e-3ec0-49a4">Victor Garber</a>), and the appearance of The Ray’s boyfriend, <a href="https://arrow.fandom.com/wiki/Leo_Snart" data-webtasks-id="f671297f-cdeb-4bcd">Leo Snart</a> (<a href="https://arrow.fandom.com/wiki/Wentworth_Miller" data-webtasks-id="9cd51939-ea1a-41f7">Wentworth Miller</a>), who was a variant of their late teammate, <a href="https://arrow.fandom.com/wiki/Leonard_Snart" data-webtasks-id="515ee749-bad9-45b4">Leonard Snart</a>/Captain Cold. The crossover also ended with the double wedding of Barry and Iris and Oliver and <a href="https://arrow.fandom.com/wiki/Felicity_Smoak" data-webtasks-id="75a6ad34-6693-4369">Felicity</a>, but it was kind of uncool of Team Arrow to steal Barry and Iris’ thunder, so to speak.</p>
<h2 data-webtasks-id="b4fa7c3a-c0ed-45c3">Elseworlds</h2>
<figure data-blot="image" data-blot-data="{"src":"fcdc8740-2e22-49fc-8d24-d06b2fb0b205","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="94a8d66e-8f84-4f90">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/fcdc8740-2e22-49fc-8d24-d06b2fb0b205/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/fcdc8740-2e22-49fc-8d24-d06b2fb0b205/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/fcdc8740-2e22-49fc-8d24-d06b2fb0b205/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/fcdc8740-2e22-49fc-8d24-d06b2fb0b205/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/fcdc8740-2e22-49fc-8d24-d06b2fb0b205/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="3093f243-a685-427d">
</figure>
<p data-webtasks-id="0f6585a3-0101-4052">Compared to <em data-webtasks-id="7839550f-54e4-4272">Crisis on Earth-X</em>, <em data-webtasks-id="ed9ef8a8-a5c5-46c1"><a href="https://arrow.fandom.com/wiki/Elseworlds" data-webtasks-id="026677cd-f48c-489f">Elseworlds</a></em> was a rather compact three-episode crossover that set the stage for an even bigger event to come. When <a href="https://arrow.fandom.com/wiki/John_Deegan" data-webtasks-id="e25a5bce-216f-48cb">John Deegan</a> (<a href="https://arrow.fandom.com/wiki/Jeremy_Davies" data-webtasks-id="0cfdbdc1-78a7-4aa2">Jeremy Davies</a>) got his hands on the <a href="https://arrow.fandom.com/wiki/Book_of_Destiny" data-webtasks-id="d45e7297-bb01-4dec">Book of Destiny</a>, his revisions to history led to Barry and Oliver literally living each other’s lives. Even their closest friends and family didn’t believe that anything had changed, which is why Barry and Oliver recruited Supergirl and her famous cousin, <a href="https://arrow.fandom.com/wiki/Clark_Kent_(Earth-38)" data-webtasks-id="334e6cf3-bad3-4e0f">Superman</a> (<a href="https://arrow.fandom.com/wiki/Tyler_Hoechlin" data-webtasks-id="36ca67de-a81f-4d30">Tyler Hoechlin</a>), for additional help.</p>
<p data-webtasks-id="889ab5b7-c3b6-4d46">This storyline also featured the introduction of <a href="https://arrow.fandom.com/wiki/Ruby_Rose" data-webtasks-id="8da122b9-ed1c-4a40">Ruby Rose</a>’s <a href="https://arrow.fandom.com/wiki/Kate_Kane" data-webtasks-id="dd266b3e-5a25-4047">Kate Kane</a> before she headlined the first season of <em data-webtasks-id="d9453ef3-e170-401c">Batwoman</em> on The CW. But an even bigger treat for old school fans was the return of <a href="https://arrow.fandom.com/wiki/John_Wesley_Shipp" data-webtasks-id="c757348b-17aa-4f82">John Wesley Shipp</a> as <a href="https://arrow.fandom.com/wiki/Barry_Allen_(Earth-90)" data-webtasks-id="eb255f3d-ed73-46fb">Barry Allen</a> from <em data-webtasks-id="9c83bbf5-f198-41af"><a href="https://arrow.fandom.com/wiki/The_Flash_(CBS)" data-webtasks-id="d70e1ea8-8b78-493a">The Flash</a> </em>TV series that aired in 1990. Shipp had already appeared in the Arrowverse as <a href="https://arrow.fandom.com/wiki/Henry_Allen" data-webtasks-id="365460ab-15cf-4991">Henry Allen</a> and <a href="https://arrow.fandom.com/wiki/Jay_Garrick" data-webtasks-id="bd223f41-990d-4a6a">Jay Garrick</a>, but this was the first time that he got to play his version of Barry opposite Gustin’s Flash.</p>
<p data-webtasks-id="820eb627-728e-478b">Shipp’s Barry also carried a dire warning about <a href="https://arrow.fandom.com/wiki/Mar_Novu" data-webtasks-id="1e63abc0-1d05-4f4b">The Monitor</a> (<a href="https://arrow.fandom.com/wiki/LaMonica_Garrett" data-webtasks-id="16c059ee-92b8-498d">LaMonica Garrett</a>), an enigmatic alien who provided Deegan with the Book of Destiny. This paved the way for the Arrowverse’s biggest event, <em data-webtasks-id="9ecf791b-5a0c-4067"><a href="https://arrow.fandom.com/wiki/Crisis_on_Infinite_Earths" data-webtasks-id="de3e29c1-3f5a-48d1">Crisis on Infinite Earths</a></em>.</p>
<h2 data-webtasks-id="336dc73b-b965-481b">Crisis on Infinite Earths</h2>
<figure data-blot="image" data-blot-data="{"src":"5dffae9a-0eb0-43f4-b361-e756206c75e7","alt":"","caption":"","align":""}" class="article-image block-align-content" data-webtasks-id="92e252a4-81c7-45c5">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/5dffae9a-0eb0-43f4-b361-e756206c75e7/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/5dffae9a-0eb0-43f4-b361-e756206c75e7/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/5dffae9a-0eb0-43f4-b361-e756206c75e7/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/5dffae9a-0eb0-43f4-b361-e756206c75e7/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/5dffae9a-0eb0-43f4-b361-e756206c75e7/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="36805941-cee3-428c">
</figure>
<p data-webtasks-id="f13e84a8-de94-4ead">In retrospect, there was no way to capture the full grandeur of <a href="https://arrow.fandom.com/wiki/Marv_Wolfman" data-webtasks-id="a2ee7d1c-9086-409b">Marv Wolfman</a> and artist <a href="https://dc.fandom.com/wiki/George_P%C3%A9rez" data-webtasks-id="344bd120-8456-48cf">George Perez</a>’s 1985 crossover epic, <em data-webtasks-id="0b5c1673-a9d8-438b"><a href="https://dc.fandom.com/wiki/Crisis_on_Infinite_Earths_Vol_1" data-webtasks-id="ef3c1684-d63f-4ba0">Crisis on Infinite Earths</a></em>, on a TV budget, even with five episodes to play with. But the producers still managed the impressive feat of recruiting several stars from previous DC shows and movies to make cameo appearances, including <a href="https://arrow.fandom.com/wiki/Clark_Kent_(Earth-167)" data-webtasks-id="96a15d3c-e0b1-4bd7">Clark Kent</a> (<a href="https://arrow.fandom.com/wiki/Tom_Welling" data-webtasks-id="c0a4e741-82ab-40d5">Tom Welling</a>) and <a href="https://arrow.fandom.com/wiki/Lois_Lane_(Earth-167)" data-webtasks-id="f0cce6f0-7c34-4239">Lois Lane</a> (<a href="https://arrow.fandom.com/wiki/Erica_Durance" data-webtasks-id="84870198-90dd-47e8">Erica Durance</a>) from <em data-webtasks-id="0d08a7cf-a87b-4364"><a href="https://smallville.fandom.com/wiki/Smallville_(TV_series)" data-webtasks-id="6f8c1d24-38df-4ab7">Smallville</a></em>, <a href="https://arrow.fandom.com/wiki/Lucifer_Morningstar" data-webtasks-id="e619e411-0fc9-44f2">Lucifer Morningstar</a> (<a href="https://arrow.fandom.com/wiki/Tom_Ellis" data-webtasks-id="cdf77990-394a-47c9">Tom Ellis</a>) from <em data-webtasks-id="ddca3c8f-660f-4577"><a href="http://en.wikipedia.org/wiki/Lucifer_(TV_series)" data-webtasks-id="37a611a0-91cb-4cee">Lucifer</a></em>, <a href="https://arrow.fandom.com/wiki/Helena_Kyle" data-webtasks-id="f087f68c-eaa1-44ac">Helena Kyle</a> (<a href="https://arrow.fandom.com/wiki/Ashley_Scott" data-webtasks-id="209cdd49-0edf-4ea8">Ashley Scott</a>) from <em data-webtasks-id="0a2b4455-2e9e-463f"><a href="https://arrow.fandom.com/wiki/Birds_of_Prey" data-webtasks-id="40894e89-3f26-42be">Birds of Prey</a></em>, <a href="https://arrow.fandom.com/wiki/Alexander_Knox" data-webtasks-id="9b29b4b7-3a08-4e1e">Alexander Knox</a> (<a href="https://arrow.fandom.com/wiki/Robert_Wuhl" data-webtasks-id="296b33b4-5cbe-4f4b">Robert Wuhl</a>) from <a href="https://batmananthology.fandom.com/wiki/Tim_Burton" data-webtasks-id="b902c55c-7908-4419">Tim Burton</a>’s <em data-webtasks-id="772aa0db-fcd9-42cf"><a href="https://batmananthology.fandom.com/wiki/Batman_(film)" data-webtasks-id="5aba3c49-122c-4b85">Batman</a></em>, and even <a href="https://arrow.fandom.com/wiki/Burt_Ward" data-webtasks-id="7d749e0e-9422-48e4">Burt Ward</a> as a long-retired <a href="https://arrow.fandom.com/wiki/Dick_Grayson" data-webtasks-id="cb1cf250-ec42-4506">Dick Grayson</a> from the world of <em data-webtasks-id="8cc110f2-c8d3-43f3"><a href="https://batman60stv.fandom.com/wiki/Batman:_Classic_TV_Series" data-webtasks-id="df8659f4-f341-4c9b">Batman ‘66</a></em>. However, it fell upon the Arrowverse heroes to prevent the complete destruction of the DC multiverse.</p>
<figure data-blot="image" data-blot-data="{"src":"3c49ae37-309a-45d8-b317-ee068e71a5bd","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="1ad02ac7-7a4f-4f92">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/3c49ae37-309a-45d8-b317-ee068e71a5bd/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/3c49ae37-309a-45d8-b317-ee068e71a5bd/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/3c49ae37-309a-45d8-b317-ee068e71a5bd/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/3c49ae37-309a-45d8-b317-ee068e71a5bd/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/3c49ae37-309a-45d8-b317-ee068e71a5bd/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="6d46c534-e83b-46cf">
</figure>
<p data-webtasks-id="6f4aea7d-5050-4cb3">The most talked about cameo in the crossover was <a href="https://arrow.fandom.com/wiki/Ezra_Miller" data-webtasks-id="417636ae-6e54-457b">Ezra Miller</a>’s brief appearance as <a href="https://arrow.fandom.com/wiki/Barry_Allen_(Earth-TUD13)" data-webtasks-id="7534b867-1af0-4446">The Flash</a> from the <a href="https://dcextendeduniverse.fandom.com/wiki/DC_Extended_Universe" data-webtasks-id="c6bddca8-0821-4cd2">DC Extended Universe</a>, and the interplay between Miller and Gustin’s Barry Allens was so much fun that it was over far too quickly. This was also a complete surprise, as the creative team pulled off the Herculean feat of keeping Miller’s appearance a secret. Almost all of the other cameos were officially announced or leaked ahead of time.</p>
<figure data-blot="image" data-blot-data="{"src":"ddfea2f5-f5c8-469b-8227-3a5f87326bc5","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="fe83ae30-e12d-47b0">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/ddfea2f5-f5c8-469b-8227-3a5f87326bc5/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/ddfea2f5-f5c8-469b-8227-3a5f87326bc5/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/ddfea2f5-f5c8-469b-8227-3a5f87326bc5/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/ddfea2f5-f5c8-469b-8227-3a5f87326bc5/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/ddfea2f5-f5c8-469b-8227-3a5f87326bc5/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="ff38a427-aa12-499b">
</figure>
<p data-webtasks-id="067c70c2-883a-4599"><em data-webtasks-id="f7d6c897-0072-47df"><a href="https://superman.fandom.com/wiki/Superman_Returns" data-webtasks-id="260eda72-6dea-4582">Superman Returns</a></em> star <a href="https://arrow.fandom.com/wiki/Brandon_Routh" data-webtasks-id="5871aa5a-0466-4766">Brandon Routh</a> also got a chance to revisit his take on the Man of Steel after playing <a href="https://arrow.fandom.com/wiki/Ray_Palmer" data-webtasks-id="21e421dc-fd93-4559">The Atom</a> for years on <em data-webtasks-id="8a852b8e-492b-418d">Arrow</em> and <em data-webtasks-id="0333ce28-6da7-4c29">Legends of Tomorrow</em>. Routh’s <a href="https://arrow.fandom.com/wiki/Clark_Kent_(Earth-96)" data-webtasks-id="af7151b4-ddbb-4a2f">Superman</a> had a costume similar to the character’s look in <em data-webtasks-id="d40b81cf-3218-4b0f"><a href="https://dc.fandom.com/wiki/Kingdom_Come_Vol_1" data-webtasks-id="ac13bb27-164a-4050">Kingdom Come</a></em>, and a similar backstory where he lost his <a href="https://superman.fandom.com/wiki/Lois_Lane" data-webtasks-id="ffb73699-05ce-43af">Lois</a> and several of his closest friends to an attack by The Joker. Yet this Superman never lost his hope, and it was genuinely exciting to hear <a href="https://warnerbros.fandom.com/wiki/John_Williams" data-webtasks-id="97885b6f-6a66-4c5e">John Williams</a>’ “<a href="https://fansonicwb.fandom.com/wiki/Superman_music" data-webtasks-id="e1c28153-5302-4de5">Superman March</a>” theme as Routh’s Superman put on his costume again.</p>
<figure data-blot="image" data-blot-data="{"src":"259e8003-ac8d-45fe-9cf1-0fb6e3654da6","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="b224194c-4f46-48db">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/259e8003-ac8d-45fe-9cf1-0fb6e3654da6/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/259e8003-ac8d-45fe-9cf1-0fb6e3654da6/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/259e8003-ac8d-45fe-9cf1-0fb6e3654da6/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/259e8003-ac8d-45fe-9cf1-0fb6e3654da6/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/259e8003-ac8d-45fe-9cf1-0fb6e3654da6/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="5a67df2f-e38d-4ff8">
</figure>
<p data-webtasks-id="019deeda-06e0-4705"><em data-webtasks-id="96c8c49b-7d8b-4426">The Flash</em> had been heading towards his death in the Crisis since the very <a href="https://arrow.fandom.com/wiki/Pilot_(The_Flash_(The_CW))" data-webtasks-id="f738db9f-d72f-480e">first episode</a> of the series. But he cheated fate thanks to his older counterpart, Barry (Shipp), who fulfilled the prophecy of The Flash’s demise with some emotional callbacks to his time with the character. Oliver Queen was not as lucky, as he pulled off the rare trick of dying twice during the crossover. After Oliver’s first death, he was reborn as The Spectre, but he gave his life once again for the sake of restoring the multiverse.</p>
<figure data-blot="image" data-blot-data="{"src":"dd0a6293-b4ad-4de2-aa0a-087ec49cc48d","alt":"","caption":"","align":"undefined"}" class="article-image block-align-content" data-webtasks-id="cf409539-ef0b-42cb">
<img class="article-image__image size-full aligncenter" src="https://vignette.wikia.nocookie.net/dd0a6293-b4ad-4de2-aa0a-087ec49cc48d/scale-to-width-down/1200" alt="" srcset="https://vignette.wikia.nocookie.net/dd0a6293-b4ad-4de2-aa0a-087ec49cc48d/scale-to-width-down/400 400w, https://vignette.wikia.nocookie.net/dd0a6293-b4ad-4de2-aa0a-087ec49cc48d/scale-to-width-down/627 627w, https://vignette.wikia.nocookie.net/dd0a6293-b4ad-4de2-aa0a-087ec49cc48d/scale-to-width-down/800 800w, https://vignette.wikia.nocookie.net/dd0a6293-b4ad-4de2-aa0a-087ec49cc48d/scale-to-width-down/1200 1200w" sizes="(max-width: 840px) 100vw, (max-width: 1064px) calc(100vw - 300px), 1200px" data-webtasks-id="0a56643b-485c-44b5">
</figure>
<p data-webtasks-id="818c297d-4b1d-40c7">In the aftermath, several worlds were merged into the prime Arrowverse Earth, including the alternate Earths of <em data-webtasks-id="944fa89e-743c-44d4">Black Lightning </em>and <em data-webtasks-id="21d21e0b-fca6-4e04">Supergirl</em>. With most of the Arrowverse heroes finally on a single world, this allowed them form their own version of the <a href="https://arrow.fandom.com/wiki/The_League_(Earth-Prime)" data-webtasks-id="1546fea7-1535-482b">Justice League</a>. In many ways, the rest of the Arrowverse didn’t live up to the promise of <em data-webtasks-id="d1670817-1b26-4405">Crisis</em>’ finale. But it was a triumph for a superhero TV universe that has earned its place in the comic book pantheon.</p>
<p data-webtasks-id="8a45d908-bc58-412d">We also asked the community at the <a href="https://arrow.fandom.com/wiki/Arrowverse_Wiki" data-webtasks-id="08112fa9-af36-421e">Arrowverse Wiki</a> their favorite moments and here are some of your choices!</p>
<p data-webtasks-id="261b15f2-ad8c-4b67">“‘<a href="https://arrow.fandom.com/wiki/Tricksters?so=search" data-webtasks-id="57e8e9bb-e95f-4857">Tricksters</a>‘ is my favorite <em data-webtasks-id="d3abca33-4dc6-4dca">Flash</em> episode. Frankly, I could say any moment with <a title="Mark Hamill" href="https://arrow.fandom.com/wiki/Mark_Hamill" data-webtasks-id="0530874e-9754-43b1">Mark Hamill</a> as <a title="James Jesse (Earth-1)" href="https://arrow.fandom.com/wiki/James_Jesse_(Earth-1)" data-webtasks-id="31a5f83b-7cbb-4107">The Trickster</a>, but it was that first episode that was really special.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/1984959" data-webtasks-id="721490ee-54a8-4dd0">J Fan</a></p>
<p data-webtasks-id="7d32c20a-a4d8-42e9">“<a href="https://arrow.fandom.com/wiki/Lena_Luthor" data-webtasks-id="01185d34-a8a5-4787">Lena</a>‘s speech against <a href="https://arrow.fandom.com/wiki/Reign_(split_personality)" data-webtasks-id="569990ad-cd72-4d55">Reign</a> when she was locked up within <a title="Samantha Arias" href="https://arrow.fandom.com/wiki/Samantha_Arias" data-webtasks-id="a3a57d74-6af8-40d7">Sam</a>. Just was giving complete chills.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/27700324" data-webtasks-id="ce6b8ad4-2bb6-4d0a">Xandermcc</a></p>
<p data-webtasks-id="2dacda59-6327-40d2">“The <a class="mw-redirect" title="Legends (Earth-Prime)" href="https://arrow.fandom.com/wiki/Legends_(Earth-Prime)" data-webtasks-id="b290ee20-d788-4dd5">Legends</a> vs. <a title="Zagurons" href="https://arrow.fandom.com/wiki/Zagurons" data-webtasks-id="ce82d6b4-caad-41b0">Zagurons</a> and <a href="https://arrow.fandom.com/wiki/Bishop?so=search" data-webtasks-id="a058d88e-51a9-488f">Bishop</a> in the <a href="https://arrow.fandom.com/wiki/The_Fungus_Amongus" data-webtasks-id="967b233f-8a84-4317">Season 6 finale</a>.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/4554525" data-webtasks-id="3ed5e063-17be-455e">Tommy,Klaus&Kol2012+</a></p>
<p data-webtasks-id="e16c4305-d25d-4897">“<em data-webtasks-id="18b16e7e-edd5-4f91">Black Lightning</em> <a href="https://arrow.fandom.com/wiki/Shadow_of_Death:_The_Book_of_War?so=search" data-webtasks-id="e59aebba-2370-4c32">1×13</a>: <a title="Jennifer Pierce" href="https://arrow.fandom.com/wiki/Jennifer_Pierce" data-webtasks-id="2ba0d64a-bff2-44f0">Jennifer</a> restores <a title="Jefferson Pierce" href="https://arrow.fandom.com/wiki/Jefferson_Pierce" data-webtasks-id="bc2f29c2-84bf-4336">Jefferson</a>‘s powers. Inspiring moment after a nail biting lead up with the threat of the <a title="A.S.A. (Earth-TUD5)" href="https://arrow.fandom.com/wiki/A.S.A._(Earth-TUD5)" data-webtasks-id="28fb076b-788a-4bbd">A.S.A.</a>” – <a class="reply__username" href="https://arrow.fandom.com/f/u/27829936" data-webtasks-id="c7d16291-bcb0-47f6">GrandTemplar98</a></p>
<p data-webtasks-id="36985c08-ff20-48a2">“Arrow <a href="https://arrow.fandom.com/wiki/Crossing_Lines" data-webtasks-id="c15016af-881a-4a10">in prison</a> beating the hell out of everyone.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/52575524" data-webtasks-id="99eec06c-51c4-4483">Vbmjkmc</a></p>
<p data-webtasks-id="3fc3338f-0cfa-468b">“‘My goals are beyond your understanding.’ My <a href="https://arrow.fandom.com/wiki/Eobard_Thawne" data-webtasks-id="776ec655-74b6-4a5e">favorite DC supervillain</a> couldn’t have been better adapted to the screen.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/44153743" data-webtasks-id="97fa0eb9-aed6-42f8">IlDottore0</a></p>
<p data-webtasks-id="1a68af5d-d762-4407">“My favorite show was <em data-webtasks-id="8e83f1e7-61e5-4527">Legends of Tomorrow</em>. <a href="https://arrow.fandom.com/wiki/Sara_Lance" data-webtasks-id="04a69aa9-696f-461a">Sara Lance</a>, my favorite character. Love <a href="https://shipping.fandom.com/wiki/Avalance" data-webtasks-id="af198f07-7bbd-4aea">Avalance</a>, ‘<a href="https://arrow.fandom.com/wiki/The_Bullet_Blondes" data-webtasks-id="13370f16-e5b6-43c7">Bullet Blondes</a>.'” – <a class="reply__username" href="https://arrow.fandom.com/f/u/52065273" data-webtasks-id="91dc752c-8a6b-421b">7Marie7</a></p>
<p data-webtasks-id="652ef098-20d9-4056">“The<a href="https://arrow.fandom.com/wiki/Pilot_(The_Flash_(The_CW))" data-webtasks-id="9b7e9408-4bd5-47e4"> pilot episode</a> of <em data-webtasks-id="877affaa-b505-4d8d">The Flash</em>. Such a brilliant setup.” – <a class="reply__username" href="https://arrow.fandom.com/f/u/43940609" data-webtasks-id="a1bd457f-a7d9-4f2c">Multifander</a></p>
<hr data-webtasks-id="322c8ea6-348d-4835">
<div data-blot="embed" data-blot-data="{"url":"https:\/\/www.fandom.com\/articles\/origin-story-aquaman-black-manta"}" data-webtasks-id="48cc5a4d-8ce1-4838">
<div class="embedded-article" data-slug="origin-story-aquaman-black-manta" data-webtasks-id="5b9825dd-1393-4916"></div>
</div>
</div>
<div class="article-attribution" data-webtasks-id="6b1ea72d-862c-4906">
<img class="article-attribution__avatar" src="https://static.wikia.nocookie.net/b1c83768-7951-4890-863d-1a6091d324e0/scale-to-width-down/90" alt="Blair Marnell" data-webtasks-id="e17842fc-8c2f-402a">
<div class="article-attribution__byline" data-webtasks-id="f6e84620-fbb0-4431">
<a data-tracking="{"category":"article","label":"author.name","action":138781,"post_id":138781}" href="https://www.fandom.com/u/Blair%20Marnell" class="article-attribution__name" data-webtasks-id="86650788-94ea-4619">Blair Marnell</a>
<div class="article-attribution__username" data-webtasks-id="d08a67d9-e485-42b0">Blair Marnell</div>
</div>
<div class="article-attribution__bio" data-webtasks-id="920dc100-125d-4cbe">Freelance writer for almost every major geek outlet, including Fandom!</div>
</div>
</div>
</article>
</div>
</div>
<div class="feed-container is-placeholder" data-endpoint-feed="https://www.fandom.com/f2/api/public/feed" data-webtasks-id="369d651b-e605-4261"></div>
<!-- LiftIgniter -->
<script id="liftigniter-metadata" type="application/json" data-webtasks-id="f92ab7dc-0b16-41fc">{"noShow":"true"}</script>
<!-- End LiftIgniter -->
<script type="text/javascript" data-webtasks-id="cf9779de-1987-417f">
(function(w,d,s,p,v,e,r) {w['$igniter_var']=v;w[v]=w[v]||function(){(w[v].q=w[v].q||[]).push(
arguments)};w[v].l=1*new Date();e=d.createElement(s),r=d.getElementsByTagName(s)[0];e.async=1;
e.src=p+'?ts='+(+new Date()/3600000|0);
r.parentNode.insertBefore(e,r)})(window,document,'script','//cdn.petametrics.com/l9ehhrb6mtv75bp2.js','$p');
</script>
<footer class="wds-global-footer wds-is-en is-f2" data-lang="footer-en" data-webtasks-id="a2bd0ca3-f30b-44a9">
<div class="wds-global-footer__main" data-webtasks-id="547dc60c-098b-4547">
<div class="wds-global-footer__column" data-webtasks-id="97b583f4-1144-43b5">
<section class="wds-global-footer__section" data-webtasks-id="55eb44e7-fc30-43c5">
<div class="wds-global-footer__header-wrapper" data-webtasks-id="cbf2ea08-b563-4830">
<h2 class="wds-global-footer__header" data-tracking="{"label": "global-footer.logo"}" data-webtasks-id="4587c83d-3409-4784">
<a href="https://www.fandom.com/" data-webtasks-id="76f2ae23-5ccf-4a19">
<img class="wds-global-footer__header-logo" src="https://static.wikia.nocookie.net/6a181c72-e8bf-419b-b4db-18fd56a0eb60" alt="Fandom" data-webtasks-id="8aa62193-5d39-435f">
</a>
</h2>
</div>
</section>
<section class="wds-global-footer__section wds-is-fandom-overview" data-webtasks-id="2ff6f0a0-6b69-40a5">
<h3 class="wds-global-footer__section-header" data-webtasks-id="e27fec6a-a10f-48b7">Explore Properties</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="78ba296b-c9e3-47ef">
<li class="wds-global-footer__links-list-item" data-webtasks-id="2dd688a3-8e52-4348">
<a href="https://www.fandom.com/" class="wds-global-footer__link" data-webtasks-id="1f9f8674-0608-4bb6">
<div data-webtasks-id="e7bc3651-52cb-4906">Fandom</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="52325b65-306f-4a68">
<a href="https://www.muthead.com/" class="wds-global-footer__link" data-webtasks-id="df9b6bc6-fd2c-4123">
<div data-webtasks-id="38889710-8259-42cf">Muthead</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="84d9177d-223f-4010">
<a href="https://www.futhead.com/" class="wds-global-footer__link" data-webtasks-id="a5584a9c-7588-4d53">
<div data-webtasks-id="d01100d4-2667-4323">Futhead</div>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="aa09b407-5546-4a9a">
<a href="https://www.fanatical.com/" class="wds-global-footer__link" data-webtasks-id="13a185dd-fed0-4d03">
<div data-webtasks-id="1c7dbb70-19fd-44bf">Fanatical</div>
</a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="55be9588-db6f-4edc">
<section class="wds-global-footer__section wds-is-site-overview" data-webtasks-id="5579285c-b3c2-476a">
<h3 class="wds-global-footer__section-header" data-webtasks-id="1a494b92-d1ad-4035">Overview</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="098ec623-bd8b-481c">
<li class="wds-global-footer__links-list-item" data-webtasks-id="d9cdfd79-f212-468f">
<a href="https://www.fandom.com/what-is-fandom" class="wds-global-footer__link" data-webtasks-id="f78b302a-56bd-4138">
What is Fandom?
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="ddbe2e41-1264-4fff">
<a href="https://www.fandom.com/about" class="wds-global-footer__link" data-webtasks-id="7f96b6e5-9549-4ac7">
About </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="f3de1f01-1d19-4400">
<a href="https://www.fandom.com/careers" class="wds-global-footer__link" data-webtasks-id="75931a81-77a4-4eb2">
Careers </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="9cc985f7-dd42-4540">
<a href="https://www.fandom.com/press" class="wds-global-footer__link" data-webtasks-id="127baee4-996a-4729">
Press </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="d21acaa4-0980-4a87">
<a href="https://www.fandom.com/about#contact" class="wds-global-footer__link" data-webtasks-id="824e911d-1b81-4655">
Contact </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="e0daf0e4-d515-47ed">
<a href="https://www.fandom.com/terms-of-use" class="wds-global-footer__link" data-webtasks-id="e19aa64e-8022-418e">
Terms of Use </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="45cc109e-6f2d-446b">
<a href="https://www.fandom.com/privacy-policy" class="wds-global-footer__link" data-webtasks-id="0ea013b0-b261-4d4e">
Privacy Policy </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="d0aff25b-93de-407b">
<a href="//community.fandom.com/Sitemap" class="wds-global-footer__link" data-webtasks-id="67aa8e47-03a9-4fa3">
Global Sitemap </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="c9f6953d-8e51-4936">
<a href="https://www.fandom.com/local-sitemap" class="wds-global-footer__link" data-webtasks-id="f771d12d-9b86-4218">
Local Sitemap </a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="d8603eb8-3335-45be">
<section class="wds-global-footer__section wds-is-community" data-webtasks-id="d235afb7-79f3-40d4">
<h3 class="wds-global-footer__section-header" data-webtasks-id="6ce4ad62-ba16-4739">Community</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="2999d66d-f5f9-4774">
<li class="wds-global-footer__links-list-item" data-webtasks-id="f31e93b0-5302-40cc">
<a href="//community.fandom.com/wiki/Community_Central" class="wds-global-footer__link" data-webtasks-id="cf741a4e-83d4-45ca">
Community Central </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="9c16e48e-1a46-457f">
<a href="https://fandom.zendesk.com/" class="wds-global-footer__link" data-webtasks-id="45cedb9a-3a91-46e7">
Support </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="c83278cb-037a-4c8a">
<a href="//community.fandom.com/wiki/Help:Contents" class="wds-global-footer__link" data-webtasks-id="afd09542-90e6-4c46">
Help </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="d6bb871c-1a51-4e35">
<a href="https://www.fandom.com/do-not-sell-my-info" class="wds-global-footer__link" data-webtasks-id="2529b3ec-fee2-4b9b">
Do Not Sell or Share My Personal Information </a>
</li>
</ul>
</section>
<section class="wds-global-footer__section wds-is-advertise" data-webtasks-id="647ce9d8-ad5c-4130">
<h3 class="wds-global-footer__section-header" data-webtasks-id="74f15782-086c-45e3">Advertise</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="d7dbc973-4e47-4978">
<li class="wds-global-footer__links-list-item" data-webtasks-id="8bfc3b79-951d-4533">
<a href="https://about.fandom.com/mediakit" class="wds-global-footer__link" data-webtasks-id="4ddbef9c-2041-4f43">
Media Kit </a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="6f652741-507b-4f37">
<a href="https://about.fandom.com/mediakit#contact" class="wds-global-footer__link" data-webtasks-id="27b5ebf8-f237-4034">
Contact </a>
</li>
</ul>
</section>
<section class="wds-global-footer__section wds-is-follow-us" data-webtasks-id="e9ecf67e-f589-40ae">
<h3 class="wds-global-footer__section-header" data-webtasks-id="e7ceeab1-d138-44fe">Follow Us</h3>
<ul class="wds-global-footer__links-list" data-webtasks-id="ab43c34f-3818-44de">
<li class="wds-global-footer__links-list-item" data-webtasks-id="f4cf39c9-2090-4f77">
<a href="https://www.facebook.com/getfandom" class="wds-global-footer__link" data-webtasks-id="d954be2e-c28b-4440">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Facebook" data-webtasks-id="ed3884cb-92d1-4323">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-facebook" data-webtasks-id="133f6edc-6f2d-4a1f"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="168356f5-7691-4db4">
<a href="https://twitter.com/getfandom" class="wds-global-footer__link" data-webtasks-id="80982129-26e3-4c9a">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Twitter" data-webtasks-id="17463765-8bdb-4f65">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-twitter" data-webtasks-id="1ba269a1-92f5-4221"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="33ddb968-781c-4801">
<a href="https://www.youtube.com/fandomentertainment" class="wds-global-footer__link" data-webtasks-id="77adb34a-f94e-48d1">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Youtube" data-webtasks-id="db621584-d56d-4aac">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-youtube" data-webtasks-id="181e8318-f958-419b"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="62cfd872-05c6-4de0">
<a href="https://www.instagram.com/getfandom/" class="wds-global-footer__link" data-webtasks-id="472cf092-b366-495f">
<svg class="wds-global-footer__link-image wds-icon-small" alt="Instagram" data-webtasks-id="1adca08a-e2c5-4cb3">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-instagram" data-webtasks-id="9dd0daf8-0b9d-4f97"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="b72f2ab9-907a-4ef4">
<a href="https://www.linkedin.com/company/157252" class="wds-global-footer__link" data-webtasks-id="7f383c57-14e9-4ad6">
<svg class="wds-global-footer__link-image wds-icon-small" alt="design-system.global-footer-follow-us-link-linkedin" data-webtasks-id="b3a527ab-7d28-4b1d">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-icons-linkedin" data-webtasks-id="5f3fcb85-4a05-4831"></use>
</svg>
</a>
</li>
</ul>
</section>
</div>
<div class="wds-global-footer__column" data-webtasks-id="29e40020-90d1-4a55">
<section class="wds-global-footer__section wds-is-fandom-apps" data-webtasks-id="d64ac301-1fd9-45e0">
<h3 class="wds-global-footer__section-header" data-webtasks-id="353c4e63-ddb7-4034">Fandom Apps</h3>
<span class="wds-global-footer__section-description" data-webtasks-id="c3f092e3-1e3a-4b4a">Take your favorite fandoms with you and never miss a beat.</span>
</section>
<section class="wds-global-footer__section wds-is-fandom-stores" data-webtasks-id="019006cf-3aab-4ef0">
<figure class="wds-global-footer__image" data-webtasks-id="4bcdd9fb-8b9f-401d">
<img src="https://static.wikia.nocookie.net/1fcd9eb5-31ba-42aa-bc10-4a8c6332d69b" alt="Fandom" data-webtasks-id="17219c51-9627-49c8">
</figure>
<ul class="wds-global-footer__links-list" data-webtasks-id="1908e6bb-5205-4c8b">
<li class="wds-global-footer__links-list-item" data-webtasks-id="1d46ad52-401d-4826">
<a href="https://apps.apple.com/us/app/fandom-videos-news-reviews/id1230063803" class="wds-global-footer__link" data-webtasks-id="734568bc-a9ed-4f4a">
<svg class="wds-global-footer__link-image" data-webtasks-id="56c877e7-a574-4d75">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-company-store-appstore" data-webtasks-id="945e4ba3-bebf-4226"></use>
</svg>
</a>
</li>
<li class="wds-global-footer__links-list-item" data-webtasks-id="a9c26beb-ed3a-47d1">
<a href="https://play.google.com/store/apps/details?id=com.fandom.app&referrer=utm_source%3Dwikia%26utm_medium%3Dglobalfooter" class="wds-global-footer__link" data-webtasks-id="f9da36eb-a100-4edd">
<svg class="wds-global-footer__link-image" data-webtasks-id="e8de3852-aa03-4191">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#wds-company-store-googleplay" data-webtasks-id="d850fe67-b673-4898"></use>
</svg>
</a>
</li>
</ul>
</section>
</div>
</div>
<div class="wds-global-footer__bottom-bar" data-webtasks-id="eaf4b850-3142-4803">
<div class="wds-global-footer__bottom-bar-row wds-has-padding" data-webtasks-id="fb64840c-6ad4-4377">Copyright 2023 Fandom, Inc.</div>
</div>
</footer>
<style data-webtasks-id="73cd22f9-954c-405f">
.wds-global-footer.is-f2 {
background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #520044;
font-family: Rubik, sans-serif;
padding-top: 84px;
}
@media screen and (max-width: 1023px) {
.wds-global-footer.is-f2 {
padding-top: 42px;
}
.wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-community .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__section.wds-is-advertise .wds-global-footer__links-list {
column-count: 2;
}
.wds-global-footer.is-f2 .wds-global-footer__header {
margin-top: 0;
padding: 0 0 44px;
}
.wds-global-footer.is-f2 .wds-global-footer__section {
margin-bottom: 22px !important;
margin-top: 0 !important;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-fandom-overview {
margin-bottom: 42px !important;
}
}
.wds-global-footer.is-f2 .wds-global-footer__header {
margin-top: -14px;
padding: 0 0 22px;
}
.wds-global-footer.is-f2 .wds-global-footer__header-logo {
height: auto !important;
width: 183px;
}
.wds-global-footer.is-f2 .wds-global-footer__bottom-bar {
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__link, .wds-global-footer.is-f2 .wds-global-footer__link:visited {
border-width: 0;
color: #ffc500;
}
.wds-global-footer.is-f2 .wds-global-footer__link:hover, .wds-global-footer.is-f2 .wds-global-footer__link:active {
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-create-wiki .wds-global-footer__link {
align-items: center;
border: 1px solid;
border-radius: 4px;
display: inline-flex;
height: 36px;
justify-content: center;
padding: 0;
width: 153px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section, .wds-global-footer.is-f2 .wds-global-footer__wikia-section {
border-width: 0;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview {
padding-top: 8px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__link {
display: inline-flex;
font-size: 28px;
padding: 0 0 5px;
text-transform: uppercase;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__link div {
border-bottom: 2px solid #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-fandom-overview .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-follow-us .wds-global-footer__links-list, .wds-global-footer.is-f2 .wds-global-footer__wikia-section.wds-is-community .wds-global-footer__links-list {
font-size: 14px;
font-weight: normal;
margin-bottom: 38px;
}
.wds-global-footer.is-f2 .wds-global-footer__fandom-section.wds-is-follow-us .wds-global-footer__image {
color: #fff;
}
.wds-global-footer.is-f2 .wds-global-footer__section-header {
font-size: 12px;
line-height: 1;
margin-bottom: 8px;
min-height: 14px;
text-transform: uppercase;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-follow-us .wds-global-footer__link-image {
fill: #f9edd8 !important;
opacity: 1 !important;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-follow-us .wds-global-footer__link {
height: 18px;
width: 18px;
}
.wds-global-footer.is-f2 .wds-global-footer__section.wds-is-fandom-overview {
margin-top: 0;
}
</style>
<script src="//services.fandom.com/icbm/api/loader?app=f2" data-webtasks-id="4854ab02-bdfd-44ec"></script>
<script data-webtasks-id="afa89ae0-8027-4b48">
(function () {
function genUID() {
const crypto = window['crypto'] || window['msCrypto'] || false;
if (crypto && crypto.randomUUID) {
return crypto.randomUUID();
} else if (crypto && crypto.getRandomValues) {
return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, function(c) {
return (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16);
});
}
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
function getCookieValue(cookieName) {
const cookieSplit = ('; ' + document.cookie).split('; ' + cookieName + '=');
return cookieSplit.length === 2 ? cookieSplit.pop().split(';').shift() : null;
}
var sessionId = getCookieValue('tracking_session_id'),
pvNumber = getCookieValue('pv_number'),
pvNumberGlobal = getCookieValue('pv_number_global'),
beacon = getCookieValue('wikia_beacon_id');
window.sessionId = sessionId ? sessionId : genUID();
window.pvNumber = pvNumber ? parseInt(pvNumber, 10) + 1 : 1;
window.pvNumberGlobal = pvNumberGlobal ? parseInt(pvNumberGlobal, 10) + 1 : 1;
window.pvUID = genUID();
window.wgWikiaCookieDomain = '.fandom.com';
window.wgCookiePath = '/';
if (beacon) {
window.beacon_id = beacon;
}
window.consentQueue = window.consentQueue || [];
window.consentQueue.push(function () {
const expireDate = new Date(Date.now() + 1000 * 60 * 30).toGMTString();
document.cookie = 'tracking_session_id=' + window.sessionId + '; expires=' + expireDate +
';domain=' + window.wgWikiaCookieDomain + '; path=' + window.wgCookiePath + ';';
document.cookie = 'pv_number=' + window.pvNumber + '; expires=' + expireDate +
'; path=' + window.wgCookiePath + ';';
document.cookie = 'pv_number_global=' + window.pvNumberGlobal + '; expires=' + expireDate +
';domain=' + window.wgWikiaCookieDomain + '; path=' + window.wgCookiePath + ';';
})
})();
</script>
<script defer="" src="https://www.fastly-insights.com/static/scout.js?k=17272cd8-82ee-4eb5-b5a3-b3cd5403f7c5" data-webtasks-id="57ea858a-7a91-4f3c"></script>
<script data-webtasks-id="3a8ace62-b3d1-44e6">
window._plc = {"p":"f2","pId":"0","pg":"article","pgLang":"en","time":0,"pgId":"1594293"};
window._plc.time = Date.now();
window._ulc = {"lang":"en"};
</script>
<script src="https://static.wikia.nocookie.net/silversurfer/prod/latest/sdk.js" data-webtasks-id="0b07b797-2616-4ea0"></script><script type="text/javascript" id="" data-webtasks-id="7fcdd045-1d78-4545">console.debug("I Loaded, silly rabbit...",google_tag_manager["rm"]["30955087"](11));</script><script type="text/javascript" id="" data-webtasks-id="298f7d30-7462-455b">console.debug("I Loaded, silly rabbit...",google_tag_manager["rm"]["30955087"](30));</script><script type="text/javascript" id="" data-webtasks-id="b01c68d8-600a-4ae0">(function(dataLayer){dataLayer.push({"event":"vp","action":"hc","label":"bjaqs"});var CATEGORY_VIDEO_PLAYER="video player";var CATEGORY_VIDEO_CONSUMPTION="video consumption";var CATEGORY_VIDEO_INTERACTION="video interaction";var markers=[25,50,75,100];var playersMarkers=[];function pipedJoin(arr){return arr.join(" | ")}function whenAvailable(name,callback){var interval=1;var i=0;window.setTimeout(function(){if(window[name])callback(window[name]);else whenAvailable(name,callback)},interval)}function getSessionStorageIncrementedValue(key){var currentValue=
sessionStorage.getItem(key);var newValue=1;if(currentValue)newValue=parseInt(currentValue)+1;sessionStorage.setItem(key,newValue.toString());return newValue}function getFilename(url){if(url){var m=url.toString().match(/.*\/(.+?)\./);if(m&&m.length>1)return m[1]}return url}function findObjectIndexById(haystack,key,needle){for(var i=0;i<haystack.length;i++)if(haystack[i][key]==needle)return i;return null}function getCurrentVideoId(jwplayer){if(jwplayer.getPlaylistItem().feedid)return jwplayer.getPlaylistItem().feedid;
else return getFilename(jwplayer.getPlaylistItem().file)}function getVideoViewablePageKey(){return location.href+"-video_viewable"}function getPreviousViewable(){return sessionStorage.getItem(getVideoViewablePageKey())}function setPreviousViewable(newVal){sessionStorage.setItem(getVideoViewablePageKey(),newVal)}function eventToDataLayer(jwplayer,eventCategory,eventAction,eventInteraction,extraParams){window.viewable_jw_events=window.viewable_jw_events||[];window.viewable_jw_events.push({category:eventCategory,
action:eventAction,viewable:jwplayer.getViewable(),adBlocked:jwplayer.getAdBlock()});var currentVideoId=getCurrentVideoId(jwplayer);var eventLabel=currentVideoId;var allExtraParamInfo=Object.assign(jwplayer.getPlaylistItem(),extraParams);var playlist=jwplayer.getPlaylist();if(eventCategory===CATEGORY_VIDEO_INTERACTION)eventLabel+=" | "+jwplayer.getPosition();relatedPlugin=jwplayer.getPlugin("related");var finalCategory;finalCategory=eventCategory;var dl_obj=Object.assign({event:finalCategory,category:finalCategory,
action:eventAction,label:eventInteraction?eventInteraction:eventLabel,videoId:currentVideoId,viewable:jwplayer.getViewable(),position:jwplayer.getPosition(),adBlocked:jwplayer.getAdBlock(),playlist:playlist,qoe:jwplayer.qoe(),relatedPlugin:relatedPlugin},allExtraParamInfo);window.current_jwvideo_title=dl_obj["title"];dataLayer.push(dl_obj)}whenAvailable("jwplayer",function(jwplayer){var has_adimpression=false;var i=0;if(jwplayer(i)&&typeof jwplayer(i).on==="function")while(jwplayer(i).id){var player=
jwplayer(i++);playersMarkers.push({"id":player.id,"markers":[]});player.on("ready",function(e){var article_id="undefined";var city_id="undefined";eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"loaded",location.href);var viewable=jwplayer.getViewable();var adBlocked=jwplayer.getAdBlock();var currentVideoId=getCurrentVideoId(jwplayer);var eventLabel=currentVideoId+" | viewable: "+viewable+" | adBlocked: "+adBlocked;window.dataLayer.push({event:"f-timing","var":"ready",category:"jw-video",
value:this.qoe().setupTime,label:eventLabel});window.dataLayer.push({event:"f-timing","var":"ready-perf",category:"jw-video",value:window.performance.now(),label:eventLabel});console.debug("JW",this.qoe(),window.performance.now())});player.on("adBlock",function(){var show_alert="undefined";if(show_alert==="true")confirm("Would you like to maybe turn off your Ad Blocker, Please?!?!");console.debug("Player Blocked with Ad Block!!",show_alert)});player.on("setupError",function(e){eventToDataLayer(this,
CATEGORY_VIDEO_PLAYER,"error",e.message)});player.on("adRequest",function(obj){var args=[];if(obj)args=[obj.adposition,obj.client];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-request",pipedJoin(args))});player.on("adError",function(obj){var args=[];if(obj)args=[obj.message];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-error",pipedJoin(args))});player.on("adWarning",function(obj){var args=[];if(obj)args=[obj.message];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-warning",pipedJoin(args))});
player.on("adImpression",function(obj){has_adimpression=true;var args=[];if(obj)args=[obj.adposition,obj.adsystem,obj.adtitle];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-impression",pipedJoin(args))});player.on("adStarted",function(obj){has_adStarted=true;var args=[];if(obj)args=[obj.creativetype,"viewable:"+obj.viewable];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-started",pipedJoin(args))});player.on("adComplete",function(obj){has_adComplete=true;var args=[];if(obj)args=[obj.client,obj.creativetype,
"viewable:"+obj.viewable];eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"ad-completed",pipedJoin(args))});player.on("play",function(e){if(e.viewable===1)eventToDataLayer(this,CATEGORY_VIDEO_INTERACTION,"viewable-play");else eventToDataLayer(this,CATEGORY_VIDEO_INTERACTION,"play: "+e.viewable);var category,action;if(e.playReason!=="interaction"){category=CATEGORY_VIDEO_CONSUMPTION;action="played video";var pageUrl="https:\/\/www.fandom.com\/articles\/arrowverse-the-flash-top-ten-10"}else{category=CATEGORY_VIDEO_INTERACTION;action="resumed video"}eventToDataLayer(this,
category,action)});player.on("pause",function(oldstate,viewable,pauseReason){eventToDataLayer(this,CATEGORY_VIDEO_INTERACTION,"paused video",[pauseReason,this.getPosition()].join(" | "))});player.on("playlistItem",function(index,item){if(index&&index.index>0)eventToDataLayer(this,CATEGORY_VIDEO_INTERACTION,"played next video","index:"+index.index)});player.on("complete",function(e){eventToDataLayer(this,CATEGORY_VIDEO_CONSUMPTION,"complete")});player.on("time",function(e){var percentPlayed=Math.floor(e.position*
100/e.duration);var playerMarkerIndex=findObjectIndexById(playersMarkers,"id",this.id);if(markers.indexOf(percentPlayed)>-1&&playersMarkers[playerMarkerIndex].markers.indexOf(percentPlayed)==-1){playersMarkers[playerMarkerIndex].markers.push(percentPlayed);eventToDataLayer(this,CATEGORY_VIDEO_CONSUMPTION,"played "+percentPlayed+"%")}});player.on("mute",function(state){eventToDataLayer(this,CATEGORY_VIDEO_INTERACTION,state.mute?"muted video":"unmuted video")});player.on("jwplayerClosed",function(){eventToDataLayer(this,
CATEGORY_VIDEO_INTERACTION,"close")});player.on("error",function(e){eventToDataLayer(this,CATEGORY_VIDEO_PLAYER,"error",e.message)})}})})(window.dataLayer=window.dataLayer||[]);</script><script type="text/javascript" id="" data-webtasks-id="6efa018b-6a2f-460f">(function(){function d(a){for(var c=window.dataLayer,b=0;b<c.length;b++){var e=c[b].fandom;e&&(c[b]={fandom:Object.assign(e,a)})}}var f="",g="";window.mw&&window.mw.config&&(f=mw.config.get("pvUID"),g=mw.config.get("skin"));window.dataLayer=window.dataLayer||[];window.dataLayer.push({fandom:{app:"ucp",wikiVertical:"undefined","country-code":"IN",mwCanonicalNamespace:window.wgCanonicalNamespace,isMainNamespace:"undefined",userId:google_tag_manager["rm"]["31059910"](40),trackingQueueConsent:!1,
wgCityId:window.wgCityId,lightDark:"",infobox:"",table:"",navbox:"",hasFeaturedVideo:"",pageType:"",pvUID:f,skin:g}});window.ads&&window.ads.pushToConsentQueue&&window.ads.pushToConsentQueue(function(a){a&&(a.geoRequiresConsent&&a.gdprConsent?d({trackingQueueConsent:!0}):a.geoRequiresConsent||d({trackingQueueConsent:!0}))})})();</script><style data-webtasks-id="a56bf571-bce0-4fb0">
.AAG--wrapper { display:none }
</style><script type="text/javascript" id="" data-webtasks-id="4297fbf0-4313-4a57">(function(){if(-1===window.location.search.indexOf("fanhub_nav_test\x3dtrue"))return!1;var c=document.querySelector('[data-tracking-label\x3d"link.games"]'),d=c.cloneNode(!0),a=d.querySelector(".global-navigation__label"),b=a.cloneNode(!0);b.innerHTML="BETA";b.classList.add("beta-icon");a.innerHTML="Fan Hub";a.after(b);c.before(d)})();</script>
<style data-webtasks-id="444129b3-61e8-439e">
.beta-icon {
width: 32px;
height: 15px;
flex-grow: 0;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
padding: 2px;
border-radius: 3px;
color: white;
text-align: center;
background-color: #fa005a;
margin-bottom: 4px;
font-size: 10px;
}
</style>
<script type="text/javascript" id="" data-webtasks-id="11be3d6e-d683-47f2">(function(){for(var b=["fandom_tv_city_list_counts","last_known_wiki"],a=0;a<b.length;a++){var c="/",d="fandom.com";document.cookie=b[a]+"\x3d"+(c?"; path\x3d"+c:"")+(d?"; domain\x3d"+d:"")+";expires\x3dThu, 01 Jan 1970 00:00:01 GMT"}})();</script><script type="text/javascript" id="" data-webtasks-id="9f1fbc0e-72ce-4f3a">(function(){window.ads&&window.ads.pushToConsentQueue&&window.ads.pushToConsentQueue(function(d){if(d&&(!d.geoRequiresConsent||d.gdprConsent)){var g="dataLayer";d=function(b){var e=window[g]||[];e.push({event:"optimizely-referrer-override","optimizely-referrer":b})};var l=function(b,e){if(b=optimizely.get("data")&&optimizely.get("data").campaigns[b]&&optimizely.get("data").campaigns[b].integrationSettings&&optimizely.get("data").campaigns[b].integrationSettings.google_universal_analytics&&optimizely.get("data").campaigns[b].integrationSettings.google_universal_analytics.universal_analytics_slot){var f=
window[g]||[];f.push({event:"campaign-decided","optimizely-dimension-value":e,"optimizely-dimension-number":b})}},p=function(b,e){var f=!1,k=function(a){var c=window.optimizely.get&&window.optimizely.get("state"),h=c.getRedirectInfo()&&c.getRedirectInfo().referrer;!f&&h&&(b(h),f=!0);c=c.getDecisionString({campaignId:a});e(a,c)},m=function(){window.optimizely=window.optimizely||[];window.optimizely.push({type:"addListener",filter:{type:"lifecycle",name:"campaignDecided"},handler:function(a){a=a.data.campaign.id;
k(a)}})},n=function(){var a=window.optimizely&&window.optimizely.get&&window.optimizely.get("state");if(a){a=a.getCampaignStates({isActive:!0});for(var c in a)k(c)}};n();m()};p(d,l)}})})();</script><script type="text/javascript" id="" data-webtasks-id="1bf53d2f-2b45-42af">window.dataLayer.push({whoami:"I am Alive!!!",eventName:"gtm.js",evironementName:"",containerID:"GTM-K3C2HJ2",containerVersion:"777",random:"411054899}",htmlID:"undefined"});</script></body> |