summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/lazy-image-2/source.html
blob: 0b8875271bf89d011e54f456b9bb6be4d2f48717 (plain)
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
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
<!DOCTYPE html>
<html lang="en-us" data-reactroot="" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
    <head>
        <meta charset="utf-8" />
        <meta name="google-site-verification" content="bM-oyO1vXKOAYf3H3fJQaVf8FeyOneJtVHbEYlNa7p8" />
        <meta name="ir-site-verification-token" value="-1270174611" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0,maximum-scale=10.0" />
        <meta name="ROBOTS" content="INDEX, FOLLOW" />
        <title>
            The Spectacular Story Of Metroid, One Of Gaming's Richest Universes
        </title>
        <link rel="shortcut icon" type="image/png" href="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/v4sckews2f3bzf0ztbkf.png" />
        <link rel="apple-touch-icon" type="image/png" href="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_200,q_80,w_200/v4sckews2f3bzf0ztbkf.png" />
        <meta name="msapplication-square70x70logo" content="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/v4sckews2f3bzf0ztbkf.png" />
        <meta name="msapplication-square150x150logo" content="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_200,q_80,w_200/v4sckews2f3bzf0ztbkf.png" />
        <link rel="preload" href="https://cdn.digitru.st/prod/1/digitrust.min.js" as="script" />
        <link rel="dns-prefetch" href="//kinja.com" />
        <link rel="dns-prefetch" href="//i.kinja-img.com" />
        <link rel="dns-prefetch" href="//x.kinja-static.com" />
        <link rel="dns-prefetch" href="//f.kinja-static.com" />
        <link rel="dns-prefetch" href="//www.googletagservices.com" />
        <link rel="dns-prefetch" href="//beacon.krxd.net" />
        <link rel="dns-prefetch" href="//pubads.g.doubleclick.net" />
        <link rel="dns-prefetch" href="//stats.g.doubleclick.net" />
        <link rel="dns-prefetch" href="//tpc.googlesyndication.com" />
        <link rel="dns-prefetch" href="//pagead2.googlesyndication.com" />
        <link rel="dns-prefetch" href="//adservice.google.com" />
        <link rel="dns-prefetch" href="//securepubads.g.doubleclick.net" />
        <link rel="dns-prefetch" href="https://ir-na.amazon-adsystem.com" />
        <link rel="dns-prefetch" href="https://fls-na.amazon-adsystem.com" />
        <link rel="dns-prefetch" href="//imasdk.googleapis.com" />
        <link rel="dns-prefetch" href="//tps10232.doubleverify.com" />
        <link rel="dns-prefetch" href="//pixel.mtrcs.samba.tv" />
        <link rel="dns-prefetch" href="//js-agent.newrelic.com" />
        <link rel="dns-prefetch" href="//c.amazon-adsystem.com" />
        <link rel="dns-prefetch" href="//aax.amazon-adsystem.com" />
        <link rel="preconnect" href="https://i.kinja-img.com" />
        <link rel="preconnect" href="//x.kinja-static.com" />
        <link rel="preconnect" href="//f.kinja-static.com" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg-webfont.woff2?08252015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg_it-webfont.woff2?08252015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold-webfont.woff2?08252015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold_it-webfont.woff2?08252015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-light-webfont.woff2?09162015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-lightitalic-webfont.woff2?09162015" as="font" type="font/woff2" crossorigin="" />
        <link rel="preload" href="https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-bold-webfont.woff2?09162015" as="font" type="font/woff2" crossorigin="" />
        <link rel="alternate" type="application/rss+xml" title="Kotaku - All stories" href="https://kotaku.com/rss" />
        <meta name="keywords" content="metroid, kotaku longreads, nintendo, Kotaku" />
        <meta name="news_keywords" content="metroid, kotaku longreads, nintendo, Kotaku" />
        <meta name="twitter:url" content="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577" />
        <link rel="canonical" href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577" />
        <link rel="amphtml" href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577/amp" />
        <meta name="description" content="Nothing beats the passion of a true fan writing about something they love. That&amp;#039;s what you&amp;#039;re about to see here: one of the richest, most amazing tributes to a great gaming series that we&amp;#039;ve ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon." />
        <meta property="og:title" content="The Spectacular Story Of Metroid, One Of Gaming's Richest Universes" />
        <meta property="og:type" content="article" />
        <meta name="author" content="Mama Robotnik" />
        <meta property="og:url" content="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577" />
        <meta property="og:description" content="Nothing beats the passion of a true fan writing about something they love. That&amp;#039;s what you&amp;#039;re about to see here: one of the richest, most amazing tributes to a great gaming series that we&amp;#039;ve ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon." />
        <meta property="og:locale" content="en_US" />
        <meta property="og:site_name" content="Kotaku" />
        <meta property="og:image" content="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/18zu12g5xzyxojpg.jpg" />
        <meta property="fb:app_id" content="35737966741" />
        <meta name="twitter:card" content="summary_large_image" />
        <meta name="twitter:site" content="@kotaku" />
        <meta name="twitter:title" content="The Spectacular Story Of Metroid, One Of Gaming's Richest Universes" />
        <meta name="twitter:description" content="Nothing beats the passion of a true fan writing about something they love. That&amp;#039;s what you&amp;#039;re about to see here: one of the richest, most amazing tributes to a great gaming series that we&amp;#039;ve ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon." />
        <meta name="twitter:image" content="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/18zu12g5xzyxojpg.jpg" />
        <script async="async">
        <![CDATA[
                                                window.advBidxc = window.advBidxc || {};
                                                window.advBidxc.exec = window.advBidxc.exec || [];
                                                window.advBidxc.customerId = "8CUL2TG3D";
                                                window.advBidxc.domain = window.location.hostname;
                                                window.advBidxc.version = 5.1;
                                                window.advBidxc.startTime = new Date().getTime();
                                                (function(d) {
                                                        var e = d.createElement('script');
                                                        e.src = 'https://hbx.media.net/bidexchange.js?cid='+ window.advBidxc.customerId +'&version='+window.advBidxc.version+'&dn='+ window.advBidxc.domain;
                                                        e.async = true;
                                                        d.getElementsByTagName("head")[0].appendChild(e);
                                                }(document));
        ]]>
        </script>
        <script async="async" src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
        <script async="async">
        <![CDATA[
                                                window.googletag = window.googletag || {};
                                                window.googletag.cmd = window.googletag.cmd || [];
        ]]>
        </script>
        <script type="text/javascript">
        //<![CDATA[
                                        // GDPR
                                        (function () { var e = false; var c = window; var t = document; function r() { if (!c.frames["__cmpLocator"]) { if (t.body) { var a = t.body; var e = t.createElement("iframe"); e.style.cssText = "display:none"; e.name = "__cmpLocator"; a.appendChild(e) } else { setTimeout(r, 5) } } } r(); function p() { var a = arguments; __cmp.a = __cmp.a || []; if (!a.length) { return __cmp.a } else if (a[0] === "ping") { a[2]({ gdprAppliesGlobally: e, cmpLoaded: false }, true) } else { __cmp.a.push([].slice.apply(a)) } } function l(t) { var r = typeof t.data === "string"; try { var a = r ? JSON.parse(t.data) : t.data; if (a.__cmpCall) { var n = a.__cmpCall; c.__cmp(n.command, n.parameter, function (a, e) { var c = { __cmpReturn: { returnValue: a, success: e, callId: n.callId } }; t.source.postMessage(r ? JSON.stringify(c) : c, "*") }) } } catch (a) { } } if (typeof __cmp !== "function") { c.__cmp = p; __cmp.msgHandler = l; c.addEventListener("message", l, false) } })();
        //]]>
        </script>
        <script type="text/javascript">
        //<![CDATA[
                                        // CCPA
                                        (function () { var e = false; var c = window; var t = document; function r() { if (!c.frames["__uspapiLocator"]) { if (t.body) { var a = t.body; var e = t.createElement("iframe"); e.style.cssText = "display:none"; e.name = "__uspapiLocator"; a.appendChild(e) } else { setTimeout(r, 5) } } } r(); function p() { var a = arguments; __uspapi.a = __uspapi.a || []; if (!a.length) { return __uspapi.a } else if (a[0] === "ping") { a[2]({ gdprAppliesGlobally: e, cmpLoaded: false }, true) } else { __uspapi.a.push([].slice.apply(a)) } } function l(t) { var r = typeof t.data === "string"; try { var a = r ? JSON.parse(t.data) : t.data; if (a.__cmpCall) { var n = a.__cmpCall; c.__uspapi(n.command, n.parameter, function (a, e) { var c = { __cmpReturn: { returnValue: a, success: e, callId: n.callId } }; t.source.postMessage(r ? JSON.stringify(c) : c, "*") }) } } catch (a) { } } if (typeof __uspapi !== "function") { c.__uspapi = p; __uspapi.msgHandler = l; c.addEventListener("message", l, false) } })();
        //]]>
        </script>
        <script>
        <![CDATA[
                                        window._sp_ = {
                                                config: {
                                                        mmsDomain: "https://message1195.sp-prod.net",
                                                        cmpOrigin: "https://sourcepoint.mgr.consensu.org",
                                                        accountId: "1195",
                                                        events: {
                                                                onMessageReceiveData: function (data) {
                                                                        if(data && data.msg_id>0){
                                                                                if(data.message_url.indexOf("https://ccpa-notice.sp-prod.net")>-1){
                                                                                        window.__consent__ = 'CCPA'
                                                                                }
                                                                                if(data.message_url.indexOf("https://notice.sp-prod.net")>-1) {
                                                                                        window.__consent__ = 'GDPR';
                                                                                        // Notifying Media.net header bidder to apply user consent
                                                                                        if (window.advBidxc) {
                                                                                                try {
                                                                                                        __cmp('getConsentData', null, function(result) {
                                                                                                                if (result) {
                                                                                                                        window.advBidxc.exec.push(function(){
                                                                                                                                window.advBidxc.setGDPRApplicable(result.gdprApplies);
                                                                                                                                window.advBidxc.setGDPRConsent(result.consentData);
                                                                                                                        });
                                                                                                                }
                                                                                                        });
                                                                                                } catch(e) {}
                                                                                        }
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
                                        window._sp_ccpa = {
                                                config: {
                                                        mmsDomain: "https://message1195.sp-prod.net",
                                                        ccpaOrigin: "https://ccpa-service.sp-prod.net",
                                                        accountId: "1195",
                                                        getDnsMsgMms: true,
                                                        alwaysDisplayDns: false,
                                                        events: {
                                                                onMessageReceiveData: function (data) {
                                                                        if(data && data.msg_id>0){
                                                                                if(data.message_url.indexOf("https://ccpa-notice.sp-prod.net")>-1){
                                                                                        window.__consent__ = 'CCPA'
                                                                                }
                                                                                if(data.message_url.indexOf("https://notice.sp-prod.net")>-1) {
                                                                                        window.__consent__ = 'GDPR'
                                                                                }
                                                                        }
                                                                }
                                                        }
                                                }
                                        }
        ]]>
        </script>
        <script async="async" src="https://dialogue.sp-prod.net/messagingWithoutDetection.js"></script>
        <script async="async" src="https://ccpa.sp-prod.net/ccpa.js"></script>
        <script type="module" src="/x-kinja-static/assets/new-client/runtime~ads.54484ea6a0a90bf7d28d.js"></script>
        <script type="module" src="/x-kinja-static/assets/new-client/vendors~adManager~ads.2d79928e5945e5e8f867.js"></script>
        <script type="module" src="/x-kinja-static/assets/new-client/adManager~ads~errorPage~experiments~featuredPermalinkPage~permalinkPage~permalinkPageIdle~profilePag~c41e40b3.ead312884f23b6a158a2.js"></script>
        <script type="module" src="/x-kinja-static/assets/new-client/adManager~ads~errorPage~experiments~featuredPermalinkPage~permalinkPage~permalinkPageIdle~profilePag~1a2ffd3c.e1ca206c04adaea44b19.js"></script>
        <script type="module" src="/x-kinja-static/assets/new-client/ads.034e556bf0601b6164a1.js"></script>
        <script>
        <![CDATA[
                                window._fasttokenPerformanceMark = 'frontend.layout.header.user_token_fast';
                                window._user = new Promise((resolve, reject) => {
                                        window._fasttoken = function (response) {
                                                if (window.performance) {
                                                        window.performance.mark(window._fasttokenPerformanceMark);
                                                }
                                                if (response && response.meta &&response.meta.status === 200) {
                                                        resolve(response.data);
                                                } else {
                                                        reject(response ? response.meta : '');
                                                }
                                        };
                                });
        ]]>
        </script>
        <script src="https://kinja.com/api/profile/accountwithtoken?jsonp=_fasttoken&amp;newFollows=true" defer="defer"></script>
        <script>
        <![CDATA[
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
        ]]>
        </script>
        <style>
        <![CDATA[
        .tp-iframe-wrapper{position:relative!important;}
        ]]>
        </style>
        <script>
        <![CDATA[
                                        _comscore = window._comscore || [];
                                        _comscore.push({
                                                c1: '2',
                                                c2: '6770184'
                                        });
                                        window._comscore = _comscore;
                                        (function(d,s,e,t){e=d.createElement(s);e.type='text/java'+s;e.async='async';e.src='http'+('https:'===location.protocol?'s://sb':'://b')+'.scorecardresearch.com/beacon.js';t=d.getElementsByTagName(s)[0];t.parentNode.insertBefore(e,t);})(document,'script');
        ]]>
        </script>
        <script>
        <![CDATA[
                                        (function(d) {
                                                var e = d.createElement('script');
                                                e.src = d.location.protocol + '//tag.bounceexchange.com/3592/i.js';
                                                e.async = true;
                                                d.getElementsByTagName("head")[0].appendChild(e);
                                        }(document));
        ]]>
        </script>
        <script src="https://cdn.digitru.st/prod/1/digitrust.min.js"></script>
        <style data-styled="zVObM hVJsES hyLaMq cxfwkg fwjlmD fPqcTm ebBaTT cLvRyM hElAzM hWQHjO eQCLWh fBOpXK ggPaHg hoiFaE ldbUeF fPlCjx jRvBRt rzxbx iHLoZR miWDp Lwydz bNzDDF YrjCq iSaTEN cKiLPQ jBPzMI iUbnXK gBMIDl djRjMr falNPB cFfYvh fVpzWD jDxnTz bHuckL lmomFr kqthke jflTDT eSuPFB bYlXTp jgysUY jOQyEj jZQBpt ciLbRL irMuRt dLONoQ kwUvxw cjbzCR fLwIBi icfmop enFBrX hebJFs jNiKtz ktESSG ehkuKX etpvfO eFcvZm gVWJry gtgww fVlnpj cclgoe jIBiCM dXPirX XVppW bEUjwS kHCVke ldeICr eNdIIE kOFjhT esIpx bspgcg kFeogc bUDpTX fwSvTs gIjPOj izUYtn dsTWpc cLsyOJ ixUPOi iaPcjQ kBeEqh gOGycY wcAhP knZcug hgqaKZ brydAF fVaIqa iyJvbB eVhsmG ekphdR hVwDer yLgPx krajXX bLXZFj gkWXma hByOxy bSrIEu fivNdM erWUwi gcDoBX eagNII defoG fWhkEE glBtZI jyjbTH kUfXGZ busDXq esHOJV cqtDtB ktBPdN gdELAJ fcMbEd lfhhVO exbKyM bbQHny ldgdGx liJCYV hbcmGw yjpVX iimSGa ezwLgJ jLgjau jpbKEQ kyKjbV lkqtha grWrOW bNRtrM eJinCt kzkhwW dNAgCv fhmHGL hCitnH MWIGZ fVjjcw jOqHdi hICZjh iftYcF OMwVz foLDPX gpwIdA eTFIkv jBsDWZ frTClM jzcQTJ cWiYXU blgiqp kivedT iLDaWI gfolHV dXbcSW dUoECc hUFSvg iJyiXs hJpRRP FoItC liWXlp iXYVqp eZvXLs eblHLt dciqNP kIoxhb dIJDts iNvMiS gCydvg cysjdd flvRyU cKkWUs ciBKcm etfWWT iHzJmW jdIVZt kvyumD hepDvs hHYFwB djmGRD RjwRf eXGUJG dGHwsG ccAJCg sHsHa jZyWXs fwDNjy egRxyu jaUINu ghtMMt hNujir fbNnTF hPQZPo kSfANG nBxoz jvIkaX bzrPWe jcgXjw iaHIzx cirOTP eOmEvw kXLoyx dHZwOk fItspw huOEht iHpzjB" data-styled-version="4.3.2">
        <![CDATA[
        /* sc-component-id: sc-11qwj9y-0 */
        .ldgdGx{padding:0 1.125rem;} @media only screen and (min-width:63.75em){.ldgdGx{width:66.5%;-webkit-order:1;-ms-flex-order:1;order:1;}}
        /* sc-component-id: sc-11qwj9y-1 */
        .liJCYV{width:100%;max-width:800px;padding-bottom:40px;margin:0 auto;} @media only screen and (min-width:50em){.liJCYV{padding-top:31px;}} @media only screen and (max-width:49.94em){.liJCYV{padding-top:1.125rem;}}
        /* sc-component-id: iyvn34-0 */
        .iSaTEN{fill:currentColor;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
        /* sc-component-id: iyvn34-1 */
        .jBPzMI{width:32px;height:32px;background-color:#B12460;border-radius:50%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-right:10px;} .jBPzMI .iyvn34-0{fill:#FFF;}
        /* sc-component-id: sc-1rvv6e6-0 */
        .gcDoBX{cursor:pointer;font-size:1.125rem;line-height:1.5rem;} .gcDoBX:not(:first-child){margin-left:0.25rem;} .gcDoBX:not(:last-child){margin-right:0.25rem;}
        /* sc-component-id: sc-1rvv6e6-3 */
        .erWUwi{background-color:#F5C056;border:1px solid #F5C056;border-radius:0.3125rem;color:#222;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.4375rem 0.625rem;padding:0.4375rem 2.25rem;min-height:2.5rem;} .erWUwi .sc-1rvv6e6-0{color:#222;} .erWUwi:hover{background-color:#f4b73e;border:1px solid #f4b73e;color:#222;} .erWUwi:hover .sc-1rvv6e6-0{color:#222;} .erWUwi:disabled{background-color:#CCC;border:1px solid #CCC;color:#FFF;cursor:default;} .erWUwi:disabled .sc-1rvv6e6-0{color:#FFF;cursor:default;} .erWUwi:focus{background-color:#f2ae26;border:1px solid #f2ae26;color:#222;} .erWUwi:focus .sc-1rvv6e6-0{color:#222;} .erWUwi:enabled:active{background-color:#f0a50e;border:1px solid #f0a50e;color:#222;} .erWUwi:enabled:active .sc-1rvv6e6-0{color:#222;}
        /* sc-component-id: sc-1auy74q-1 */
        .gkWXma span{text-transform:capitalize;font-weight:bold;}
        /* sc-component-id: sc-1auy74q-3 */
        .brydAF{border:1px solid #72AD75;margin:50px auto 62px;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:636px;font-family:FiraSans,sans-serif;clear:both;} @media only screen and (min-width:37.37em){.brydAF{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}}
        /* sc-component-id: sc-1auy74q-6 */
        .yLgPx{-webkit-flex:auto;-ms-flex:auto;flex:auto;overflow:hidden;color:#666;}
        /* sc-component-id: sc-1auy74q-7 */
        .iyJvbB{margin:10px;color:#666;min-width:118px;max-width:180px;margin:0 10px;} .iyJvbB img,.iyJvbB amp-img{position:absolute;min-width:118px;}.eVhsmG{margin:10px;color:#666;}.ekphdR{margin:10px;color:#666;margin-right:16px;min-width:100px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}
        /* sc-component-id: sc-1auy74q-8 */
        .krajXX h2{font-family:FiraSans,sans-serif;margin:0;} .krajXX h2 a{color:#666;} .krajXX h2 a:hover{-webkit-text-decoration:none;text-decoration:none;} @media only screen and (max-width:37.31em){.krajXX h2{font-size:16px;line-height:1.2;margin-bottom:7 / 2;}} @media only screen and (min-width:37.37em){.krajXX h2{font-size:20px;}}
        /* sc-component-id: sc-1auy74q-9 */
        .hHYFwB{margin-bottom:10px;} .hHYFwB h2{font-family:FiraSans,sans-serif;margin:0;} .hHYFwB h2 a{color:#666;} .hHYFwB h2 a:hover{-webkit-text-decoration:none;text-decoration:none;} .hHYFwB h2 a{color:#000;}
        /* sc-component-id: sc-1auy74q-10 */
        .bLXZFj{font-size:13px;} @media only screen and (max-width:37.31em){.bLXZFj{line-height:20px;}}
        /* sc-component-id: sc-1auy74q-11 */
        .hByOxy{font-size:12px;} @media only screen and (max-width:37.31em){.hByOxy{line-height:20px;}}
        /* sc-component-id: sc-1auy74q-12 */
        .bSrIEu{display:block;color:#72AD75;font-weight:bold;}
        /* sc-component-id: sc-1auy74q-13 */
        .fivNdM{display:block;font-weight:bold;}
        /* sc-component-id: sc-1auy74q-14 */
        .hVwDer{position:relative;padding-bottom:100%;}
        /* sc-component-id: sc-1auy74q-19 */
        .djmGRD,.djmGRD a{font-family:ProximaNovaCond,sans-serif;color:#666;font-size:15px;margin-top:10px;} .djmGRD a{padding-bottom:0.25rem;border-bottom:1px solid #72AD75;}
        /* sc-component-id: y7n5nk-1 */
        .jdIVZt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}
        /* sc-component-id: y7n5nk-2 */
        .hepDvs{width:66%;}
        /* sc-component-id: y7n5nk-3 */
        .iHzJmW{border:1px solid #72AD75;margin:50px auto 62px;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:636px;font-family:FiraSans,sans-serif;clear:both;padding:10px;margin:2rem auto;} @media only screen and (min-width:37.37em){.iHzJmW{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}}
        /* sc-component-id: y7n5nk-4 */
        .kvyumD{position:relative;width:33%;min-width:100px;margin-right:0.5rem;} .kvyumD.kvyumD img,.kvyumD.kvyumD amp-img{width:100%;height:100%;object-fit:contain;}
        /* sc-component-id: bxm4mm-0 */
        @media only screen and (min-width:50em){.gtgww{display:none;}}
        /* sc-component-id: bxm4mm-2 */
        .iXYVqp{margin-left:40px;margin-right:40px;border-top:1px solid #E5E5E5;padding-bottom:10px;}
        /* sc-component-id: bxm4mm-3 */
        .dciqNP{margin-left:40px;margin-right:40px;border-bottom:1px solid #E5E5E5;}
        /* sc-component-id: bxm4mm-4 */
        .liWXlp{margin:10px 0 20px 0;}
        /* sc-component-id: bxm4mm-5 */
        .eZvXLs{margin:0 !important;}
        /* sc-component-id: bxm4mm-6 */
        .eblHLt{text-transform:uppercase;font-size:14px;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;color:#CCC;margin-bottom:10px;}
        /* sc-component-id: bxm4mm-11 */
        @media only screen and (min-width:37.37em){.ciBKcm{display:none;}}
        /* sc-component-id: ynugv2-0 */
        .eFcvZm{padding:31px 0;border-bottom:1px solid #E5E5E5;min-width:300px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} .eFcvZm:last-child{border-bottom:none;} @media only screen and (min-width:50em){.eFcvZm .bxm4mm-0{display:block;}}.gVWJry{padding:31px 0;border-bottom:1px solid #E5E5E5;min-width:300px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:31px 0 88px 0;} .gVWJry:last-child{border-bottom:none;} @media only screen and (min-width:50em){.gVWJry .bxm4mm-0{display:block;}}
        /* sc-component-id: ynugv2-1 */
        .hebJFs [data-ad-load-state=loaded]{padding:31px 0;border-bottom:1px solid #E5E5E5;min-width:300px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
        /* sc-component-id: ynugv2-2 */
        .fLwIBi{display:none;} @media only screen and (min-width:63.75em){.fLwIBi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;width:33.5%;-webkit-order:2;-ms-flex-order:2;order:2;border-left:1px solid #E5E5E5;padding:0 1.125rem;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}}
        /* sc-component-id: ynugv2-3 */
        .jNiKtz{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;}
        /* sc-component-id: sc-157agsr-0 */
        @media only screen and (min-width:63.75em){.cjbzCR{max-width:1336px;margin:0 auto;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}} .cjbzCR .sc-11qwj9y-1{padding-top:0;} .cjbzCR .ynugv2-2 .ynugv2-1:first-child [data-ad-load-state=loaded]{padding-top:0;}
        /* sc-component-id: sc-157agsr-1 */
        .ciLbRL{position:relative;padding:1.5rem 1.125rem 1rem;margin:0 auto;} .ciLbRL h1{margin-bottom:0;} @media only screen and (max-width:63.69em){.ciLbRL{max-width:800px;box-sizing:content-box;}} @media only screen and (min-width:63.75em){.ciLbRL{max-width:1336px;}.ciLbRL.ciLbRL h1{max-width:calc(1336px * 0.8);font-size:52px;line-height:64px;}} @media only screen and (min-width:1260px) and (max-width:1363px){.ciLbRL{padding-left:calc((66.5% - 800px) / 2);margin:0;}} @media only screen and (max-width:37.31em){} @media only screen and (min-width:37.37em) and (max-width:49.94em){} @media only screen and (min-width:50em) and (max-width:63.69em){} @media only screen and (min-width:63.75em) and (max-width:85.19em){} @media only screen and (min-width:85.25em){.ciLbRL{padding-left:calc(((1336px * 0.665) - 800px) / 2);}}
        /* sc-component-id: sc-1out364-0 */
        .fwjlmD{-webkit-text-decoration:none;text-decoration:none;}
        /* sc-component-id: vuc0jk-0 */
        .hVJsES{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background:#000;}
        /* sc-component-id: vuc0jk-1 */
        .hyLaMq{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin:0;} .hyLaMq > li:first-child{margin-left:-8px;} @media only screen and (max-width:49.94em){.hyLaMq{width:calc((100vw - 16px) * 1 - 16px);}} @media only screen and (min-width:50em) and (max-width:63.69em){.hyLaMq{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.hyLaMq{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:85.25em){.hyLaMq{width:calc((1364px - 32px) * 1 - 32px);}}
        /* sc-component-id: vuc0jk-2 */
        .cxfwkg{text-transform:uppercase;line-height:24px;font-size:15px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0 8px;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;color:#7D7D7D;} .cxfwkg:hover{background:#222;color:#F5F5F5;} .cxfwkg:hover > a,.cxfwkg:hover > a:hover,.cxfwkg:hover > a:active,.cxfwkg:hover > a:focus,.cxfwkg:hover > a.focus{color:#F5F5F5;} .cxfwkg > a{position:relative;top:1px;} .cxfwkg > a,.cxfwkg > a:hover,.cxfwkg > a:active,.cxfwkg > a:focus,.cxfwkg > a.focus{-webkit-text-decoration:none;text-decoration:none;color:#CCC;}
        /* sc-component-id: vuc0jk-3 */
        .fPqcTm{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;padding:0 8px;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;} .fPqcTm::after{width:1px;height:14px;background-color:#666;content:'';}
        /* sc-component-id: sc-2d8w30-0 */
        .jRvBRt{--scale:1;}.rzxbx{--scale:0.35;}
        /* sc-component-id: sc-2d8w30-1 */
        .iHLoZR{position:relative;height:calc(32px * var(--scale));display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;} .iHLoZR svg{position:absolute;-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-transform:scale(var(--scale));-ms-transform:scale(var(--scale));transform:scale(var(--scale));} .iHLoZR.avclub{width:calc(150px * var(--scale));} .iHLoZR.avclub svg{top:-40%;} .iHLoZR.clickhole{width:calc(216px * var(--scale));} .iHLoZR.clickhole svg{top:-4%;} .iHLoZR.deadspin{width:calc(254px * var(--scale));} .iHLoZR.deadspin svg{top:0%;} .iHLoZR.earther{width:calc(217px * var(--scale));} .iHLoZR.earther svg{top:-1%;} .iHLoZR.gizmodo{width:calc(225px * var(--scale));} .iHLoZR.gizmodo svg{top:0%;} .iHLoZR.jalopnik{width:calc(228px * var(--scale));} .iHLoZR.jalopnik svg{top:0%;} .iHLoZR.jezebel{width:calc(206px * var(--scale));} .iHLoZR.jezebel svg{top:0%;} .iHLoZR.kotaku{width:calc(212px * var(--scale));} .iHLoZR.kotaku svg{top:-10%;} .iHLoZR.lifehacker{width:calc(180px * var(--scale));} .iHLoZR.lifehacker svg{top:-25%;} .iHLoZR.splinter{width:calc(261px * var(--scale));} .iHLoZR.splinter svg{top:-7%;} .iHLoZR.theinventory{width:calc(258px * var(--scale));} .iHLoZR.theinventory svg{top:-13%;} .iHLoZR.theroot{width:calc(205px * var(--scale));} .iHLoZR.theroot svg{top:-20%;} .iHLoZR.theonion{width:calc(262px * var(--scale));} .iHLoZR.theonion svg{top:-22%;} .iHLoZR.thetakeout{width:calc(140px * var(--scale));} .iHLoZR.thetakeout svg{top:-34%;} .iHLoZR.kinja{width:calc(152px * var(--scale));} .iHLoZR.kinja svg{top:-22%;} .iHLoZR.gomedia{width:calc(241px * var(--scale));} .iHLoZR.gomedia svg{top:-20%;} .iHLoZR.kinjadeals{width:calc(203px * var(--scale));} .iHLoZR.kinjadeals svg{top:-10%;} .iHLoZR.kinjavideo{width:calc(243px * var(--scale));} .iHLoZR.kinjavideo svg{top:-6%;}
        /* sc-component-id: j48i5d-0 */
        .hPQZPo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .hPQZPo + svg,.hPQZPo + .iyvn34-0{margin-left:4px;}
        /* sc-component-id: j48i5d-1 */
        .fbNnTF{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100%;white-space:nowrap;pointer-events:none;} .fbNnTF svg + span{margin-left:4px;} .fbNnTF .iyvn34-0 + span{margin-left:4px;}
        /* sc-component-id: j48i5d-2 */
        .jaUINu{width:auto;height:42px;padding:0 2rem;border:transparent 1px solid;border-radius:21px;border-color:#B12460;color:#B12460;font-size:1rem;text-align:center;line-height:42px;background-color:#FFF;-webkit-transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;} .jaUINu .j48i5d-1 > svg{margin-bottom:2px;} .jaUINu .iyvn34-0{margin-bottom:2px;} .jaUINu:hover,.jaUINu:active,.jaUINu:focus{color:#5c1332;border-color:#5c1332;background-color:#fff;} .jaUINu:hover .j48i5d-1 > svg,.jaUINu:active .j48i5d-1 > svg,.jaUINu:focus .j48i5d-1 > svg{stroke:#871b49;} @media only screen and (max-width:49.94em){}.ghtMMt{width:auto;height:34px;padding:0 2rem;border:transparent 1px solid;border-radius:34px;border-color:transparent;color:#FFF;font-size:14px;text-align:center;line-height:34px;background-color:#1877F2;-webkit-transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;} .ghtMMt .j48i5d-1 > svg{margin-bottom:2px;} .ghtMMt .iyvn34-0{margin-bottom:2px;} .ghtMMt:hover,.ghtMMt:active,.ghtMMt:focus{color:#fff;border-color:transparent;background-color:#0b5fcc;} .ghtMMt:hover .j48i5d-1 > svg,.ghtMMt:active .j48i5d-1 > svg,.ghtMMt:focus .j48i5d-1 > svg{stroke:#fff;} @media only screen and (max-width:49.94em){}.hNujir{width:auto;height:34px;padding:0 2rem;border:transparent 1px solid;border-radius:34px;border-color:transparent;color:#FFF;font-size:14px;text-align:center;line-height:34px;background-color:#1DA1F2;-webkit-transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;transition:background-color 0.2s ease-out,border-color 0.2s ease-out,color 0.2s ease-out;} .hNujir .j48i5d-1 > svg{margin-bottom:2px;} .hNujir .iyvn34-0{margin-bottom:2px;} .hNujir:hover,.hNujir:active,.hNujir:focus{color:#fff;border-color:transparent;background-color:#0c85d0;} .hNujir:hover .j48i5d-1 > svg,.hNujir:active .j48i5d-1 > svg,.hNujir:focus .j48i5d-1 > svg{stroke:#fff;} @media only screen and (max-width:49.94em){}
        /* sc-component-id: ynl58c-0 */
        .gdELAJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:inherit;height:inherit;} .gdELAJ .SVGInline-svg{display:none;} .gdELAJ svg{max-width:100%;width:inherit;height:inherit;}.fcMbEd{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:20px;height:20px;} .fcMbEd .SVGInline-svg{display:none;} .fcMbEd svg{max-width:100%;width:inherit;height:inherit;}
        /* sc-component-id: sc-1cfejv7-0 */
        .iHpzjB{background-color:#F5F5F5;border-top:1px solid #E5E5E5;} .iHpzjB .sc-147n754-0{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:26px 30px;}
        /* sc-component-id: sc-1jotqfp-2 */
        .jZQBpt{background-color:inherit;} .jZQBpt [data-ad-load-state=loaded]{border-bottom:1px solid #E5E5E5;padding:20px 0;} @media only screen and (max-width:969px){.jZQBpt{display:none;}} .jZQBpt .ad-container[data-ad-load-state=loaded] div iframe{margin:0 auto;} .jZQBpt .ad-container[data-ad-load-state=loaded] > div{width:100% !important;} @media only screen and (max-width:63.69em){.jZQBpt{display:none;}}
        /* sc-component-id: sc-17y8tyw-0 */
        .zVObM{display:none;} @media only screen and (min-width:50em){.zVObM{display:block;width:100%;}}
        /* sc-component-id: sc-8vrmk6-0 */
        .fPlCjx{height:100%;font-size:1.5rem;color:#222;font-weight:bold;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} .fPlCjx:hover{-webkit-text-decoration:none;text-decoration:none;color:#000;} .fPlCjx .sc-2d8w30-1{--scale:0.8;} @media only screen and (max-width:63.69em){.fPlCjx .sc-2d8w30-1{--scale:0.6;}}
        /* sc-component-id: dfwuc8-0 */
        .fVpzWD{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:100%;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-transform:uppercase;padding:0 6px;-webkit-transition:color 300ms;transition:color 300ms;white-space:nowrap;margin-right:8px;} .fVpzWD span{color:#000;font-size:14px;font-weight:bold;height:21px;line-height:22px;-webkit-letter-spacing:1.27px;-moz-letter-spacing:1.27px;-ms-letter-spacing:1.27px;letter-spacing:1.27px;} .fVpzWD:hover,.fVpzWD:active{-webkit-text-decoration:none;text-decoration:none;} .fVpzWD:hover span,.fVpzWD:active span{color:#B12460;} .fVpzWD.section-nav__search-btn{border-right:0;} .fVpzWD:first-child{padding-left:0;} @media only screen and (max-width:85.19em){.fVpzWD{border:none;line-height:21px;white-space:nowrap;}} @media only screen and (max-width:49.94em){.fVpzWD:first-child{margin-left:16px;}.fVpzWD:last-child{margin-right:16px;}}.jDxnTz{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:100%;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-transform:uppercase;padding:0 6px;-webkit-transition:color 300ms;transition:color 300ms;white-space:nowrap;margin-right:8px;border:0;padding-left:7.5px;padding-right:7.5px;font-size:17px;white-space:nowrap;} .jDxnTz span{color:#000;font-size:14px;font-weight:bold;height:21px;line-height:22px;-webkit-letter-spacing:1.27px;-moz-letter-spacing:1.27px;-ms-letter-spacing:1.27px;letter-spacing:1.27px;} .jDxnTz:hover,.jDxnTz:active{-webkit-text-decoration:none;text-decoration:none;} .jDxnTz:hover span,.jDxnTz:active span{color:#B12460;} .jDxnTz.section-nav__search-btn{border-right:0;} .jDxnTz:first-child{padding-left:0;} @media only screen and (max-width:85.19em){.jDxnTz{border:none;line-height:21px;white-space:nowrap;display:none;}} @media only screen and (max-width:49.94em){.jDxnTz:first-child{margin-left:16px;}.jDxnTz:last-child{margin-right:16px;}}
        /* sc-component-id: dfwuc8-1 */
        .falNPB{position:relative;overflow:hidden;height:22px;margin-bottom:24px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex:1;-ms-flex:1;flex:1;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;} .falNPB::-webkit-scrollbar{display:none;} @media only screen and (max-width:63.69em){.falNPB{margin-bottom:16px;}} @media only screen and (min-width:50em){.falNPB{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:820px;}} @media only screen and (max-width:63.69em){.falNPB{overflow:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;}.falNPB .dfwuc8-0:not(:last-child){margin-right:4px;}} @media only screen and (min-width:37.37em) and (max-width:49.94em){.falNPB{margin:0 0 16px;}} @media only screen and (max-width:37.31em){.falNPB{margin:0 0 14px;}}.cFfYvh{position:relative;overflow:hidden;height:22px;margin-bottom:24px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex:1;-ms-flex:1;flex:1;-ms-overflow-style:none;-webkit-scrollbar-width:none;-moz-scrollbar-width:none;-ms-scrollbar-width:none;scrollbar-width:none;height:100%;border:0;margin:0;padding-left:24px;} .cFfYvh::-webkit-scrollbar{display:none;} @media only screen and (max-width:63.69em){.cFfYvh{margin-bottom:16px;}} @media only screen and (min-width:50em){.cFfYvh{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}} @media only screen and (max-width:63.69em){.cFfYvh{overflow:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;}.cFfYvh .dfwuc8-0:not(:last-child){margin-right:4px;}} @media only screen and (min-width:37.37em) and (max-width:49.94em){.cFfYvh{margin:0 0 16px;}} @media only screen and (max-width:37.31em){.cFfYvh{margin:0 0 14px;}} @media only screen and (max-width:63.69em){.cFfYvh{padding-left:16px;}} .cFfYvh ul{margin:0;} .cFfYvh .dfwuc8-0{margin-right:4px;}
        /* sc-component-id: dfwuc8-2 */
        .jflTDT{height:30px;width:1px;background-color:#CCC;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;margin-right:16px;} @media only screen and (max-width:85.19em){.jflTDT{display:none;}}
        /* sc-component-id: sc-1il3uru-2 */
        .iUbnXK{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;position:relative;vertical-align:middle;} .iUbnXK > a{outline:0;line-height:0;} .iUbnXK > a.js_header-userbutton{color:#FFF;} @media only screen and (max-width:49.94em){.iUbnXK{position:unset;}}
        /* sc-component-id: sc-1il3uru-3 */
        .gBMIDl{width:30px;height:30px;border-radius:50%;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;margin:0;background-position:center;background-size:cover;background-color:#B12460;} .gBMIDl svg{color:#FFF;}
        /* sc-component-id: peggds-0 */
        .bbQHny{color:#FFF;cursor:pointer;font-size:1.125rem;line-height:1.5rem;-webkit-transform:translate(0,4%);-ms-transform:translate(0,4%);transform:translate(0,4%);} .bbQHny:not(:first-child){margin-left:0.25rem;} .bbQHny:not(:last-child){margin-right:0.25rem;}
        /* sc-component-id: peggds-1 */
        .exbKyM{background-color:#B12460;border:1px solid #B12460;border-radius:0.3125rem;color:#FFF;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.4375rem 0.625rem;min-height:2.5rem;white-space:nowrap;} .exbKyM .peggds-0{color:#FFF;} .exbKyM .iyvn34-0{pointer-events:none;} .exbKyM:hover{background-color:#9c2055;border:1px solid #9c2055;color:#FFF;-webkit-text-decoration:none;text-decoration:none;} .exbKyM:hover .peggds-0{color:#FFF;} .exbKyM:disabled{background-color:#CCC;border:1px solid #CCC;color:#FFF;cursor:default;} .exbKyM:disabled .peggds-0{color:#FFF;cursor:default;} .exbKyM:focus{background-color:#871b49;border:1px solid #871b49;color:#FFF;} .exbKyM:focus .peggds-0{color:#FFF;} .exbKyM:enabled:active{background-color:#71173e;border:1px solid #71173e;color:#FFF;} .exbKyM:enabled:active .peggds-0{color:#FFF;}
        /* sc-component-id: wz9htl-0 */
        .bHuckL{display:none;line-height:19px;color:#666;padding-left:18px;padding-bottom:16px;font-family:ProximaNovaCond,sans-serif;} @media only screen and (min-width:50em){.bHuckL{display:none;}}
        /* sc-component-id: sc-global-2850183867 */
        body.noscroll{overflow:hidden;position:relative;}
        /* sc-component-id: sc-1f6xobn-0 */
        .fBOpXK{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:84px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;} @media only screen and (max-width:49.94em){.fBOpXK{padding:0 16px;height:52px;}} @media only screen and (min-width:50em) and (max-width:63.69em){.fBOpXK{height:64px;}}.ggPaHg{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:84px;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:60px;margin:0 auto;} @media only screen and (max-width:49.94em){.ggPaHg{padding:0 16px;height:52px;}} @media only screen and (min-width:50em) and (max-width:63.69em){.ggPaHg{height:64px;}} @media only screen and (max-width:37.31em){.ggPaHg{height:54px;}} @media only screen and (max-width:49.94em){.ggPaHg{width:calc((100vw - 16px) * 1 - 16px);padding:0;}} @media only screen and (max-width:63.69em){.ggPaHg nav a{padding:0 16px;overflow:hidden;}.ggPaHg nav a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}} @media only screen and (min-width:50em) and (max-width:63.69em){.ggPaHg{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.ggPaHg{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:85.25em){.ggPaHg{width:calc((1364px - 32px) * 1 - 32px);}}
        /* sc-component-id: sc-1f6xobn-2 */
        .djRjMr{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;} .djRjMr.djRjMr{color:#222;} .djRjMr .icon-close{display:none;} .djRjMr.open .icon-close{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .djRjMr.open .icon-hamburger{display:none;}
        /* sc-component-id: sc-1f6xobn-3 */
        .cKiLPQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;display:none;} .cKiLPQ.cKiLPQ{color:#222;} @media only screen and (min-width:63.75em){.cKiLPQ{width:auto;}.cKiLPQ.show{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.cKiLPQ:first-of-type{margin:0 8px 0 16px;}.cKiLPQ:not(:first-of-type){margin:0 8px;}} .cKiLPQ.cKiLPQ{color:#222;} .cKiLPQ::after{content:'';width:1px;height:30px;margin-left:16px;background-color:#CCC;} .cKiLPQ:hover{color:#B12460;-webkit-text-decoration:none;text-decoration:none;}
        /* sc-component-id: sc-1f6xobn-4 */
        .YrjCq{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:48px;height:48px;display:none;margin-right:8px;} .YrjCq.YrjCq{color:#222;} .YrjCq.YrjCq{color:#000;} .YrjCq:hover{color:#B12460;} @media only screen and (min-width:50em){.YrjCq{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}
        /* sc-component-id: sc-1f6xobn-7 */
        .eQCLWh{height:auto;margin:auto;} @media only screen and (max-width:49.94em){.eQCLWh{width:calc((100vw - 16px) * 1 + 16px);}} @media only screen and (min-width:50em) and (max-width:63.69em){.eQCLWh{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.eQCLWh{width:calc((100vw - 24px) * 1 - 24px);}} @media only screen and (min-width:85.25em){.eQCLWh{width:calc((1364px - 32px) * 1 - 32px);}}
        /* sc-component-id: sc-1f6xobn-8 */
        .hElAzM{background:rgba(255,255,255,0.99);top:0;margin-bottom:0;position:relative;width:100%;border-top:4px solid #B12460;border-bottom:1px solid #E5E5E5;} .hElAzM.hElAzM.hElAzM.hElAzM.hElAzM{padding:0;} @media only screen and (min-width:37.37em){.hElAzM.open{border-bottom:none;}}.hWQHjO{background:rgba(255,255,255,0.99);top:0;margin-bottom:0;position:relative;width:100%;border-top:4px solid #B12460;border-bottom:1px solid #E5E5E5;position:fixed;box-shadow:0 2px 10px rgba(0,0,0,0.07);-webkit-transform:translateY(-84px);-ms-transform:translateY(-84px);transform:translateY(-84px);-webkit-transition:-webkit-transform 0;-webkit-transition:transform 0;transition:transform 0;z-index:500;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform 400ms cubic-bezier(0.215,0.61,0.355,1);-webkit-transition:transform 400ms cubic-bezier(0.215,0.61,0.355,1);transition:transform 400ms cubic-bezier(0.215,0.61,0.355,1);} .hWQHjO.hWQHjO.hWQHjO.hWQHjO.hWQHjO{padding:0;} @media only screen and (max-width:49.94em){.hWQHjO{z-index:95;}} @media only screen and (min-width:37.37em){.hWQHjO.open{border-bottom:none;}}
        /* sc-component-id: sc-1f6xobn-9 */
        .cLvRyM{position:relative;} .cLvRyM.open{margin-top:0;position:fixed;height:100vh;top:0;bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;left:0;right:0;z-index:100;background:#FFF;overflow-y:scroll;-webkit-overflow-scrolling:touch;} .cLvRyM.open .dfwuc8-1{display:none;} .cLvRyM.open .header-bar{display:none;} .cLvRyM.open .z9u32j-0{position:relative;top:0;} @media only screen and (max-width:63.69em){.cLvRyM.open .wz9htl-0{display:block;}}
        /* sc-component-id: sc-1f6xobn-13 */
        .hoiFaE{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-flex:auto;-ms-flex:auto;flex:auto;min-width:0;margin-right:16px;} @media only screen and (max-width:49.94em){.hoiFaE{margin-right:6px;}} @media only screen and (max-width:49.94em){.hoiFaE{overflow:hidden;}} .hoiFaE .sc-8vrmk6-0{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;} @media only screen and (max-width:49.94em){.hoiFaE .sc-8vrmk6-0{width:100%;}}.ldbUeF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;} @media only screen and (max-width:49.94em){.ldbUeF{overflow:hidden;}} .ldbUeF .sc-8vrmk6-0{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;} @media only screen and (max-width:49.94em){.ldbUeF .sc-8vrmk6-0{width:100%;}}
        /* sc-component-id: sc-1f6xobn-14 */
        .miWDp{line-height:31px;max-height:30px;padding-left:16px;margin-left:16px;border-left:1px solid #CCC;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-family:ProximaNovaCond,sans-serif;} @media only screen and (max-width:49.94em){.miWDp{display:none;}}
        /* sc-component-id: sc-1f6xobn-15 */
        .Lwydz{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}.bNzDDF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;} @media only screen and (max-width:63.69em){.bNzDDF .sc-1f6xobn-4{display:none;}} @media only screen and (max-width:49.94em){.bNzDDF .sc-1il3uru-2{display:none;}} .bNzDDF .sc-1il3uru-1{max-height:calc(100vh - 60px);overflow-y:hidden;} .bNzDDF ul.user-links{max-height:calc(70vh - 35px);} .bNzDDF ul.myblogs{max-height:calc(25vh - 35px);}
        /* sc-component-id: sc-1f6xobn-16 */
        .lmomFr{display:none;position:absolute;top:-24px;right:0;bottom:0;left:0;background:rgba(255,255,255,0.6);} .lmomFr.show{display:block;}
        /* sc-component-id: sc-1f6xobn-17 */
        .kqthke{display:none;} .kqthke.show{display:block;} .kqthke.show.disabled{display:none;}
        /* sc-component-id: sc-global-3951472044 */
        img{max-width:100%;} video{max-width:100%;}
        /* sc-component-id: sc-global-2349293107 */
        @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:normal;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg-webfont.woff2?08252015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg-webfont.woff?08252015) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:normal;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg_it-webfont.woff2?08252015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_reg_it-webfont.woff?08252015) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:bold;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold-webfont.woff2?08252015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold-webfont.woff?08252015) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:bold;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold_it-webfont.woff2?08252015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_sbold_it-webfont.woff?08252015) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:100;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_thin-webfont.woff2?04172017) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_thin-webfont.woff?04172017) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:100;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_thin_it-webfont.woff2?04172017) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_thin_it-webfont.woff?04172017) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:800;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_bold-webfont.woff2?01182018) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_bold-webfont.woff?01182018) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:800;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_bold_it-webfont.woff2?01182018) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_bold_it-webfont.woff?01182018) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:900;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_xbold-webfont.woff2?01182018) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_xbold-webfont.woff?01182018) format('woff');} @font-face{font-display:fallback;font-family:'ProximaNovaCond';font-weight:900;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_xbold_it-webfont.woff2?01182018) format('woff2'), url(https://f.kinja-static.com/assets/fonts/proxima/proxima_nova_cond_xbold_it-webfont.woff?01182018) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:400;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-light-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-light-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:400;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-lightitalic-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-lightitalic-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:500;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-regular-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-regular-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:500;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-italic-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-italic-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:700;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-bold-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-bold-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'ElizabethSerif';font-weight:700;font-style:italic;src:url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-bolditalic-webfont.woff2?09162015) format('woff2'), url(https://f.kinja-static.com/assets/fonts/elizabeth-serif/elizabethserif-bolditalic-webfont.woff?09162015) format('woff');} @font-face{font-display:fallback;font-family:'FiraSans';font-weight:300;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/fira-sans/fira-sans-light.woff2?02092016) format('woff2'), url(https://f.kinja-static.com/assets/fonts/fira-sans/fira-sans-light.woff?02092016) format('woff');} @font-face{font-display:fallback;font-family:'FiraSans';font-weight:bold;font-style:normal;src:url(https://f.kinja-static.com/assets/fonts/fira-sans/fira-sans-medium.woff2?02092016) format('woff2'), url(https://f.kinja-static.com/assets/fonts/fira-sans/fira-sans-medium.woff?02092016) format('woff');} @font-face{font-display:fallback;font-family:'Libre Baskerville';font-weight:700;font-style:normal;src:local('Libre Baskerville Bold'),local('LibreBaskerville-Bold'), url(https://f.kinja-static.com/assets/fonts/libre-baskerville/libre-baskerville-bold.woff2) format('woff2');}
        /* sc-component-id: sc-1efpnfq-0 */
        .kwUvxw{font-size:2.5rem;font-family:ProximaNovaCond,sans-serif;line-height:1.2;} @media only screen and (max-width:37.31em){.kwUvxw{font-size:2rem;}}
        /* sc-component-id: sc-1efpnfq-1 */
        .dLONoQ a{display:inline;color:#000;} .dLONoQ a:hover{color:#000;-webkit-text-decoration:underline;text-decoration:underline;}
        /* sc-component-id: sc-1m41dwj-0 */
        .hUFSvg{position:absolute;top:8px;z-index:1;opacity:0;width:32px;height:32px;border-radius:5px;cursor:pointer;-webkit-transition:0.4s opacity;transition:0.4s opacity;background:rgba(0,0,0,0.7);pointer-events:none;left:8px;} .hUFSvg:hover{opacity:1;} .hUFSvg svg{position:relative;display:block;margin:auto;color:#FFF;opacity:0.5;top:7px;}
        /* sc-component-id: sc-145m8ut-0 */
        .FoItC{color:#222;-webkit-transition:color 0.1s ease-out;transition:color 0.1s ease-out;box-shadow:inset 0 -2px 0 #B12460;-webkit-text-decoration:none;text-decoration:none;} .FoItC:hover{color:#B12460;-webkit-text-decoration:none;text-decoration:none;}
        /* sc-component-id: sc-1eow4w5-0 */
        .dUoECc{clear:both;display:block;cursor:pointer;} .dUoECc:hover .lightbox{opacity:1;}
        /* sc-component-id: sc-1eow4w5-1 */
        .kivedT{position:relative;margin:0 0 1.5rem;} .kivedT:hover .sc-1m41dwj-0{opacity:1;} @media only screen and (max-width:37.31em){.kivedT{margin:0 -1.125rem 1.5rem -1.125rem;}} @media only screen and (min-width:37.37em){} @media only screen and (min-width:37.37em) and (max-width:49.94em){} @media only screen and (min-width:50em) and (max-width:63.69em){} @media only screen and (min-width:63.75em) and (max-width:85.19em){} @media only screen and (min-width:85.25em){} @media only screen and (min-width:50em){}.iLDaWI{position:relative;margin:0 0 1.5rem;} .iLDaWI:hover .sc-1m41dwj-0{opacity:1;} @media only screen and (max-width:37.31em){.iLDaWI{max-width:100% !important;margin:0 auto 1.5rem !important;}} @media only screen and (min-width:37.37em){.iLDaWI{max-width:636px;margin-left:auto;margin-right:auto;}} @media only screen and (min-width:37.37em) and (max-width:49.94em){} @media only screen and (min-width:50em) and (max-width:63.69em){} @media only screen and (min-width:63.75em) and (max-width:85.19em){} @media only screen and (min-width:85.25em){} @media only screen and (min-width:50em){}
        /* sc-component-id: sc-1eow4w5-2 */
        .gfolHV{position:relative;overflow:hidden;max-width:100%;margin-left:auto;margin-right:auto;}.dXbcSW{position:relative;overflow:hidden;max-width:100%;margin-left:auto;margin-right:auto;cursor:pointer;display:block;}
        /* sc-component-id: sc-1eow4w5-3 */
        .iJyiXs{position:relative;background-color:#f5f5f5;} .iJyiXs video{position:absolute;width:100%;height:auto;} .iJyiXs img{position:absolute;width:100%;}
        /* sc-component-id: sc-1lmpmkf-1 */
        .irMuRt div[data-ad-unit="SECTION_SPONSORSHIP"]{float:right;} @media only screen and (min-width:63.75em){.irMuRt div[data-ad-unit="SECTION_SPONSORSHIP"]{padding-left:1rem;}} @media only screen and (max-width:63.69em){.irMuRt{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}.irMuRt .sc-1lmpmkf-0{-webkit-order:1;-ms-flex-order:1;order:1;}.irMuRt .permalink-story-type{-webkit-order:2;-ms-flex-order:2;order:2;}.irMuRt div[data-ad-unit="SECTION_SPONSORSHIP"]{-webkit-order:3;-ms-flex-order:3;order:3;padding:0.5rem 0 1rem;}.irMuRt header{-webkit-order:4;-ms-flex-order:4;order:4;}}
        /* sc-component-id: ejta2c-0 */
        .kHCVke{height:0;width:100%;padding-bottom:56.25%;background-size:cover;background-repeat:no-repeat;background-position:center;background-color:#F5F5F5;overflow:hidden;position:relative;} .kHCVke:hover .sc-1638q22-0{bottom:0;} .kHCVke img,.kHCVke video{width:100%;}
        /* sc-component-id: sc-1rh3ayr-0 */
        .cKkWUs{font-family:ProximaNovaCond,sans-serif;font-size:16px;color:#000;box-shadow:inset 0 -2px 0 #B12460;line-height:18px;} .cKkWUs .hostname{font-weight:bold;} .cKkWUs:hover{color:#B12460;-webkit-text-decoration:none;text-decoration:none;}
        /* sc-component-id: sc-1rh3ayr-1 */
        .iNvMiS{padding-bottom:56.2%;} .iNvMiS video,.iNvMiS img,.iNvMiS amp-img{position:absolute;width:100%;}
        /* sc-component-id: sc-1rh3ayr-2 */
        .dIJDts{display:block;position:relative;margin:-1.125rem -1.125rem 1rem;} @media only screen and (min-width:37.37em){.dIJDts{width:25%;min-width:25%;padding:1.125rem 0 0 1.125rem;margin:0;float:left;}} @media only screen and (max-width:49.94em){.dIJDts{margin:auto;}.dIJDts .sc-1rh3ayr-1 img{border-top-left-radius:5px;border-top-right-radius:5px;}} .dIJDts .sc-1rh3ayr-1{margin:0;position:relative;border-bottom:5px solid #FBC000;} .dIJDts > span{position:relative;top:-20px;}
        /* sc-component-id: sc-1rh3ayr-3 */
        .cysjdd{font-size:20px;line-height:24px;margin-bottom:10px;}
        /* sc-component-id: sc-1rh3ayr-4 */
        .flvRyU.flvRyU{font-size:15px;line-height:25px;margin-bottom:0.6rem;}
        /* sc-component-id: sc-1rh3ayr-5 */
        .kIoxhb{clear:both;margin:2rem auto;border:#E5E5E5 1px solid;border-radius:5px;box-shadow:#E5E5E5 0 2px 5px;max-width:636px;} @media only screen and (min-width:50em) and (max-width:63.69em){.kIoxhb{max-width:636px;}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.kIoxhb{max-width:636px;}} @media only screen and (min-width:85.25em){.kIoxhb{max-width:636px;}} @media only screen and (min-width:37.37em){.kIoxhb{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}
        /* sc-component-id: sc-1rh3ayr-6 */
        .gCydvg{padding:1.125rem;} .gCydvg a,.gCydvg a:hover{color:#000;}
        /* sc-component-id: sc-759qgu-0 */
        .knZcug{text-align:left;font-size:24px;font-family:ProximaNovaCond,sans-serif;line-height:1.3;margin-top:0;margin-bottom:0;} @media only screen and (min-width:37.37em){.knZcug{margin-bottom:8px;}}
        /* sc-component-id: sc-5f1ako-0 */
        .kBeEqh{padding-bottom:3px;margin-bottom:16px;font-size:20px;line-height:1.3;font-weight:700;color:#222;border-bottom:1px solid #E5E5E5;}
        /* sc-component-id: sc-5f1ako-1 */
        .gOGycY{border:1px solid #72AD75;padding:10px 20px;margin-bottom:16px;} .gOGycY:last-of-type{margin-bottom:0;} .gOGycY .sc-1out364-0:hover{color:inherit;}
        /* sc-component-id: sc-5f1ako-2 */
        .wcAhP{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:2.162 1 0%;-ms-flex:2.162 1 0%;flex:2.162 1 0%;}
        /* sc-component-id: sc-5f1ako-3 */
        .iaPcjQ{width:100%;} .iaPcjQ .ejta2c-0{margin-bottom:12px;} .iaPcjQ .sc-759qgu-0{margin-bottom:8px;font-size:18px;line-height:23px;}
        /* sc-component-id: uhd9ir-0 */
        .lkqtha{display:inline-block;font-size:14px;line-height:19px;} .lkqtha .sc-1out364-0{color:#7D7D7D;} .lkqtha .sc-1out364-0:hover{color:#7D7D7D;}
        /* sc-component-id: sc-15qf33u-0 */
        .bUDpTX{width:33.333333333333336%;border:1px solid #FFF;display:block;float:left;position:relative;opacity:0;z-index:0;-webkit-transform:translate3d(0%,0,0);-ms-transform:translate3d(0%,0,0);transform:translate3d(0%,0,0);-webkit-transition:opacity 300ms;transition:opacity 300ms;} .bUDpTX.active{opacity:1;z-index:10;}.fwSvTs{width:33.333333333333336%;border:1px solid #FFF;display:block;float:left;position:relative;opacity:0;z-index:0;-webkit-transform:translate3d(-100%,0,0);-ms-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);-webkit-transition:opacity 300ms;transition:opacity 300ms;} .fwSvTs.active{opacity:1;z-index:10;}.gIjPOj{width:33.333333333333336%;border:1px solid #FFF;display:block;float:left;position:relative;opacity:0;z-index:0;-webkit-transform:translate3d(-200%,0,0);-ms-transform:translate3d(-200%,0,0);transform:translate3d(-200%,0,0);-webkit-transition:opacity 300ms;transition:opacity 300ms;} .gIjPOj.active{opacity:1;z-index:10;}
        /* sc-component-id: sc-15qf33u-1 */
        .dsTWpc{color:#000;margin:10px 0 1px;font-size:20px;line-height:1.2;font-family:ProximaNovaCond,sans-serif;word-break:break-word;}
        /* sc-component-id: sc-15qf33u-3 */
        .cLsyOJ{font-size:15px;line-height:17px;color:#7D7D7D;display:inline;margin-right:15px;} .cLsyOJ strong{color:#000;}
        /* sc-component-id: sc-15qf33u-4 */
        .izUYtn{font-size:15px;line-height:17px;color:#7D7D7D;margin:15px 0 6px;} .izUYtn strong{color:#000;}
        /* sc-component-id: sc-15qf33u-5 */
        .kFeogc:hover{-webkit-text-decoration:none;text-decoration:none;} .kFeogc:hover .sc-15qf33u-1{-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration-color:#000;text-decoration-color:#000;}
        /* sc-component-id: sc-15qf33u-6 */
        .ixUPOi{font-size:13px;text-transform:none;color:#7D7D7D;margin-top:4px;}
        /* sc-component-id: sc-17xh7h5-0 */
        .ldeICr{margin-bottom:2px;margin-left:1px;margin-right:1px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
        /* sc-component-id: sc-17xh7h5-1 */
        .eNdIIE{-webkit-flex:1;-ms-flex:1;flex:1;height:2px;position:relative;background-color:#CCC;overflow:hidden;}
        /* sc-component-id: sc-17xh7h5-2 */
        .kOFjhT{content:'';display:block;position:absolute;width:100%;height:100%;border-radius:1.5px;z-index:1;left:0;top:0;bottom:0;background-color:#7D7D7D;-webkit-transform-origin:0 0 0;-ms-transform-origin:0 0 0;transform-origin:0 0 0;-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);} .kOFjhT.ticking{-webkit-animation:gTwDaX 8000ms linear;animation:gTwDaX 8000ms linear;-webkit-animation-fill-mode:both;animation-fill-mode:both;}
        /* sc-component-id: sc-1m3f1n9-0 */
        .jIBiCM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:2px;}
        /* sc-component-id: sc-1m3f1n9-1 */
        .dXPirX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;border:1px solid #FFF;position:relative;} .dXPirX:last-child{margin-right:0;} .dXPirX::after{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;left:0;right:0;top:0;bottom:0;font-size:35px;font-weight:bold;color:#FFF;content:'1';z-index:1;opacity:0;background-color:rgba(0,0,0,0.8);-webkit-transition:opacity 300ms ease-in-out;transition:opacity 300ms ease-in-out;} .dXPirX.active{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .dXPirX.active::after{opacity:0.7;} .dXPirX:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .dXPirX:hover::after{opacity:0.7;}.XVppW{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;border:1px solid #FFF;position:relative;} .XVppW:last-child{margin-right:0;} .XVppW::after{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;left:0;right:0;top:0;bottom:0;font-size:35px;font-weight:bold;color:#FFF;content:'2';z-index:1;opacity:0;background-color:rgba(0,0,0,0.8);-webkit-transition:opacity 300ms ease-in-out;transition:opacity 300ms ease-in-out;} .XVppW.active{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .XVppW.active::after{opacity:0.7;} .XVppW:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .XVppW:hover::after{opacity:0.7;}.bEUjwS{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;border:1px solid #FFF;position:relative;} .bEUjwS:last-child{margin-right:0;} .bEUjwS::after{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;left:0;right:0;top:0;bottom:0;font-size:35px;font-weight:bold;color:#FFF;content:'3';z-index:1;opacity:0;background-color:rgba(0,0,0,0.8);-webkit-transition:opacity 300ms ease-in-out;transition:opacity 300ms ease-in-out;} .bEUjwS.active{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .bEUjwS.active::after{opacity:0.7;} .bEUjwS:hover{-webkit-filter:grayscale(100%);filter:grayscale(100%);} .bEUjwS:hover::after{opacity:0.7;}
        /* sc-component-id: i2qujp-0 */
        .esIpx{box-sizing:border-box;overflow:hidden;}
        /* sc-component-id: i2qujp-1 */
        .bspgcg{width:300%;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}
        /* sc-component-id: i2qujp-2 */
        .cclgoe{contain:content;} .cclgoe:hover .sc-17xh7h5-1 > div{-webkit-animation-play-state:paused;animation-play-state:paused;}
        /* sc-component-id: i2qujp-3 */
        .fVlnpj header{margin:5px 0 16px;} .fVlnpj header h2{margin:0;font-weight:normal;font-size:20px;font-family:ProximaNovaCond,sans-serif;color:#666;} .fVlnpj header h2 a{color:#666;} .fVlnpj header h2 strong{color:#000;}
        /* sc-component-id: sc-6l6yqv-0 */
        .defoG{padding-bottom:4px;margin-bottom:16px;font-size:16px;line-height:21px;text-transform:uppercase;}
        /* sc-component-id: sc-6l6yqv-1 */
        .busDXq{font-size:18px;line-height:23px;}
        /* sc-component-id: sc-6l6yqv-2 */
        .kUfXGZ:hover{color:inherit;}
        /* sc-component-id: sc-6l6yqv-3 */
        .fWhkEE{position:relative;} .fWhkEE:not(:last-child){margin-bottom:1rem;}
        /* sc-component-id: sc-6l6yqv-4 */
        .jyjbTH{color:#666;font-size:12px;font-style:normal;height:14px;line-height:14px;margin-right:4px;text-transform:uppercase;}
        /* sc-component-id: sc-6l6yqv-5 */
        .glBtZI{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:8px;}
        /* sc-component-id: sc-6l6yqv-6 */
        .eagNII{margin:0 auto 32px;}
        /* sc-component-id: sc-10uan3u-0 */
        .esHOJV{width:100%;font-weight:700;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} .esHOJV button{margin-top:16px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;} .esHOJV .ynl58c-0{margin-right:16px;min-width:64px;} .esHOJV .ynl58c-0 svg[aria-label="GO avatar"]{background-color:#FBC000;} .esHOJV .ynl58c-0 svg[aria-label="GO avatar"] path{fill:#FFF;}
        /* sc-component-id: sc-10uan3u-1 */
        .cqtDtB{text-transform:uppercase;font-size:16px;padding-bottom:3px;margin-bottom:12px;border-bottom:1px solid #E5E5E5;}
        /* sc-component-id: sc-10uan3u-2 */
        .ktBPdN{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-size:18px;color:#222;}
        /* sc-component-id: sc-10uan3u-3 */
        .lfhhVO:hover{-webkit-text-decoration:none;text-decoration:none;} .lfhhVO button{width:100%;}
        /* sc-component-id: sc-1ez0oyg-0 */
        .ktESSG{min-height:0px;}.ehkuKX{min-height:768px;}
        /* sc-component-id: sc-1ez0oyg-1 */
        .etpvfO{position:-webkit-sticky;position:sticky;top:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
        /* sc-component-id: sc-1dvfjie-0 */
        .fhmHGL{position:absolute;display:none;top:100%;right:0;} .fhmHGL.open{display:block;}
        /* sc-component-id: sc-1dvfjie-1 */
        .hCitnH{z-index:98;position:relative;margin-top:5px;background:#FFF;border-radius:5px;border:1px solid #CCC;min-width:174px;} .hCitnH::before,.hCitnH::after{content:"";display:block;position:absolute;height:0;width:0;border-bottom-style:solid;} .hCitnH::after{border:inset 6px;border-color:transparent transparent #FFF transparent;top:-12px;right:14px;} .hCitnH::before{border:inset 7px;border-color:transparent transparent #CCC transparent;top:-14px;right:13px;}
        /* sc-component-id: sc-1dvfjie-2 */
        .eJinCt{display:inline-block;position:relative;}
        /* sc-component-id: sc-10a86sv-0 */
        .fVjjcw{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#666;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-size:14px;line-height:2;padding:6px 8px;text-transform:uppercase;} .fVjjcw:first-child{border-top-left-radius:5px;border-top-right-radius:5px;} .fVjjcw:last-child{border-bottom-left-radius:5px;border-bottom-right-radius:5px;} .fVjjcw:hover{background:#F5F5F5;color:#666;-webkit-text-decoration:none;text-decoration:none;} .fVjjcw .iyvn34-0{margin-right:15px;}
        /* sc-component-id: sc-101yw2y-0 */
        .eSuPFB{position:relative;}
        /* sc-component-id: sc-101yw2y-1 */
        .jgysUY{position:relative;display:block;}
        /* sc-component-id: sc-101yw2y-2 */
        .bYlXTp{float:left;}
        /* sc-component-id: sc-101yw2y-4 */
        .icfmop{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;height:100%;}
        /* sc-component-id: sc-101yw2y-5 */
        @media only screen and (min-width:50em){.ebBaTT.custom-header-has-background.hangable-curation .layout--Modular3 .grid__zone:not(:first-child),.ebBaTT.custom-header-has-background.hangable-curation .layout--Modular4 .grid__zone:not(:first-child){border-left-width:0px;position:relative;}.ebBaTT.custom-header-has-background.hangable-curation .layout--Modular3 .grid__zone:not(:first-child)::before,.ebBaTT.custom-header-has-background.hangable-curation .layout--Modular4 .grid__zone:not(:first-child)::before{content:'';position:absolute;height:calc(100% - 100px);left:0;bottom:0;border-left:1px solid #E5E5E5;}.ebBaTT.custom-header-has-background.hangable-curation .curation-module__zone__item-width-children{background-color:#FFF;padding-top:1rem;padding:1rem 20px 0px;}.ebBaTT.custom-header-has-background.hangable-curation .curation-module__zone__item-width-children:first-child{padding-left:20px;}.ebBaTT.custom-header-has-background.hangable-curation .curation-module__zone__item-width-children:not(:last-child){margin-right:-20px;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3{position:relative;top:-6rem;margin-bottom:-6rem;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .curation_control > button,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .curation_control > button,.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .curation_control > div,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .curation_control > div{top:6rem;position:relative;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain >.sc-1whp23a-2:first-child,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 >.sc-1whp23a-2:first-child,.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child .sc-1whp23a-2,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child .sc-1whp23a-2{position:relative;z-index:0;padding:1rem 1rem 0 1rem;margin:-1rem -1rem 0 -1rem;background:white;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain >section:first-child,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 >section:first-child,.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child section,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child section{position:relative;z-index:0;padding:1rem 1rem 0 1rem;margin:-1rem -1rem 0 -1rem;background:transparent;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child::after,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child::after{content:none;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child.canSelect:hover section,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child.canSelect:hover section{background-color:#F5F5F5;border:2px solid #CCC;border-radius:5px;top:-2px;left:-2px;margin-right:-20px;}.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child.isSelected section,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child.isSelected section,.ebBaTT.custom-header-has-background.hangable-curation > .curation-mountain .sc-1v0374p-0:first-child.isSelected:hover section,.ebBaTT.custom-header-has-background.hangable-curation .sc-101yw2y-3 .sc-1v0374p-0:first-child.isSelected:hover section{background-color:#FDF0C7;border:2px solid #B12460;border-radius:5px;top:-2px;left:-2px;margin-right:-20px;}}
        /* sc-component-id: sc-101yw2y-6 */
        @media only screen and (min-width:50em){.jOQyEj.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:750;}.jOQyEj.sticky-top .ad-container{padding-top:20px;background-color:#FFF;}}
        /* sc-component-id: sc-101yw2y-7 */
        .enFBrX .ad-container{min-height:250px;padding-bottom:31px;} .enFBrX .ad-container[data-ad-load-state=empty]{display:none;}
        /* sc-component-id: sc-1lmbno3-0 */
        .eXGUJG{position:relative;} .eXGUJG li{padding-left:2.25rem;margin-bottom:6px;} .eXGUJG li::before{position:absolute;content:'\b7';margin:-1px 0 0 -29px;font-weight:bold;font-size:24px;}
        /* sc-component-id: sc-1bwb26k-1 */
        .RjwRf{font-family:ProximaNovaCond,sans-serif;text-align:left;}
        /* sc-component-id: gcp5ez-0 */
        .dGHwsG{border:solid #ddd;border-width:1px 0 0;height:0;margin-top:40px;margin-bottom:40px;clear:both;}
        /* sc-component-id: sc-1mn1yww-0 */
        .OMwVz{font-size:10px;font-weight:400;line-height:1.3;-webkit-letter-spacing:0.2px;-moz-letter-spacing:0.2px;-ms-letter-spacing:0.2px;letter-spacing:0.2px;text-transform:uppercase;text-align:center;margin-top:6px;font-size:16px;line-height:24px;text-transform:inherit;margin-top:0;}
        /* sc-component-id: sc-1mn1yww-1 */
        .iftYcF{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;color:#7D7D7D;} .iftYcF:hover{color:#B12460;}
        /* sc-component-id: sc-12i6d45-0 */
        .jzcQTJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;overflow-y:hidden;overflow-x:auto;}
        /* sc-component-id: sc-12i6d45-1 */
        .cWiYXU{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;}
        /* sc-component-id: sc-1vjnuu8-0 */
        .frTClM{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
        /* sc-component-id: wvv3zm-0 */
        @media only screen and (min-width:50em){.MWIGZ{display:none;}}
        /* sc-component-id: wvv3zm-1 */
        .kzkhwW{color:#7D7D7D;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .kzkhwW:hover{color:#7D7D7D;-webkit-text-decoration:underline;text-decoration:underline;}
        /* sc-component-id: wvv3zm-2 */
        .dNAgCv{text-transform:uppercase;color:#000;padding-left:4px;}
        /* sc-component-id: sc-1jc3ukb-0 */
        .ezwLgJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;font-family:ProximaNovaCond,sans-serif;font-size:16px;line-height:21px;text-align:left;}
        /* sc-component-id: sc-1jc3ukb-1 */
        .jLgjau{-webkit-flex-basis:40px;-ms-flex-preferred-size:40px;flex-basis:40px;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;margin-right:10px;} .jLgjau img{width:40px;height:40px;border-radius:50%;position:unset;} .jLgjau video{width:40px;height:40px;border-radius:50%;background-color:#F5F5F5;}
        /* sc-component-id: sc-1jc3ukb-2 */
        .jpbKEQ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}
        /* sc-component-id: sc-1jc3ukb-4 */
        .grWrOW{display:inline-block;font-size:16px;line-height:17px;margin:0 7px 2px 7px;color:#7D7D7D;}
        /* sc-component-id: sc-1jc3ukb-5 */
        .bNRtrM{line-height:19px;}
        /* sc-component-id: sc-1jc3ukb-6 */
        .kyKjbV{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} @media only screen and (max-width:37.31em){.kyKjbV{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}} @media only screen and (min-width:37.37em){.kyKjbV{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}} .kyKjbV time{font-size:16px;}
        /* sc-component-id: sc-17x7c2u-0 */
        .eTFIkv{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:39px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;min-width:39px;-webkit-text-decoration:none;text-decoration:none;color:#B12460;-webkit-transition:color 200ms;transition:color 200ms;} .eTFIkv:hover{color:#5c1332;}
        /* sc-component-id: sc-17x7c2u-1 */
        .jBsDWZ{padding:0 10px;}
        /* sc-component-id: sc-17x7c2u-2 */
        .gpwIdA{background-color:#CCC;border-radius:3px;border:1px solid #CCC;display:grid;grid-auto-flow:column;grid-gap:1px;} .gpwIdA > .sc-17x7c2u-0{background-color:white;} .gpwIdA > .sc-17x7c2u-0:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;} .gpwIdA > .sc-17x7c2u-0:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}
        /* sc-component-id: sc-15g8630-0 */
        .hICZjh{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;height:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} @media only screen and (min-width:37.37em){.hICZjh .iyvn34-0 svg{width:24px;height:24px;}}
        /* sc-component-id: sc-15g8630-1 */
        .jOqHdi{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .jOqHdi > *{margin:0 4px;min-width:32px;color:#7D7D7D;-webkit-transition:color 200ms ease-in-out;transition:color 200ms ease-in-out;} .jOqHdi > *:first-child{margin-left:0;} .jOqHdi a:hover{-webkit-text-decoration:none;text-decoration:none;color:#B12460;}
        /* sc-component-id: sc-83o472-0 */
        .iimSGa{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;} @media only screen and (max-width:37.31em){.iimSGa{width:100%;}}
        /* sc-component-id: sc-83o472-1 */
        .yjpVX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;} @media only screen and (max-width:37.31em){.yjpVX{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.yjpVX .sc-83o472-0 + .sc-83o472-0{margin-top:15px;}} @media only screen and (min-width:37.37em){.yjpVX{-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;}}
        /* sc-component-id: sc-83o472-2 */
        .foLDPX{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}
        /* sc-component-id: r43lxo-0 */
        .blgiqp{max-width:1024px;width:100%;} @media only screen and (min-width:50em) and (max-width:63.69em){.blgiqp{max-width:1024px;}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.blgiqp{max-width:1024px;}} @media only screen and (min-width:85.25em){.blgiqp{max-width:1024px;}} .blgiqp .sc-1lmbno3-0:not(.sc-1eow4w5-1),.blgiqp .sc-1lmbno3-1:not(.sc-1eow4w5-1),.blgiqp .sc-8hxd3p-0:not(.sc-1eow4w5-1),.blgiqp .sc-1eu5fsj-0:not(.sc-1eow4w5-1),.blgiqp .ooo3c9-0:not(.sc-1eow4w5-1),.blgiqp .sc-1jaa1bu-0:not(.sc-1eow4w5-1),.blgiqp p:not(.sc-1eow4w5-1),.blgiqp ul:not(.sc-1eow4w5-1),.blgiqp hr:not(.sc-1eow4w5-1),.blgiqp .sc-1bwb26k-1:not(.sc-1eow4w5-1),.blgiqp > span:not(.sc-1eow4w5-1),.blgiqp figure:not(.sc-1eow4w5-1),.blgiqp pre:not(.sc-1eow4w5-1){margin-left:auto;margin-right:auto;max-width:636px;} @media only screen and (min-width:50em) and (max-width:63.69em){.blgiqp .sc-1lmbno3-0:not(.sc-1eow4w5-1),.blgiqp .sc-1lmbno3-1:not(.sc-1eow4w5-1),.blgiqp .sc-8hxd3p-0:not(.sc-1eow4w5-1),.blgiqp .sc-1eu5fsj-0:not(.sc-1eow4w5-1),.blgiqp .ooo3c9-0:not(.sc-1eow4w5-1),.blgiqp .sc-1jaa1bu-0:not(.sc-1eow4w5-1),.blgiqp p:not(.sc-1eow4w5-1),.blgiqp ul:not(.sc-1eow4w5-1),.blgiqp hr:not(.sc-1eow4w5-1),.blgiqp .sc-1bwb26k-1:not(.sc-1eow4w5-1),.blgiqp > span:not(.sc-1eow4w5-1),.blgiqp figure:not(.sc-1eow4w5-1),.blgiqp pre:not(.sc-1eow4w5-1){max-width:636px;}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.blgiqp .sc-1lmbno3-0:not(.sc-1eow4w5-1),.blgiqp .sc-1lmbno3-1:not(.sc-1eow4w5-1),.blgiqp .sc-8hxd3p-0:not(.sc-1eow4w5-1),.blgiqp .sc-1eu5fsj-0:not(.sc-1eow4w5-1),.blgiqp .ooo3c9-0:not(.sc-1eow4w5-1),.blgiqp .sc-1jaa1bu-0:not(.sc-1eow4w5-1),.blgiqp p:not(.sc-1eow4w5-1),.blgiqp ul:not(.sc-1eow4w5-1),.blgiqp hr:not(.sc-1eow4w5-1),.blgiqp .sc-1bwb26k-1:not(.sc-1eow4w5-1),.blgiqp > span:not(.sc-1eow4w5-1),.blgiqp figure:not(.sc-1eow4w5-1),.blgiqp pre:not(.sc-1eow4w5-1){max-width:636px;}} @media only screen and (min-width:85.25em){.blgiqp .sc-1lmbno3-0:not(.sc-1eow4w5-1),.blgiqp .sc-1lmbno3-1:not(.sc-1eow4w5-1),.blgiqp .sc-8hxd3p-0:not(.sc-1eow4w5-1),.blgiqp .sc-1eu5fsj-0:not(.sc-1eow4w5-1),.blgiqp .ooo3c9-0:not(.sc-1eow4w5-1),.blgiqp .sc-1jaa1bu-0:not(.sc-1eow4w5-1),.blgiqp p:not(.sc-1eow4w5-1),.blgiqp ul:not(.sc-1eow4w5-1),.blgiqp hr:not(.sc-1eow4w5-1),.blgiqp .sc-1bwb26k-1:not(.sc-1eow4w5-1),.blgiqp > span:not(.sc-1eow4w5-1),.blgiqp figure:not(.sc-1eow4w5-1),.blgiqp pre:not(.sc-1eow4w5-1){max-width:636px;}} @media only screen and (max-width:63.69em){.blgiqp figure figcaption{padding-left:20px;}} .blgiqp .sc-1lmbno3-0,.blgiqp .sc-1lmbno3-1,.blgiqp .sc-8hxd3p-0,.blgiqp ul,.blgiqp p{font-family:ElizabethSerif,Georgia,serif;font-size:15px;line-height:28px;font-weight:normal;} @media only screen and (min-width:37.37em){.blgiqp .sc-1lmbno3-0,.blgiqp .sc-1lmbno3-1,.blgiqp .sc-8hxd3p-0,.blgiqp ul,.blgiqp p{font-size:16px;line-height:29px;}} .blgiqp p{margin-bottom:1.25rem;} .blgiqp .sc-1lmbno3-0,.blgiqp .sc-1lmbno3-1{margin-bottom:1.5rem;} .blgiqp iframe{max-width:100%;} .blgiqp .twitter-embed iframe{margin:0 auto;} .blgiqp .has-image,.blgiqp .has-embed,.blgiqp .has-video{margin-bottom:0;width:100%;clear:left;} .blgiqp .ooo3c9-0{margin-bottom:1.5rem;} .blgiqp .has-image.has-image,.blgiqp .has-video.has-video{margin-top:0;margin-bottom:1.5rem;position:relative;} .blgiqp .has-image.has-image.media-large,.blgiqp .has-video.has-video.media-large{max-width:800px;} .blgiqp .has-image.has-image.media-large,.blgiqp .has-video.has-video.media-large,.blgiqp .has-image.has-image.media-medium,.blgiqp .has-video.has-video.media-medium,.blgiqp .has-image.has-image.media-small,.blgiqp .has-video.has-video.media-small{width:auto;text-align:center;} @media only screen and (min-width:37.37em){.blgiqp .has-image.has-image.media-small,.blgiqp .has-video.has-video.media-small{max-width:($main-content-max-width / 2);float:left;margin:0.5rem 1.125rem 0.5rem 0;}} @media only screen and (max-width:49.94em){.blgiqp .has-image.has-image.media-medium,.blgiqp .has-video.has-video.media-medium,.blgiqp .has-image.has-image.media-large,.blgiqp .has-video.has-video.media-large{width:auto;margin-left:-1.125rem;margin-right:-1.125rem;}.blgiqp .has-image.has-image.media-medium figcaption,.blgiqp .has-video.has-video.media-medium figcaption,.blgiqp .has-image.has-image.media-large figcaption,.blgiqp .has-video.has-video.media-large figcaption,.blgiqp .has-image.has-image.media-medium .video-embed__caption,.blgiqp .has-video.has-video.media-medium .video-embed__caption,.blgiqp .has-image.has-image.media-large .video-embed__caption,.blgiqp .has-video.has-video.media-large .video-embed__caption{padding:0 1.125rem;}} .blgiqp pre{box-shadow:inset 0 0 5px 0 rgba(0,0,0,0.5);display:block;overflow:auto;padding:1.125rem;margin-bottom:1.5rem;width:auto;word-break:break-all;} .blgiqp pre > code{background-color:transparent;} .blgiqp pre p{line-height:24px;} .blgiqp pre,.blgiqp pre p,.blgiqp code{font-family:Courier,monospace;color:#222;font-size:1rem;} .blgiqp pre,.blgiqp code{background-color:#F5F5F5;} .blgiqp code{padding:0 7px;display:inline-block;} .blgiqp ul{margin-bottom:1.5rem;} .blgiqp ul li{margin-bottom:6px;} .blgiqp ul.commerce li{font-family:FiraSans,sans-serif;padding-left:0;color:#666;} .blgiqp ul.commerce li em{color:#72AD75;font-style:normal;} .blgiqp ul.commerce li a{color:inherit;-webkit-text-decoration:none;text-decoration:none;box-shadow:none;} .blgiqp ul.commerce li a:hover strong{-webkit-text-decoration:underline;text-decoration:underline;} .blgiqp ul.commerce li::before{display:none;} .blgiqp .sc-1bwb26k-1.commerce-icon{max-width:100%;} .blgiqp .ad-container{margin:0;width:auto;height:auto;} .blgiqp .ad-container[data-ad-load-state=loaded] div iframe{margin:0 auto;}
        /* sc-component-id: sc-1bdg1q0-0 */
        .dHZwOk{border-top:#E5E5E5 solid 1px;position:fixed;bottom:0;right:0;width:100%;padding:6px;background:#FFF;z-index:20;}
        /* sc-component-id: sc-1bdg1q0-1 */
        .huOEht{margin:0 5px;padding:0 1rem;width:90px;height:28px;line-height:unset;} .huOEht > div{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-pack:space-around;-webkit-justify-content:space-around;-ms-flex-pack:space-around;justify-content:space-around;} .huOEht span{margin-left:6px;} @media only screen and (max-width:49.94em){.huOEht{margin:0 10px;width:120px;}}
        /* sc-component-id: sc-1bdg1q0-2 */
        .fItspw{width:100%;max-width:1336px;margin:0 auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;padding:0 1.125rem;} @media only screen and (max-width:49.94em){.fItspw{-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}
        /* sc-component-id: z1qon0-0 */
        .sHsHa{font-size:16px;line-height:21px;margin-bottom:1rem;text-transform:uppercase;} @media only screen and (max-width:37.31em){.sHsHa{color:#7D7D7D;}}
        /* sc-component-id: sc-18b1b2r-0 */
        .jZyWXs{display:inline-block;} @media only screen and (max-width:37.31em){.jZyWXs{width:100%;max-width:100%;}}
        /* sc-component-id: sc-18b1b2r-3 */
        .egRxyu{border-radius:3px;padding:0 1rem;border-color:#CCC;} .egRxyu:hover,.egRxyu:active,.egRxyu:focus{border-color:#CCC;}
        /* sc-component-id: sc-18b1b2r-4 */
        .fwDNjy{text-align:right;}
        /* sc-component-id: sc-18b1b2r-5 */
        .ccAJCg{margin:2.5rem auto 0;max-width:636px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;} @media only screen and (max-width:37.31em){.ccAJCg .sc-18b1b2r-2{width:100%;margin-top:36px;}.ccAJCg .sc-18b1b2r-2 .z1qon0-0:first-child{display:none;}.ccAJCg .sc-18b1b2r-1{display:block;}.ccAJCg .btk291-0{width:100%;}} @media only screen and (min-width:37.37em){.ccAJCg .sc-18b1b2r-1{display:none;}} @media only screen and (min-width:50em) and (max-width:63.69em){.ccAJCg{max-width:636px;}} @media only screen and (min-width:63.75em) and (max-width:85.19em){.ccAJCg{max-width:636px;}} @media only screen and (min-width:85.25em){.ccAJCg{max-width:636px;}}
        /* sc-component-id: sc-1or3yyu-0 */
        .nBxoz{padding-bottom:4px;margin-bottom:16px;font-size:16px;line-height:21px;text-transform:uppercase;}
        /* sc-component-id: sc-1or3yyu-1 */
        .jcgXjw{margin-bottom:4px;font-size:18px;line-height:23px;}
        /* sc-component-id: sc-1or3yyu-2 */
        .bzrPWe:hover{color:inherit;}
        /* sc-component-id: sc-1or3yyu-3 */
        .jvIkaX{position:relative;padding-left:25px;} .jvIkaX > *:first-child::before{content:"•";position:absolute;left:0;font-size:21px;font-weight:bold;color:#B12460;} .jvIkaX:not(:last-child){margin-bottom:1rem;}
        /* sc-component-id: sc-1or3yyu-4 */
        .kSfANG{max-width:636px;margin:32px auto 0;}
        /* sc-component-id: sc-73739c-0 */
        @media only screen and (max-width:37.31em){.iaHIzx{margin:0 -1.125rem;}}
        /* sc-component-id: sc-73739c-2 */
        .kXLoyx.trc_related_container{padding:0;} .kXLoyx .thumbnails-a{padding:0;}
        /* sc-component-id: sc-73739c-3 */
        .eOmEvw{margin:40px auto 0;max-width:636px;}
        /* sc-component-id: sc-73739c-4 */
        .cirOTP iframe{margin:1rem auto;}
        /* sc-component-id: sc-1fofo4n-0 */
        .hbcmGw{margin-bottom:24px;}
        /* sc-component-id: sc-1auy74q-22 */
        .fVaIqa{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:2;top:-19px;left:-17px;background:#72AD75;height:55px;width:55px;min-width:55px;border-radius:50%;line-height:55px;text-align:center;font-size:20px;} .fVaIqa span{color:#FFF;} .fVaIqa:hover{-webkit-text-decoration:none;text-decoration:none;color:#FFF;} .fVaIqa svg{width:34px;height:34px;color:#FFF;margin:0;}
        ]]>
        </style>
        <style data-styled="gTwDaX" data-styled-version="4.3.2">
        <![CDATA[
        /* sc-component-id: sc-keyframes-gTwDaX */
        @-webkit-keyframes gTwDaX{from{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);}to{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}} @keyframes gTwDaX{from{-webkit-transform:translateX(-100%);-ms-transform:translateX(-100%);transform:translateX(-100%);}to{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}}
        ]]>
        </style>
        <style>
        <![CDATA[
        body{-webkit-tap-highlight-color:transparent;word-wrap:break-word;overflow-x:hidden}ol,ul{list-style-type:none}ol,ul,ol li,ul li,iframe{margin:0}iframe{border:0;display:block;padding:0}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");font-weight:normal;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder,.vjs-icon-play{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-play-control .vjs-icon-placeholder:before,.vjs-icon-play:before{content:"\f101"}.vjs-icon-play-circle{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-play-circle:before{content:"\f102"}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,.vjs-icon-pause{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,.vjs-icon-pause:before{content:"\f103"}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,.vjs-icon-volume-mute{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,.vjs-icon-volume-mute:before{content:"\f104"}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,.vjs-icon-volume-low{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,.vjs-icon-volume-low:before{content:"\f105"}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,.vjs-icon-volume-mid{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,.vjs-icon-volume-mid:before{content:"\f106"}.video-js .vjs-mute-control .vjs-icon-placeholder,.vjs-icon-volume-high{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-mute-control .vjs-icon-placeholder:before,.vjs-icon-volume-high:before{content:"\f107"}.video-js .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-enter{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-enter:before{content:"\f108"}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,.vjs-icon-fullscreen-exit{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,.vjs-icon-fullscreen-exit:before{content:"\f109"}.vjs-icon-square{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-square:before{content:"\f10a"}.vjs-icon-spinner{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-spinner:before{content:"\f10b"}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subs-caps-button .vjs-icon-placeholder,.video-js .vjs-subtitles-button .vjs-icon-placeholder,.vjs-icon-subtitles{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,.vjs-icon-subtitles:before{content:"\f10c"}.video-js .vjs-captions-button .vjs-icon-placeholder,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,.vjs-icon-captions{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-captions-button .vjs-icon-placeholder:before,.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,.vjs-icon-captions:before{content:"\f10d"}.video-js .vjs-chapters-button .vjs-icon-placeholder,.vjs-icon-chapters{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-chapters-button .vjs-icon-placeholder:before,.vjs-icon-chapters:before{content:"\f10e"}.vjs-icon-share{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-share:before{content:"\f10f"}.vjs-icon-cog{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-cog:before{content:"\f110"}.video-js .vjs-play-progress,.video-js .vjs-volume-level,.vjs-icon-circle,.vjs-seek-to-live-control .vjs-icon-placeholder{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-play-progress:before,.video-js .vjs-volume-level:before,.vjs-icon-circle:before,.vjs-seek-to-live-control .vjs-icon-placeholder:before{content:"\f111"}.vjs-icon-circle-outline{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-circle-outline:before{content:"\f112"}.vjs-icon-circle-inner-circle{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-circle-inner-circle:before{content:"\f113"}.vjs-icon-hd{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-hd:before{content:"\f114"}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,.vjs-icon-cancel{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,.vjs-icon-cancel:before{content:"\f115"}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,.vjs-icon-replay{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,.vjs-icon-replay:before{content:"\f116"}.vjs-icon-facebook{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-facebook:before{content:"\f117"}.vjs-icon-gplus{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-gplus:before{content:"\f118"}.vjs-icon-linkedin{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-linkedin:before{content:"\f119"}.vjs-icon-twitter{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-twitter:before{content:"\f11a"}.vjs-icon-tumblr{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-tumblr:before{content:"\f11b"}.vjs-icon-pinterest{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-pinterest:before{content:"\f11c"}.video-js .vjs-descriptions-button .vjs-icon-placeholder,.vjs-icon-audio-description{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,.vjs-icon-audio-description:before{content:"\f11d"}.video-js .vjs-audio-button .vjs-icon-placeholder,.vjs-icon-audio{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-audio-button .vjs-icon-placeholder:before,.vjs-icon-audio:before{content:"\f11e"}.vjs-icon-next-item{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-next-item:before{content:"\f11f"}.vjs-icon-previous-item{font-family:VideoJS;font-weight:normal;font-style:normal}.vjs-icon-previous-item:before{content:"\f120"}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-enter{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-enter:before{content:"\f121"}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,.vjs-icon-picture-in-picture-exit{font-family:VideoJS;font-weight:normal;font-style:normal}.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,.vjs-icon-picture-in-picture-exit:before{content:"\f122"}.video-js{display:block;vertical-align:top;box-sizing:border-box;color:#fff;background-color:#000;position:relative;padding:0;font-size:10px;line-height:1;font-weight:normal;font-style:normal;font-family:Arial, Helvetica, sans-serif;word-break:initial}.video-js:-moz-full-screen{position:absolute}.video-js:-webkit-full-screen{width:100% !important;height:100% !important}.video-js[tabindex="-1"]{outline:none}.video-js *,.video-js :after,.video-js :before{box-sizing:inherit}.video-js ul{font-family:inherit;font-size:inherit;line-height:inherit;list-style-position:outside;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}.video-js.vjs-4-3,.video-js.vjs-16-9,.video-js.vjs-fluid{width:100%;max-width:100%;height:0}.video-js.vjs-16-9{padding-top:56.25%}.video-js.vjs-4-3{padding-top:75%}.video-js.vjs-fill,.video-js .vjs-tech{width:100%;height:100%}.video-js .vjs-tech{position:absolute;top:0;left:0}body.vjs-full-window{padding:0;margin:0;height:100%}.vjs-full-window .video-js.vjs-fullscreen{position:fixed;overflow:hidden;z-index:1000;left:0;top:0;bottom:0;right:0}.video-js.vjs-fullscreen{width:100% !important;height:100% !important;padding-top:0 !important}.video-js.vjs-fullscreen.vjs-user-inactive{cursor:none}.vjs-hidden{display:none !important}.vjs-disabled{opacity:0.5;cursor:default}.video-js .vjs-offscreen{height:1px;left:-9999px;position:absolute;top:0;width:1px}.vjs-lock-showing{display:block !important;opacity:1;visibility:visible}.vjs-no-js{padding:20px;color:#fff;background-color:#000;font-size:18px;font-family:Arial, Helvetica, sans-serif;text-align:center;width:300px;height:150px;margin:0px auto}.vjs-no-js a,.vjs-no-js a:visited{color:#66A8CC}.video-js .vjs-big-play-button{font-size:3em;line-height:1.5em;height:1.63332em;width:3em;display:block;position:absolute;top:10px;left:10px;padding:0;cursor:pointer;opacity:1;border:0.06666em solid #fff;background-color:#2B333F;background-color:rgba(43,51,63,0.7);border-radius:0.3em;-webkit-transition:all 0.4s;transition:all 0.4s}.vjs-big-play-centered .vjs-big-play-button{top:50%;left:50%;margin-top:-0.81666em;margin-left:-1.5em}.video-js .vjs-big-play-button:focus,.video-js:hover .vjs-big-play-button{border-color:#fff;background-color:#73859f;background-color:rgba(115,133,159,0.5);-webkit-transition:all 0s;transition:all 0s}.vjs-controls-disabled .vjs-big-play-button,.vjs-error .vjs-big-play-button,.vjs-has-started .vjs-big-play-button,.vjs-using-native-controls .vjs-big-play-button{display:none}.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button{display:block}.video-js button{background:none;border:none;color:inherit;display:inline-block;font-size:inherit;line-height:inherit;text-transform:none;text-decoration:none;-webkit-transition:none;transition:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vjs-control .vjs-button{width:100%;height:100%}.video-js .vjs-control.vjs-close-button{cursor:pointer;height:3em;position:absolute;right:0;top:0.5em;z-index:2}.video-js .vjs-modal-dialog{background:rgba(0,0,0,0.8);background:-webkit-linear-gradient(top, rgba(0,0,0,0.8), rgba(255,255,255,0));background:linear-gradient(180deg, rgba(0,0,0,0.8), rgba(255,255,255,0));overflow:auto}.video-js .vjs-modal-dialog>*{box-sizing:border-box}.vjs-modal-dialog .vjs-modal-dialog-content{font-size:1.2em;line-height:1.5;padding:20px 24px;z-index:1}.vjs-menu-button{cursor:pointer}.vjs-menu-button.vjs-disabled{cursor:default}.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu{display:none}.vjs-menu .vjs-menu-content{display:block;padding:0;margin:0;font-family:Arial, Helvetica, sans-serif;overflow:auto}.vjs-menu .vjs-menu-content>*{box-sizing:border-box}.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu{display:none}.vjs-menu li{list-style:none;margin:0;padding:0.2em 0;line-height:1.4em;font-size:1.2em;text-align:center;text-transform:lowercase}.js-focus-visible .vjs-menu li.vjs-menu-item:hover,.vjs-menu li.vjs-menu-item:focus,.vjs-menu li.vjs-menu-item:hover{background-color:#73859f;background-color:rgba(115,133,159,0.5)}.js-focus-visible .vjs-menu li.vjs-selected:hover,.vjs-menu li.vjs-selected,.vjs-menu li.vjs-selected:focus,.vjs-menu li.vjs-selected:hover{background-color:#fff;color:#2B333F}.vjs-menu li.vjs-menu-title{text-align:center;text-transform:uppercase;font-size:1em;line-height:2em;padding:0;margin:0 0 0.3em 0;font-weight:bold;cursor:default}.vjs-menu-button-popup .vjs-menu{display:none;position:absolute;bottom:0;width:10em;left:-3em;height:0em;margin-bottom:1.5em;border-top-color:rgba(43,51,63,0.7)}.vjs-menu-button-popup .vjs-menu .vjs-menu-content{background-color:#2B333F;background-color:rgba(43,51,63,0.7);position:absolute;width:100%;bottom:1.5em;max-height:15em}.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:5em}.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:10em}.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:14em}.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content{max-height:25em}.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu{display:block}.video-js .vjs-menu-button-inline{-webkit-transition:all 0.4s;transition:all 0.4s;overflow:hidden}.video-js .vjs-menu-button-inline:before{width:2.222222222em}.video-js .vjs-menu-button-inline.vjs-slider-active,.video-js .vjs-menu-button-inline:focus,.video-js .vjs-menu-button-inline:hover,.video-js.vjs-no-flex .vjs-menu-button-inline{width:12em}.vjs-menu-button-inline .vjs-menu{opacity:0;height:100%;width:auto;position:absolute;left:4em;top:0;padding:0;margin:0;-webkit-transition:all 0.4s;transition:all 0.4s}.vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-menu-button-inline:focus .vjs-menu,.vjs-menu-button-inline:hover .vjs-menu{display:block;opacity:1}.vjs-no-flex .vjs-menu-button-inline .vjs-menu{display:block;opacity:1;position:relative;width:auto}.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu{width:auto}.vjs-menu-button-inline .vjs-menu-content{width:auto;height:100%;margin:0;overflow:hidden}.video-js .vjs-control-bar{display:none;width:100%;position:absolute;bottom:0;left:0;right:0;height:3em;background-color:#2B333F;background-color:rgba(43,51,63,0.7)}.vjs-has-started .vjs-control-bar{display:flex;visibility:visible;opacity:1;-webkit-transition:visibility 0.1s, opacity 0.1s;transition:visibility 0.1s, opacity 0.1s}.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{visibility:visible;opacity:0;-webkit-transition:visibility 1s, opacity 1s;transition:visibility 1s, opacity 1s}.vjs-controls-disabled .vjs-control-bar,.vjs-error .vjs-control-bar,.vjs-using-native-controls .vjs-control-bar{display:none !important}.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{opacity:1;visibility:visible}.vjs-has-started.vjs-no-flex .vjs-control-bar{display:table}.video-js .vjs-control{position:relative;text-align:center;margin:0;padding:0;height:100%;width:4em;flex:none}.vjs-button>.vjs-icon-placeholder:before{font-size:1.8em;line-height:1.67}.video-js .vjs-control:focus,.video-js .vjs-control:focus:before,.video-js .vjs-control:hover:before{text-shadow:0em 0em 1em white}.video-js .vjs-control-text{border:0;clip:rect(0 0 0 0);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.vjs-no-flex .vjs-control{display:table-cell;vertical-align:middle}.video-js .vjs-custom-control-spacer{display:none}.video-js .vjs-progress-control{cursor:pointer;flex:auto;display:flex;align-items:center;min-width:4em;touch-action:none}.video-js .vjs-progress-control.disabled{cursor:default}.vjs-live .vjs-progress-control{display:none}.vjs-liveui .vjs-progress-control{display:flex;align-items:center}.vjs-no-flex .vjs-progress-control{width:auto}.video-js .vjs-progress-holder{flex:auto;-webkit-transition:all 0.2s;transition:all 0.2s;height:0.3em}.video-js .vjs-progress-control .vjs-progress-holder{margin:0 10px}.video-js .vjs-progress-control:hover .vjs-progress-holder{font-size:1.6666666667em}.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled{font-size:1em}.video-js .vjs-progress-holder .vjs-load-progress,.video-js .vjs-progress-holder .vjs-load-progress div,.video-js .vjs-progress-holder .vjs-play-progress{position:absolute;display:block;height:100%;margin:0;padding:0;width:0}.video-js .vjs-play-progress{background-color:#fff}.video-js .vjs-play-progress:before{font-size:0.9em;position:absolute;right:-0.5em;top:-0.3333333333em;z-index:1}.video-js .vjs-load-progress{background:rgba(115,133,159,0.5)}.video-js .vjs-load-progress div{background:rgba(115,133,159,0.75)}.video-js .vjs-time-tooltip{background-color:#fff;background-color:rgba(255,255,255,0.8);border-radius:0.3em;color:#000;float:right;font-family:Arial, Helvetica, sans-serif;font-size:1em;padding:6px 8px 8px 8px;pointer-events:none;position:absolute;top:-3.4em;visibility:hidden;z-index:1}.video-js .vjs-progress-holder:focus .vjs-time-tooltip{display:none}.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,.video-js .vjs-progress-control:hover .vjs-time-tooltip{display:block;font-size:0.6em;visibility:visible}.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip{font-size:1em}.video-js .vjs-progress-control .vjs-mouse-display{display:none;position:absolute;width:1px;height:100%;background-color:#000;z-index:1}.vjs-no-flex .vjs-progress-control .vjs-mouse-display{z-index:0}.video-js .vjs-progress-control:hover .vjs-mouse-display{display:block}.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display{visibility:hidden;opacity:0;-webkit-transition:visibility 1s, opacity 1s;transition:visibility 1s, opacity 1s}.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display{display:none}.vjs-mouse-display .vjs-time-tooltip{color:#fff;background-color:#000;background-color:rgba(0,0,0,0.8)}.video-js .vjs-slider{position:relative;cursor:pointer;padding:0;margin:0 0.45em 0 0.45em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#73859f;background-color:rgba(115,133,159,0.5)}.video-js .vjs-slider.disabled{cursor:default}.video-js .vjs-slider:focus{text-shadow:0em 0em 1em white;box-shadow:0 0 1em #fff}.video-js .vjs-mute-control{cursor:pointer;flex:none}.video-js .vjs-volume-control{cursor:pointer;margin-right:1em;display:flex}.video-js .vjs-volume-control.vjs-volume-horizontal{width:5em}.video-js .vjs-volume-panel .vjs-volume-control{visibility:visible;opacity:0;width:1px;height:1px;margin-left:-1px}.video-js .vjs-volume-panel{-webkit-transition:width 1s;transition:width 1s}.video-js .vjs-volume-panel .vjs-mute-control:hover~.vjs-volume-control,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,.video-js .vjs-volume-panel .vjs-volume-control:active,.video-js .vjs-volume-panel .vjs-volume-control:hover,.video-js .vjs-volume-panel:active .vjs-volume-control,.video-js .vjs-volume-panel:focus .vjs-volume-control,.video-js .vjs-volume-panel:hover .vjs-volume-control{visibility:visible;opacity:1;position:relative;-webkit-transition:visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s;transition:visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s}.video-js .vjs-volume-panel .vjs-mute-control:hover~.vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,.video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,.video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em}.video-js .vjs-volume-panel .vjs-mute-control:hover~.vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,.video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-vertical,.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical,.video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-vertical{left:-3.5em}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:9em;-webkit-transition:width 0.1s;transition:width 0.1s}.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only{width:4em}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{height:8em;width:3em;left:-3000em;-webkit-transition:visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s;transition:visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s}.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{-webkit-transition:visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s;transition:visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s}.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal{width:5em;height:3em;visibility:visible;opacity:1;position:relative;-webkit-transition:none;transition:none}.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical{position:absolute;bottom:3em;left:0.5em}.video-js .vjs-volume-panel{display:flex}.video-js .vjs-volume-bar{margin:1.35em 0.45em}.vjs-volume-bar.vjs-slider-horizontal{width:5em;height:0.3em}.vjs-volume-bar.vjs-slider-vertical{width:0.3em;height:5em;margin:1.35em auto}.video-js .vjs-volume-level{position:absolute;bottom:0;left:0;background-color:#fff}.video-js .vjs-volume-level:before{position:absolute;font-size:0.9em}.vjs-slider-vertical .vjs-volume-level{width:0.3em}.vjs-slider-vertical .vjs-volume-level:before{top:-0.5em;left:-0.3em}.vjs-slider-horizontal .vjs-volume-level{height:0.3em}.vjs-slider-horizontal .vjs-volume-level:before{top:-0.3em;right:-0.5em}.video-js .vjs-volume-panel.vjs-volume-panel-vertical{width:4em}.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level{height:100%}.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level{width:100%}.video-js .vjs-volume-vertical{width:3em;height:8em;bottom:8em;background-color:#2B333F;background-color:rgba(43,51,63,0.7)}.video-js .vjs-volume-horizontal .vjs-menu{left:-2em}.vjs-poster{display:inline-block;vertical-align:middle;background-repeat:no-repeat;background-position:50% 50%;background-size:contain;background-color:#000000;cursor:pointer;margin:0;padding:0;position:absolute;top:0;right:0;bottom:0;left:0;height:100%}.vjs-has-started .vjs-poster{display:none}.vjs-audio.vjs-has-started .vjs-poster{display:block}.vjs-using-native-controls .vjs-poster{display:none}.video-js .vjs-live-control{display:flex;align-items:flex-start;flex:auto;font-size:1em;line-height:3em}.vjs-no-flex .vjs-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-liveui .vjs-live-control,.video-js:not(.vjs-live) .vjs-live-control{display:none}.video-js .vjs-seek-to-live-control{cursor:pointer;flex:none;display:inline-flex;height:100%;padding-left:0.5em;padding-right:0.5em;font-size:1em;line-height:3em;width:auto;min-width:4em}.vjs-no-flex .vjs-seek-to-live-control{display:table-cell;width:auto;text-align:left}.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,.video-js:not(.vjs-live) .vjs-seek-to-live-control{display:none}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge{cursor:auto}.vjs-seek-to-live-control .vjs-icon-placeholder{margin-right:0.5em;color:#888}.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder{color:red}.video-js .vjs-time-control{flex:none;font-size:1em;line-height:3em;min-width:2em;width:auto;padding-left:1em;padding-right:1em}.vjs-live .vjs-time-control,.video-js .vjs-current-time,.vjs-no-flex .vjs-current-time,.video-js .vjs-duration,.vjs-no-flex .vjs-duration{display:none}.vjs-time-divider{display:none;line-height:3em}.vjs-live .vjs-time-divider{display:none}.video-js .vjs-play-control{cursor:pointer}.video-js .vjs-play-control .vjs-icon-placeholder{flex:none}.vjs-text-track-display{position:absolute;bottom:3em;left:0;right:0;top:0;pointer-events:none}.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display{bottom:1em}.video-js .vjs-text-track{font-size:1.4em;text-align:center;margin-bottom:0.1em}.vjs-subtitles{color:#fff}.vjs-captions{color:#fc6}.vjs-tt-cue{display:block}video::-webkit-media-text-track-display{-webkit-transform:translateY(-3em);transform:translateY(-3em)}.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display{-webkit-transform:translateY(-1.5em);transform:translateY(-1.5em)}.video-js .vjs-picture-in-picture-control,.video-js .vjs-fullscreen-control{cursor:pointer;flex:none}.vjs-playback-rate .vjs-playback-rate-value,.vjs-playback-rate>.vjs-menu-button{position:absolute;top:0;left:0;width:100%;height:100%}.vjs-playback-rate .vjs-playback-rate-value{pointer-events:none;font-size:1.5em;line-height:2;text-align:center}.vjs-playback-rate .vjs-menu{width:4em;left:0em}.vjs-error .vjs-error-display .vjs-modal-dialog-content{font-size:1.4em;text-align:center}.vjs-error .vjs-error-display:before{color:#fff;content:"X";font-family:Arial, Helvetica, sans-serif;font-size:4em;left:0;line-height:1;margin-top:-0.5em;position:absolute;text-shadow:0.05em 0.05em 0.1em #000;text-align:center;top:50%;vertical-align:middle;width:100%}.vjs-loading-spinner{display:none;position:absolute;top:50%;left:50%;margin:-25px 0 0 -25px;opacity:0.85;text-align:left;border:6px solid rgba(43,51,63,0.7);box-sizing:border-box;background-clip:padding-box;width:50px;height:50px;border-radius:25px;visibility:hidden}.vjs-seeking .vjs-loading-spinner,.vjs-waiting .vjs-loading-spinner{display:block;-webkit-animation:vjs-spinner-show 0s linear 0.3s forwards;animation:vjs-spinner-show 0s linear 0.3s forwards}.vjs-loading-spinner:after,.vjs-loading-spinner:before{content:"";position:absolute;margin:-6px;box-sizing:inherit;width:inherit;height:inherit;border-radius:inherit;opacity:1;border:inherit;border-color:transparent;border-top-color:white}.vjs-seeking .vjs-loading-spinner:after,.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:before{-webkit-animation:vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite,vjs-spinner-fade 1.1s linear infinite;animation:vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite,vjs-spinner-fade 1.1s linear infinite}.vjs-seeking .vjs-loading-spinner:before,.vjs-waiting .vjs-loading-spinner:before{border-top-color:white}.vjs-seeking .vjs-loading-spinner:after,.vjs-waiting .vjs-loading-spinner:after{border-top-color:white;-webkit-animation-delay:0.44s;animation-delay:0.44s}@keyframes vjs-spinner-show{to{visibility:visible}}@-webkit-keyframes vjs-spinner-show{to{visibility:visible}}@keyframes vjs-spinner-spin{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes vjs-spinner-spin{to{-webkit-transform:rotate(360deg)}}@keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:white}60%{border-top-color:#73859f}to{border-top-color:#73859f}}@-webkit-keyframes vjs-spinner-fade{0%{border-top-color:#73859f}20%{border-top-color:#73859f}35%{border-top-color:white}60%{border-top-color:#73859f}to{border-top-color:#73859f}}.vjs-chapters-button .vjs-menu ul{width:24em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-0.1em}.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:"";font-size:1.5em;line-height:inherit}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder{vertical-align:middle;display:inline-block;margin-bottom:-0.1em}.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before{font-family:VideoJS;content:" ";font-size:1.5em;line-height:inherit}.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control{display:none}.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover{width:auto;width:initial}.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button{display:none}.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer,.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer{flex:auto;display:block}.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer{width:auto}.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control,.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control{display:none}.vjs-modal-dialog.vjs-text-track-settings{background-color:#2B333F;background-color:rgba(43,51,63,0.75);color:#fff;height:70%}.vjs-text-track-settings .vjs-modal-dialog-content{display:table}.vjs-text-track-settings .vjs-track-settings-colors,.vjs-text-track-settings .vjs-track-settings-controls,.vjs-text-track-settings .vjs-track-settings-font{display:table-cell}.vjs-text-track-settings .vjs-track-settings-controls{text-align:right;vertical-align:bottom}@supports (display: grid){.vjs-text-track-settings .vjs-modal-dialog-content{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr;padding:20px 24px 0px 24px}.vjs-track-settings-controls .vjs-default-button{margin-bottom:20px}.vjs-text-track-settings .vjs-track-settings-controls{grid-column:1/-1}.vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,.vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content{grid-template-columns:1fr}}.vjs-track-setting>select{margin-right:1em;margin-bottom:0.5em}.vjs-text-track-settings fieldset{margin:5px;padding:3px;border:none}.vjs-text-track-settings fieldset span{display:inline-block}.vjs-text-track-settings fieldset span>select{max-width:7.3em}.vjs-text-track-settings legend{color:#fff;margin:0 0 5px 0}.vjs-text-track-settings .vjs-label{position:absolute;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);display:block;margin:0 0 5px 0;padding:0;border:0;height:1px;width:1px;overflow:hidden}.vjs-track-settings-controls button:active,.vjs-track-settings-controls button:focus{outline-style:solid;outline-width:medium;background-image:-webkit-linear-gradient(bottom, #fff 88%, #73859f 100%);background-image:linear-gradient(0deg, #fff 88%, #73859f 100%)}.vjs-track-settings-controls button:hover{color:rgba(43,51,63,0.75)}.vjs-track-settings-controls button{background-color:#fff;background-image:-webkit-linear-gradient(top, #fff 88%, #73859f 100%);background-image:linear-gradient(-180deg, #fff 88%, #73859f 100%);color:#2B333F;cursor:pointer;border-radius:2px}.vjs-track-settings-controls .vjs-default-button{margin-right:1em}@media print{.video-js>:not(.vjs-tech):not(.vjs-poster){visibility:hidden}}.vjs-resize-manager{position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:-1000}.js-focus-visible .video-js :focus:not(.focus-visible),.video-js .vjs-menu :focus:not(:focus-visible),.video-js :focus:not(:focus-visible){outline:none;background:none}.ima-ad-container{top:0em;position:absolute;display:none;width:100%;height:100%}.video-js.vjs-playing .bumpable-ima-ad-container{margin-top:-4em}.video-js.vjs-user-inactive.vjs-playing .bumpable-ima-ad-container{margin-top:0em}.video-js.vjs-paused .bumpable-ima-ad-container,.video-js.vjs-playing:hover .bumpable-ima-ad-container,.video-js.vjs-user-active.vjs-playing .bumpable-ima-ad-container{margin-top:-4em}.ima-controls-div{bottom:0em;height:1.4em;position:absolute;overflow:hidden;display:none;opacity:1;background-color:rgba(7,20,30,0.7);background:-webkit-gradient(linear, left bottom, left top, color-stop(0%, rgba(7,20,30,0.7)), color-stop(100%, rgba(7,20,30,0)));background:-webkit-linear-gradient(bottom, rgba(7,20,30,0.7) 0%, rgba(7,20,30,0) 100%);background:linear-gradient(to top, rgba(7,20,30,0.7) 0%, rgba(7,20,30,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0007141E', endColorstr='#07141E',GradientType=0 )}.ima-controls-div.ima-controls-div-showing{height:3.7em}.ima-countdown-div{height:1em;color:#FFFFFF;text-shadow:0 0 0.2em #000;cursor:default}.ima-seek-bar-div{top:1.2em;height:0.3em;position:absolute;background:rgba(255,255,255,0.4)}.ima-progress-div{width:0em;height:0.3em;background-color:#ECC546}.ima-fullscreen-div,.ima-mute-div,.ima-play-pause-div,.ima-slider-div{width:2.33em;height:1.33em;top:0.733em;left:0em;position:absolute;color:#CCCCCC;font-size:1.5em;line-height:2;text-align:center;font-family:VideoJS;cursor:pointer}.ima-mute-div{left:auto;right:5.667em}.ima-slider-div{left:auto;right:2.33em;width:3.33em;height:0.667em;top:1.33em;background-color:#555555}.ima-slider-level-div{width:100%;height:0.667em;background-color:#ECC546}.ima-fullscreen-div{left:auto;right:0em}.ima-playing:before{content:"\00f103"}.ima-paused:before{content:"\00f101"}.ima-paused:hover:before,.ima-playing:hover:before{text-shadow:0 0 1em #fff}.ima-non-muted:before{content:"\00f107"}.ima-muted:before{content:"\00f104"}.ima-muted:hover:before,.ima-non-muted:hover:before{text-shadow:0 0 1em #fff}.ima-non-fullscreen:before{content:"\00f108"}.ima-fullscreen:before{content:"\00f109"}.ima-fullscreen:hover:before,.ima-non-fullscreen:hover:before{text-shadow:0 0 1em #fff}em,h1,h2,h3,h4,h5,p,span{text-rendering:optimizeLegibility}@media only screen and (min-width: 37.5em){h1{font-size:2.38rem}h2{font-size:1.75rem}h3{font-size:1.56rem}h4{font-size:1.31rem}h5{font-size:1.19rem}h6{font-size:1rem}}.global-nav__left .f-dropdown-ct{min-width:300px}#launcher{display:none}@media only screen and (max-width: 37.31em){.cnx-main-container.cnx-main-container{display:none}}meta.foundation-version{font-family:"/5.5.2/"}meta.foundation-mq-small{font-family:"/only screen/";width:0}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 37.31em)/";width:0}meta.foundation-mq-medium{font-family:"/only screen and (min-width:37.37em)/";width:37.37em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:37.37em) and (max-width:49.94em)/";width:37.37em}meta.foundation-mq-large{font-family:"/only screen and (min-width:50em)/";width:50em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:50em) and (max-width:63.69em)/";width:50em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:63.75em)/";width:63.75em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:63.75em) and (max-width:85.19em)/";width:63.75em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:85.25em)/";width:85.25em}meta.foundation-data-attribute-namespace{font-family:false}body,html{height:100%}html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}body,html{font-size:16px}body{background:#fff;color:#222;cursor:auto;font-family:"ProximaNovaCond",sans-serif;font-style:normal;font-weight:normal;line-height:24px;margin:0;padding:0;position:relative}a:hover{cursor:pointer}img{max-width:100%;height:auto;-ms-interpolation-mode:bicubic}#map_canvas embed,#map_canvas img,#map_canvas object,.map_canvas embed,.map_canvas img,.map_canvas object,.mqa-display embed,.mqa-display img,.mqa-display object{max-width:none !important}.left{float:left !important}.right{float:right !important}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.hide{display:none}.invisible{visibility:hidden}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}.flex-video{height:0;margin-bottom:1rem;overflow:hidden;padding-bottom:67.5%;padding-top:1.562rem;position:relative}.flex-video.widescreen{padding-bottom:56.34%}.flex-video.vimeo{padding-top:0}.flex-video embed,.flex-video iframe,.flex-video object,.flex-video video{height:100%;position:absolute;top:0;width:100%;left:0}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}@media only screen and (max-width: 37.31em){.small-only-text-left{text-align:left !important}.small-only-text-right{text-align:right !important}.small-only-text-center{text-align:center !important}.small-only-text-justify{text-align:justify !important}}@media only screen{.small-text-left{text-align:left !important}.small-text-right{text-align:right !important}.small-text-center{text-align:center !important}.small-text-justify{text-align:justify !important}}@media only screen and (min-width: 37.37em) and (max-width: 49.94em){.medium-only-text-left{text-align:left !important}.medium-only-text-right{text-align:right !important}.medium-only-text-center{text-align:center !important}.medium-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 37.37em){.medium-text-left{text-align:left !important}.medium-text-right{text-align:right !important}.medium-text-center{text-align:center !important}.medium-text-justify{text-align:justify !important}}@media only screen and (min-width: 50em) and (max-width: 63.69em){.large-only-text-left{text-align:left !important}.large-only-text-right{text-align:right !important}.large-only-text-center{text-align:center !important}.large-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 50em){.large-text-left{text-align:left !important}.large-text-right{text-align:right !important}.large-text-center{text-align:center !important}.large-text-justify{text-align:justify !important}}@media only screen and (min-width: 63.75em) and (max-width: 85.19em){.xlarge-only-text-left{text-align:left !important}.xlarge-only-text-right{text-align:right !important}.xlarge-only-text-center{text-align:center !important}.xlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 63.75em){.xlarge-text-left{text-align:left !important}.xlarge-text-right{text-align:right !important}.xlarge-text-center{text-align:center !important}.xlarge-text-justify{text-align:justify !important}}@media only screen and (min-width: 85.25em) and (max-width: 999999999999){.xxlarge-only-text-left{text-align:left !important}.xxlarge-only-text-right{text-align:right !important}.xxlarge-only-text-center{text-align:center !important}.xxlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 85.25em){.xxlarge-text-left{text-align:left !important}.xxlarge-text-right{text-align:right !important}.xxlarge-text-center{text-align:center !important}.xxlarge-text-justify{text-align:justify !important}}blockquote,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,li,ol,p,pre,td,th,ul{margin:0;padding:0}a{color:#008CBA;line-height:inherit;text-decoration:none}a:focus,a:hover{color:#0078a0}a img{border:none}p{font-family:inherit;font-size:.938rem;font-weight:normal;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p,p.lead{line-height:1.6}p.lead{font-size:1.156rem}p aside{font-size:.875rem;font-style:italic;line-height:1.35}h1,h2,h3,h4,h5,h6{color:#000;font-family:"ProximaNovaCond",sans-serif;font-style:normal;font-weight:bold;line-height:1.3;margin-bottom:1rem;margin-top:0;text-rendering:optimizeLegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#7D7D7D;font-size:.875rem;line-height:0}h1{font-size:1.75rem}h2{font-size:1.125rem}h3{font-size:1.25rem}h4{font-size:1rem}h5{font-size:1.188rem}h6{font-size:1rem}.subheader{line-height:1.4;color:#595959;font-weight:normal;margin-top:.2rem;margin-bottom:.5rem}hr{border:solid #ddd;border-width:1px 0 0;clear:both;height:0;margin:1.25rem 0 1.188rem}em,i{font-style:italic}em,i,b,strong{line-height:inherit}b,strong{font-weight:bold}small{font-size:.875rem;line-height:inherit}code{background-color:#f8f8f8;border-color:#dfdfdf;border-style:solid;border-width:1px;color:#333;font-family:Courier,monospace;font-weight:normal;padding:.125rem .312rem .062rem}dl,ol,ul{font-family:inherit;font-size:.938rem;line-height:1.6;list-style-position:outside;margin-bottom:1.25rem}ul{margin-left:1.1rem}ul.no-bullet{margin-left:0}ul.no-bullet li ol,ul.no-bullet li ul{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ol,ul li ul{margin-left:1.25rem;margin-bottom:0}ul.circle li ul,ul.disc li ul,ul.square li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.1rem}ul.circle{list-style-type:circle}ul.circle,ul.disc{margin-left:1.1rem}ul.disc{list-style-type:disc}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ol,ol li ul{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:.3rem;font-weight:bold}dl dd{margin-bottom:.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#222;cursor:help}abbr{text-transform:none}abbr[title]{border-bottom:1px dotted #ddd}blockquote{margin:0 0 1.25rem;padding:.562rem 1.25rem 0 1.188rem;border-left:1px solid #ddd}blockquote cite{display:block;font-size:.812rem;color:#3b3b3b}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#3b3b3b}blockquote,blockquote p{line-height:1.6;color:#595959}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #ddd;padding:.625rem .75rem}.vcard li{margin:0;display:block}.vcard .fn{font-size:.938rem}.vcard .fn,.vevent .summary,.vevent abbr{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;border:none;padding:0 .062rem}@media only screen and (min-width: 37.37em){h1,h2,h3,h4,h5,h6{line-height:1.3}h1{font-size:2.375rem}h2{font-size:1.75rem}h3{font-size:1.562rem}h4{font-size:1.312rem}h5{font-size:1.188rem}h6{font-size:1rem}}.midbanner{padding:0;margin:0 -18px 20px;background:transparent;text-align:center;border-bottom:#e5e5e5 1px solid;border-top:#e5e5e5 1px solid;box-sizing:content-box;padding:1rem 0}.midbanner iframe{margin:auto}.midbanner .ad-label .mid-banner{display:block;font-family:"ProximaNovaCond",sans-serif;color:#ccc;letter-spacing:0.1rem;border-top:#e5e5e5 1px solid;text-align:center;text-transform:uppercase;margin-bottom:10px}.midbanner .ad-label-bottom{border-bottom:1px solid #e5e5e5}.bottom-billboard .bottom-billboard-container,.bottom-billboard .mobile-footer-container{margin:0 0 20px;background:transparent;text-align:center;border-bottom:#e5e5e5 1px solid;border-top:#e5e5e5 1px solid;box-sizing:content-box;padding:1rem 0}.bottom-billboard iframe{margin:auto}@media only screen and (max-width: 63.69em){.bottom-billboard .bottom-billboard-container{display:none}}@media only screen and (min-width: 63.69em){.bottom-billboard .mobile-footer-container{display:none}}.dfp[data-ad-load-state~=empty]{display:none}.ad-promotion-native>*{display:block !important}@media screen and (min-width: 1020px){.ad-mobile,.ad-mobile-dynamic{display:none}}.swappable-mobile-ad-container{display:none}.ad-mobile .ad-container{display:inline-block}.ad-mobile .ad-mobile-inner .ad-container{min-width:300px}.ad-billboard,.ad-top-banner{text-align:center}.ad-billboard .ad-container,.ad-top-banner .ad-container{height:250px;max-width:970px;margin-left:auto;margin-right:auto;display:block}.ad-top-banner .ad-container{margin-bottom:20px}.ad-splashy-top.ad-container.ad-small{margin:20px 0}.ad-splashy-top.ad-container.ad-small.with-impact-nav{margin:62px 0 -25px}.ad-splashy-top.ad-container.ad-small iframe,.ad-splashy-top.ad-container.ad-large iframe{margin:0 auto}.ad-splashy-top.ad-container.ad-splashy-970{height:0}.ad-splashy-top.ad-container.ad-splashy-1280{height:0;max-height:100vh}.ad-info__content{margin-bottom:0;padding:10px}.ad-info-item-title{font-weight:bold}.ad-desktop .ad-inner .ad-label,.ad-desktop .ad-mobile-inner .ad-label,.ad-mobile-bottom .ad-label,.ad-mobile .ad-inner .ad-label,.ad-mobile .ad-mobile-inner .ad-label,.ad-permalink-comment .ad-inner .ad-label,.ad-permalink-comment .ad-mobile-inner .ad-label,.ad-unit--featured-recirculation .ad-label,.ad-unit--fixed-bottom .ad-label,.ad-unit--in-post .ad-inner .ad-label,.ad-unit--in-post .ad-mobile-inner .ad-label,.bottom-billboard .ad-label,.permalink.featured-post .post-content .ad-middleboard--displayed .ad-label{font-family:"ProximaNovaCond",sans-serif;color:#ccc;letter-spacing:0.1rem;border-top:0;text-align:center;text-transform:uppercase;margin-bottom:10px}.ad-desktop .ad-inner .ad-label-bottom,.ad-desktop .ad-mobile-inner .ad-label-bottom,.ad-mobile-bottom .ad-label-bottom,.ad-mobile .ad-inner .ad-label-bottom,.ad-mobile .ad-mobile-inner .ad-label-bottom,.ad-permalink-comment .ad-inner .ad-label-bottom,.ad-permalink-comment .ad-mobile-inner .ad-label-bottom,.ad-unit--featured-recirculation .ad-label-bottom,.ad-unit--fixed-bottom .ad-label-bottom,.ad-unit--in-post .ad-inner .ad-label-bottom,.ad-unit--in-post .ad-mobile-inner .ad-label-bottom,.bottom-billboard .ad-label-bottom,.permalink.featured-post .post-content .ad-middleboard--displayed .ad-label-bottom{border-bottom:1px solid #e5e5e5}.ad-unit--featured-recirculation .ad-container{height:250px}nav.inactive{pointer-events:none;opacity:0.5}.ad-desktop,.ad-mobile,.ad-permalink-comment,.ad-unit--in-post{padding:0;margin:0 auto 20px;background:transparent;text-align:center}.ad-desktop .ad-desktop-inner,.ad-mobile .ad-desktop-inner,.ad-permalink-comment .ad-desktop-inner,.ad-unit--in-post .ad-desktop-inner{margin-bottom:30px}.ad-desktop iframe,.ad-mobile iframe,.ad-permalink-comment iframe,.ad-unit--in-post iframe{margin:auto}.ad-desktop .ad-inner,.ad-desktop .ad-mobile-inner,.ad-mobile .ad-inner,.ad-mobile .ad-mobile-inner,.ad-permalink-comment .ad-inner,.ad-permalink-comment .ad-mobile-inner,.ad-unit--in-post .ad-inner,.ad-unit--in-post .ad-mobile-inner{padding:0;margin-bottom:1.875rem}.ad-desktop .ad-inner .ad-container,.ad-desktop .ad-mobile-inner .ad-container,.ad-mobile .ad-inner .ad-container,.ad-mobile .ad-mobile-inner .ad-container,.ad-permalink-comment .ad-inner .ad-container,.ad-permalink-comment .ad-mobile-inner .ad-container,.ad-unit--in-post .ad-inner .ad-container,.ad-unit--in-post .ad-mobile-inner .ad-container{display:inline-block;max-width:320px;margin:10px 0 20px;background-color:transparent}.ad-desktop .ad-inner .ad-label,.ad-desktop .ad-inner .ad-label-bottom,.ad-desktop .ad-mobile-inner .ad-label,.ad-desktop .ad-mobile-inner .ad-label-bottom,.ad-mobile .ad-inner .ad-label,.ad-mobile .ad-inner .ad-label-bottom,.ad-mobile .ad-mobile-inner .ad-label,.ad-mobile .ad-mobile-inner .ad-label-bottom,.ad-permalink-comment .ad-inner .ad-label,.ad-permalink-comment .ad-inner .ad-label-bottom,.ad-permalink-comment .ad-mobile-inner .ad-label,.ad-permalink-comment .ad-mobile-inner .ad-label-bottom,.ad-unit--in-post .ad-inner .ad-label,.ad-unit--in-post .ad-inner .ad-label-bottom,.ad-unit--in-post .ad-mobile-inner .ad-label,.ad-unit--in-post .ad-mobile-inner .ad-label-bottom{margin-bottom:0}@media only screen and (max-width: 37.31em){.ad-desktop .ad-inner .ad-label,.ad-desktop .ad-inner .ad-label-bottom,.ad-desktop .ad-mobile-inner .ad-label,.ad-desktop .ad-mobile-inner .ad-label-bottom,.ad-mobile .ad-inner .ad-label,.ad-mobile .ad-inner .ad-label-bottom,.ad-mobile .ad-mobile-inner .ad-label,.ad-mobile .ad-mobile-inner .ad-label-bottom,.ad-permalink-comment .ad-inner .ad-label,.ad-permalink-comment .ad-inner .ad-label-bottom,.ad-permalink-comment .ad-mobile-inner .ad-label,.ad-permalink-comment .ad-mobile-inner .ad-label-bottom,.ad-unit--in-post .ad-inner .ad-label,.ad-unit--in-post .ad-inner .ad-label-bottom,.ad-unit--in-post .ad-mobile-inner .ad-label,.ad-unit--in-post .ad-mobile-inner .ad-label-bottom{margin-left:1.125rem;margin-right:1.125rem}}.ad-desktop.hide-contents,.ad-mobile.hide-contents,.ad-permalink-comment.hide-contents,.ad-unit--in-post.hide-contents{display:none}#taboola-below-article-thumbnails,#taboola-below-article-thumbnails---3x2-video,#taboola-below-article-thumbnails---4x2{max-width:636px;margin-top:40px;margin-right:auto;margin-left:auto}.permalink .ad-mobile .ad-label,.permalink .ad-unit--in-post .ad-label{border-top:1px solid #e5e5e5;padding-top:10px}@-webkit-keyframes slideUp{0%{height:0;padding:0;margin:0}}@keyframes slideUp{0%{height:0;padding:0;margin:0}}.animate-slidedown{-webkit-transition:all .75s ease-out;-webkit-transition-delay:.75s;-webkit-transition:all .75s ease-out .75s;transition:all .75s ease-out .75s;max-height:400px;opacity:1}.animate-slidedown.animate-closed{max-height:0;opacity:0}.commentlist__item .ad-permalink-comment{padding-top:14px}.commentlist__item .ad-permalink-comment .ad-mobile-inner .ad-label{margin-bottom:-2px}.commentlist__item:not(.commentlist__item--expandable) .ad-permalink-comment{padding:0;border-top:1px solid #e5e5e5}.commentlist__item:not(.commentlist__item--expandable) .ad-permalink-comment .ad-mobile-inner{margin:16px}.commentlist__item:not(.commentlist__item--expandable) .ad-permalink-comment .ad-mobile-inner .ad-container{margin:10px 0}.commentlist__item:not(.commentlist__item--expandable) .ad-permalink-comment .ad-mobile-inner .ad-label-bottom{border:none}.blog-group-gawker .ad-unit,.permalink.featured-post .post-content .ad-middleboard .ad-label{display:none}.permalink.featured-post .post-content .ad-middleboard--displayed{margin:1.5rem 0;padding:1.5rem 0;clear:both}.permalink.featured-post .post-content .ad-middleboard--displayed .ad-label{display:block}.permalink.featured-post .post-content .ad-middleboard .ad-label{margin-bottom:0px}.permalink.featured-post .post-content .ad-middleboard .ad-container{margin:0 auto}@media only screen and (min-width: 37.37em){.post-content .ad-promotions-container[data-mobile=true]{display:none}}.permalink.featured-post .ad-middleboard .slot-displayed{border-bottom:#e5e5e5 1px solid;border-top:#e5e5e5 1px solid;box-sizing:content-box;padding:1rem 0}@media only screen and (max-width: 37.31em){.trc_related_container{padding:0 1.125rem}}@media only screen and (max-width: 49.94em){.ad-promotions-container.postlist__item .meta--pe{width:auto;right:10px}.ad-promotions-container.postlist__item .meta--pe .meta__right{align-items:normal}}.ad-mobile-bottom{margin-bottom:0}.ad-mobile-bottom .ad-container{display:block}.teads-wrapper{display:flex;align-items:center;justify-content:center;width:100%;padding:15px 0}.bt-wrapper,.bt-wrapper>div{align-content:center;display:flex;justify-content:center}.bt-wrapper>div{border-bottom:1px solid #e5e5e5;padding:20px 0;width:100%}.navwrap--outer:not(.navwrap--frontpage)+.curation-main-container .curation-mountain .curation-mountain__toolbar{top:-100px}.navwrap--outer:not(.navwrap--frontpage)+.curation-main-container .curation-mountain .layout__toolbar{top:-56px}@media only screen and (min-width: 50em){.curation-mountain:not(.Headline):not(.Editor){border-bottom:1px solid #e5e5e5}}.curation-mountain:not(.Headline):not(.Editor) .layout:not(.layout--Headline1){padding:18px 18px 20px}@media only screen and (max-width: 49.94em){.curation-mountain:not(.Headline):not(.Editor) .layout:not(.layout--Headline1){padding:0}}.curation-mountain.Editor.edit-mode{border-bottom:1px solid #e5e5e5}.curation-mountain.Editor.edit-mode .layout:not(.layout--Headline1){padding:18px 18px 20px}@media only screen and (max-width: 49.94em){.curation-mountain.Editor.edit-mode .layout:not(.layout--Headline1){padding:0}}.curation-mountain .layout{max-width:1318px}.curation-mountain .layout.layout:not(.layout--Headline1){margin-left:auto;margin-right:auto}@media only screen and (max-width: 49.94em){.curation-mountain .layout.layout:not(.layout--Headline1){padding:0}}.curation-mountain .layout--Headline1{max-width:100%}.curation-mountain .layout.layout--Modular3,.curation-mountain .layout.layout--Modular3 .grid.grid--modular{max-width:1024px;min-height:500px}.curation-mountain .layout.layout--Modular4,.curation-mountain .layout.layout--Modular4 .grid.grid--modular{max-width:1336px;min-height:500px}.curation-mountain .layout.layout--Equal3{max-width:1336px;min-height:230px;align-content:center}.curation-mountain .layout.layout--Equal3 .grid.grid--equal{max-width:1336px;min-height:230px;box-shadow:none;align-content:center}.curation-mountain .layout.layout--Equal4,.curation-mountain .layout.layout--Equal4 .grid.grid--equal{min-height:170px;align-content:center}.curation-mountain .layout.layout--Equal4{max-width:1336px}.curation-mountain .layout.layout--Equal4 .grid.grid--equal{max-width:1336px;box-shadow:none}.curation-mountain .layout.layout--Equal6,.curation-mountain .layout.layout--Equal6 .grid.grid--equal{min-height:474px}@media only screen and (max-width: 49.94em){.curation-mountain .curation-module{display:flex}}.curation-mountain .layout.layout--Headline1 .grid.grid--headline{position:relative;height:600px;max-width:100%}@media only screen and (max-width: 49.94em){.curation-mountain .layout.layout--Headline1 .grid.grid--headline{height:inherit}}.curation-mountain .layout.layout--Equal3,.curation-mountain .layout.layout--Equal4,.curation-mountain .layout.layout--Equal6,.curation-mountain .layout.layout--Modular3,.curation-mountain .layout.layout--Modular4{margin:0 auto}.curation-mountain .layout__toolbar p{color:#222}@supports not (display: grid){.curation-module{display:flex}.grid--equal .curation-module__zone.box .curation-module__item{margin-bottom:10px}@media only screen and (max-width: 49.94em){.grid--equal .curation-module__zone.box .curation-module__item{margin-bottom:0}}.curation-module__zone{display:flex}.curation-module__zone.hero,.curation-module__zone.hero .curation-module__item{width:100%}.curation-module__zone.box{width:25%;flex-direction:column;justify-content:space-between;margin:0 10px}@media only screen and (max-width: 49.94em){.curation-module__zone.box{width:100%}}.curation-module__zone.tall{width:25%;margin:0 10px}@media only screen and (max-width: 49.94em){.curation-module__zone.tall,.curation-module__zone.tall .curation-module__item{width:100%}}.curation-module__zone.big{width:50%;margin:0 10px}@media only screen and (max-width: 49.94em){.curation-module__zone.big{width:100%}}}.curation-module__zone{position:relative;display:grid;grid-auto-flow:row;grid-auto-rows:1fr;grid-gap:15px;max-height:inherit}@media only screen and (max-width: 49.94em){.curation-module__zone{order:1;grid-gap:0;grid-auto-rows:auto}.curation-module__zone.big{order:0;overflow:hidden;display:block}}.content-meta__byline span{font-size:14px;color:#7D7D7D}.curation-module__item:hover .image-container:after{opacity:0.9;position:absolute;left:0;right:0;top:0;bottom:0;background-color:#000;pointer-events:none}.curation-module__item .content-wrapper{padding:15px 0 10px}@media only screen and (max-width: 37.31em){.curation-module__item .storytype-label-wrapper{display:block}}.curation-module__item .content-meta__byline,.curation-module__item .content-meta__headline+h3,.curation-module__item .content-meta__storyType{display:flex;align-items:center;width:100%}.curation-module__item .content-meta__storyType{font-size:12px;margin-bottom:20px}.curation-module__item .content-meta__headline h3{color:#000;font-size:32px}.curation-module__item .content-meta__headline h3 a{color:inherit}.curation-module__item .content-meta__headline h6{color:#000;font-size:18px;margin-bottom:0.5rem}.curation-module__item .content-meta__headline h6 a{color:inherit}.curation-module__item .content-meta__excerpt p{font-family:"ElizabethSerif", Georgia, serif;font-size:14px;line-height:1.3;color:#222;margin-bottom:0.5rem}.curation-module__item .content-meta__byline .item-authors{display:flex}.curation-module__item .content-meta__byline .item-author a:hover{-webkit-text-decoration-color:#7D7D7D;text-decoration-color:#7D7D7D}.curation-module__item--tertiary-child{display:flex;flex-direction:row;border-top:none !important;height:auto}.curation-module__item--tertiary-child:not(:last-child){border-bottom:1px dotted #e5e5e5 !important}.curation-module__item--tertiary-child .image-container-wrapper{width:30%;margin-right:10px}.curation-module__item--tertiary-child .content-wrapper{width:70%;padding:0}.curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper{margin-bottom:5px}.curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper a{color:#000;font-weight:normal}@media only screen and (max-width: 49.94em){.curation-module__item--tertiary-child:not(:last-child){padding-bottom:10px;margin-bottom:15px}}@media only screen and (min-width: 37.37em){.curation-module__item--tertiary-child:not(:last-child){margin-bottom:20px}}@media only screen and (min-width: 851px) and (max-width: 982px){.curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper a{font-size:14px}}@media only screen and (min-width: 982px) and (max-width: 1023px){.curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper a{font-size:calc(14px + (16 - 14) * (100vw - 851px) / (1023 - 851))}}@media only screen and (min-width: 1024px) and (max-width: 1074px){.curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper a{font-size:calc( 16px + (18 - 16) * (100vw - 1023px) / (1074 - 1023))}}.grid [contenteditable]:focus{outline-color:#0A7BC2;outline-width:1px;outline-offset:-1px}.grid [contenteditable]{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.grid .curation-module__item.hero{position:relative;height:100%}@media only screen and (max-width: 49.94em){.grid .curation-module__item.hero .content-wrapper{padding:20px 55px 10px 10px}}@media only screen and (max-width: 37.31em){.grid .curation-module__item.hero .content-wrapper{padding:20px 10px}}.grid.grid--headline .image-container{position:absolute;left:0;top:0;width:100%}@media only screen and (max-width: 49.94em){.grid.grid--headline .image-container{position:relative;padding-bottom:0;height:inherit}}.grid.grid--headline .image-container:before{display:none;z-index:-1}.grid.grid--headline .image-container img{position:relative}@media only screen and (max-width: 49.94em){.grid.grid--headline{height:inherit}}.grid.grid--headline .content-wrapper{position:absolute;left:0;bottom:0}@media only screen and (max-width: 49.94em){.grid.grid--headline .content-wrapper{position:static;left:initial;bottom:initial}}.grid.grid--headline .storytype-label.storytype-label{font-weight:initial;font-size:14px;color:#fff;border:0}.grid.grid--headline .storytype-label.storytype-label:hover{color:#fff}.grid.grid--headline .storytype-label.storytype-label a{font-weight:initial;color:#fff;padding:0}.grid.grid--headline .content-meta__storyType{margin:0}.grid.grid--headline .content-meta__storyType .storytype-label-wrapper{padding:0 5px;background-color:rgba(0,0,0,0.7)}@media only screen and (max-width: 49.94em){.grid.grid--headline .content-meta__storyType{font-size:14px;text-transform:uppercase}.grid.grid--headline .content-meta__storyType .storytype-label-wrapper{margin:auto;background:none;padding:0 10px}.grid.grid--headline .content-meta__storyType .storytype-label-wrapper .storytype-label{border:1px solid #0A7BC2;color:#0A7BC2}}.grid.grid--headline .content-meta__headline{max-width:50vw}.grid.grid--headline .content-meta__headline a:hover{color:#fff}.grid.grid--headline .content-meta__headline h3{color:#fff;background-color:rgba(0,0,0,0.7);padding:0 6px;display:inline;box-decoration-break:clone;-webkit-box-decoration-break:clone}@media only screen and (max-width: 49.94em){.grid.grid--headline .content-meta__headline{max-width:100vw;text-align:center;padding:20px 0 10px 0}.grid.grid--headline .content-meta__headline a:hover{color:#000}.grid.grid--headline .content-meta__headline h3{color:#000;background:none;font-size:calc(28px + (24 - 16) * (100vw - 400px) / (800 - 400))}}.grid.grid--headline .content-meta__byline .item-author{background-color:rgba(0,0,0,0.7);padding:6px}.grid.grid--headline .content-meta__byline .item-author a,.grid.grid--headline .content-meta__byline .item-author span{font-size:14px;color:#fff}@media only screen and (max-width: 49.94em){.grid.grid--headline .content-meta__byline .item-author{margin:10px auto}.grid.grid--headline .content-meta__byline .item-author a,.grid.grid--headline .content-meta__byline .item-author span{background:none;color:#7D7D7D}}.grid.grid--headline .content-meta__byline a{font-size:14px;color:#fff;border:0;padding:0;margin:0}.grid.grid--headline .grid__zone{position:absolute;left:0;top:0;width:100%;height:600px;overflow:hidden}@media only screen and (max-width: 49.94em){.grid.grid--headline .grid__zone{position:relative;height:inherit}}.grid.grid--headline .grid__zone img{width:100vw}@media only screen and (max-width: 49.94em){.grid.grid--equal .curation-module__zone:first-child{order:0;overflow:hidden;display:block}}@media only screen and (max-width: 49.94em){.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .item{height:inherit}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .curation-module__item__wrapper{display:grid;height:100%;grid-auto-rows:-webkit-min-content auto;grid-auto-rows:min-content auto}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-wrapper{align-items:center;display:flex;flex-flow:column;justify-content:center;padding:0;margin-top:auto;height:auto;width:100%}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-wrapper .storytype-label--outlined{height:27px}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .image-container-wrapper{width:100%}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__storyType{justify-content:center;margin-top:18px;margin-bottom:0}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__storyType span{border:1px solid transparent;font-size:15px;font-weight:normal;line-height:27px;padding:4px 9px}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__headline{text-align:center}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__headline h3,.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__headline h6{display:block;font-size:28px;padding:15px 18px}.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .content-meta__byline{justify-content:center}}@media only screen and (max-width: 49.94em){.grid.grid--equal .curation-module__zone:first-child .zone__item:first-child .curation-module__item:first-child .curation-module__item__wrapper{display:flex;flex-direction:column;padding:0 0 1.125rem}}.grid.grid--equal .curation-module__zone{display:block}.grid.grid--equal .curation-module__item{height:auto;box-shadow:none;border:0}.grid.grid--equal .curation-module__item .content-meta__excerpt{display:none}@media only screen and (min-width: 50em){.grid.grid--equal .curation-module__item .content-meta__headline__wrapper{padding:0 10px 0 0}.grid.grid--equal .curation-module__item .content-meta__headline h3,.grid.grid--equal .curation-module__item .content-meta__headline h6{display:inline;width:100%;margin:0;box-decoration-break:clone;-webkit-box-decoration-break:clone;font-size:22px;line-height:1}}.grid.grid--equal .curation-module__item .content-wrapper{padding:0;left:0;width:100%;z-index:2}@media only screen and (max-width: 49.94em){.grid.grid--equal .curation-module__item .content-wrapper{position:static;padding:0 0 0 15px}}.curation-module{position:relative;display:grid;grid-gap:20px;width:100%;margin-left:auto;margin-right:auto}.curation-module .ad-container{display:none}@media only screen and (max-width: 49.94em){.curation-module.grid[style]{grid-template-columns:1fr !important;grid-gap:0}.curation-module.grid{height:auto;max-height:100% !important;border:none}.curation-module .ad-container{display:block;margin-left:0;margin-right:0;margin-top:20px;margin-bottom:0;padding-bottom:20px;border-bottom:1px solid #e5e5e5;order:4}}.curation-module .image-container{position:relative;padding-bottom:56.25%;overflow:hidden}.curation-module .image-container:before{content:"";background-color:transparent;bottom:0;left:0;position:absolute;right:0;top:0;-webkit-transition:0.5s;transition:0.5s;z-index:1;pointer-events:none}.curation-module .image-container:hover:before{background-color:rgba(0,0,0,0.3)}.curation-module .image-container .animationContainer{top:10px;right:10px;left:auto;bottom:auto}.curation-module .image-container img{position:absolute;width:100%}.curation-module--hide{display:none}@media only screen and (max-width: 49.94em){.curation-module__zone.box,.curation-module__zone.tall{display:block}}.curation-module__item{position:relative;border-bottom:none;box-shadow:0px 1px 1px #7D7D7D;border-top:1px solid #e5e5e5;height:100%}@media only screen and (max-width: 49.94em){.curation-module__item{height:auto;max-height:100%;box-shadow:none;border:none}}.curation-module__item .content-meta__storytype{font-family:"ProximaNovaCond", sans-serif;font-size:14px;font-weight:bold;text-transform:uppercase}.curation-module__item .content-meta__headline,.curation-module__item .content-meta__headline [contenteditable]{cursor:text}@media only screen and (max-width: 49.94em){.curation-module__item .content-meta__headline h3,.curation-module__item .content-meta__headline h6{background-color:transparent;color:#000;font-weight:600;padding:0;margin:0}}.curation-module__item .content-meta__excerpt [contenteditable]{cursor:text}@media only screen and (max-width: 49.94em){.curation-module__item .content-meta__byline{display:flex !important}}.curation-module__item.hero .content-wrapper{padding:0 55px 60px}.curation-module__item.hero .content-wrapper .content-meta__storyType{margin:0 0 1px 0}.curation-module__item.hero .content-wrapper .content-meta__storyType .storytype-label{padding:1px 2px 0 2px}.curation-module__item.hero .content-wrapper .content-meta__byline{margin-top:1px}@media only screen and (max-width: 49.94em){.curation-module__item.hero .content-wrapper .content-meta__byline .item-author{background:none;padding:0}}.curation-module__item.hero .content-wrapper .content-meta__headline.short-headline h3,.curation-module__item.hero .content-wrapper .content-meta__headline.short-headline h6{font-size:50px}@media only screen and (max-width: 49.94em){.curation-module__item.hero .image-container:before{display:none !important}}.curation-module__item.big .item{height:inherit}@media only screen and (max-width: 49.94em){.curation-module__item.big:first-child{border-bottom:1px solid #e5e5e5}}.curation-module__item.big .curation-module__item__wrapper{display:flex;flex-direction:column;height:100%}@media only screen and (max-width: 49.94em){.curation-module__item.big .curation-module__item__wrapper{display:block}}.curation-module__item.big .content-wrapper{align-items:center;display:flex;flex-flow:column;justify-content:center;padding:20px 36px;height:100%}@media only screen and (max-width: 49.94em){.curation-module__item.big .content-wrapper{height:auto;margin-top:auto;padding:28px 18px 20px}.curation-module__item.big .content-wrapper .content-meta__headline:first-child .content-meta__headline__wrapper h3{padding-top:0}}.curation-module__item.big .content-meta__storyType{justify-content:center}@media only screen and (max-width: 49.94em){.curation-module__item.big .content-meta__storyType{margin-bottom:0}}.curation-module__item.big .content-meta__headline{text-align:center}.curation-module__item.big .content-meta__headline.short-headline h3,.curation-module__item.big .content-meta__headline.short-headline h6{font-size:45px}.curation-module__item.big .content-meta__headline.medium-headline h3,.curation-module__item.big .content-meta__headline.medium-headline h6{font-size:32px}@media only screen and (max-width: 49.94em){.curation-module__item.big .content-meta__headline.medium-headline h3,.curation-module__item.big .content-meta__headline.medium-headline h6{font-size:30px}}.curation-module__item.big .content-meta__headline.long-headline h3,.curation-module__item.big .content-meta__headline.long-headline h6{font-size:28px}@media only screen and (max-width: 49.94em){.curation-module__item.big .content-meta__headline.long-headline h3,.curation-module__item.big .content-meta__headline.long-headline h6{font-size:24px}}@media only screen and (max-width: 49.94em){.curation-module__item.big .content-meta__headline h3,.curation-module__item.big .content-meta__headline h6{display:block;font-size:28px;padding:20px 0 0 0}.curation-module__item.big .content-meta__headline+.content-meta__byline{padding-top:10px}}.curation-module__item.big .content-meta__byline{justify-content:center}@media only screen and (max-width: 49.94em){.curation-module__item.box .curation-module__item__wrapper{display:flex;padding:15px 1.125rem;border-bottom:1px solid #e5e5e5}.curation-module__item.box .curation-module__item__wrapper .image-container-wrapper{width:40%}.curation-module__item.box .curation-module__item__wrapper .content-wrapper{width:60%}.curation-module__item.box .content-meta__headline h3,.curation-module__item.box .content-meta__headline h6{font-size:18px}.curation-module__item.box .content-meta__excerpt{display:none}.curation-module__item.box .content-wrapper,.curation-module__item.box .image-container-wrapper{padding:0}.curation-module__item.box .content-wrapper{padding-left:15px;position:static}}@media only screen and (max-width: 49.94em){.curation-module__item.tall .content-wrapper{width:60%}}@media only screen and (max-width: 63.69em){.curation-module__item.tall .content-wrapper .content-meta__excerpt{max-height:240px;overflow:hidden}}.curation-module__item.tall .content-wrapper .content-meta__excerpt p{line-height:1.9}@media only screen and (max-width: 49.94em){.curation-module__item.tall .curation-module__item__wrapper{display:flex;padding:15px;border-bottom:1px solid #e5e5e5}.curation-module__item.tall .curation-module__item__wrapper .image-container-wrapper{width:40%}.curation-module__item.tall .curation-module__item__wrapper .content-wrapper{width:60%}.curation-module__item.tall .content-meta__headline h3,.curation-module__item.tall .content-meta__headline h6{font-size:18px}.curation-module__item.tall .content-meta__excerpt{display:none}.curation-module__item.tall .content-wrapper,.curation-module__item.tall .image-container-wrapper{padding:0}.curation-module__item.tall .content-wrapper{padding-left:15px;position:static}}.curation-module__item .image-container{position:relative;padding-bottom:56.25%;overflow:hidden}.curation-module__item .image-container img,.curation-module__item .image-container video{position:absolute;top:0;left:0;width:100%}.curation-module .layout--Equal3 .content-meta__excerpt,.curation-module .layout--Equal4 .content-meta__excerpt,.curation-module .layout--Equal6 .content-meta__excerpt{display:none}.curation-module .grid .grid__zone .item .image-container{position:relative;padding-bottom:56.25%;overflow:hidden}.curation-module .grid .grid__zone .item .image-container img{position:absolute;top:0;left:0;width:100%}.curation-module .grid .grid__zone .item .content-wrapper{padding:15px}@media only screen and (max-width: 49.94em){.curation-module__item.box .content-wrapper{padding-left:10px;width:70%}.curation-module__item.box .image-container-wrapper{width:30%}}@media only screen and (max-width: 49.94em){.curation-module__item.tall .content-wrapper{padding-left:10px;width:70%}.curation-module__item.tall .image-container-wrapper{width:30%}}@media only screen and (min-width: 50em){.blog-group-theonion .layout.layout:not(.layout--Headline1){padding:18px}}.blog-group-theonion .layout.layout--Modular3,.blog-group-theonion .layout.layout--Modular4{max-height:100%}.blog-group-theonion .layout.layout--Modular3 .grid.grid--modular,.blog-group-theonion .layout.layout--Modular4 .grid.grid--modular{max-height:inherit}.blog-group-theonion .grid.grid--headline .content-wrapper{padding:55px 55px 36px}.blog-group-theonion .grid.grid--headline .content-meta__headline h3{color:#000;font-size:30px;background-color:rgba(255,255,255,0.9);padding:5px 6px 7px;line-height:1.8}.blog-group-theonion .grid.grid--headline .content-meta__headline h3 a{color:#000}.blog-group-theonion .grid.grid--headline .content-meta__storyType .storytype-label-wrapper{background-color:transparent;padding:0}.blog-group-theonion .grid.grid--headline .content-meta__storyType .storytype-label{background-color:rgba(255,255,255,0.9);color:#000;font-weight:600;padding:3px 6px 0;height:auto}.blog-group-theonion .grid.grid--equal .grid__zone{padding-bottom:0}.blog-group-theonion .curation-module__item{box-shadow:none}.blog-group-theonion .curation-module__item .content-meta__byline a,.blog-group-theonion .curation-module__item .content-meta__byline span,.blog-group-theonion .curation-module__item .content-meta__headline h3,.blog-group-theonion .curation-module__item .content-meta__headline h5,.blog-group-theonion .curation-module__item .content-meta__headline h6{font-family:"ElizabethSerif", Georgia, serif}.blog-group-theonion .curation-module__item .content-meta__headline h5 a{font-weight:bold}.blog-group-theonion .curation-module__item.big .content-meta__headline{padding:0}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item.big .content-meta__headline{margin:auto}}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item.big .content-meta__headline h3,.blog-group-theonion .curation-module__item.big .content-meta__headline h6{font-size:22px;padding:30px 18px}}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item.big .content-wrapper{padding:28px 0 0}}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item.box .content-meta__headline h3,.blog-group-theonion .curation-module__item.tall .content-meta__headline h3{font-size:20px;padding:20px 18px 0;margin:0}}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item.box .content-meta__headline h5,.blog-group-theonion .curation-module__item.box .content-meta__headline h6,.blog-group-theonion .curation-module__item.tall .content-meta__headline h5,.blog-group-theonion .curation-module__item.tall .content-meta__headline h6{font-size:16px;margin:0;padding:0}}.blog-group-theonion .curation-module__item.box .content-meta__excerpt,.blog-group-theonion .curation-module__item.tall .content-meta__excerpt{max-height:100%}.blog-group-theonion .curation-module__item .content-meta__headline{text-align:left}.blog-group-theonion .curation-module__item .content-meta__headline h5,.blog-group-theonion .curation-module__item .content-meta__headline h6{font-size:16px}.blog-group-theonion .curation-module__item .content-meta__headline h3,.blog-group-theonion .curation-module__item .content-meta__headline h6{padding:20px 0 0 0}.blog-group-theonion .curation-module__item .content-meta__headline h3{font-size:24px}.blog-group-theonion .curation-module__item .content-meta__excerpt p{font-size:15px;line-height:1.8}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item .content-meta__excerpt{display:none !important}}.blog-group-theonion .curation-module__item .content-meta__byline{font-size:15px;justify-content:flex-start}.blog-group-theonion .curation-module__item .content-meta__byline .item-author,.blog-group-theonion .curation-module__item .content-meta__byline .item-authors{display:none !important}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item .content-meta__byline{display:none !important}}.blog-group-theonion .curation-module__item .content-wrapper{align-items:flex-start;padding:0}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item .content-wrapper{padding-left:10px}}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item--tertiary-child{padding-bottom:15px}.blog-group-theonion .curation-module__item--tertiary-child:last-child{padding-bottom:0}.blog-group-theonion .curation-module__item--tertiary-child .image-container-wrapper{margin-right:0}.blog-group-theonion .curation-module__item--tertiary-child .content-wrapper{padding-left:10px}.blog-group-theonion .curation-module__item--tertiary-child .content-meta__headline h5{margin-bottom:0;padding:0}}.blog-group-theonion .curation-module__item:not(.box)+.curation-module__item,.blog-group-theonion .zone__item+.zone__item{border-top:1px solid #e5e5e5}@media only screen and (max-width: 49.94em){.blog-group-theonion .curation-module__item:not(.box)+.curation-module__item,.blog-group-theonion .zone__item+.zone__item{border-top:none}}.blog-group-theonion .grid__zone{border-left:1px solid #e5e5e5;padding:0 0 0 20px}.blog-group-theonion .grid__zone .zone__item .curation-module__item.box{border-bottom:none}.blog-group-theonion .grid__zone .zone__item:first-child .curation-module__item.box{border-bottom:1px solid #e5e5e5}@media only screen and (max-width: 49.94em){.blog-group-theonion .grid__zone{padding:0}.blog-group-theonion .grid__zone.tall{padding:15px 1.125rem 0;border-bottom:1px solid #e5e5e5}}.blog-group-theonion .grid__zone:first-child{padding-left:0;border-left:0}@media only screen and (min-width: 37.37em){body:not(.theonion) .curation-module__item:not(:last-child),body:not(.theonion) .zone__item+.zone__item:not(:last-child){padding-bottom:20px;border-bottom:1px solid #e5e5e5}}body:not(.theonion) .grid.grid--equal .grid__zone{padding-bottom:0;padding-left:0;border:0}@media only screen and (min-width: 50em){body:not(.theonion) .grid.grid--equal .grid__zone{display:grid}}body:not(.theonion) .curation-module__item{box-shadow:none}body:not(.theonion) .curation-module__item:first-child{border-top:none}@media only screen and (max-width: 49.94em){body:not(.theonion) .curation-module__item{padding-top:0;border-top:none}}body:not(.theonion) .curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper h5{font-size:18px;margin-bottom:0}body:not(.theonion) .curation-module__item--tertiary-child .content-wrapper .content-meta__headline__wrapper a{font-weight:normal;font-size:18px}body:not(.theonion) .layout--Equal3 .grid__zone,body:not(.theonion) .layout--Equal4 .grid__zone,body:not(.theonion) .layout--Equal6 .grid__zone{padding:0}body:not(.theonion) .layout--Equal3 .grid__zone.box .zone__item:not(:last-child),body:not(.theonion) .layout--Equal4 .grid__zone.box .zone__item:not(:last-child),body:not(.theonion) .layout--Equal6 .grid__zone.box .zone__item:not(:last-child){border-bottom:none}body:not(.theonion) .layout--Equal3 .curation-module__item+.curation-module__item,body:not(.theonion) .layout--Equal3 .zone__item+.zone__item,body:not(.theonion) .layout--Equal4 .curation-module__item+.curation-module__item,body:not(.theonion) .layout--Equal4 .zone__item+.zone__item,body:not(.theonion) .layout--Equal6 .curation-module__item+.curation-module__item,body:not(.theonion) .layout--Equal6 .zone__item+.zone__item{border-top:none;padding-top:0}body:not(.theonion) .grid__zone:not(.curation-module__zone__item-width-children){border-left:1px solid #e5e5e5;padding:0 0 0px 20px}@media only screen and (max-width: 49.94em){body:not(.theonion) .grid__zone:not(.curation-module__zone__item-width-children){border-left:none;padding:0}}body:not(.theonion) .grid__zone:first-child{border-left:0;padding-left:0}body:not(.theonion) .grid__zone.box{grid-gap:20px}body:not(.theonion) .grid__zone.box .zone__item{padding-top:0}body:not(.theonion) .grid__zone.box .zone__item:not(:last-child){border-bottom:1px solid #e5e5e5}.layout--Equal3 .curation-module__item .content-wrapper,.layout--Equal4 .curation-module__item .content-wrapper,.layout--Equal6 .curation-module__item .content-wrapper{bottom:0;position:relative}.layout--Equal3 .curation-module__item .content-meta__headline__wrapper,.layout--Equal4 .curation-module__item .content-meta__headline__wrapper,.layout--Equal6 .curation-module__item .content-meta__headline__wrapper{padding:0}.layout--Equal3 .image-container-wrapper,.layout--Equal4 .image-container-wrapper,.layout--Equal6 .image-container-wrapper{margin-bottom:10px}.layout--Equal3 .content-wrapper h6 a,.layout--Equal4 .content-wrapper h6 a,.layout--Equal6 .content-wrapper h6 a{color:#000}.layout--Equal3 .content-wrapper .content-meta__headline h6,.layout--Equal4 .content-wrapper .content-meta__headline h6,.layout--Equal6 .content-wrapper .content-meta__headline h6{background-color:transparent;color:#000;padding:0;font-weight:bold}.layout--Equal3 .content-wrapper .storytype-label,.layout--Equal4 .content-wrapper .storytype-label,.layout--Equal6 .content-wrapper .storytype-label{border:none;padding:0}.layout--Equal3 .content-wrapper .storytype-label--outlined,.layout--Equal4 .content-wrapper .storytype-label--outlined,.layout--Equal6 .content-wrapper .storytype-label--outlined{height:18px;line-height:18px;font-weight:600}.layout--Equal3 .content-wrapper .content-meta__byline,.layout--Equal4 .content-wrapper .content-meta__byline,.layout--Equal6 .content-wrapper .content-meta__byline{display:block;line-height:1.6}.layout--Equal3 .content-meta__storyType,.layout--Equal4 .content-meta__storyType,.layout--Equal6 .content-meta__storyType{margin-bottom:5px;border:none;line-height:18px}.layout.layout--Equal6{max-width:980px}label{display:block}input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;border-radius:0;background-color:transparent;border:0;box-shadow:none;display:block;font-size:0.875rem;font-family:"ProximaNovaCond", sans-serif;margin:0;padding:0;height:auto;width:auto;-webkit-transition:none;transition:none}input[type=date]:active,input[type=date]:disabled,input[type=date]:focus,input[type=date]:hover,input[type=datetime-local]:active,input[type=datetime-local]:disabled,input[type=datetime-local]:focus,input[type=datetime-local]:hover,input[type=datetime]:active,input[type=datetime]:disabled,input[type=datetime]:focus,input[type=datetime]:hover,input[type=email]:active,input[type=email]:disabled,input[type=email]:focus,input[type=email]:hover,input[type=month]:active,input[type=month]:disabled,input[type=month]:focus,input[type=month]:hover,input[type=number]:active,input[type=number]:disabled,input[type=number]:focus,input[type=number]:hover,input[type=password]:active,input[type=password]:disabled,input[type=password]:focus,input[type=password]:hover,input[type=search]:active,input[type=search]:disabled,input[type=search]:focus,input[type=search]:hover,input[type=tel]:active,input[type=tel]:disabled,input[type=tel]:focus,input[type=tel]:hover,input[type=text]:active,input[type=text]:disabled,input[type=text]:focus,input[type=text]:hover,input[type=time]:active,input[type=time]:disabled,input[type=time]:focus,input[type=time]:hover,input[type=url]:active,input[type=url]:disabled,input[type=url]:focus,input[type=url]:hover,input[type=week]:active,input[type=week]:disabled,input[type=week]:focus,input[type=week]:hover,textarea:active,textarea:disabled,textarea:focus,textarea:hover{background-color:transparent;outline:none}input[type=checkbox]+label,input[type=radio]+label{display:inline-block;margin-left:0;margin-right:0;margin-bottom:0}button{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;cursor:pointer;font-weight:normal;line-height:normal;margin:0;position:relative;text-decoration:none;text-align:center;border-radius:0;display:inline-block;padding:0;font-size:1rem;font-family:"ProximaNovaCond", sans-serif;background-color:transparent;color:#000;-webkit-transition:none;transition:none}button:active,button:focus,button:hover{color:#000;outline:none}label{cursor:default}.flex-video{display:block}
        ]]>
        </style>
    </head>
    <body class="kotaku blog-group-kotaku blog-recirc-group-fmgNonSatire permalink en-US f_ad_script_in_head_on f_ad_timeout_amazon_on f_ad_timeout_failsafe_on f_ad_timeout_prebid_on f_adx_permalink_text_on f_amazon_aps_tag_on f_amazon_right_rail_on f_amazon_wait_for_bids_on f_amp_skimlinks_on f_analyticstracking_on f_avclub_legacy_login_on f_bucketcookies_on f_chartbeat_powered_sidebar_on f_chartbeat_video_on f_comment_nofollow_on f_comments_taboola_ad_on f_commerce_button_inset_on f_commerce_permalink_module_on f_concurrent_editing_on f_curation_on_storytype_on f_curation_toggle_on f_custom_header_on f_custom_kinja_standalone_on f_devcon_script_on f_dfp_lineitem_opts_on f_disable_fbia_rss_on f_disable_skimlinks_on f_disable_teads_on f_disallow_api_on f_editor_save_screen_update_on f_enable_bouncex_on f_enable_html_sitemap_on f_experimental_scores_on f_featured_video_toolbar_on f_filter_old_articles_on f_frontendtiming_on f_frontpage_recentvideo_on f_fun_errorpages_on f_global_video_page_on f_header_anchor_tags_on f_hide_ellipsis_on f_images_intersect_on f_infinite_promotion_on f_infinite_scroll_on f_kinja3_cards_phase2_on f_kinja3_cards_phase2_avatars_on f_kinja3_cards_phase3_on f_kinja_video_page_on f_large_commerce_rail_on f_legacy_embiggen_on f_load_dfp_statically_on f_magma_amp_inarticle_videos_on f_magma_permalink_video_truncation_on f_magma_render_profiles_on f_magma_second_scroll_on f_magma_splashy_ad_logic_change_on f_medianet_headerbidding_on f_medianet_headerbidding_amp_on f_meta_first_on f_mobile_commerce_inset_on f_mobilead_two_nodes_on f_more_from_chartbeat_on f_native_recirc_magma_rendered_on f_native_sidebar_magma_rendered_on f_native_stream_magma_rendered_phase_2_on f_native_stream_magma_rendered_phase_3_with_excerpts_on f_new_permalink_a_on f_new_permalink_b_on f_new_static_stream_header_on f_new_story_page_boilerplates_on f_newmodalstyles_on f_newrelicrum_on f_permalink_paragraph_ads_on f_permalink_subscription_on f_piano_prod_on f_post_versioning_on f_prebid_on f_prebid_video_on f_pure_save_button_on f_recent_video_instream_on f_recirc_sidebar_on f_restore_images_on f_reviewbox_alignment_full_bleed_on f_samba_for_simplereach_on f_scroll_vendor_on f_share_tools_on f_share_tools_footer_on f_shortpost_nofollow_on f_sidebar_ad_whitespace_on f_simple_image_lazyload_on f_simplereach_ad_tag_on f_simplereach_expanded_on f_slideshow_on f_smartcrop_on f_sourcepoint_ccpa_on f_story_type_stream_below_6_on f_storytype_boilerplate_on f_subscription_module_amp_on f_subscription_module_applenews_on f_theonion_podcast_player_on f_tradedesk_pixel_on f_video_upload_captions_on blog-group-kotaku">
        <div id="splashy-ad-container-top" class="splashy-ad-container no-overflow" style="display:none">
            <div is="bulbs-dfp" class="ad-container dfp dfp-slot-SPLASHY_TOP ad-splashy-top" data-ad-unit="SPLASHY_TOP" data-targeting="{&quot;pos&quot;:&quot;splashytop&quot;}"></div>
        </div>
        <div id="trackers"></div>
        <div>
            <div class="js_mobile-nav"></div>
            <div class="js_topbar sc-17y8tyw-0 zVObM">
                <div class="vuc0jk-0 hVJsES">
                    <ul class="vuc0jk-1 hyLaMq">
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;avclub.com&quot;,{&quot;metric20&quot;:1}]]" href="//avclub.com">The A.V. Club</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;deadspin.com&quot;,{&quot;metric20&quot;:1}]]" href="//deadspin.com">Deadspin</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;gizmodo.com&quot;,{&quot;metric20&quot;:1}]]" href="//gizmodo.com">Gizmodo</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;jalopnik.com&quot;,{&quot;metric20&quot;:1}]]" href="//jalopnik.com">Jalopnik</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;jezebel.com&quot;,{&quot;metric20&quot;:1}]]" href="//jezebel.com">Jezebel</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;kotaku.com&quot;,{&quot;metric20&quot;:1}]]" href="//kotaku.com">Kotaku</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;lifehacker.com&quot;,{&quot;metric20&quot;:1}]]" href="//lifehacker.com">Lifehacker</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;theroot.com&quot;,{&quot;metric20&quot;:1}]]" href="//theroot.com">The Root</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;thetakeout.com&quot;,{&quot;metric20&quot;:1}]]" href="//thetakeout.com">The Takeout</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;theonion.com&quot;,{&quot;metric20&quot;:1}]]" href="//theonion.com">The Onion</a>
                        </li>
                        <li class="vuc0jk-2 cxfwkg">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Network navigation&quot;,&quot;Network Blog Click&quot;,&quot;theinventory.com&quot;,{&quot;metric20&quot;:1}]]" href="//theinventory.com">The Inventory</a>
                        </li>
                    </ul>
                </div>
            </div>
            <div class="js_header">
                <div class="js_header-container sc-1f6xobn-9 cLvRyM">
                    <div class="js_global-nav sc-1f6xobn-8 hElAzM">
                        <div class="sc-1f6xobn-7 eQCLWh">
                            <div class="sc-1f6xobn-0 fBOpXK">
                                <div class="sc-1f6xobn-13 hoiFaE">
                                    <span class="overhang-wrapper sc-101yw2y-5 ebBaTT"><a href="//kotaku.com" title="Kotaku" class="sc-8vrmk6-0 fPlCjx">
                                    <div class="sc-2d8w30-0 jRvBRt">
                                        <div class="kotaku sc-2d8w30-1 iHLoZR">
                                            <span class="overhang-wrapper sc-101yw2y-5 ebBaTT"><svg xmlns="http://www.w3.org/2000/svg" width="212" height="39" aria-label="Kotaku logo" viewbox="0 0 212 39">
                                            <path fill="#FBC000" fill-rule="evenodd" d="M191.72 5.28l1.2 17.98-8.58.16-1-18.37-6.51-.17.94 21.03c.13 3 2.28 5.38 4.77 5.29l12.99-.49c2.3-.09 3.97-2.48 3.75-5.33l-1.5-19.93-6.06-.17zm13.1 1.62c-.2-2.61-1.88-4.8-3.78-4.88l-1.74-.07.64 9.67 5.22.08-.34-4.8zm6.8 0c-.23-2.61-1.9-4.8-3.77-4.87l-1.71-.08.72 9.67 5.14.08-.39-4.8zm-60.2-3l.2 28.27 2.58-.1c2.85-.1 5.1-2.76 5.04-5.92L158.9 4.1l-7.46-.2zm7.83 10.72l8.01.04c2.62.01 3.8 1.18 4.79 3.02l9.66 20.68c-1.07 1.4-7.06.8-9.53-4.74l-5.12-11.27-.45.01-.4.01c-2.76.04-7.05-2.58-6.96-7.74zM143.39 4.23l-12.1-.33c-5.75-.15-7.27 4.83-6.34 8.06l15.81.14-.1 12.1-10.89.2.05-2.14 3.2-.04c5.72-.08 7.1-4.77 6.17-7.94h-.04l.02-.01-11.92-.05c-3.09-.01-5.72 2.61-5.84 5.9l-.04 1.05-.22 6.04c-.13 3.39 2.39 6.06 5.57 5.94l16.55-.63c2.91-.1 5.24-2.8 5.23-5.97l-.05-16.77c-.02-3-2.26-5.47-5.06-5.55zm-39.82 24.5a5.95 5.95 0 0 0 6.33 6.37l3.32-.12 1.08-21.27-9.75-.06-.98 15.08zm13.46-17.03c6.17.05 7.73-5 6.8-8.21l-20.86-.56c-6.64-.18-7.88 5.14-6.96 8.58l21.02.19zM88.76 2.5l-19.43-.54c-7.58-.21-10.1 5.6-9.22 9.38l24.53.23-1.25 14-14.16.27 1.45-12.99-10.9-.07-2.09 16.38c-.5 3.95 2.53 7.07 6.71 6.9l21.57-.8a7.76 7.76 0 0 0 7.31-6.98L94.75 8.9a5.98 5.98 0 0 0-5.99-6.4zm-69.34-.55L12.7 38.02l4.22-.16c4.65-.18 8.92-3.63 9.6-7.67l4.74-27.9-11.84-.34zm11.06 12.68l13.02.05c4.23.02 5.87 1.5 7.02 3.81l8.1 19.65c-2.05 1.8-11.6 1.18-14.3-5.88l-2.96-7.84h-.73l-.63.01c-4.52.06-10.9-3.25-9.52-9.8zM15.7 12.67l1.9-10.51-6.57-.2C1.9 1.7-.63 8.26.12 12.53l15.58.16zm22.73 1.96l16.8-3.68c3.16-1.93 4.51-8.9 2.3-10.95l-16.3 3.95c-2.77 1.5-5.95 5.86-2.8 10.68zm124.62 0l8.93-4.84c3.1-2.63 3.97-6.97 1.32-9.79l-9.64 6.05c-3.44 2.32-2.92 5.76-.61 8.58z"></path></svg></span>
                                        </div>
                                    </div></a></span>
                                    <div class="sc-1f6xobn-14 miWDp">
                                        <span class="overhang-wrapper sc-101yw2y-5 ebBaTT">Gaming Reviews, News, Tips and More.</span>
                                    </div>
                                </div>
                                <div class="sc-1f6xobn-15 Lwydz">
                                    <span class="overhang-wrapper sc-101yw2y-5 ebBaTT"><a href="/search" class="sc-1f6xobn-1 sc-1f6xobn-4 YrjCq"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Search24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M15.31 1a7.69 7.69 0 1 1-5.06 13.48l-8.37 8.37a.51.51 0 1 1-.73-.72l8.37-8.38A7.69 7.69 0 0 1 15.31 1zm0 1.03a6.66 6.66 0 1 0 0 13.32 6.66 6.66 0 0 0 0-13.32z"></path></svg></span></a><a href="https://store.kotaku.com" target="_blank" data-ga="[[&quot;Sub navigation&quot;, &quot;Shop button click&quot;]]" class="sc-1f6xobn-1 js_header-shop sc-1f6xobn-3 cKiLPQ"><span class="iyvn34-1 jBPzMI"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Cart icon" viewbox="0 0 18 18">
                                    <path fill-rule="evenodd" d="M2.5 2c.16 0 .3.07.4.2l.05.08L3.8 4h13.7a.5.5 0 0 1 .5.58l-.03.08-2 6a.5.5 0 0 1-.38.33l-.09.01H4.82l.12 1h8.56a.5.5 0 0 1 .17.03 2 2 0 1 1-1.4.97H8.73a2 2 0 1 1-3.46 0H4.5a.5.5 0 0 1-.48-.36L4 12.56l-.99-7.91L2.2 3H.5a.5.5 0 0 1-.5-.41V2.5A.5.5 0 0 1 .41 2H2.5zM14 13a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-7 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm-2.3-3h10.44l1.66-5H4.07l.62 5z"></path></svg></span></span>Shop</a><a href="/newsletter" target="_blank" data-ga="[[&quot;Sub navigation&quot;, &quot;Subscribe button click&quot;]]" class="sc-1f6xobn-1 js_header-newsletter sc-1f6xobn-3 cKiLPQ"><span class="iyvn34-1 jBPzMI"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Mail icon" viewbox="0 0 18 18">
                                    <path fill-rule="evenodd" d="M14.5 3A2.5 2.5 0 0 1 17 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 1 12.5v-7A2.5 2.5 0 0 1 3.5 3h11zM2 5.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7l-.03-.3-6.34 5.67a.5.5 0 0 1-.38.13.5.5 0 0 1-.38-.13l-6.7-6-.02-.02c-.1.2-.15.41-.15.64zM14.5 4h-11c-.24 0-.45.05-.65.14l6.4 5.73 6.19-5.54c-.26-.2-.58-.33-.93-.33z"></path></svg></span></span>Subscribe</a></span>
                                    <div class="js_user-button">
                                        <div class="sc-1il3uru-2 iUbnXK">
                                            <a class="js_header-userbutton"><span class="sc-1il3uru-3 gBMIDl"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="UserFilled icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M11.28 10.23c.02.02.05.03.08-.06l.21-.33.06-.09c.44-.69.64-1.06.96-1.87.66-1.7.4-3.9-.57-5.3A3.32 3.32 0 0 0 9 1c-1.47 0-2.25.45-3.03 1.57a6.04 6.04 0 0 0-.56 5.3 10.24 10.24 0 0 0 1.27 2.35c0 .03-.03.04-.16.1l-1.94.79-.06.02c-1.3.54-1.88.78-2.01.88a3 3 0 0 0-1.23 1.97A52.5 52.5 0 0 0 1 16.46c-.03.3.2.54.49.54l15-.01a.5.5 0 0 0 .5-.54 50.52 50.52 0 0 0-.27-2.43l-.09-.39a3 3 0 0 0-1.15-1.62c-.13-.1-.21-.13-2.06-.88h-.02a30.86 30.86 0 0 1-2.16-.95l.03.05z"></path></svg></span></span></a>
                                        </div>
                                    </div><a class="sc-1f6xobn-1 js_mobile-header-link sc-1f6xobn-2 djRjMr"><span class="icon-close iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Close24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M21.73 2.15c.2.2.2.51 0 .7l-9.08 9.09 9.2 9.2c.18.18.2.45.06.64l-.06.07a.5.5 0 0 1-.7 0l-9.21-9.2-9.08 9.08a.5.5 0 0 1-.71-.71l9.08-9.08-8.96-8.96a.5.5 0 0 1-.06-.64l.06-.07c.2-.2.52-.2.71 0l8.96 8.96 9.08-9.08c.2-.2.51-.2.7 0z"></path></svg></span><span class="icon-hamburger iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Hamburger24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M21.5 21a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5zm0-9a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5zm0-9a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5z"></path></svg></span></a>
                                </div>
                            </div>
                            <nav class="dfwuc8-1 falNPB">
                                <a data-key="latest" href="//kotaku.com/" class="dfwuc8-0 fVpzWD"><span>Latest</span></a><a data-tagcanonical="video" data-index="1" href="/c/video" class="dfwuc8-0 fVpzWD"><span>Video</span></a><a data-blogid="1633980057" data-index="2" href="https://thebests.kotaku.com" class="dfwuc8-0 fVpzWD"><span>The Bests</span></a><a data-index="3" href="https://kotaku.com/c/podcast" class="dfwuc8-0 fVpzWD"><span>Splitscreen</span></a><a data-tagcanonical="highlight-reel" data-index="4" href="/c/highlight-reel" class="dfwuc8-0 fVpzWD"><span>Highlight Reel</span></a><a data-blogid="1538697436" data-index="5" href="https://cosplay.kotaku.com" class="dfwuc8-0 fVpzWD"><span>Cosplay</span></a><a data-tagcanonical="review" data-index="6" href="/c/review" class="dfwuc8-0 fVpzWD"><span>Review</span></a><a data-index="7" href="https://store.kotaku.com/" class="dfwuc8-0 fVpzWD"><span>Shop</span></a>
                            </nav>
                            <div class="wz9htl-0 bHuckL">
                                Gaming Reviews, News, Tips and More.
                            </div>
                        </div>
                        <div class="header-bar"></div>
                    </div>
                    <div class="js_header-disable-overlay sc-1f6xobn-16 lmomFr"></div>
                    <div class="js_hamburger-menu-container"></div>
                    <div class="js_scrollback-nav sc-1f6xobn-17 kqthke">
                        <div class="sc-1f6xobn-8 hWQHjO">
                            <div class="sc-1f6xobn-0 ggPaHg">
                                <div class="sc-1f6xobn-13 ldbUeF">
                                    <a href="//kotaku.com" title="Kotaku" class="sc-8vrmk6-0 fPlCjx">
                                    <div class="sc-2d8w30-0 jRvBRt">
                                        <div class="kotaku sc-2d8w30-1 iHLoZR">
                                            <svg xmlns="http://www.w3.org/2000/svg" width="212" height="39" aria-label="Kotaku logo" viewbox="0 0 212 39">
                                            <path fill="#FBC000" fill-rule="evenodd" d="M191.72 5.28l1.2 17.98-8.58.16-1-18.37-6.51-.17.94 21.03c.13 3 2.28 5.38 4.77 5.29l12.99-.49c2.3-.09 3.97-2.48 3.75-5.33l-1.5-19.93-6.06-.17zm13.1 1.62c-.2-2.61-1.88-4.8-3.78-4.88l-1.74-.07.64 9.67 5.22.08-.34-4.8zm6.8 0c-.23-2.61-1.9-4.8-3.77-4.87l-1.71-.08.72 9.67 5.14.08-.39-4.8zm-60.2-3l.2 28.27 2.58-.1c2.85-.1 5.1-2.76 5.04-5.92L158.9 4.1l-7.46-.2zm7.83 10.72l8.01.04c2.62.01 3.8 1.18 4.79 3.02l9.66 20.68c-1.07 1.4-7.06.8-9.53-4.74l-5.12-11.27-.45.01-.4.01c-2.76.04-7.05-2.58-6.96-7.74zM143.39 4.23l-12.1-.33c-5.75-.15-7.27 4.83-6.34 8.06l15.81.14-.1 12.1-10.89.2.05-2.14 3.2-.04c5.72-.08 7.1-4.77 6.17-7.94h-.04l.02-.01-11.92-.05c-3.09-.01-5.72 2.61-5.84 5.9l-.04 1.05-.22 6.04c-.13 3.39 2.39 6.06 5.57 5.94l16.55-.63c2.91-.1 5.24-2.8 5.23-5.97l-.05-16.77c-.02-3-2.26-5.47-5.06-5.55zm-39.82 24.5a5.95 5.95 0 0 0 6.33 6.37l3.32-.12 1.08-21.27-9.75-.06-.98 15.08zm13.46-17.03c6.17.05 7.73-5 6.8-8.21l-20.86-.56c-6.64-.18-7.88 5.14-6.96 8.58l21.02.19zM88.76 2.5l-19.43-.54c-7.58-.21-10.1 5.6-9.22 9.38l24.53.23-1.25 14-14.16.27 1.45-12.99-10.9-.07-2.09 16.38c-.5 3.95 2.53 7.07 6.71 6.9l21.57-.8a7.76 7.76 0 0 0 7.31-6.98L94.75 8.9a5.98 5.98 0 0 0-5.99-6.4zm-69.34-.55L12.7 38.02l4.22-.16c4.65-.18 8.92-3.63 9.6-7.67l4.74-27.9-11.84-.34zm11.06 12.68l13.02.05c4.23.02 5.87 1.5 7.02 3.81l8.1 19.65c-2.05 1.8-11.6 1.18-14.3-5.88l-2.96-7.84h-.73l-.63.01c-4.52.06-10.9-3.25-9.52-9.8zM15.7 12.67l1.9-10.51-6.57-.2C1.9 1.7-.63 8.26.12 12.53l15.58.16zm22.73 1.96l16.8-3.68c3.16-1.93 4.51-8.9 2.3-10.95l-16.3 3.95c-2.77 1.5-5.95 5.86-2.8 10.68zm124.62 0l8.93-4.84c3.1-2.63 3.97-6.97 1.32-9.79l-9.64 6.05c-3.44 2.32-2.92 5.76-.61 8.58z"></path></svg>
                                        </div>
                                    </div></a>
                                </div>
                                <nav class="dfwuc8-1 cFfYvh">
                                    <div class="dfwuc8-2 jflTDT"></div><a data-key="latest" href="//kotaku.com/" class="dfwuc8-0 jDxnTz"><span>Latest</span></a><a data-tagcanonical="video" data-index="1" href="/c/video" class="dfwuc8-0 jDxnTz"><span>Video</span></a><a data-blogid="1633980057" data-index="2" href="https://thebests.kotaku.com" class="dfwuc8-0 jDxnTz"><span>The Bests</span></a><a data-index="3" href="https://kotaku.com/c/podcast" class="dfwuc8-0 jDxnTz"><span>Splitscreen</span></a><a data-tagcanonical="highlight-reel" data-index="4" href="/c/highlight-reel" class="dfwuc8-0 jDxnTz"><span>Highlight Reel</span></a><a data-blogid="1538697436" data-index="5" href="https://cosplay.kotaku.com" class="dfwuc8-0 jDxnTz"><span>Cosplay</span></a><a data-tagcanonical="review" data-index="6" href="/c/review" class="dfwuc8-0 jDxnTz"><span>Review</span></a><a data-index="7" href="https://store.kotaku.com/" class="dfwuc8-0 jDxnTz"><span>Shop</span></a>
                                </nav>
                                <div class="sc-1f6xobn-15 bNzDDF">
                                    <a href="/search" class="sc-1f6xobn-1 sc-1f6xobn-4 YrjCq"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Search24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M15.31 1a7.69 7.69 0 1 1-5.06 13.48l-8.37 8.37a.51.51 0 1 1-.73-.72l8.37-8.38A7.69 7.69 0 0 1 15.31 1zm0 1.03a6.66 6.66 0 1 0 0 13.32 6.66 6.66 0 0 0 0-13.32z"></path></svg></span></a>
                                    <div class="js_user-button">
                                        <div class="sc-1il3uru-2 iUbnXK">
                                            <a class="js_header-userbutton"><span class="sc-1il3uru-3 gBMIDl"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="UserFilled icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M11.28 10.23c.02.02.05.03.08-.06l.21-.33.06-.09c.44-.69.64-1.06.96-1.87.66-1.7.4-3.9-.57-5.3A3.32 3.32 0 0 0 9 1c-1.47 0-2.25.45-3.03 1.57a6.04 6.04 0 0 0-.56 5.3 10.24 10.24 0 0 0 1.27 2.35c0 .03-.03.04-.16.1l-1.94.79-.06.02c-1.3.54-1.88.78-2.01.88a3 3 0 0 0-1.23 1.97A52.5 52.5 0 0 0 1 16.46c-.03.3.2.54.49.54l15-.01a.5.5 0 0 0 .5-.54 50.52 50.52 0 0 0-.27-2.43l-.09-.39a3 3 0 0 0-1.15-1.62c-.13-.1-.21-.13-2.06-.88h-.02a30.86 30.86 0 0 1-2.16-.95l.03.05z"></path></svg></span></span></a>
                                        </div>
                                    </div><a class="sc-1f6xobn-1 js_mobile-header-link sc-1f6xobn-2 djRjMr"><span class="icon-close iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Close24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M21.73 2.15c.2.2.2.51 0 .7l-9.08 9.09 9.2 9.2c.18.18.2.45.06.64l-.06.07a.5.5 0 0 1-.7 0l-9.21-9.2-9.08 9.08a.5.5 0 0 1-.71-.71l9.08-9.08-8.96-8.96a.5.5 0 0 1-.06-.64l.06-.07c.2-.2.52-.2.71 0l8.96 8.96 9.08-9.08c.2-.2.51-.2.7 0z"></path></svg></span><span class="icon-hamburger iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-label="Hamburger24 icon" viewbox="0 0 24 24">
                                    <path fill-rule="evenodd" d="M21.5 21a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5zm0-9a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5zm0-9a.5.5 0 0 1 .09 1H2.5a.5.5 0 0 1-.09-1H21.5z"></path></svg></span></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="initWrappers sc-101yw2y-0 eSuPFB"></div>
            <div class="js_sticky-top-ad sc-101yw2y-6 jOQyEj">
                <div class="sc-1jotqfp-0 sc-1jotqfp-2 jZQBpt">
                    <div is="bulbs-dfp" class="ad-container dfp dfp-slot-TOP_BANNER ad-top-banner" data-ad-unit="TOP_BANNER" data-targeting="{&quot;pos&quot;:&quot;top&quot;}"></div>
                    <div class="bt-wrapper"></div>
                </div>
            </div>
            <div class="sc-157agsr-1 ciLbRL">
                <div class="js_privacy_policy"></div>
                <div class="sc-1lmpmkf-1 irMuRt">
                    <header class="sc-1efpnfq-1 dLONoQ">
                        <h1 class="sc-1efpnfq-0 kwUvxw">
                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Permalink page click - post header&quot;,&quot;standard&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577">The Spectacular Story Of <em>Metroid</em>, One Of Gaming's Richest Universes</a>
                        </h1>
                    </header>
                </div>
            </div>
            <div class="sc-157agsr-0 cjbzCR">
                <aside class="ynugv2-2 fLwIBi">
                    <div class="sc-101yw2y-4 icfmop">
                        <div class="sc-101yw2y-7 enFBrX">
                            <div class="ynugv2-1 hebJFs">
                                <div is="bulbs-dfp" class="ad-container dfp dfp-slot-LEFT_TOP ad-left-top" data-ad-unit="LEFT_TOP" data-targeting="{&quot;pos&quot;:&quot;left_top&quot;}"></div>
                                <div class="bt-wrapper"></div>
                            </div>
                        </div>
                        <div id="sidebar_wrapper" class="ynugv2-3 jNiKtz">
                            <div class="js_sidebar_sticky_container sc-1ez0oyg-0 ktESSG">
                                <div class="sc-1ez0oyg-1 etpvfO">
                                    <div>
                                        <div class="js_sidebar-edit-video ynugv2-0 eFcvZm">
                                            <div class="instream-native-video instream-permalink instream-native-video--desktop bxm4mm-0 gtgww"></div>
                                        </div>
                                        <div id="trending_wrapper" class="ynugv2-0 gVWJry">
                                            <div id="trending-module" class="i2qujp-3 fVlnpj">
                                                <header>
                                                    <h2>
                                                        <strong>You</strong> may also like
                                                    </h2>
                                                </header>
                                                <div class="trending-reel i2qujp-2 cclgoe">
                                                    <div class="sc-1m3f1n9-0 jIBiCM">
                                                        <a class="thumbnail active sc-1m3f1n9-1 dXPirX js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position 1&quot;,&quot;https://gizmodo.com/trump-shocked-to-learn-3m-selling-masks-overseas-after-1842658120&quot;,{&quot;metric16&quot;:1}]]" data-index="0" href="https://gizmodo.com/trump-shocked-to-learn-3m-selling-masks-overseas-after-1842658120">
                                                        <div class="js_lazy-image ejta2c-0 kHCVke">
                                                            <div>
                                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/ecojdjwftxntdhnbgdu0.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/ecojdjwftxntdhnbgdu0.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/ecojdjwftxntdhnbgdu0.jpg 80w" aria-label="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" draggable="auto" data-chomp-id="ecojdjwftxntdhnbgdu0" data-format="jpg" data-alt="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" data-anim-src="" />
                                                            </div>
                                                        </div></a><a class="thumbnail sc-1m3f1n9-1 XVppW js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position 2&quot;,&quot;https://gizmodo.com/i-solved-the-andrew-cuomo-nipple-mystery-1842643782&quot;,{&quot;metric16&quot;:1}]]" data-index="1" href="https://gizmodo.com/i-solved-the-andrew-cuomo-nipple-mystery-1842643782">
                                                        <div class="js_lazy-image ejta2c-0 kHCVke">
                                                            <div>
                                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/m282rxfjd2sdgpvusqco.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/m282rxfjd2sdgpvusqco.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/m282rxfjd2sdgpvusqco.jpg 80w" aria-label="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" draggable="auto" data-chomp-id="m282rxfjd2sdgpvusqco" data-format="jpg" data-alt="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" data-anim-src="" />
                                                            </div>
                                                        </div></a><a class="thumbnail sc-1m3f1n9-1 bEUjwS js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position 3&quot;,&quot;https://twocents.lifehacker.com/heres-when-youll-get-your-coronavirus-relief-check-1842652396&quot;,{&quot;metric16&quot;:1}]]" data-index="2" href="https://twocents.lifehacker.com/heres-when-youll-get-your-coronavirus-relief-check-1842652396">
                                                        <div class="js_lazy-image ejta2c-0 kHCVke">
                                                            <div>
                                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Here's When You'll Get Your Coronavirus Relief Check" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/gpf2pi3edjf1zumpctbg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/gpf2pi3edjf1zumpctbg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/gpf2pi3edjf1zumpctbg.jpg 80w" aria-label="Here's When You'll Get Your Coronavirus Relief Check" draggable="auto" data-chomp-id="gpf2pi3edjf1zumpctbg" data-format="jpg" data-alt="Here's When You'll Get Your Coronavirus Relief Check" data-anim-src="" />
                                                            </div>
                                                        </div></a>
                                                    </div>
                                                    <div class="progress sc-17xh7h5-0 ldeICr">
                                                        <div class="sc-17xh7h5-1 eNdIIE">
                                                            <div class="segment ticking sc-17xh7h5-2 kOFjhT"></div>
                                                        </div>
                                                        <div class="sc-17xh7h5-1 eNdIIE">
                                                            <div class="segment sc-17xh7h5-2 kOFjhT"></div>
                                                        </div>
                                                        <div class="sc-17xh7h5-1 eNdIIE">
                                                            <div class="segment sc-17xh7h5-2 kOFjhT"></div>
                                                        </div>
                                                    </div>
                                                    <div class="i2qujp-0 esIpx">
                                                        <div class="i2qujp-1 bspgcg">
                                                            <a class="sc-15qf33u-5 kFeogc js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position main&quot;,&quot;https://gizmodo.com/trump-shocked-to-learn-3m-selling-masks-overseas-after-1842658120&quot;,{&quot;metric16&quot;:1}]]" href="https://gizmodo.com/trump-shocked-to-learn-3m-selling-masks-overseas-after-1842658120">
                                                            <div class="reel active sc-15qf33u-0 bUDpTX" data-index="0">
                                                                <div class="js_lazy-image ejta2c-0 kHCVke">
                                                                    <div>
                                                                        <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/ecojdjwftxntdhnbgdu0.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/ecojdjwftxntdhnbgdu0.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/ecojdjwftxntdhnbgdu0.jpg 80w" aria-label="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" draggable="auto" data-chomp-id="ecojdjwftxntdhnbgdu0" data-format="jpg" data-alt="Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act" data-anim-src="" />
                                                                    </div>
                                                                </div>
                                                                <div class="sc-15qf33u-2 sc-15qf33u-4 izUYtn">
                                                                    <strong>Gizmodo</strong>
                                                                </div>
                                                                <h4 class="sc-15qf33u-1 dsTWpc">
                                                                    Trump Shocked to Learn 3M Selling Masks Overseas After He Failed to Invoke Defense Production Act
                                                                </h4>
                                                                <div>
                                                                    <div class="sc-15qf33u-2 sc-15qf33u-3 cLsyOJ">
                                                                        <strong>Matt Novak</strong>
                                                                    </div><time class="sc-15qf33u-6 ixUPOi">Today 7:30AM</time>
                                                                </div>
                                                            </div></a><a class="sc-15qf33u-5 kFeogc js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position main&quot;,&quot;https://gizmodo.com/i-solved-the-andrew-cuomo-nipple-mystery-1842643782&quot;,{&quot;metric16&quot;:1}]]" href="https://gizmodo.com/i-solved-the-andrew-cuomo-nipple-mystery-1842643782">
                                                            <div class="reel sc-15qf33u-0 fwSvTs" data-index="1">
                                                                <div class="js_lazy-image ejta2c-0 kHCVke">
                                                                    <div>
                                                                        <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/m282rxfjd2sdgpvusqco.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/m282rxfjd2sdgpvusqco.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/m282rxfjd2sdgpvusqco.jpg 80w" aria-label="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" draggable="auto" data-chomp-id="m282rxfjd2sdgpvusqco" data-format="jpg" data-alt="I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery" data-anim-src="" />
                                                                    </div>
                                                                </div>
                                                                <div class="sc-15qf33u-2 sc-15qf33u-4 izUYtn">
                                                                    <strong>Gizmodo</strong>
                                                                </div>
                                                                <h4 class="sc-15qf33u-1 dsTWpc">
                                                                    I Can’t Believe You Fuckers Made Me Solve the Andrew Cuomo Nipple Mystery
                                                                </h4>
                                                                <div>
                                                                    <div class="sc-15qf33u-2 sc-15qf33u-3 cLsyOJ">
                                                                        <strong>Hudson Hongo</strong>
                                                                    </div><time class="sc-15qf33u-6 ixUPOi">Yesterday 12:35PM</time>
                                                                </div>
                                                            </div></a><a class="sc-15qf33u-5 kFeogc js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Trending module click&quot;,&quot;position main&quot;,&quot;https://twocents.lifehacker.com/heres-when-youll-get-your-coronavirus-relief-check-1842652396&quot;,{&quot;metric16&quot;:1}]]" href="https://twocents.lifehacker.com/heres-when-youll-get-your-coronavirus-relief-check-1842652396">
                                                            <div class="reel sc-15qf33u-0 gIjPOj" data-index="2">
                                                                <div class="js_lazy-image ejta2c-0 kHCVke">
                                                                    <div>
                                                                        <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Here's When You'll Get Your Coronavirus Relief Check" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/gpf2pi3edjf1zumpctbg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/gpf2pi3edjf1zumpctbg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/gpf2pi3edjf1zumpctbg.jpg 80w" aria-label="Here's When You'll Get Your Coronavirus Relief Check" draggable="auto" data-chomp-id="gpf2pi3edjf1zumpctbg" data-format="jpg" data-alt="Here's When You'll Get Your Coronavirus Relief Check" data-anim-src="" />
                                                                    </div>
                                                                </div>
                                                                <div class="sc-15qf33u-2 sc-15qf33u-4 izUYtn">
                                                                    <strong>Two Cents</strong>
                                                                </div>
                                                                <h4 class="sc-15qf33u-1 dsTWpc">
                                                                    Here's When You'll Get Your Coronavirus Relief Check
                                                                </h4>
                                                                <div>
                                                                    <div class="sc-15qf33u-2 sc-15qf33u-3 cLsyOJ">
                                                                        <strong>Lisa Rowan</strong>
                                                                    </div><time class="sc-15qf33u-6 ixUPOi">An hour ago</time>
                                                                </div>
                                                            </div></a>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="ynugv2-0 eFcvZm">
                                            <div class="sc-1ez0oyg-0 ehkuKX">
                                                <div class="sc-1ez0oyg-1 etpvfO">
                                                    <div is="bulbs-dfp" class="ad-container dfp dfp-slot-LEFT_RAIL ad-left-rail" data-ad-unit="LEFT_RAIL" data-targeting="{&quot;pos&quot;:&quot;left&quot;}"></div>
                                                    <div class="bt-wrapper"></div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="ynugv2-0 eFcvZm">
                                <div class="sc-5f1ako-3 iaPcjQ">
                                    <h3 class="sc-5f1ako-0 kBeEqh">
                                        Popular Deals on The Inventory
                                    </h3>
                                    <div class="sc-5f1ako-1 gOGycY">
                                        <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular commerce click&quot;,&quot;position 0&quot;,&quot;https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540&quot;]]" href="https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540?ks=commercerecirc_permalink">
                                        <div class="js_lazy-image ejta2c-0 kHCVke">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/fmxkv4w3fn53bgahlsls.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/fmxkv4w3fn53bgahlsls.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/fmxkv4w3fn53bgahlsls.jpg 80w" aria-label="Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More" draggable="auto" data-chomp-id="fmxkv4w3fn53bgahlsls" data-format="jpg" data-alt="Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More" data-anim-src="" />
                                            </div>
                                        </div></a>
                                        <div class="sc-5f1ako-2 wcAhP">
                                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular commerce click&quot;,&quot;position 0&quot;,&quot;https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540&quot;]]" href="https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540?ks=commercerecirc_permalink">
                                            <h4 class="sc-759qgu-0 knZcug">
                                                Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More
                                            </h4></a>
                                        </div>
                                    </div>
                                    <aside class="sc-1auy74q-0 hgqaKZ">
                                        <div class="sc-1auy74q-3 brydAF">
                                            <a href="https://www.amazon.com/dp/B07TGNFVWV?ascsubtag=1c48de501f23bcab3833c51f4fa330ef6b83bdba&amp;linkCode=ogi&amp;psc=1&amp;smid=A3ODHND3J0WMC8&amp;tag=kinja-20&amp;th=1" data-linktype="[t|mod-title" data-ga="[[&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - price click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;ns:unique&quot;,&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - price click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;Popular commerce click&quot;,&quot;position 1&quot;,&quot;https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105&quot;]]" target="_blank" rel="noopener noreferrer" class="sc-1auy74q-22 fVaIqa"><span>$<!-- -->45</span></a>
                                            <div class="sc-1auy74q-7 iyJvbB">
                                                <a href="https://www.amazon.com/dp/B07TGNFVWV?ascsubtag=1c48de501f23bcab3833c51f4fa330ef6b83bdba&amp;linkCode=ogi&amp;psc=1&amp;smid=A3ODHND3J0WMC8&amp;tag=kinja-20&amp;th=1" data-linktype="[t|mod-image" data-ga="[[&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - image click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;ns:unique&quot;,&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - image click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;Popular commerce click&quot;,&quot;position 1&quot;,&quot;https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105&quot;]]" target="_blank" rel="noopener noreferrer">
                                                <div class="js_lazy-image sc-1auy74q-14 hVwDer">
                                                    <div>
                                                        <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/ffyphnwprvqfff3cthhn.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/ffyphnwprvqfff3cthhn.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/ffyphnwprvqfff3cthhn.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/ffyphnwprvqfff3cthhn.jpg 800w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_1600/ffyphnwprvqfff3cthhn.jpg 1600w" sizes="180px" draggable="auto" data-chomp-id="ffyphnwprvqfff3cthhn" data-format="jpg" data-anim-src="" />
                                                    </div>
                                                </div></a>
                                            </div>
                                            <div class="sc-1auy74q-6 yLgPx">
                                                <div class="sc-1auy74q-7 eVhsmG">
                                                    <header class="sc-1auy74q-8 krajXX">
                                                        <h2>
                                                            <a href="https://www.amazon.com/dp/B07TGNFVWV?ascsubtag=1c48de501f23bcab3833c51f4fa330ef6b83bdba&amp;linkCode=ogi&amp;psc=1&amp;smid=A3ODHND3J0WMC8&amp;tag=kinja-20&amp;th=1" data-linktype="[t|mod-title" data-ga="[[&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - product title click'&quot;,&quot;,B07TGNFVWV&quot;],[&quot;ns:unique&quot;,&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - product title click'&quot;,&quot;,B07TGNFVWV&quot;],[&quot;Popular commerce click&quot;,&quot;position 1&quot;,&quot;https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105&quot;]]" target="_blank" rel="noopener noreferrer">Xbox Game Pass Ultimate: 3 Month Membership [Digital Code]</a>
                                                        </h2>
                                                    </header>
                                                    <div class="sc-1auy74q-10 bLXZFj">
                                                        <span class="sc-1auy74q-1 gkWXma">From <span>amazon</span></span>
                                                    </div>
                                                    <div class="sc-1auy74q-11 hByOxy">
                                                        <span class="sc-1auy74q-12 bSrIEu">786 purchased by readers</span><span class="sc-1auy74q-13 fivNdM">G/O Media may get a commission</span>
                                                    </div>
                                                </div>
                                            </div>
                                            <div class="sc-1auy74q-7 ekphdR">
                                                <a href="https://www.amazon.com/dp/B07TGNFVWV?ascsubtag=1c48de501f23bcab3833c51f4fa330ef6b83bdba&amp;linkCode=ogi&amp;psc=1&amp;smid=A3ODHND3J0WMC8&amp;tag=kinja-20&amp;th=1" data-linktype="[t|mod-button" data-ga="[[&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - Add to Cart click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;ns:unique&quot;,&quot;Commerce Inset Clicks&quot;,&quot;Commerce inset - Add to Cart click&quot;,&quot;,B07TGNFVWV&quot;],[&quot;Popular commerce click&quot;,&quot;position 1&quot;,&quot;https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105&quot;]]" target="_blank" rel="noopener noreferrer"><button class="sc-1rvv6e6-3 erWUwi"><label class="sc-1rvv6e6-0 gcDoBX">Buy on Amazon</label></button></a>
                                            </div>
                                        </div>
                                    </aside>
                                </div>
                            </div>
                            <div class="ynugv2-0 eFcvZm">
                                <div class="sc-1ez0oyg-0 ehkuKX">
                                    <div class="sc-1ez0oyg-1 etpvfO">
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-LEFT_RAIL ad-left-rail" data-ad-unit="LEFT_RAIL" data-targeting="{&quot;pos&quot;:&quot;left&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                </div>
                            </div>
                            <div class="ynugv2-0 eFcvZm">
                                <div class="sc-6l6yqv-6 eagNII">
                                    <h4 class="sc-6l6yqv-0 defoG">
                                        More from G/O Media
                                    </h4>
                                    <div class="sc-6l6yqv-3 fWhkEE">
                                        <div class="sc-6l6yqv-5 glBtZI">
                                            <span class="sc-6l6yqv-4 jyjbTH">Read on</span>
                                            <div class="sc-2d8w30-0 rzxbx">
                                                <div class="avclub sc-2d8w30-1 iHLoZR">
                                                    <svg xmlns="http://www.w3.org/2000/svg" width="150" height="59" aria-label="TheAVClub logo" viewbox="0 0 150 59">
                                                    <path fill="#1C263C" fill-rule="evenodd" d="M83.87 37.92a12.85 12.85 0 0 1-9.28 3.72c-3.62 0-6.7-1.24-9.27-3.72a12.04 12.04 0 0 1-3.84-8.98c0-3.5 1.28-6.5 3.84-8.98a12.86 12.86 0 0 1 9.27-3.72c3.63 0 6.72 1.24 9.28 3.72l-3.55 3.44a7.99 7.99 0 0 0-5.73-2.28c-2.22 0-4.13.76-5.7 2.3a7.42 7.42 0 0 0-2.38 5.52c0 2.16.8 4 2.38 5.53a7.92 7.92 0 0 0 5.71 2.3c2.23 0 4.14-.76 5.73-2.29l3.54 3.44zm20.27 2.66H87.07V16.24h5.07v19.53h12v4.81zm22.4-9.88c0 3.02-1.1 5.6-3.28 7.74a10.91 10.91 0 0 1-7.92 3.2c-3.1 0-5.74-1.07-7.92-3.2a10.42 10.42 0 0 1-3.28-7.74V16.24h5.06V30.7c0 1.65.6 3.06 1.8 4.23a5.97 5.97 0 0 0 4.34 1.76c1.69 0 3.13-.58 4.33-1.76a5.7 5.7 0 0 0 1.8-4.23V16.24h5.07V30.7zm15.19-14.46c2.02 0 3.75.72 5.18 2.15a7.02 7.02 0 0 1 2.15 5.16c0 1.65-.5 3.13-1.49 4.44a7.6 7.6 0 0 1 2.43 5.74c0 2.17-.78 4.03-2.32 5.58a7.54 7.54 0 0 1-5.55 2.33H130.8v-25.4h10.93zm.3 14.82h-5.9v5.29h5.9c.74 0 1.36-.25 1.87-.76a2.63 2.63 0 0 0-.01-3.72 2.5 2.5 0 0 0-1.86-.81zm.26-9.53h-6.16v4.24h6.16c.65 0 1.21-.21 1.68-.63a1.93 1.93 0 0 0 0-2.98 2.43 2.43 0 0 0-1.68-.63zM47.26 5.94a29.5 29.5 0 1 1-35.5 47.12 29.5 29.5 0 1 1 35.5-47.12zM31.93 16.86h-5.58l11.71 24.23 11.47-24.23h-5.35l-6.23 13.5-6.02-13.5zm-10.3 0L9.48 41.09h5.28l1.46-3.17h9.97l1.23 3.17h5.25L21.63 16.86zm.08 11.59l2.53 5.26h-5.27l2.74-5.26z"></path></svg>
                                                </div>
                                            </div>
                                        </div><a class="sc-6l6yqv-2 kUfXGZ js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular stories click&quot;,&quot;Kinja Roundup - position 1&quot;,&quot;https://film.avclub.com/the-50-most-important-american-independent-movies-1842597128&quot;,{&quot;metric17&quot;:1}]]" href="https://film.avclub.com/the-50-most-important-american-independent-movies-1842597128">
                                        <h4 class="sc-6l6yqv-1 busDXq sc-759qgu-0 knZcug">
                                            The 50 most important American independent movies
                                        </h4></a>
                                    </div>
                                    <div class="sc-6l6yqv-3 fWhkEE">
                                        <div class="sc-6l6yqv-5 glBtZI">
                                            <span class="sc-6l6yqv-4 jyjbTH">Read on</span>
                                            <div class="sc-2d8w30-0 rzxbx">
                                                <div class="avclub sc-2d8w30-1 iHLoZR">
                                                    <svg xmlns="http://www.w3.org/2000/svg" width="150" height="59" aria-label="TheAVClub logo" viewbox="0 0 150 59">
                                                    <path fill="#1C263C" fill-rule="evenodd" d="M83.87 37.92a12.85 12.85 0 0 1-9.28 3.72c-3.62 0-6.7-1.24-9.27-3.72a12.04 12.04 0 0 1-3.84-8.98c0-3.5 1.28-6.5 3.84-8.98a12.86 12.86 0 0 1 9.27-3.72c3.63 0 6.72 1.24 9.28 3.72l-3.55 3.44a7.99 7.99 0 0 0-5.73-2.28c-2.22 0-4.13.76-5.7 2.3a7.42 7.42 0 0 0-2.38 5.52c0 2.16.8 4 2.38 5.53a7.92 7.92 0 0 0 5.71 2.3c2.23 0 4.14-.76 5.73-2.29l3.54 3.44zm20.27 2.66H87.07V16.24h5.07v19.53h12v4.81zm22.4-9.88c0 3.02-1.1 5.6-3.28 7.74a10.91 10.91 0 0 1-7.92 3.2c-3.1 0-5.74-1.07-7.92-3.2a10.42 10.42 0 0 1-3.28-7.74V16.24h5.06V30.7c0 1.65.6 3.06 1.8 4.23a5.97 5.97 0 0 0 4.34 1.76c1.69 0 3.13-.58 4.33-1.76a5.7 5.7 0 0 0 1.8-4.23V16.24h5.07V30.7zm15.19-14.46c2.02 0 3.75.72 5.18 2.15a7.02 7.02 0 0 1 2.15 5.16c0 1.65-.5 3.13-1.49 4.44a7.6 7.6 0 0 1 2.43 5.74c0 2.17-.78 4.03-2.32 5.58a7.54 7.54 0 0 1-5.55 2.33H130.8v-25.4h10.93zm.3 14.82h-5.9v5.29h5.9c.74 0 1.36-.25 1.87-.76a2.63 2.63 0 0 0-.01-3.72 2.5 2.5 0 0 0-1.86-.81zm.26-9.53h-6.16v4.24h6.16c.65 0 1.21-.21 1.68-.63a1.93 1.93 0 0 0 0-2.98 2.43 2.43 0 0 0-1.68-.63zM47.26 5.94a29.5 29.5 0 1 1-35.5 47.12 29.5 29.5 0 1 1 35.5-47.12zM31.93 16.86h-5.58l11.71 24.23 11.47-24.23h-5.35l-6.23 13.5-6.02-13.5zm-10.3 0L9.48 41.09h5.28l1.46-3.17h9.97l1.23 3.17h5.25L21.63 16.86zm.08 11.59l2.53 5.26h-5.27l2.74-5.26z"></path></svg>
                                                </div>
                                            </div>
                                        </div><a class="sc-6l6yqv-2 kUfXGZ js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular stories click&quot;,&quot;Kinja Roundup - position 2&quot;,&quot;https://news.avclub.com/some-people-went-and-animated-colin-trevorrows-unused-s-1842614111&quot;,{&quot;metric17&quot;:1}]]" href="https://news.avclub.com/some-people-went-and-animated-colin-trevorrows-unused-s-1842614111">
                                        <h4 class="sc-6l6yqv-1 busDXq sc-759qgu-0 knZcug">
                                            Some people went and animated Colin Trevorrow's unused <i>Star Wars</i> script
                                        </h4></a>
                                    </div>
                                    <div class="sc-6l6yqv-3 fWhkEE">
                                        <div class="sc-6l6yqv-5 glBtZI">
                                            <span class="sc-6l6yqv-4 jyjbTH">Read on</span>
                                            <div class="sc-2d8w30-0 rzxbx">
                                                <div class="kotaku sc-2d8w30-1 iHLoZR">
                                                    <svg xmlns="http://www.w3.org/2000/svg" width="212" height="39" aria-label="Kotaku logo" viewbox="0 0 212 39">
                                                    <path fill="#FBC000" fill-rule="evenodd" d="M191.72 5.28l1.2 17.98-8.58.16-1-18.37-6.51-.17.94 21.03c.13 3 2.28 5.38 4.77 5.29l12.99-.49c2.3-.09 3.97-2.48 3.75-5.33l-1.5-19.93-6.06-.17zm13.1 1.62c-.2-2.61-1.88-4.8-3.78-4.88l-1.74-.07.64 9.67 5.22.08-.34-4.8zm6.8 0c-.23-2.61-1.9-4.8-3.77-4.87l-1.71-.08.72 9.67 5.14.08-.39-4.8zm-60.2-3l.2 28.27 2.58-.1c2.85-.1 5.1-2.76 5.04-5.92L158.9 4.1l-7.46-.2zm7.83 10.72l8.01.04c2.62.01 3.8 1.18 4.79 3.02l9.66 20.68c-1.07 1.4-7.06.8-9.53-4.74l-5.12-11.27-.45.01-.4.01c-2.76.04-7.05-2.58-6.96-7.74zM143.39 4.23l-12.1-.33c-5.75-.15-7.27 4.83-6.34 8.06l15.81.14-.1 12.1-10.89.2.05-2.14 3.2-.04c5.72-.08 7.1-4.77 6.17-7.94h-.04l.02-.01-11.92-.05c-3.09-.01-5.72 2.61-5.84 5.9l-.04 1.05-.22 6.04c-.13 3.39 2.39 6.06 5.57 5.94l16.55-.63c2.91-.1 5.24-2.8 5.23-5.97l-.05-16.77c-.02-3-2.26-5.47-5.06-5.55zm-39.82 24.5a5.95 5.95 0 0 0 6.33 6.37l3.32-.12 1.08-21.27-9.75-.06-.98 15.08zm13.46-17.03c6.17.05 7.73-5 6.8-8.21l-20.86-.56c-6.64-.18-7.88 5.14-6.96 8.58l21.02.19zM88.76 2.5l-19.43-.54c-7.58-.21-10.1 5.6-9.22 9.38l24.53.23-1.25 14-14.16.27 1.45-12.99-10.9-.07-2.09 16.38c-.5 3.95 2.53 7.07 6.71 6.9l21.57-.8a7.76 7.76 0 0 0 7.31-6.98L94.75 8.9a5.98 5.98 0 0 0-5.99-6.4zm-69.34-.55L12.7 38.02l4.22-.16c4.65-.18 8.92-3.63 9.6-7.67l4.74-27.9-11.84-.34zm11.06 12.68l13.02.05c4.23.02 5.87 1.5 7.02 3.81l8.1 19.65c-2.05 1.8-11.6 1.18-14.3-5.88l-2.96-7.84h-.73l-.63.01c-4.52.06-10.9-3.25-9.52-9.8zM15.7 12.67l1.9-10.51-6.57-.2C1.9 1.7-.63 8.26.12 12.53l15.58.16zm22.73 1.96l16.8-3.68c3.16-1.93 4.51-8.9 2.3-10.95l-16.3 3.95c-2.77 1.5-5.95 5.86-2.8 10.68zm124.62 0l8.93-4.84c3.1-2.63 3.97-6.97 1.32-9.79l-9.64 6.05c-3.44 2.32-2.92 5.76-.61 8.58z"></path></svg>
                                                </div>
                                            </div>
                                        </div><a class="sc-6l6yqv-2 kUfXGZ js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular stories click&quot;,&quot;Kinja Roundup - position 3&quot;,&quot;https://kotaku.com/sources-despite-huge-sales-borderlands-3-developers-a-1842617645&quot;,{&quot;metric17&quot;:1}]]" href="https://kotaku.com/sources-despite-huge-sales-borderlands-3-developers-a-1842617645">
                                        <h4 class="sc-6l6yqv-1 busDXq sc-759qgu-0 knZcug">
                                            Sources: Despite Huge Sales, <i>Borderlands 3</i> Developers Are Getting Stiffed On Bonuses
                                        </h4></a>
                                    </div>
                                    <div class="sc-6l6yqv-3 fWhkEE">
                                        <div class="sc-6l6yqv-5 glBtZI">
                                            <span class="sc-6l6yqv-4 jyjbTH">Read on</span>
                                            <div class="sc-2d8w30-0 rzxbx">
                                                <div class="jalopnik sc-2d8w30-1 iHLoZR">
                                                    <svg xmlns="http://www.w3.org/2000/svg" width="228" height="33" aria-label="Jalopnik logo" viewbox="0 0 228 33">
                                                    <path fill="#FF4D00" fill-rule="evenodd" d="M140.98 21.96c-3.23 2.58-8.28 2.8-8.28 2.8a59 59 0 0 1-3.2.08l-.74 7.6h-12.98l3.03-30.75.12-1.4 1.32.01h12.3c.72 0 1.9.03 2.62.06 0 0 4.97.23 7.68 2.8 1.97 1.86 2.95 4.47 2.92 7.78 0 .52-.04 1.05-.09 1.6-.4 4.09-1.99 7.26-4.7 9.42zM78.46 32.43H62.8a16 16 0 0 1-2.58-.26s-2.13-.44-3.27-1.71a6.11 6.11 0 0 1-1.54-4.2v-.2l.17-1.73L57.94.3h12.98L69.1 18.82h10.7l-1.34 13.62zM38.88 16.38l-3.83 16.07H20.27L35.05.32h11.08l8.47 32.13H39.56l-.68-16.07zM9.57 32.36c-.53 0-1.9.07-2.61.07H0L1.36 18.8h7.03c.72 0 1.37-.6 1.44-1.31L11.53.3h12.95l-1.8 18.53c-.08.72-.3 1.88-.48 2.58 0 0-1.45 10.89-12.63 10.95zM228 .31l-13 16.02 9.87 16.11h-30.69L197.33.31H228zm-62.79 32.13l-5.56-9.03-.92 9.03h-12.95L148.93.3h11.4l5.54 9.05.4-3.97.49-5.08h12.95l-3.14 32.14H165.2zM115.9 16.4c-.3 9.11-8.37 16.54-18.02 16.6-9.65.06-17.22-7.29-16.92-16.4C81.26 7.5 89.33.06 98.98 0c9.65-.06 17.22 7.29 16.92 16.4zm63.23 16.02L182.32.28h12.47l-3.19 32.15h-12.47z"></path></svg>
                                                </div>
                                            </div>
                                        </div><a class="sc-6l6yqv-2 kUfXGZ js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Popular stories click&quot;,&quot;Kinja Roundup - position 4&quot;,&quot;https://jalopnik.com/harley-davidson-has-some-neat-new-motorcycles-in-the-wo-1842616655&quot;,{&quot;metric17&quot;:1}]]" href="https://jalopnik.com/harley-davidson-has-some-neat-new-motorcycles-in-the-wo-1842616655">
                                        <h4 class="sc-6l6yqv-1 busDXq sc-759qgu-0 knZcug">
                                            Harley-Davidson Has Some Neat New Motorcycles In The Works
                                        </h4></a>
                                    </div>
                                </div>
                                <div is="bulbs-dfp" class="ad-container dfp dfp-slot-PROMOTION_NATIVE_SIDEBAR ad-promotion-sidebar" data-ad-unit="PROMOTION_NATIVE_SIDEBAR" data-targeting="{&quot;pos&quot;:&quot;promotion_native_sidebar&quot;,&quot;native_style_template&quot;:&quot;sidebar_item_v4&quot;}"></div>
                            </div>
                            <div class="ynugv2-0 eFcvZm">
                                <div id="newsletterPromoModule">
                                    <div class="sc-10uan3u-0 esHOJV">
                                        <div class="sc-10uan3u-1 cqtDtB">
                                            Subscribe To Our Newsletter
                                        </div>
                                        <div class="sc-10uan3u-2 ktBPdN">
                                            <span class="ynl58c-0 gdELAJ"><svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" aria-label="Kotaku avatar" viewbox="0 0 64 64">
                                            <g fill="none" fill-rule="evenodd">
                                                <path fill="#FBC000" d="M0 0h64v64H0z"></path>
                                                <path fill="#FFF" d="M16.8 49.62l3.67-.14c4.05-.15 7.76-3.2 8.35-6.78l4.13-24.65-10.3-.3-5.84 31.87zM43.19 29.1c3.57.02 4.95 1.29 5.93 3.27l6.84 16.84c-1.73 1.54-9.79 1-12.08-5.04l-2.5-6.72h-1.15c-3.8.06-9.2-2.78-8.03-8.4l11 .05zm-22.2-11.38l-5.59-.16c-7.78-.22-9.93 5.3-9.28 8.88l13.26.13 1.6-8.85zm31.55 7.69c2.62-1.66 3.74-7.65 1.9-9.4l-13.51 3.4c-2.3 1.28-4.94 5.01-2.33 9.15l13.94-3.15z"></path>
                                            </g></svg></span>Your guide to gaming delivered to your inbox daily.
                                        </div><a href="//kotaku.com/newsletter" class="sc-10uan3u-3 lfhhVO"><button class="peggds-1 exbKyM"><label class="peggds-0 bbQHny">Subscribe</label></button></a>
                                    </div>
                                    <div class="modal"></div>
                                </div>
                            </div>
                            <div class="js_newsletter-container"></div>
                            <div id="leftrail_dynamic_ad_wrapper"></div>
                        </div>
                    </div>
                </aside>
                <main class="sc-11qwj9y-0 ldgdGx">
                    <div class="sc-11qwj9y-1 liJCYV">
                        <div class="js_kinja_notification"></div>
                        <script type="application/ld+json">
                        <![CDATA[
                        {"@type":"Article","@context":"http://schema.org","url":"https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577","author":{"@type":"Person","name":"Mama Robotnik"},"headline":"The Spectacular Story Of Metroid, One Of Gaming's Richest Universes","description":"Nothing beats the passion of a true fan writing about something they love. That&#039;s what you&#039;re about to see here: one of the richest, most amazing tributes to a great gaming series that we&#039;ve ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon. ","datePublished":"2013-09-11T10:00:00-04:00","dateModified":"2013-09-13T16:34:46-04:00","mainEntityOfPage":{"@type":"WebPage","url":"https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577"},"image":{"@type":"ImageObject","height":675,"width":1200,"url":"https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,pg_1,q_80,w_1200/18zu12g5xzyxojpg.jpg","thumbnail":{"@type":"ImageObject","height":180,"width":320,"url":"https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,pg_1,q_80,w_320/18zu12g5xzyxojpg.jpg"}},"articleBody":"Nothing beats the passion of a true fan writing about something they love. That&#039;s what you&#039;re about to see here: one of the richest, most amazing tributes to a great gaming series that we&#039;ve ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon. \n\nPlease note that this is the first half of Mama Robotnik&#039;s massive Metroid story. The second half can be found here. The entire post is a greatly-expanded version of a post that Mama Robotnik originally published on the NeoGAF forum before revising and reworking it for Kotaku. Take it away, MR...\n\nNintendo’s Metroid series tells us of a malevolent and vicious universe. It’s a maelstrom in which benevolent races are routinely extinguished, and corrupt empires wage war for ownership of living weapons.\n\nIt’s a place in which xenocide is a commissioned service, and grievances are resolved with planetary apocalypses. Everything is chaotically connected to a dead race of avian prophetic poets fighting a war throughout the cosmos. It’s a dark place to visit.\n\nThere are two purposes to this article: to explore the expansive lore of the Metroid universe – with speculation to fill in the gaps – and to exhibit some extraordinary Metroid-inspired art. All artwork is credited to its original source – follow the links to see further works of these spectacular artists.\n\nNotes on Speculation and Lore\n\nThe games tell us much about this hostile universe, but there are a lot of unresolved story points. In response to these mysteries, the article will provide a healthy amount of speculation. You can consider the piece to be either a makeshift timeline illustrated with fan-artwork, or simply an enthusiastic attempt to reconcile the series continuity into a cohesive whole. The article is informed by the extensive research previously performed by its author. The approach taken regarding speculation is thus: The logical inclusion of probable events that resolve mysteries, while maintaining the themes of the series.\n\nBefore we begin, let’s briefly revisit the five points of essential lore:\n\nMetroids are a genetically-engineered species, created by the Chozo in the prehistory of the games. By the time the first entry begins, Metroid creatures only exist on the planet SR388. At some point long before the games, there was also a Metroid presence on the planet Phaaze.\n\n(Metroid IL Return of Samus, Metroid Prime III: Corruption and Metroid Fusion) \n\nAt least some Chozo possessed a native ability to see into the future.\n\n(Metroid: Zero Mission and Metroid Prime)\n\nThe Chozo discovered the living planet Phaaze with their Elysian Research Outpost. We are not told what transpired immediately after this discovery, but something happened that caused at least one Metroid organism to appear on Phaaze. The planet then loaded this creature – along with pieces Chozo-style powersuit armour, into a Phazon seed and launched it towards a heavily populated Chozo planet. This seed impacted Tallon IV and is contained by the Chozo within an impenetrable shield. The mutated superevolved Metroid creature within – clad in crafted power armour – is trapped in the shield until Samus Aran deactivated it thousands of years later.\n\n(Metroid Prime EU release, Metroid Prime III: Corruption and Metroid Prime Trilogy) \n\nThere are living planets in the Metroid Universe. Phaaze is explicitly referred to as being alive, and could interact with a sentient mind – as shown when a Galactic Federation Aurora Unit is implanted. The planet SR388 could be interpreted as having some form of sentience – it shook with apparent anger when its creatures were killed by Samus Aran, and precisely manipulated its oceans to lure the bounty hunter into hostile situations. (Metroid II: Return of Samus and Metroid Prime III: Corruption). The immediate backstory to the first game in the series is the discovery of the planet SR388. The final event of the final game in the chronology is the final destruction of SR388.\n\n(Metroid, Metroid II: Return of Samus)\n\nReferencing\n\nEach story section includes one or more of the below superscript annotations, to help inform the reader as to where the lore or speculation comes from. A brief key:\n\nWith all that said, let us begin.\n\nPart One: The Wars in Heaven\n\nThe Living Planet\n\n(Artist: 3ihard)\n\nOn an unknown planet in the universe, a race of avian humanoids evolved. The species that will come to be known as the Chozo possessed great strength, agility and intelligence. The species is peaceful, and is driven by a social/religious value that nature is sacred. [M1 / MP]\n\n(Artist: 3ihard)\n\nCertain blessed individuals were born with a unique gift – the vague comprehension of events set to take place in the distant future. Driven by these prophecies, the race advanced quickly and became space faring. With abstract predictions of a hostile universe, the Chozo developed powered armour and armaments to defend themselves. Prepared for whatever hostility awaited them, the Chozo explored the stars. [M1 / MP / MP SP]\n\n(Artist: Elearia)\n\nThe Chozo discovered that – despite their prophets’ visions of a chaotic and warring universe – the cosmos was enjoying a prolonged period of peace and enlightenment. First contact was made with a number of old and wise races, such as the Ylla, the N’kren, the Bryyonians, the Alimbic and the Luminoth. The species shared their cultures and technology, and gently colonised wild worlds such as Aether, Elysia, and Tallon IV. [MP / MPH / MP2 / MP3]\n\n(Artist: Slapshoft)\n\nPeace reigned through the cosmos. The alliance was a great universal renaissance, and lasted for a millennium. [MPH SP / MP2 SP / MP3 SP]\n\n(Artist: 3ihard)\n\nDuring this calm, the Chozo prophets continued to receive increasingly severe visions of chaos. They foresaw a universe consumed by war, horrors evolving on distant worlds, and a great toxicity waiting to be unleashed. As the visions became more precise, the species isolated itself from its allies. The Chozo civilisation became intensely driven to fight this unclear threat. [MP / MP3 SP / M2 SP /MF SP]\n\n(Artist: DanilLovesFood)\n\nThe Chozo needed more potent tools to locate this unseen and distant danger. They expanded their SkyTown colony on the gas giant Elysia and remade it into a vast interstellar observatory powered by the planet’s endless storms. The facility was of such scale that an entire species of artificial life became necessary to maintain it. The Chozo created their first species – the mechanical Elysians. [MP3 / MP3 SP]\n\nProbes were launched across the universe, and the Elysians and Chozo scrutinised the data. The search took generations, while the planet’s tempestuous atmosphere battered SkyTown, weathering the station faster than the Elysians could maintain it. After countless probe launches, a partial transmission received from a decaying and distant satellite set prophecy in motion. [MP3]\n\n(Artist: Mechanical-Hand)\n\nThe data received was terrifying. The blue planet registered as an organism, somehow existing as both mineral and flesh. Impossible radiation pulsed from the surface, which overwhelmed the Chozo satellite and rendered it inert. The location of the planet was immediately lost, and only a broad region of space could be established. [MP3]\n\nWith this find, the Chozo purpose on SkyTown was fulfilled. The race departed the facility, leaving the Elysians to continue their monitoring of the stars. The abandoned race of robots continued to launch satellites to try and rediscover the blue world, hopeful that such a discovery would herald the return of their Chozo creators. The Elysians searched unsuccessfully until Elysia’s endless storms eroded their civilisation into a rusted remnant. [MP3]\n\nThe Chozo reconciled their vague discovery of a blue living planet with their prophecies of toxicity. On this distant world of poison, could creatures have evolved so vicious that they endangered the universe? [MP3 SP]\n\nThe Invasion of Phaaze\n\n(Artist: 3ihard)\n\nFinding the exact location of the deadly planet becomes a priority for the Chozo civilisation. A gargantuan ship was assembled on the holy planet of Tallon IV, and dispatched to the dark corner of the universe where the Elysian satellite had been lost. The greatest Chozo warriors, scientists and prophets commenced a crusade for the hostile world, knowing that they would likely never make it back home. During their long journey, they conceive a name for their target: Phaaze. [MP3 SP]\n\n(Artist: SesakaTH)\n\nGenerations passed, and the Chozo expedition finally located the blue planet. As they approached, they witnessed the living world as it endlessly pulsed with blue and white energies. There was nothing like this place elsewhere in the universe. [MP3 SP]\n\nTheir scans confirmed their worst fears – this atmosphere was a bath of radiation and mutation – and evolution had produced horrors. [MP3 SP]\n\n(Artist: SamusMMX)\n\nFor billions of years, Phaaze had mutated and irradiated life that evolved on its surface. The strongest creatures had survived to thrive in an ecosystem of beautiful poison. It was then that the Chozo understood: They had arrived at the home of the most devastating and deranged creatures in the known universe. [MP3 SP]\n\nIf these monsters were to escape their containment on Phaaze, they would voraciously consume their way through the cosmos. With younger races only centuries away from space travel, the Chozo could not risk them finding this world and releasing its terrors. [MP3 SP]\n\nThe Chozo expedition came to an impasse. The threat of Phaaze’s superpredators had to be neutralised, but severe action against the planet would be sacrilege. The Chozo held life sacred, and refused to destroy the unique living world. [MP3 SP]\n\nA dangerous plan was agreed upon. The expedition ship landed on Phaaze, exposing the crew to tremendous radiation. [MP3 SP]\n\n(Artist: Adoublea)\n\nChozo Warriors in power suits fought the planet’s creatures as they swarmed the ship. The soldiers battled, watching their kin die around them, in a desperate mission to buy time. [MP3 SP]\n\nThe scientists within the ship began to harness the intense radiation around them, to try and engineer an artificial predator that could neutralise the planet’s superpredators. With access to the unique Phazon mutagen that covered the poisonous world, genetic engineering that should have taken decades was done in days. The Chozo engineered the first Metroid. [MP3 SP]\n\n(Artist: Methuselah3000)\n\nThe Metroid creature was unleashed onto the planet, and the radiation caused it to reproduce quickly. The resulting swarm of Metroids began to consume the planet’s monstrosities and established themselves as Phaaze’s apex predator. [MP3 SP]\n\nThe Chozo mission was complete. The worst creatures were being hunted to extinction, and the Metroids were expected to die from starvation soon after. The cost had been enormous – most of the crew had been killed defending the ship, and the survivors were deathly ill from radiation poisoning. The burnt and damaged ship took off for the long journey home, but the crew soon succumbed to the radiation they had endured. The autopilot took the ship of Chozo bodies home. [MP3 SP]\n\n(Artist: 3ihard)\n\nOn Phaaze, the Metroid presence lasted decades as they consumed the planet’s superpredators. The corpses of Chozo warriors were absorbed into the planet, and their battle armour slowly became weathered and scattered. The planet’s slow sentience developed an outrage that seethed under its continents. It had been violated by the Chozo. As the Metroid infestation began to die out, Phaaze developed a very primitive concept of purpose and retribution. [MP3 SP]\n\nPhaaze established a vague awareness of concepts it had absorbed from the brains of the Chozo warrior corpses – and the location of two worlds from the Chozo’s memories. As the planet entered its reproductive cycle, it purposely directed two of its seeds towards the planets Tallon IV and Aether. In the seed sent to the Chozo world, Phaaze included one of the last surviving Metroid creatures and some ruined pieces of Chozo armour, intended as a reminder of the crime Phaaze had endured at their hands. The planet sent its second seed to Aether, as the absorbed memories informed the living planet that its inhabitants were friends of the Chozo, and therefore the enemies of Phaaze. [MP 1 / MP 2 SP / MP3 SP]\n\nThe expedition ship – heavily damaged by radiation and lack of maintenance – was guided back to civilisation by an increasingly erratic auto-pilot. After decades it eventually approached the Chozo world of Zebes, and crash-landed onto its surface. The Chozo civilisation attempted to recover data logs from the wreckage with very limited success – they were able to understand the sacrifice that the heroic crew had made, and confirmed the apparent success of the Metroids in neutralising the creatures on the living planet. The Chozo authorities were unable to establish the location of Phaaze, or recover much in the way of scientific data concerning it. [MP3 SP / SM SP]\n\n(Artist: Methuselah3000)\n\nAs the Tallon IV seed began its centuries of travelling through space, the lone Metroid within absorbed vast amounts of Phazon and radiation. It became self-aware, and grew in size, intelligence and strength. It used the ruined pieces of Chozo armour to construct itself an exoskeleton, and descended into madness. The exoskeleton failed to protect the creature from the endless radiation, and the Metroid became as exotic as Phaaze’s extinct superpredators: An undying tortured genius. [MP / MP2 / MP3 / MP3 SP]\n\nThe creature that would come to be known as Metroid Prime resented Phaaze for imprisoning it in the Leviathan. It resented the Chozo for creating and discarding the Metroids. It decided that it would survive, bring order to the chaotic universe that birthed it, and somehow enslave Phaaze to its will. In its solitude, immortal as a consequence of its mutations, Metroid Prime plotted its revenge against the universe. [MP / MP2 / MP3 / MP3 SP]\n\nThe Dark Planet\n\nWith a clear understanding of the danger of living planets, the Chozo authority commenced a search for similar threats. With far more advanced technology than their ancestors had during the Elysian era, the Chozo were unfortunate enough to find a planet of even greater horrors. [MP 3 SP / M2]\n\n(Artist: PeaceFistArtist)\n\nThe Chozo detected strange readings coming from a world in a desolate part of the galaxy. The planet had been previously considered so obscure and unimportant that it didn’t have a name, merely catalogued with the codename SR388 and left to its obscurity. A detailed analysis picked up some extremely strange observations; though seemingly mineral, the caverns and liquids beneath the surface shifted with metabolic rhythm – as if the whole planet was somehow a living thing. A ship was dispatched, and the strongest Chozo warriors braved the caverns beneath the surface. [M2 / M2 SP]\n\nFew made it back. They told of a cauldron of evil, an environment so hostile and vicious that it had birthed the most terrible things. [M2]\n\n(Artist: LightningArts)\n\nBeneath that planet, evolution had been won by an abomination that could steal the flesh, abilities, memories and strengths of all of its prey. The creature was a fusion of energy and plasma that parasitized on life itself. With no word suitable for the nightmare they had discovered, the Chozo simply called it X. If these X-Parasites somehow gained access to the wider universe, there would be no force that could contain them. [M2]\n\nThe threat had to be dealt with. Remembering the apparent success of the Chozo expedition to Phaaze, a plan was put into action. The Chozo assembled their best and brightest, their strongest and wisest. They carved their way into SR388, and dispatched mechanical creatures to construct secure facilities. Robots and Chozo warriors repressed all instances of the X-Parasite as they found them, but casualties were high. The planet appeared to fight the Chozo at every turn, it drowned the invaders in acid and unleashed ambushes of creatures. The endless swam of X-Parasites gained strength from the corpses around them. [MP3 SP / M2]\n\nDeep in the planet, a glass laboratory was created, its walls highly resistant to SR388’s acid belly. Here, in dangerous proximity to the X-Parasites, the Chozo scientists began their work. [M2]\n\n(Artist: 3ihard)\n\nThe Chozo tried to recreate the plan of their ancestors – the use of Metroids to pacify superpredators too dangerous to exist. Without access to the same planetary radiation and materials the Phaaze expedition had, progress was slow. As the war against the planet was raging around them, the Chozo scientists were able to engineer Metroids, but not a variant strong enough to overcome the X-Parasites. As more and more Chozo died protecting the laboratory, a different approach was needed. [M2 SP]\n\n(Artist: Starshadow76)\n\nThe Chozo succeeded in engineering a Metroid Queen, a colossal creature who would lay Metroid Hatchling eggs. When hatched, these resulting Metroids were strong and durable creatures, and finally potent enough to combat the X menace. The Chozo knew that to completely suppress the parasites, the Metroid presence on SR388 had to be permanent. To ensure that the species would not overfeed on the environment and wipe out its food chains, the scientists hardwired an instinct into the Metroid Queen’s feral mind: Only thirty-nine Metroids were to exist on the planet at any one time. This, it was hoped, would keep their numbers high enough to destroy any X re-emergence, but low enough so that they wouldn’t consume the rest of the life on the planet, and starve to death from lack of food. [M2]\n\nThe scientists assembled a payload of Hatchling Eggs and the surviving Chozo warriors distributed them across the planet. The eggs hatched quickly, and the X-Parasites were immediately overwhelmed by the infant Metroids. The X-Parasites were quickly hunted to near-extinction, with only a few surviving cells entering a state of suspension deep in the planet. [M2 SP / MF]\n\nThe Chozo had won their war, but only just. Most of the warriors and scientists had not survived, and those that were left had to make sure that the X-Parasites had been permanently suppressed. The planet shook with tremors; the earth shifted and acid poured, as if the world was trying to crush the Chozo in their glass laboratory. [M2 SP]\n\nThe X-Parasites did not return, and the Metroid Queen continued to scream as her glass prison shook. The Chozo didn’t realise it, but her despair was being heard. [M2 SP]\n\n(Artist: Hermax669)\n\nSR388 had been violated by the Chozo. Though very different to Phaaze, SR388 had its own vague sense of awareness. It perceived the Chozo as a viral infection, and the dead X-Parasites as part of itself. It understood loss, and shook with ancient rage. [MP3 SP / M2 SP / MF SP]\n\nIt changed itself to change the Metroids. It adopted them to replace the X-Parasites, and quickly killed the weaker breeds. It moved its radioactive minerals closer to their eggs and soon mutated the species. As SR388 had done with X, it did with the Metroids. It made them strong. [M2 SP / MF SP]\n\nAlpha, Gamma, Zeta and Omega Metroids spawned quickly, and responded to the screams of their Queen. With their bulk and strength, they smashed through the glass laboratory and slaughtered their Chozo creators. The Chozo warriors were hunted down and crushed. [M2]\n\nSR388 developed into a new cauldron of hostility. The Metroids served as the apex predator, and the robots of the Chozo decayed into machine madness and prowled the ruins, killing on sight. The Chozo mission to suppress the X-Parasite had been a success, but the planet had gained its revenge. [M2 / M2 SP / MF]\n\nPart Two: The End of the Renaissance\n\nThe Holy World\n\nThe Chozo had devastated two planets for the good of the universe, and sustained many causalities. The superpredators of Phaaze were extinct and the X-Parasites were permanently suppressed. With the crisis over, the race became consumed with a collective sense of guilt over their necessary actions. The Chozo believed the life of the universe to be sacred, and had to reconcile their aggressive actions with their faith. [MP SP / MP3 SP / M2 / MF]\n\nWorse still, their prophets continued to have visions of endless conflict and death. War was coming to the universe, and it seemed that their sins had not saved them. Many began to doubt these visions, and a schism occurred. [MP/ MP3 SP]\n\nThe bulk of the Chozo civilisation retired themselves from galactic affairs, leaving only a few scattered colonies amongst the stars. The race retreated to the holy planet of Tallon IV, to shun their technologies and begin simpler, poetic lives. These Chozo reconnected themselves to the natural world and tried to find a harmony with it. As time went on, the most potent prophets became manic, and tried to warn their fellows of a great poison that was to come. [M1 / MP]\n\nThese visions were met with increasing dismissal, but the day finally came when the prophets were believed. After eons swimming in the stars, Phaaze’s seed entered the Tallon system. [MP / MP3]\n\n(Artist: Hameed)\n\nThe Leviathan crashed down, and rained poison and death unto the world. The impact survivors watched as their sacred nature succumbed to the mutagens leaking from the seed, and barricaded themselves in their temples as the flora and fauna transformed. Phazon spread beneath the surface of the dying planet, and radiation storms battered the surface. [MP]\n\n(Source: Riivka)\n\nThe Chozos’ punishment for their sins, and the fulfilment of Phaaze’s wrath, reached biblical proportions. The Chozo of Tallon IV did not get to rest in peace. Their life energies suffered from Phazon disruption, and upon death they became mad ghosts who screamed forever as they were torn in and out of the material world. In this purgatory, the undead immaterial Chozo murdered anyone they could find. [MP / MP3 SP]\n\nAs their numbers dwindled, the last of the Chozo constructed a great temple above the impact crater. Within this temple, they used what little technology remained to project an energy field around the Leviathan to slow the spread of contagion. As the Chozo civilisation on Tallon IV was extinguished, their dying prophets told of a hero who would one day emerge, to enter the crater and defeat the evil worm within. [MP]\n\n(Source: Havoc-DM)\n\nWithin the Impact Crater, Metroid Prime remained trapped within the Chozo energy field. In its armour constructed from ancient Chozo power suits, it continued its wait to be unleashed on the universe. [MP / MP3 SP]\n\nDark Echoes\n\n(Artist: 3ihard)\n\nOn the planet Aether, an ancient race of mystics known as the Luminoth received the horrifying data coming from Tallon IV. In distant times, the Luminoth and the Chozo had been steadfast allies – until the Chozo retreat ended their ties. Desperate to assist, the Luminoth began to organise a rescue mission. [MP2 / MP2 SP]\n\n(Artist: PugOfDoon)\n\nA dark transmission was received from Tallon IV. The image showed a screaming, ghostly Chozo figure, flickering in and out of the living universe. In its undead madness, it spoke for its kin. It raged that they would kill anyone who would set foot on their world. The planet was pandemonium, a cursed world on which the dead could not die. As the signal faded, the Luminoth realised that there was no one left alive to rescue. [MP SP / MP2 SP]\n\nThe Luminoth were receiving strange readings from the devastated planet. A mutagen was spreading, unlike anything they had ever encountered. They scanned the stars for its source, and made a devastating discovery – a mass of the same mutagen was on a collision course with Aether. Phaaze’s second seed had nearly arrived at its destination. [MP2 SP / MP3 SP]\n\nThe people of Aether turned to their technology to save them. Their planet had no native star of its own, and had been implanted millennia ago with a complex energy network that sustained all life. This system was reverently called the Light of Aether, and harnessed the light of the universe in its mechanism. The Luminoth realised that even with this great power, they could not destroy the Phazon Leviathan. A different approach was needed. [MP2 / MP2 SP]\n\n(Artist: SesaKath)\n\nThe Luminoth used their great Light to engineer a small pocket universe, a dark lifeless echo of existence. The plan was bold: they would use the Light of Aether to surgically open the fabric of reality in the path of the Phazon seed, and allow it to harmlessly enter the pocket universe. If all went well, they would be saved. [MP2 SP]\n\nThe day came, and the Leviathan entered Aether’s atmosphere. The Luminoth commenced their great plan. [MP2 SP]\n\n(Artist: Adriencgd)\n\nPhaaze’s seed was a sum of living materials beyond Luminoth comprehension. It hit the pocket universe with incalculable force, and a tsunami of exotic energy ruptured space and time. The equipment containing the dark reality lost containment within moments, and the Luminoth were helpless as their creation expanded across the entire planet. A wave of dark energy absorbed creatures, structures and land into the dark universe, and what was once a single planet – was now two. [MP2 / MP2 SP]\n\nThe Luminoth surveyed the devastation. The Phazon seed was gone – it had indeed collided with the dark universe. Entire continents, with millions of inhabitants, had vanished with it. [MP2 / MP2 SP\n\n(Artist: AzureParagon)\n\nIn the dark universe, a grotesque world was being born. Previous inhabitants of Aether, having been absorbed when containment of the pocket universe was lost, found themselves twisted by the corrosive new reality around them. Most perished, and their flesh fed the strange carnivorous fungi that glowed sickly colours. Some survivors were mutated by the Phazon slowly spreading beneath the surface, and adapted to survive in the hostility. [MP2 SP]\n\nAether and its echo, the Phazon-infested Dark Aether, existed in synchronicity. As the Luminoth tried to rebuild their planet, it took only decades for cracks to form in the ether separating the two realities. As rips in the universe shattered open, Aether became a battlefield. [MP2]\n\n(Artist: Xxkiragaxx)\n\nA womb of Phazon mutation and dark energies had birthed a cunning and ferocious horde. The Ing erupted through the cracks between the two worlds, and commenced slaughter. They were fought back by the Luminoth, and a war began between the two parallel worlds. The Ing invaded Aether with regularity, and killed, pillaged and destroyed all that they could find. The Luminoth retaliated and crusaded into Dark Aether in their Light Suits, on suicide missions to exterminate the source of the Ing menace. Both sides suffered colossal casualties as the decades went on. [MP2]\n\n(Artist: 3ihard)\n\nThe war was being lost by the Luminoth. The Ing had exterminated most of their race and had stolen too many vital technologies. With the theft of essential energy components from the Light of Aether power network, they had become a defeated people. [MP2]\n\nThe Ing had destroyed all of Aether’s ancient ships, and condemned the Luminoth to no escape from their doomed world. With no other choice, the survivors sealed themselves in an inner sanctum, and entered a state of suspended animation. One custodian, U-Mos, volunteered to be their guardian. As Aether became weaker and weaker, the Luminoth waited for someone to save them. They would wait a very long time. [MP2]\n\nThe Sacrifice of the Alimbics\n\n(Artist: Kihunter)\n\nAs the Chozo and the Luminoth fell, so too did other ancient races. In a distant part of the universe, the Alimbics were a militaristic society that maintained peace in their galactic cluster. Their order was shattered when a murderous entity, originating from someplace beyond the understood universe, plummeted into one of their worlds. The creature emerged from the devastation as a gaseous entity, and assumed an Alimbic-styled body to begin its onslaught. [MPH]\n\nThis alien juggernaut was named Gorea by the Alimbic race, and they soon understood it brought only death. Gorea killed every Alimbic it could find, and destroyed everything in its path. Planet after planet fell to Gorea, and the Alimbics realised the creature would never stop. [MPH]\n\n(Artist: Sesakath)\n\nThe Alimbics performed an act of supreme sacrifice. They combined the mental energies of their entire race to forge a prison for Gorea. The psychic prison held it bound, and it was transplanted into an organic vessel called The Oubliette. The vessel was launched into the void outside of the universe, a course that would keep its indestructible prisoner in exile forever. The systems of the prison ship were tasked to scan the every molecule of the imprisoned Gorea, and devise an Omega weapon that could be used to kill it. [MPH / MPH SP]\n\nThe mental energies expelled in this plan consumed the physical bodies of the entire Alimbic race. They vanished from the universe in an instant. Their sacrifice protected all life in the cosmos from Gorea’s murderous rampage. [MPH]\n\nThe War of Bryyo\n\n(Artist: Sesakath)\n\nAs the old races of the universe died around them, the lizard people of Bryyo faced their own challenges. The Bryyonians were an advanced, space-faring race who had learned much from their Chozo allies. Their society was a deeply polarised one, with tensions eternal between the scientific and religious factions.[MP3]\n\nOver the previous centuries, the scientific agenda had dominated, with space travel proving beneficial and enlightening. As the Chozo, Luminoth and Alimbics faced extinction, the religious Bryyonians believed more than ever that the universe was a hostile place, and became desperate to stop their scientific counterparts. [MP3]\n\nA great war exploded across Bryyo. By its end, the scholars had been wiped out and the survivors of both sides had regressed to a feral existence. The race devolved into animals, wandering around ruins that they no longer understood. Language vanished and strength ruled. Anyone who landed on Bryyo was meat, to be killed and eaten. [MP3]\n\nThe Little Rainy Planet\n\nThe onslaught of vengeances, conquerors, poisons and politics destroyed the old races. The Alimbics had lost their flesh, while the Bryyonians had lost their souls. The Luminoth had retreated into stasis, and the Chozo of Tallon IV had been condemned to a living death. [MP / MPH / MP2 / MP3]\n\n(Artist: Kaiquesilva)\n\nOn a small, rainy planet called Zebes, the last known Chozo colony had watched the stars with impotence. This small settlement of the nearly-extinct avian race witnessed the end of the great universal renaissance, and the slow beginning of a new chapter in galactic history. Gradually, the younger races were launching their first satellites into space. In time, new empires would rise to take the place of the old. [M1 / M1 SP]\n\n(Artist: 3ihard)\n\nZebes prophets’ saw the visions the Chozo had always endured: great wars, spreading poison and death. And suddenly, something bold was foreseen. [M1 SP / MP3 SP]\n\n(Artist: Fddt)\n\nA great hunter, clad in orange, red and green. The Chozo glimpsed a future hero, alone in the darkness beneath worlds, fighting so that good could survive evil. They saw her curing poisoned planets, and ending galactic wars. They saw the universe’s one chance to survive its apocalyptic future. They saw the only one who could defy prophecy. [M1 / MP3 SP]\n\nAnd they saw her wearing Chozo armour. [M1]\n\nPart Three: The New Empires\n\nThe Humans\n\nOn the planet Earth, the human race had finally developed a ship capable of leaving their solar system. A brave crew ventured into the universe to learn whether life existed elsewhere. Their discoveries fundamentally changed the human condition. On planet after planet, they found ruined tombs and cities, guarded by weathered statues of dead races. Most significant of all, they found technology. [M1 SP]\n\nThe humans reverse engineered their salvage, and advanced with pace. Within another century, faster-than-light ships explored the stars, and colonies transformed hostile worlds into homes. Peaceful relations formed between other younger races, and a great Galactic Federation was founded. [M1 SP]\n\nThe Space Pirates\n\nIn a less hospitable region of space, a cabal of battered races joined their forces to survive. On planets where acid rain burned flesh and magma flowed, the alliance expanded into a hardened space empire. They ventured into nearby systems and took what they needed from anyone they could reach. They found the ruins of the old races and ransacked the ancient technologies within. They immersed themselves in science and unlocked the secrets of their finds. Within decades, they had advanced their spread with stronger and faster ships. The creatures enhanced themselves, rewriting their genetics and integrating mechanisms beneath their flesh. They were unique: a cybernetic race of furious murderers with a skill for patient scientific process. As more planets were invaded, their conquered civilisations were conscripted by force. [M1 SP / MP / MP3]\n\nThe inevitable moment came when their Empire reached the borders of the vast Galactic Federation. [M1 SP / MP / MP3]\n\n(Artist: Mr-Corr)\n\nFirst contact was brief and furious. On that day, the warning went out to all the worlds of the Federation: Beware the Space Pirates. Though no state of war was officially declared, the empires attacked each other on sight. The Galactic Federation was large enough to repress any meaningful incursions into their space. [M1 SP / MP SP / MP3 SP / SM SP]\n\nThe Massacre of Two Families\n\nThe Galactic Federation discovered the last Chozo Colony on Zebes. The tired, ancient avians welcomed the humans and shared with them wisdom and knowledge. They offered the Galactic Federation new sciences, and taught them how to make organic computers. The Federation studied the Chozo’s own central processing unit, an engineered brain that mothered over their colony, and left with plans to assemble their own variants. On the nearest habitable planet of K-2L, a colony was established. [M1 / MP3 SP]\n\nOn this world, the human Samus Aran was born. [M1]\n\n(Artist: Methuselah3000)\n\nBarely out of infancy, the young Samus witnessed her family die. A Space Pirate raiding party overwhelmed her colony and murdered everyone she ever knew. By staying silent while surrounded by horror, Samus survived as the Pirates ransacked the settlement and left. [M1]\n\nThe Chozo colony on Zebes received K-2L’s automated distress signal. In an ancient dusty ship, they reached the planet and found Samus to be the only survivor of the massacre. The child was brought to Zebes, and the Chozo deliberated. Should she be returned to her own kind, or allowed to stay? [M1]\n\nAcross the colony, the Prophets experienced a simultaneous moment of clarity. They understood immediately that they had found their prophesised hero. The young girl was their inheritor, and would grow strong. She would learn all she could from them, and take their strongest technologies into the universe. She would be the hero against the oncoming storm. [M1 SP]\n\n(Artist: R3dFiVe)\n\nSamus Aran reached maturity amongst the Chozo. She was trained in the combat arts of the great extinct races. She was infused with Chozo genetic material so she could employ their technologies. She was educated to be a scientist, an explorer, and a tactician. Everything that was good about the Chozo civilisation was allowed to live on in Samus. [M1]\n\n(Artist: Pyra)\n\nSamus became an adult, and the Chozo presented her with their greatest works: a toughened power suit and an agile spacecraft, both more potent than anything their race had ever made. The Chozo leader, decaying and blind, told Samus it was time for her to find her destiny in the universe. Samus Aran departed for the stars, and years pass. [M1 / M1 SP]\n\nAs Samus tried to reconnect with her heritage on Earth, the last Chozo prophets on Zebes received a final vision: The Space Pirates were coming for them. It was time for the last Chozo to be extinguished from the universe. [M1 SP]\n\n(Artist: Phobos-Romulus)\n\nThe Chozo hid their technologies throughout the planet, in places that they were certain Samus would find them. They concealed a second Power Suit within the walls of their holy temple, having foreseen that Samus may require it in the future. They then returned to the surface to await the inevitable. [M1 SP]\n\nThe Space Pirates invaded in force, and murdered Samus Aran’s second family. The Chozo became extinct. [M1 / MP SP]\n\nThe Mother Brain\n\nSpace Pirate scientists arrived shortly after the carnage and focused their attention on the legendary Chozo organic central processing unit. They rewrote its benign programming and injected stimulants into its flesh. They enabled it to form an artificial intelligence obsessed with strategy and conquest. They drove its computational potential towards absolute advancement of the Space Pirate Empire. [M1 SP]\n\n(Artist: Jaagup)\n\nThe results went beyond High Command’s most optimistic projections. The Space Pirates had created a leader, a desperately needed figure to unite their fragmented empire. They had created their Mother Brain. The great Space Pirate generals Ridley and Kraid arrived at Zebes, ready to pay tribute to their new master and to plan for the future. Mother Brain delivered to the Space Pirates knowledge and power. She told them of a world referenced in her oldest Chozo databanks, a planet bathed in a mutagenic poison waiting to be farmed. She instructed High Command to prepare an armada of ships and invade the planet Tallon IV. [M1 / MP SP]\n\nThe order was followed immediately, and the High Command discovered a world deranged by contagion. Beneath its surface, endless pools of Phazon waited to be weaponised, and a great mining operation began. Mother Brain received data from their readings on the planet; even after thousands of years, the source of the Phazon was still contained in the Chozo force field. She scrutinised her records further, and was unable to ascertain any method of breaching the barrier. The Space Pirates could retrieve the Phazon, but were denied access to its source. [MP]\n\nThe Metroids\n\nA perfect storm brewed. As the Space Pirates gained access to the most potent mutagen in the universe, the Galactic Federation made an equally eventful discovery: They found the dark planet SR388. [M1 / M2]\n\n(Artist: Fireborn Form)\n\nA Galactic Federation survey team studied the surface, and soon encountered a gelatinous creature that swam through air. The alien defied gravity and physics as it phased through dense rock with ease. It perceived the survey team, and made a few curious chirps in their direction. It then suddenly changed temperament, aggressively charging to latch itself onto the skull of one of the party. The victim died in agony as the Metroid fed on all the energy within, and could not be removed until its prey had been reduced to a dried husk of collapsing matter. The young Metroid had just killed, in a way that science could not explain. [M1 SP / M2 SP]\n\nWith effort and casualties, the scientists contained a few infant specimens of the Metroid creatures, and left the planet without further incident. [M1]\n\nAs their vessel went back to the stars, SR388 was aware their withdrawal. It harboured a great contempt for the invaders, an endless hate fuelled by the impotence it endured centuries ago when the Chozo had committed their great invasion. The living planet had spent centuries honing the Metroids into perfect killers, and knew the devastation they could cause upon maturity. The planet had intentionally allowed the humans to take a few Metroids away so that the creatures could grow up and kill anyone out amongst the stars who ever thought of returning. SR388 took any opportunity to gain revenge against an outside universe that refused to leave it alone. [M2 SP]\n\nAs the scientists began to broadcast their findings back to the Galactic Federation, Mother Brain intercepted the transmission. She cross-referenced their data with notes buried in the Chozo’s ancient fragmented records. She deduced that the Metroids were a form of genetically engineered predator of incredible power, created by the Chozo for an unknown purpose. Mother Brain ordered High Command to get the creatures to her by any means necessary. [M1 SP]\n\nThe Space Pirates overran the Galactic Federation vessel and stole the Metroid creatures. They divided their prize: some were sent to their nearest Homeworld; others were sent to the Tallon IV outpost; and the most potent were delivered straight to Zebes for the experiments of Mother Brain. [M1 / MP / MP3]\n\nWith the arrival of the first Phazon samples from Tallon IV, the exotic substance allowed the Space Pirates to slowly produce stable cloned Metroids across their breeding sites. [M1 SP / MP SP]\n\nThe Revenge of Samus Aran\n\n(Artist: Ojanpohja)\n\nIn her first mission as a Bounty Hunter, Samus Arran was commissioned by the Galactic Federation to neutralise the stolen Metroids. Through careful investigation, Samus discovered that the Pirates are operating from Zebes – her home. She concluded that the Space Pirates had murdered her second family, as they had done with her first. They have took from her everyone she ever loved, and destroyed her two worlds. [M1]\n\n(Artist: Stuart Hughe)\n\nSamus stormed Zebes and killed everyone in her path. [M1]\n\n(Artist: Immarart)\n\nAs her defences were breached, Mother Brain unleashed the great generals Ridley and Kraid. Both were killled, and, desperate to stop the intruder, Mother Brain released the Metroids. Samus Aran exterminated the creatures, and invaded the inner sanctum. [M1]\n\n(Artist: Twigs)\n\nSamus confronted the malevolent Mother Brain and blasted apart her body. A power overload was caused, and the Tourian facility shook itself apart. Samus evacuated to her ship and tried to leave Zebes, but a Space Pirate battleship in orbit registered her ascent and opened fire. Samus’ gunship plummeted back towards the Zebes and impacted Chozodia, her former home. [M1]\n\nExtremely lucky to be alive, Samus crawled out of the remains of her destroyed power suit, and fled as Space Pirate forces stormed the area. Samus hid, crawled and ran to find sanctuary in the deepest part of the Chozo’s most revered temple. [M1]\n\n(Artist: Eyes5)\n\nSamus found herself surrounded with murals of the dead Chozo, and accepted she was alone in the universe. Overcoming despair, she solved the trials of the Chozodian temple and a concealed power suit was revealed to her. This shining armour was even more potent than the one she had just lost, and was able to integrate the most exotic Chozo technologies. Samus realised the greater meaning of her find; the Chozo had left her gifts for her in places they had foreseen she would traverse. Her adopted family continued to protect her long after their deaths, and she would find their statues cradling survival equipment in the darkest corners of the cosmos. [M1 / MP / MP3 / M2 / SM]\n\n(Artist: Imachinivid)\n\nWith her new armaments, Samus cleansed the Space Pirate presence from Zebes. She came to be known as “The Hunter”, and the Space Pirates learned that they will always be hunted down for what they did to her families. They fled the planet in terror. [M1 / MP / MP2 / MP3]\n\nTallon IV\n\nAs years passed, Samus Aran accepted further missions from the Galactic Federation. The bounty earned funded her personal vendetta against the Space Pirates. She improved her armaments, paid for black market information and stormed their outposts. Samus showed her enemies no mercy, and became the feared nemesis of their entire civilisation. With the income from her Federation services, Samus had soon amassed enough money to buy the most secret information regarding the Space Pirates: the coordinates of their stronghold on an old forgotten planet called Tallon IV. [MP1 SP]\n\nSamus guided her ship into the Tallon system and investigated an orbiting space station. She discovered a failed genetic engineering facility whose Space Pirate crew was murdered when they lost control of their own creations. Samus fought her way through the ferocious beasts scattered within, and discovered a half-insane cyborg recreation of the Space Pirate general Ridley. As the station began to collapse, the biomechanical dragon fled to the world below, and Samus pursued. [MP1]\n\n(Artist: Lightningarts)\n\nSamus lost Ridley in the planet’s stormy atmosphere, and elected to land in a nearby jungle to conceal her presence from the Pirate ground forces. Exploring the surroundings, Samus discovered that the planet was once home to the bulk of the extinct Chozo civilisation. In a great temple Samus studied poetic murals that told of the Phazon comet that had struck their world. The scribblings informed her of a creature trapped deep in the comet that they referred to as “The Worm,” and of the powerful shield they erected to prevent its escape. Samus read their last prophecy; that a hero would traverse fire and ice, jungle and cave, and find twelve sacred keys that would deactivate the barrier and allow passage to the Impact Crater. This saviour from the stars would bring down the ancient shield, and destroy the worm that infected their planet. [MP1]\n\nShe continued her exploration, and battled ferocious flora and fauna. The Hunter came to understand that the Space Pirates had established a complex military installation that descended far below the surface. [MP1]\n\n(Artist: R-Sraven)\n\nSamus hunted the Pirates and accessed their computer logs. The Empire had found quantities of an intensely potent mutagen called Phazon. Laboratories across the outpost experimented with the substance, and in a short space of time they had created prototypes for the next generation of their races: powerful Phazon-fuelled juggernauts. Should these advances continue, Samus knew that the Space Pirates would be able to conquer the Galactic Federation. [MP1]\n\n(Artist: Greenstranger)\n\nIn the most secure laboratory, Samus made a devastating discovery. The Space Pirates had used Phazon to create an army of stable clone Metroids and lost containment. The Metroid creatures were roaming the caverns deep in the planet, reproducing and mutating as the Phazon influenced their physiology. [MP1]\n\n(Artist: Ohimseeinstars)\n\nSamus’ final discovery was the most horrific. The powerful, poisonous Phazon was not a rare material on Tallon IV. Despite the Chozo shield containing the Impact Crater, the substance had spread and consumed the world inside-out. The core of the planet presented the Space Pirates with a vast supply of Phazon, enough to fuel their conquest of the stars. [MP1]\n\nSamus destroyed the mining facilities and laboratories, and reconstructed the twelve parts of the ancient Chozo cipher. She destroyed living weapons such as the Thardus experiment, and annihilated the prototype Omega Pirate. She overcame corrupted Metroids, and banished the tormented Chozo ghosts from the living world. She fought the mad Meta Ridley, and on his demise deactivated the Chozo containment shield. As prophesised, Samus Aran entered the Impact Crater. [MP1]\n\nThe Worm\n\nSamus Aran had opened Metroid Prime’s cage, and had no understanding of what she was about to unleash on the universe. The creature had been imprisoned in a different era, and had spent eons being tortuously transformed by Phazon into an undying mad genius. [MP1]\n\n(Artist: Chrysaetos-Pteron)\n\nSamus and the ancient Metroid battled, and the bounty hunter shattered the creature’s metal armour. By channelling the surrounding Phazon deposits into a supercharged energy beam, Samus was able to devastate Metroid Prime’s gelatinous body. After a tremendous battle, the old creature began to collapse on itself. [MP1]\n\n(Artist: Sabretoontigers)\n\nSeemingly dying, Metroid Prime lashed out, grabbing a layer of material from Samus Aran’s armour. The creature melted into a pool of Phazon particles, and the bounty hunter evacuated the Impact Crater. [MP1]\n\nSamus Aran had seemingly succeeded in her mission. The surviving Space Pirates abandoned their devastated facilities and hastily evacuated the planet. With the defeat of Metroid Prime, the Phazon contagion was slowly stopping its spread. The tormented Chozo spirits that had been bound to the planet were finally able to achieve their rest. Leaving the world to recover from its devastation, Samus Aran headed back to the stars. [MP1 / MP1 SP]\n\nThe Dark Hunter\n\nMetroid Prime’s exposure to millennia of Phazon had given the creature extremely exotic abilities, the most potent being its durability – to recreate itself after nearly any level of destruction. As it had collapsed on itself, the essence of Metroid Prime craved the strength and adaptability present in Samus Aran. In the Talon IV impact crater, Metroid Prime recreated itself as a dark copy of the woman who had defeated it. [MP 1 / MP2 / MP3 SP]\n\n(Artist: Imachinivid)\n\nDark Samus clawed its way out of the Impact Crater. It departed Tallon IV to spread its venom across the stars, and to sow the seeds of a great war. [MP1 / MP2 / MP3]\n\nClick here for the second half of this epic story.\n\nMama Robotnik is a video game historian living somewhere in the British Empire. He specialises in unearthing lost gaming media, but also enjoys a good long essay about his favourite games every now and then. He drinks a lot of tea, and has a horrendously naughty black and white cat called Blossom. If you would like to contact him, he responds to his private messages over at NeoGAF.\n\n","articleSection":"metroid","keywords":["metroid","kotaku longreads","nintendo"],"publisher":{"@type":"Organization","@context":"http://schema.org","name":"Kotaku","url":"https://kotaku.com","logo":{"@type":"ImageObject","width":500,"url":"https://x.kinja-static.com/assets/images/logos/newsletter/kotaku-500px.png"},"sameAs":["https://www.facebook.com/kotaku","https://www.youtube.com/user/KotakuNYC","https://twitter.com/kotaku","https://instagram.com/kotakudotcom"]},"video":[]}
                        ]]>
                        </script>
                        <div class="js_starterpost">
                            <div class="sc-1fofo4n-0 hbcmGw">
                                <div class="sc-83o472-1 yjpVX">
                                    <div class="sc-83o472-0 iimSGa">
                                        <div class="sc-1jc3ukb-0 ezwLgJ">
                                            <div class="sc-1jc3ukb-1 jLgjau">
                                                <div>
                                                    <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/18ztxif1rtccljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/18ztxif1rtccljpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_450,q_80,w_800/18ztxif1rtccljpg.jpg 800w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,q_80,w_1200/18ztxif1rtccljpg.jpg 1200w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,fl_progressive,g_center,h_900,q_80,w_1600/18ztxif1rtccljpg.jpg 1600w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18ztxif1rtccljpg.jpg 80w" sizes="40px" draggable="auto" data-chomp-id="18ztxif1rtccljpg" data-format="jpg" data-anim-src="" />
                                                </div>
                                            </div>
                                            <div class="sc-1jc3ukb-2 jpbKEQ">
                                                <div>
                                                    Mama Robotnik
                                                </div>
                                                <div class="sc-1jc3ukb-6 kyKjbV">
                                                    <time class="uhd9ir-0 lkqtha" datetime="2013-09-11T10:00:00-04:00"><a class="js_meta-time js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Permalink page click - post header&quot;,&quot;standard&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577">9/11/13 10:00AM</a></time>
                                                    <div class="sc-1jc3ukb-4 grWrOW">
                                                        •
                                                    </div>
                                                    <div class="sc-1jc3ukb-5 bNRtrM">
                                                        <div class="js_tag-dropdown">
                                                            <div class="sc-1dvfjie-2 eJinCt">
                                                                <a class="js_trigger js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink meta&quot;,&quot;Tag click&quot;,&quot;First tag click&quot;]]" href="/tag/metroid">
                                                                <div class="wvv3zm-1 kzkhwW">
                                                                    <span>Filed to:</span><span class="wvv3zm-2 dNAgCv">metroid</span><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ChevronDown icon" viewbox="0 0 18 18">
                                                                    <path fill-rule="evenodd" d="M3.87 6.16a.5.5 0 0 0-.74.68l5.5 6c.2.21.54.21.74 0l5.5-6a.5.5 0 1 0-.74-.68L9 11.76l-5.13-5.6z"></path></svg></span>
                                                                </div></a>
                                                                <div class="js_dropdown sc-1dvfjie-0 fhmHGL">
                                                                    <div class="sc-1dvfjie-1 hCitnH">
                                                                        <a class="wvv3zm-0 MWIGZ sc-10a86sv-0 fVjjcw js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink meta&quot;,&quot;Tag click&quot;,&quot;Dropdown tag click&quot;]]" title="metroid" href="/tag/metroid">metroid</a><a class="sc-10a86sv-0 fVjjcw js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink meta&quot;,&quot;Tag click&quot;,&quot;Dropdown tag click&quot;]]" title="kotaku longreads" href="/tag/kotaku-longreads">kotaku longreads</a><a class="sc-10a86sv-0 fVjjcw js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink meta&quot;,&quot;Tag click&quot;,&quot;Dropdown tag click&quot;]]" title="nintendo" href="/tag/nintendo">nintendo</a>
                                                                    </div>
                                                                </div>
                                                            </div>
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="sc-83o472-0 iimSGa">
                                        <div class="sc-15g8630-1 jOqHdi">
                                            <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink meta&quot;,&quot;Comment count click&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577#replies" rel="nofollow">
                                            <div class="sc-15g8630-0 hICZjh">
                                                <span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Bubble icon" viewbox="0 0 18 18">
                                                <path fill-rule="evenodd" d="M5.59 12.69c.84.49.73 1.4-.08 2.95l.13-.1c.8-.58 1.84-1.47 1.96-1.65l.16-.23.28.05c.7.12 2.63 0 4.15-.54 2.4-.84 3.85-2.5 3.95-5.28.04-3.28-2.98-6.05-6.64-6.05-3.67 0-6.64 2.72-6.64 6.06 0 2.01.93 3.61 2.72 4.78zm-.46.71A6.33 6.33 0 0 1 2 7.9C2 4.08 5.36 1 9.5 1c4.13 0 7.55 3.14 7.5 6.91-.12 3.15-1.8 5.1-4.52 6.05-1.52.54-3.4.7-4.35.6-.4.41-1.25 1.13-1.98 1.66a5.6 5.6 0 0 1-1.19.72c-.78.26-.96-.38-.6-1.01.88-1.5 1.09-2.27.83-2.5l-.06-.03z"></path></svg></span><span>158</span>
                                            </div></a>
                                            <div class="sc-15g8630-0 hICZjh">
                                                <div class="js_save-badge" data-state="{&quot;postId&quot;:&quot;1284029577&quot;,&quot;postPermalink&quot;:&quot;https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577&quot;,&quot;saveCount&quot;:52,&quot;isBigger&quot;:true}" data-post-id="1284029577" data-post-permalink="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577">
                                                    <div class="sc-1mn1yww-1 iftYcF">
                                                        <span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Bookmark icon" viewbox="0 0 18 18">
                                                        <path fill-rule="evenodd" d="M4 15.21l4.63-5.05a.5.5 0 0 1 .74 0L14 15.21V2H4v13.21zm5-3.97l-5.13 5.6A.5.5 0 0 1 3 16.5v-15c0-.28.22-.5.5-.5h11c.28 0 .5.22.5.5v15a.5.5 0 0 1-.87.33L9 11.24z"></path></svg></span>
                                                        <div class="sc-1mn1yww-0 OMwVz">
                                                            52
                                                        </div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                        <div class="sc-83o472-2 foLDPX">
                                            <div class="js_share-tools" data-position="top">
                                                <div class="sc-17x7c2u-2 gpwIdA">
                                                    <a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3Dkotaku_facebook" title="Share to Facebook" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Facebook&quot;,&quot;top&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Facebook icon" viewbox="0 0 18 18">
                                                    <path fill-rule="evenodd" d="M17 9.05A8.02 8.02 0 0 0 9 1C4.58 1 1 4.6 1 9.05A8.04 8.04 0 0 0 7.75 17v-5.62H5.72V9.05h2.03V7.28c0-2.02 1.2-3.14 3.02-3.14.88 0 1.8.16 1.8.16v1.98h-1.02c-.99 0-1.3.62-1.3 1.26v1.5h2.22l-.36 2.34h-1.86V17A8.04 8.04 0 0 0 17 9.05"></path></svg></span></span></a><a href="https://twitter.com/share?text=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;amp;via=@kotaku&amp;amp;url=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3Dkotaku_twitter" title="Share to Twitter" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Twitter&quot;,&quot;top&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Twitter icon" viewbox="0 0 18 18">
                                                    <path fill-rule="evenodd" d="M12.46 1.13c-2.04 0-3.7 1.78-3.7 3.97 0 .31.04.62.1.9a10.26 10.26 0 0 1-7.6-4.15A4.2 4.2 0 0 0 2.4 7.16a3.5 3.5 0 0 1-1.68-.5v.05a3.92 3.92 0 0 0 2.97 3.9 3.45 3.45 0 0 1-1.67.07 3.74 3.74 0 0 0 3.45 2.76A7.08 7.08 0 0 1 0 15.1a9.92 9.92 0 0 0 5.66 1.79c6.8 0 10.5-6.06 10.5-11.32v-.51A7.85 7.85 0 0 0 18 2.99c-.66.32-1.37.53-2.12.63a3.95 3.95 0 0 0 1.62-2.2c-.71.45-1.5.78-2.34.96a3.57 3.57 0 0 0-2.7-1.25"></path></svg></span></span></a><a href="mailto:?subject=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;body=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%253Futm_medium%3Dsharefromsite%2526utm_source%3Dkotaku_email%26utm_campaign=top" title="Share via Email" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Email&quot;,&quot;top&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Mail icon" viewbox="0 0 18 18">
                                                    <path fill-rule="evenodd" d="M14.5 3A2.5 2.5 0 0 1 17 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 1 12.5v-7A2.5 2.5 0 0 1 3.5 3h11zM2 5.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7l-.03-.3-6.34 5.67a.5.5 0 0 1-.38.13.5.5 0 0 1-.38-.13l-6.7-6-.02-.02c-.1.2-.15.41-.15.64zM14.5 4h-11c-.24 0-.45.05-.65.14l6.4 5.73 6.19-5.54c-.26-.2-.58-.33-.93-.33z"></path></svg></span></span></a><a href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577" title="Share via Link" data-ga="[[&quot;Share Tools&quot;, &quot;Copy url&quot;,&quot;top&quot;]]" class="js_share-via-link sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Link icon" viewbox="0 0 18 18">
                                                    <path fill-rule="evenodd" d="M11.06 7.75a.5.5 0 1 1-.7.7l-.85-.83a1.86 1.86 0 0 0-2.63 0l-4 4a1.86 1.86 0 0 0 0 2.64l1.33 1.33c.72.73 1.91.72 2.64 0l1.8-1.8a.5.5 0 1 1 .7.7l-1.8 1.8a2.87 2.87 0 0 1-4.05 0l-1.33-1.32a2.86 2.86 0 0 1 0-4.05l4-4.01a2.86 2.86 0 0 1 4.05 0l.84.84zm5.17-4.41a2.86 2.86 0 0 1 0 4.05l-4 4.01a2.86 2.86 0 0 1-4.05 0l-.84-.84a.5.5 0 1 1 .7-.71l.85.84c.73.73 1.9.73 2.63 0l4-4c.73-.73.73-1.91 0-2.64l-1.33-1.33a1.87 1.87 0 0 0-2.64 0l-1.8 1.8a.5.5 0 1 1-.7-.7l1.8-1.8a2.87 2.87 0 0 1 4.05 0l1.33 1.32z"></path></svg></span></span></a>
                                                </div>
                                            </div>
                                            <div class="post-tools-wrapper" data-state="{&quot;type&quot;:&quot;permalink&quot;,&quot;postId&quot;:&quot;1284029577&quot;,&quot;authorIds&quot;:[&quot;5831052853253101369&quot;],&quot;sharedToBlogId&quot;:null,&quot;status&quot;:&quot;PUBLISHED&quot;,&quot;postPermalink&quot;:&quot;https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577&quot;,&quot;wordCount&quot;:8302,&quot;isFeatured&quot;:false,&quot;isVideo&quot;:false,&quot;isEmbiggened&quot;:true,&quot;parentId&quot;:null,&quot;parentAuthorId&quot;:null,&quot;defaultBlogId&quot;:&quot;9&quot;,&quot;index&quot;:0,&quot;pageType&quot;:&quot;permalink&quot;,&quot;isDismissed&quot;:false,&quot;isBlocked&quot;:false}" data-post-id="1284029577" data-post-permalink="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577">
                                                <div class="sc-1vjnuu8-0 frTClM">
                                                    <div class="sc-12i6d45-0 jzcQTJ">
                                                        <div class="sc-12i6d45-1 cWiYXU"></div>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="js_post-content r43lxo-0 blgiqp">
                                <figure class="align--bleed js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 kivedT" data-id="18zu12g5xzyxojpg" data-recommend-id="image://18zu12g5xzyxojpg" data-format="jpg" data-width="970" data-height="546" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:970px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:56.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w" draggable="auto" data-chomp-id="18zu12g5xzyxojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>Nothing beats the passion of a true fan writing about something they love. That's what you're about to see here: one of the richest, most amazing tributes to a great gaming series that we've ever run on</em> Kotaku<em>. <strong>Warning #1:</strong> this one might make your browser chug, so close your other tabs. <strong>Warning #2:</strong> This piece might make it hurt a little more than there are no new</em> Metroid <em>games from Nintendo on the horizon.</em>
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>Please note that this is the first half of Mama Robotnik's massive</em> Metroid <em>story.</em> <span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108"><em>The second half can be found here</em></a></span><em>. The entire post is a greatly-expanded version of</em> <span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/showthread.php?t=649215&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/showthread.php?t=649215" target="_blank" rel="noopener noreferrer"><em>a post</em></a></span> <em>that Mama Robotnik originally published on the NeoGAF forum before revising and reworking it for Kotaku. Take it away, MR...</em>
                                </p>
                                <div id="swappable-mobile-ad-container" class="js_ad-mobile-dynamic swappable-mobile-ad-container js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile js_swappable-mobile-ad" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <div class="instream-native-video instream-permalink instream-native-video--mobile bxm4mm-0 gtgww"></div>
                                <aside class="inset--story branded-item branded-item--kotaku sc-1rh3ayr-5 kIoxhb" data-commerce-source="inset">
                                    <a class="inset--story__thumb sc-1rh3ayr-2 dIJDts js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Permalink page click - inset photo&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" rel="noopener noreferrer" target="_blank">
                                    <div class="js_lazy-image sc-1rh3ayr-1 iNvMiS">
                                        <div>
                                            <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_180,q_80,w_320/18zu0xoi51q3ajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_264,q_80,w_470/18zu0xoi51q3ajpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_450,q_80,w_800/18zu0xoi51q3ajpg.jpg 800w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_675,q_80,w_1200/18zu0xoi51q3ajpg.jpg 1200w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,fl_progressive,g_center,h_900,q_80,w_1600/18zu0xoi51q3ajpg.jpg 1600w, https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu0xoi51q3ajpg.jpg 80w" sizes="(max-width: 480px) 200px, 260px" draggable="auto" data-chomp-id="18zu0xoi51q3ajpg" data-format="jpg" data-anim-src="" />
                                        </div>
                                    </div><span class="ynl58c-0 fcMbEd"><svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" aria-label="Kotaku avatar" viewbox="0 0 64 64">
                                    <g fill="none" fill-rule="evenodd">
                                        <path fill="#FBC000" d="M0 0h64v64H0z"></path>
                                        <path fill="#FFF" d="M16.8 49.62l3.67-.14c4.05-.15 7.76-3.2 8.35-6.78l4.13-24.65-10.3-.3-5.84 31.87zM43.19 29.1c3.57.02 4.95 1.29 5.93 3.27l6.84 16.84c-1.73 1.54-9.79 1-12.08-5.04l-2.5-6.72h-1.15c-3.8.06-9.2-2.78-8.03-8.4l11 .05zm-22.2-11.38l-5.59-.16c-7.78-.22-9.93 5.3-9.28 8.88l13.26.13 1.6-8.85zm31.55 7.69c2.62-1.66 3.74-7.65 1.9-9.4l-13.51 3.4c-2.3 1.28-4.94 5.01-2.33 9.15l13.94-3.15z"></path>
                                    </g></svg></span></a>
                                    <div class="sc-1rh3ayr-6 gCydvg">
                                        <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Permalink page click - inset headline&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" rel="noopener noreferrer" target="_blank">
                                        <h6 class="sc-1rh3ayr-3 cysjdd">
                                            The Spectacular Story Of <em>Metroid</em>, Part 2
                                        </h6></a>
                                        <p class="sc-1rh3ayr-4 flvRyU">
                                            This article is a continuation of Mama Robotnik's epic telling of the story of Nintendo's Metroid…
                                        </p><a class="js_readmore inset--story__readmore sc-1rh3ayr-0 cKkWUs js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Permalink page click - inset read more link&quot;]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108" rel="noopener noreferrer" target="_blank">Read more</a>
                                    </div>
                                </aside>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Nintendo’s <em>Metroid</em> series tells us of a malevolent and vicious universe. It’s a maelstrom in which benevolent races are routinely extinguished, and corrupt empires wage war for ownership of living weapons.
                                </p>
                                <div class="bxm4mm-11 ciBKcm">
                                    <aside class="y7n5nk-0 etfWWT">
                                        <div class="sc-1auy74q-3 y7n5nk-3 iHzJmW">
                                            <div class="y7n5nk-1 jdIVZt">
                                                <div class="js_lazy-image y7n5nk-4 kvyumD">
                                                    <div>
                                                        <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/fmxkv4w3fn53bgahlsls.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/fmxkv4w3fn53bgahlsls.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/fmxkv4w3fn53bgahlsls.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/fmxkv4w3fn53bgahlsls.jpg 800w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_1600/fmxkv4w3fn53bgahlsls.jpg 1600w" sizes="320px" draggable="auto" data-chomp-id="fmxkv4w3fn53bgahlsls" data-format="jpg" data-anim-src="" />
                                                    </div>
                                                </div>
                                                <div class="y7n5nk-2 hepDvs">
                                                    <div class="sc-1auy74q-6 yLgPx">
                                                        <header class="sc-1auy74q-8 sc-1auy74q-9 hHYFwB">
                                                            <h2>
                                                                Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam...
                                                            </h2>
                                                        </header>
                                                    </div>
                                                    <div class="sc-1auy74q-11 hByOxy">
                                                        <span class="sc-1auy74q-19 djmGRD"><a href="https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540" data-ga="[[&quot;Mobile Commerce Inset Post Clicks&quot;,&quot;Mobile commerce inset - post click&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577&quot;],[&quot;ns:unique&quot;,&quot;Mobile Commerce Inset Post Clicks&quot;,&quot;Mobile commerce inset - post click&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577&quot;]]">Read on The Inventory</a></span>
                                                    </div>
                                                </div>
                                            </div>
                                        </div>
                                    </aside>
                                </div>
                                <div is="bulbs-dfp" class="ad-container dfp dfp-slot-OUTSTREAM_PASSBACK ad-teads-outstream teads-wrapper" data-ad-unit="OUTSTREAM_PASSBACK" data-targeting="{&quot;pos&quot;:&quot;outstream_passback&quot;}"></div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    It’s a place in which xenocide is a commissioned service, and grievances are resolved with planetary apocalypses. Everything is chaotically connected to a dead race of avian prophetic poets fighting a war throughout the cosmos. It’s a dark place to visit.
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    There are two purposes to this article: to explore the expansive lore of the <em>Metroid</em> universe – with speculation to fill in the gaps – and to exhibit some extraordinary <em>Metroid</em>-inspired art. All artwork is credited to its original source – follow the links to see further works of these spectacular artists.
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3288">
                                    <a class="js_header-anchor" id=""></a>Notes on Speculation and Lore
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The games tell us much about this hostile universe, but there are a lot of unresolved story points. In response to these mysteries, the article will provide a healthy amount of speculation. You can consider the piece to be either a makeshift timeline illustrated with fan-artwork, or simply an enthusiastic attempt to reconcile the series continuity into a cohesive whole. The article is informed by the extensive research previously performed by its author. The approach taken regarding speculation is thus: The logical inclusion of probable events that resolve mysteries, while maintaining the themes of the series.
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Before we begin, let’s briefly revisit the five points of essential lore:
                                </p>
                                <ul data-type="List" data-style="Bullet" class="sc-1lmbno3-0 eXGUJG">
                                    <li>Metroids are a genetically-engineered species, created by the Chozo in the prehistory of the games. By the time the first entry begins, Metroid creatures only exist on the planet SR388. At some point long before the games, there was also a Metroid presence on the planet Phaaze.
                                    </li>
                                </ul>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>(Metroid IL Return of Samus, Metroid Prime III: Corruption and Metroid Fusion)</em>
                                </p>
                                <ul data-type="List" data-style="Bullet" class="sc-1lmbno3-0 eXGUJG">
                                    <li>At least some Chozo possessed a native ability to see into the future.
                                    </li>
                                </ul>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>(Metroid: Zero Mission and Metroid Prime)</em>
                                </p>
                                <ul data-type="List" data-style="Bullet" class="sc-1lmbno3-0 eXGUJG">
                                    <li>The Chozo discovered the living planet Phaaze with their Elysian Research Outpost. We are not told what transpired immediately after this discovery, but something happened that caused at least one Metroid organism to appear on Phaaze. The planet then loaded this creature – along with pieces Chozo-style powersuit armour, into a Phazon seed and launched it towards a heavily populated Chozo planet. This seed impacted Tallon IV and is contained by the Chozo within an impenetrable shield. The mutated superevolved Metroid creature within – clad in crafted power armour – is trapped in the shield until Samus Aran deactivated it thousands of years later.
                                    </li>
                                </ul>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>(Metroid Prime EU release, Metroid Prime III: Corruption and Metroid Prime Trilogy)</em>
                                </p>
                                <ul data-type="List" data-style="Bullet" class="sc-1lmbno3-0 eXGUJG">
                                    <li>There are living planets in the <em>Metroid</em> Universe. Phaaze is explicitly referred to as being alive, and could interact with a sentient mind – as shown when a Galactic Federation Aurora Unit is implanted. The planet SR388 could be interpreted as having some form of sentience – it shook with apparent anger when its creatures were killed by Samus Aran, and precisely manipulated its oceans to lure the bounty hunter into hostile situations. (Metroid II: Return of Samus and Metroid Prime III: Corruption). The immediate backstory to the first game in the series is the discovery of the planet SR388. The final event of the final game in the chronology is the final destruction of SR388.
                                    </li>
                                </ul>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>(Metroid, Metroid II: Return of Samus)</em>
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3289">
                                    <a class="js_header-anchor" id=""></a>Referencing
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Each story section includes one or more of the below superscript annotations, to help inform the reader as to where the lore or speculation comes from. A brief key:
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqfwc3l0k28gif" data-recommend-id="image://18zqfwc3l0k28gif" data-format="gif" data-width="640" data-height="128" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 dXbcSW" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:20%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <video poster="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" data-webmsrc="https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqfwc3l0k28gif.webm" data-mp4src="https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqfwc3l0k28gif.mp4" data-postersrc="https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqfwc3l0k28gif.jpg" loop="" autoplay="" muted="" playsinline="" data-chomp-id="18zqfwc3l0k28gif" data-format="gif" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqfwc3l0k28gif.jpg"></video>
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With all that said, let us begin.
                                </p>
                                <h2 class="sc-1bwb26k-1 RjwRf" id="h3290">
                                    <a class="js_header-anchor" id=""></a>Part One: The Wars in Heaven
                                </h2>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3291">
                                    <a class="js_header-anchor" id=""></a>The Living Planet
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqg21aub0sljpg" data-recommend-id="image://18zqg21aub0sljpg" data-format="jpg" data-width="640" data-height="488" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:76.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w" draggable="auto" data-chomp-id="18zqg21aub0sljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <em>(</em><span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-dramatic-97410107&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-dramatic-97410107" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span><em>)</em>
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On an unknown planet in the universe, a race of avian humanoids evolved. The species that will come to be known as the Chozo possessed great strength, agility and intelligence. The species is peaceful, and is driven by a social/religious value that nature is sacred. [M1 / MP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqg86aaay9kjpg" data-recommend-id="image://18zqg86aaay9kjpg" data-format="jpg" data-width="640" data-height="575" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:89.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqg86aaay9kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Goddess-121103720&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Goddess-121103720" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Certain blessed individuals were born with a unique gift – the vague comprehension of events set to take place in the distant future. Driven by these prophecies, the race advanced quickly and became space faring. With abstract predictions of a hostile universe, the Chozo developed powered armour and armaments to defend themselves. Prepared for whatever hostility awaited them, the Chozo explored the stars. [M1 / MP / MP SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgmn6fovtyjpg" data-recommend-id="image://18zqgmn6fovtyjpg" data-format="jpg" data-width="640" data-height="409" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:63.9%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgmn6fovtyjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<em>Artist: Elearia</em>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo discovered that – despite their prophets’ visions of a chaotic and warring universe – the cosmos was enjoying a prolonged period of peace and enlightenment. First contact was made with a number of old and wise races, such as the Ylla, the N’kren, the Bryyonians, the Alimbic and the Luminoth. The species shared their cultures and technology, and gently colonised wild worlds such as Aether, Elysia, and Tallon IV. [MP / MPH / MP2 / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgp7wzq6v9jpg" data-recommend-id="image://18zqgp7wzq6v9jpg" data-format="jpg" data-width="640" data-height="503" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:78.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqgp7wzq6v9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883&quot;,{&quot;metric25&quot;:1}]]" href="http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883" target="_blank" rel="noopener noreferrer"><em>Artist: Slapshoft</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Peace reigned through the cosmos. The alliance was a great universal renaissance, and lasted for a millennium. [MPH SP / MP2 SP / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgqj9kac9hjpg" data-recommend-id="image://18zqgqj9kac9hjpg" data-format="jpg" data-width="640" data-height="426" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:66.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgqj9kac9hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    During this calm, the Chozo prophets continued to receive increasingly severe visions of chaos. They foresaw a universe consumed by war, horrors evolving on distant worlds, and a great toxicity waiting to be unleashed. As the visions became more precise, the species isolated itself from its allies. The Chozo civilisation became intensely driven to fight this unclear threat. [MP / MP3 SP / M2 SP /MF SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgrykgsndujpg" data-recommend-id="image://18zqgrykgsndujpg" data-format="jpg" data-width="640" data-height="273" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:42.7%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w" draggable="auto" data-chomp-id="18zqgrykgsndujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763&quot;,{&quot;metric25&quot;:1}]]" href="http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763" target="_blank" rel="noopener noreferrer"><em>Artist: DanilLovesFood</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo needed more potent tools to locate this unseen and distant danger. They expanded their SkyTown colony on the gas giant Elysia and remade it into a vast interstellar observatory powered by the planet’s endless storms. The facility was of such scale that an entire species of artificial life became necessary to maintain it. The Chozo created their first species – the mechanical Elysians. [MP3 / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Probes were launched across the universe, and the Elysians and Chozo scrutinised the data. The search took generations, while the planet’s tempestuous atmosphere battered SkyTown, weathering the station faster than the Elysians could maintain it. After countless probe launches, a partial transmission received from a decaying and distant satellite set prophecy in motion. [MP3]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgtjse9p7rjpg" data-recommend-id="image://18zqgtjse9p7rjpg" data-format="jpg" data-width="640" data-height="375" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:58.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgtjse9p7rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mechanical-hand.deviantart.com/art/Phaaze-138141037&quot;,{&quot;metric25&quot;:1}]]" href="http://mechanical-hand.deviantart.com/art/Phaaze-138141037" target="_blank" rel="noopener noreferrer"><em>Artist: Mechanical-Hand</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The data received was terrifying. The blue planet registered as an organism, somehow existing as both mineral and flesh. Impossible radiation pulsed from the surface, which overwhelmed the Chozo satellite and rendered it inert. The location of the planet was immediately lost, and only a broad region of space could be established. [MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With this find, the Chozo purpose on SkyTown was fulfilled. The race departed the facility, leaving the Elysians to continue their monitoring of the stars. The abandoned race of robots continued to launch satellites to try and rediscover the blue world, hopeful that such a discovery would herald the return of their Chozo creators. The Elysians searched unsuccessfully until Elysia’s endless storms eroded their civilisation into a rusted remnant. [MP3]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo reconciled their vague discovery of a blue living planet with their prophecies of toxicity. On this distant world of poison, could creatures have evolved so vicious that they endangered the universe? [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3292">
                                    <a class="js_header-anchor" id=""></a>The Invasion of Phaaze
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqgy9h1t7injpg" data-recommend-id="image://18zqgy9h1t7injpg" data-format="jpg" data-width="640" data-height="399" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:62.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w" draggable="auto" data-chomp-id="18zqgy9h1t7injpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-flighter-175094535&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-flighter-175094535" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Finding the exact location of the deadly planet becomes a priority for the Chozo civilisation. A gargantuan ship was assembled on the holy planet of Tallon IV, and dispatched to the dark corner of the universe where the Elysian satellite had been lost. The greatest Chozo warriors, scientists and prophets commenced a crusade for the hostile world, knowing that they would likely never make it back home. During their long journey, they conceive a name for their target: Phaaze. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhapd1bv1hjpg" data-recommend-id="image://18zqhapd1bv1hjpg" data-format="jpg" data-width="640" data-height="450" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:70.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhapd1bv1hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422" target="_blank" rel="noopener noreferrer"><em>Artist: SesakaTH</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Generations passed, and the Chozo expedition finally located the blue planet. As they approached, they witnessed the living world as it endlessly pulsed with blue and white energies. There was nothing like this place elsewhere in the universe. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Their scans confirmed their worst fears – this atmosphere was a bath of radiation and mutation – and evolution had produced horrors. [MP3 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhdvss5le8jpg" data-recommend-id="image://18zqhdvss5le8jpg" data-format="jpg" data-width="640" data-height="621" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:97%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhdvss5le8jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://samusmmx.deviantart.com/art/Phazon-Worm-252806281&quot;,{&quot;metric25&quot;:1}]]" href="http://samusmmx.deviantart.com/art/Phazon-Worm-252806281" target="_blank" rel="noopener noreferrer"><em>Artist: SamusMMX</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    For billions of years, Phaaze had mutated and irradiated life that evolved on its surface. The strongest creatures had survived to thrive in an ecosystem of beautiful poison. It was then that the Chozo understood: They had arrived at the home of the most devastating and deranged creatures in the known universe. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    If these monsters were to escape their containment on Phaaze, they would voraciously consume their way through the cosmos. With younger races only centuries away from space travel, the Chozo could not risk them finding this world and releasing its terrors. [MP3 SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo expedition came to an impasse. The threat of Phaaze’s superpredators had to be neutralised, but severe action against the planet would be sacrilege. The Chozo held life sacred, and refused to destroy the unique living world. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A dangerous plan was agreed upon. The expedition ship landed on Phaaze, exposing the crew to tremendous radiation. [MP3 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhfmxw5dphjpg" data-recommend-id="image://18zqhfmxw5dphjpg" data-format="jpg" data-width="640" data-height="532" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:83.1%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhfmxw5dphjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343&quot;,{&quot;metric25&quot;:1}]]" href="http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343" target="_blank" rel="noopener noreferrer"><em>Artist: Adoublea</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Chozo Warriors in power suits fought the planet’s creatures as they swarmed the ship. The soldiers battled, watching their kin die around them, in a desperate mission to buy time. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The scientists within the ship began to harness the intense radiation around them, to try and engineer an artificial predator that could neutralise the planet’s superpredators. With access to the unique Phazon mutagen that covered the poisonous world, genetic engineering that should have taken decades was done in days. The Chozo engineered the first Metroid. [MP3 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhh28q856sjpg" data-recommend-id="image://18zqhh28q856sjpg" data-format="jpg" data-width="640" data-height="598" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:93.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhh28q856sjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Metroid creature was unleashed onto the planet, and the radiation caused it to reproduce quickly. The resulting swarm of Metroids began to consume the planet’s monstrosities and established themselves as Phaaze’s apex predator. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo mission was complete. The worst creatures were being hunted to extinction, and the Metroids were expected to die from starvation soon after. The cost had been enormous – most of the crew had been killed defending the ship, and the survivors were deathly ill from radiation poisoning. The burnt and damaged ship took off for the long journey home, but the crew soon succumbed to the radiation they had endured. The autopilot took the ship of Chozo bodies home. [MP3 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhipfm1vidjpg" data-recommend-id="image://18zqhipfm1vidjpg" data-format="jpg" data-width="640" data-height="381" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:59.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhipfm1vidjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Phazon-Mines-178697159&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Phazon-Mines-178697159" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On Phaaze, the Metroid presence lasted decades as they consumed the planet’s superpredators. The corpses of Chozo warriors were absorbed into the planet, and their battle armour slowly became weathered and scattered. The planet’s slow sentience developed an outrage that seethed under its continents. It had been violated by the Chozo. As the Metroid infestation began to die out, Phaaze developed a very primitive concept of purpose and retribution. [MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Phaaze established a vague awareness of concepts it had absorbed from the brains of the Chozo warrior corpses – and the location of two worlds from the Chozo’s memories. As the planet entered its reproductive cycle, it purposely directed two of its seeds towards the planets Tallon IV and Aether. In the seed sent to the Chozo world, Phaaze included one of the last surviving Metroid creatures and some ruined pieces of Chozo armour, intended as a reminder of the crime Phaaze had endured at their hands. The planet sent its second seed to Aether, as the absorbed memories informed the living planet that its inhabitants were friends of the Chozo, and therefore the enemies of Phaaze. [MP 1 / MP 2 SP / MP3 SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The expedition ship – heavily damaged by radiation and lack of maintenance – was guided back to civilisation by an increasingly erratic auto-pilot. After decades it eventually approached the Chozo world of Zebes, and crash-landed onto its surface. The Chozo civilisation attempted to recover data logs from the wreckage with very limited success – they were able to understand the sacrifice that the heroic crew had made, and confirmed the apparent success of the Metroids in neutralising the creatures on the living planet. The Chozo authorities were unable to establish the location of Phaaze, or recover much in the way of scientific data concerning it. [MP3 SP / SM SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhkgkmizwijpg" data-recommend-id="image://18zqhkgkmizwijpg" data-format="jpg" data-width="640" data-height="380" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:59.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w" draggable="auto" data-chomp-id="18zqhkgkmizwijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As the Tallon IV seed began its centuries of travelling through space, the lone Metroid within absorbed vast amounts of Phazon and radiation. It became self-aware, and grew in size, intelligence and strength. It used the ruined pieces of Chozo armour to construct itself an exoskeleton, and descended into madness. The exoskeleton failed to protect the creature from the endless radiation, and the Metroid became as exotic as Phaaze’s extinct superpredators: An undying tortured genius. [MP / MP2 / MP3 / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The creature that would come to be known as Metroid Prime resented Phaaze for imprisoning it in the Leviathan. It resented the Chozo for creating and discarding the Metroids. It decided that it would survive, bring order to the chaotic universe that birthed it, and somehow enslave Phaaze to its will. In its solitude, immortal as a consequence of its mutations, Metroid Prime plotted its revenge against the universe. [MP / MP2 / MP3 / MP3 SP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3293">
                                    <a class="js_header-anchor" id=""></a>The Dark Planet
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With a clear understanding of the danger of living planets, the Chozo authority commenced a search for similar threats. With far more advanced technology than their ancestors had during the Elysian era, the Chozo were unfortunate enough to find a planet of even greater horrors. [MP 3 SP / M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhnuwesum0jpg" data-recommend-id="image://18zqhnuwesum0jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:75%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhnuwesum0jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://peacefistartist.deviantart.com/art/SR388-126083062&quot;,{&quot;metric25&quot;:1}]]" href="http://peacefistartist.deviantart.com/art/SR388-126083062" target="_blank" rel="noopener noreferrer">Artist: PeaceFistArtist</a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo detected strange readings coming from a world in a desolate part of the galaxy. The planet had been previously considered so obscure and unimportant that it didn’t have a name, merely catalogued with the codename SR388 and left to its obscurity. A detailed analysis picked up some extremely strange observations; though seemingly mineral, the caverns and liquids beneath the surface shifted with metabolic rhythm – as if the whole planet was somehow a living thing. A ship was dispatched, and the strongest Chozo warriors braved the caverns beneath the surface. [M2 / M2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Few made it back. They told of a cauldron of evil, an environment so hostile and vicious that it had birthed the most terrible things. [M2]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhokjxzrgmjpg" data-recommend-id="image://18zqhokjxzrgmjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:55.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhokjxzrgmjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160" target="_blank" rel="noopener noreferrer">Artist: LightningArts</a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Beneath that planet, evolution had been won by an abomination that could steal the flesh, abilities, memories and strengths of all of its prey. The creature was a fusion of energy and plasma that parasitized on life itself. With no word suitable for the nightmare they had discovered, the Chozo simply called it X. If these X-Parasites somehow gained access to the wider universe, there would be no force that could contain them. [M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The threat had to be dealt with. Remembering the apparent success of the Chozo expedition to Phaaze, a plan was put into action. The Chozo assembled their best and brightest, their strongest and wisest. They carved their way into SR388, and dispatched mechanical creatures to construct secure facilities. Robots and Chozo warriors repressed all instances of the X-Parasite as they found them, but casualties were high. The planet appeared to fight the Chozo at every turn, it drowned the invaders in acid and unleashed ambushes of creatures. The endless swam of X-Parasites gained strength from the corpses around them. [MP3 SP / M2]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Deep in the planet, a glass laboratory was created, its walls highly resistant to SR388’s acid belly. Here, in dangerous proximity to the X-Parasites, the Chozo scientists began their work. [M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhrsyn6h9wjpg" data-recommend-id="image://18zqhrsyn6h9wjpg" data-format="jpg" data-width="640" data-height="552" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:86.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhrsyn6h9wjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Account-119685313&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Account-119685313" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo tried to recreate the plan of their ancestors – the use of Metroids to pacify superpredators too dangerous to exist. Without access to the same planetary radiation and materials the Phaaze expedition had, progress was slow. As the war against the planet was raging around them, the Chozo scientists were able to engineer Metroids, but not a variant strong enough to overcome the X-Parasites. As more and more Chozo died protecting the laboratory, a different approach was needed. [M2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqht0ddb9ozjpg" data-recommend-id="image://18zqht0ddb9ozjpg" data-format="jpg" data-width="640" data-height="396" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:61.9%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w" draggable="auto" data-chomp-id="18zqht0ddb9ozjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177&quot;,{&quot;metric25&quot;:1}]]" href="http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177" target="_blank" rel="noopener noreferrer"><em>Artist: Starshadow76</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo succeeded in engineering a Metroid Queen, a colossal creature who would lay Metroid Hatchling eggs. When hatched, these resulting Metroids were strong and durable creatures, and finally potent enough to combat the X menace. The Chozo knew that to completely suppress the parasites, the Metroid presence on SR388 had to be permanent. To ensure that the species would not overfeed on the environment and wipe out its food chains, the scientists hardwired an instinct into the Metroid Queen’s feral mind: Only thirty-nine Metroids were to exist on the planet at any one time. This, it was hoped, would keep their numbers high enough to destroy any X re-emergence, but low enough so that they wouldn’t consume the rest of the life on the planet, and starve to death from lack of food. [M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The scientists assembled a payload of Hatchling Eggs and the surviving Chozo warriors distributed them across the planet. The eggs hatched quickly, and the X-Parasites were immediately overwhelmed by the infant Metroids. The X-Parasites were quickly hunted to near-extinction, with only a few surviving cells entering a state of suspension deep in the planet. [M2 SP / MF]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo had won their war, but only just. Most of the warriors and scientists had not survived, and those that were left had to make sure that the X-Parasites had been permanently suppressed. The planet shook with tremors; the earth shifted and acid poured, as if the world was trying to crush the Chozo in their glass laboratory. [M2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The X-Parasites did not return, and the Metroid Queen continued to scream as her glass prison shook. The Chozo didn’t realise it, but her despair was being heard. [M2 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqhuzegzvcfjpg" data-recommend-id="image://18zqhuzegzvcfjpg" data-format="jpg" data-width="640" data-height="415" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:64.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhuzegzvcfjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hermax669.deviantart.com/art/Omega-Metroid-93544917&quot;,{&quot;metric25&quot;:1}]]" href="http://hermax669.deviantart.com/art/Omega-Metroid-93544917" target="_blank" rel="noopener noreferrer"><em>Artist: Hermax669</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    SR388 had been violated by the Chozo. Though very different to Phaaze, SR388 had its own vague sense of awareness. It perceived the Chozo as a viral infection, and the dead X-Parasites as part of itself. It understood loss, and shook with ancient rage. [MP3 SP / M2 SP / MF SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    It changed itself to change the Metroids. It adopted them to replace the X-Parasites, and quickly killed the weaker breeds. It moved its radioactive minerals closer to their eggs and soon mutated the species. As SR388 had done with X, it did with the Metroids. It made them strong. [M2 SP / MF SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Alpha, Gamma, Zeta and Omega Metroids spawned quickly, and responded to the screams of their Queen. With their bulk and strength, they smashed through the glass laboratory and slaughtered their Chozo creators. The Chozo warriors were hunted down and crushed. [M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    SR388 developed into a new cauldron of hostility. The Metroids served as the apex predator, and the robots of the Chozo decayed into machine madness and prowled the ruins, killing on sight. The Chozo mission to suppress the X-Parasite had been a success, but the planet had gained its revenge. [M2 / M2 SP / MF]
                                </p>
                                <h2 class="sc-1bwb26k-1 RjwRf" id="h3294">
                                    <a class="js_header-anchor" id=""></a>Part Two: The End of the Renaissance
                                </h2>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3295">
                                    <a class="js_header-anchor" id=""></a>The Holy World
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo had devastated two planets for the good of the universe, and sustained many causalities. The superpredators of Phaaze were extinct and the X-Parasites were permanently suppressed. With the crisis over, the race became consumed with a collective sense of guilt over their necessary actions. The Chozo believed the life of the universe to be sacred, and had to reconcile their aggressive actions with their faith. [MP SP / MP3 SP / M2 / MF]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Worse still, their prophets continued to have visions of endless conflict and death. War was coming to the universe, and it seemed that their sins had not saved them. Many began to doubt these visions, and a schism occurred. [MP/ MP3 SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The bulk of the Chozo civilisation retired themselves from galactic affairs, leaving only a few scattered colonies amongst the stars. The race retreated to the holy planet of Tallon IV, to shun their technologies and begin simpler, poetic lives. These Chozo reconnected themselves to the natural world and tried to find a harmony with it. As time went on, the most potent prophets became manic, and tried to warn their fellows of a great poison that was to come. [M1 / MP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    These visions were met with increasing dismissal, but the day finally came when the prophets were believed. After eons swimming in the stars, Phaaze’s seed entered the Tallon system. [MP / MP3]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqidecyjp0ujpg" data-recommend-id="image://18zqidecyjp0ujpg" data-format="jpg" data-width="640" data-height="315" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:49.2%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w" draggable="auto" data-chomp-id="18zqidecyjp0ujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hameed.deviantart.com/art/Cessation-619497&quot;,{&quot;metric25&quot;:1}]]" href="http://hameed.deviantart.com/art/Cessation-619497" target="_blank" rel="noopener noreferrer"><em>Artist: Hameed</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Leviathan crashed down, and rained poison and death unto the world. The impact survivors watched as their sacred nature succumbed to the mutagens leaking from the seed, and barricaded themselves in their temples as the flora and fauna transformed. Phazon spread beneath the surface of the dying planet, and radiation storms battered the surface. [MP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiejsfe664jpg" data-recommend-id="image://18zqiejsfe664jpg" data-format="jpg" data-width="640" data-height="674" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:105.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w" draggable="auto" data-chomp-id="18zqiejsfe664jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://riivka.deviantart.com/art/Fading-321733899&quot;,{&quot;metric25&quot;:1}]]" href="http://riivka.deviantart.com/art/Fading-321733899" target="_blank" rel="noopener noreferrer"><em>Source: Riivka</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozos’ punishment for their sins, and the fulfilment of Phaaze’s wrath, reached biblical proportions. The Chozo of Tallon IV did not get to rest in peace. Their life energies suffered from Phazon disruption, and upon death they became mad ghosts who screamed forever as they were torn in and out of the material world. In this purgatory, the undead immaterial Chozo murdered anyone they could find. [MP / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As their numbers dwindled, the last of the Chozo constructed a great temple above the impact crater. Within this temple, they used what little technology remained to project an energy field around the Leviathan to slow the spread of contagion. As the Chozo civilisation on Tallon IV was extinguished, their dying prophets told of a hero who would one day emerge, to enter the crater and defeat the evil worm within. [MP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqigaxkohx4jpg" data-recommend-id="image://18zqigaxkohx4jpg" data-format="jpg" data-width="640" data-height="405" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:63.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w" draggable="auto" data-chomp-id="18zqigaxkohx4jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852&quot;,{&quot;metric25&quot;:1}]]" href="http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852" target="_blank" rel="noopener noreferrer"><em>Source: Havoc-DM</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Within the Impact Crater, Metroid Prime remained trapped within the Chozo energy field. In its armour constructed from ancient Chozo power suits, it continued its wait to be unleashed on the universe. [MP / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3296">
                                    <a class="js_header-anchor" id=""></a>Dark Echoes
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiho9ab5xrjpg" data-recommend-id="image://18zqiho9ab5xrjpg" data-format="jpg" data-width="640" data-height="639" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:99.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiho9ab5xrjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/luminoth-priest-191995430&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/luminoth-priest-191995430" target="_blank" rel="noopener noreferrer">Artist: 3ihard</a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On the planet Aether, an ancient race of mystics known as the Luminoth received the horrifying data coming from Tallon IV. In distant times, the Luminoth and the Chozo had been steadfast allies – until the Chozo retreat ended their ties. Desperate to assist, the Luminoth began to organise a rescue mission. [MP2 / MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqijbga70tljpg" data-recommend-id="image://18zqijbga70tljpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:75%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w" draggable="auto" data-chomp-id="18zqijbga70tljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133&quot;,{&quot;metric25&quot;:1}]]" href="http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133" target="_blank" rel="noopener noreferrer">Artist: PugOfDoon</a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A dark transmission was received from Tallon IV. The image showed a screaming, ghostly Chozo figure, flickering in and out of the living universe. In its undead madness, it spoke for its kin. It raged that they would kill anyone who would set foot on their world. The planet was pandemonium, a cursed world on which the dead could not die. As the signal faded, the Luminoth realised that there was no one left alive to rescue. [MP SP / MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Luminoth were receiving strange readings from the devastated planet. A mutagen was spreading, unlike anything they had ever encountered. They scanned the stars for its source, and made a devastating discovery – a mass of the same mutagen was on a collision course with Aether. Phaaze’s second seed had nearly arrived at its destination. [MP2 SP / MP3 SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The people of Aether turned to their technology to save them. Their planet had no native star of its own, and had been implanted millennia ago with a complex energy network that sustained all life. This system was reverently called the Light of Aether, and harnessed the light of the universe in its mechanism. The Luminoth realised that even with this great power, they could not destroy the Phazon Leviathan. A different approach was needed. [MP2 / MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqim04ra2w5jpg" data-recommend-id="image://18zqim04ra2w5jpg" data-format="jpg" data-width="640" data-height="736" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:115%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqim04ra2w5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247" target="_blank" rel="noopener noreferrer"><em>Artist: SesaKath</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Luminoth used their great Light to engineer a small pocket universe, a dark lifeless echo of existence. The plan was bold: they would use the Light of Aether to surgically open the fabric of reality in the path of the Phazon seed, and allow it to harmlessly enter the pocket universe. If all went well, they would be saved. [MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The day came, and the Leviathan entered Aether’s atmosphere. The Luminoth commenced their great plan. [MP2 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqimznelg78jpg" data-recommend-id="image://18zqimznelg78jpg" data-format="jpg" data-width="640" data-height="321" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:50.2%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w" draggable="auto" data-chomp-id="18zqimznelg78jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211&quot;,{&quot;metric25&quot;:1}]]" href="http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211" target="_blank" rel="noopener noreferrer"><em>Artist: Adriencgd</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Phaaze’s seed was a sum of living materials beyond Luminoth comprehension. It hit the pocket universe with incalculable force, and a tsunami of exotic energy ruptured space and time. The equipment containing the dark reality lost containment within moments, and the Luminoth were helpless as their creation expanded across the entire planet. A wave of dark energy absorbed creatures, structures and land into the dark universe, and what was once a single planet – was now two. [MP2 / MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Luminoth surveyed the devastation. The Phazon seed was gone – it had indeed collided with the dark universe. Entire continents, with millions of inhabitants, had vanished with it. [MP2 / MP2 SP
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiocyxn4ksjpg" data-recommend-id="image://18zqiocyxn4ksjpg" data-format="jpg" data-width="640" data-height="407" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:63.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiocyxn4ksjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462&quot;,{&quot;metric25&quot;:1}]]" href="http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462" target="_blank" rel="noopener noreferrer"><em>Artist: AzureParagon</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    In the dark universe, a grotesque world was being born. Previous inhabitants of Aether, having been absorbed when containment of the pocket universe was lost, found themselves twisted by the corrosive new reality around them. Most perished, and their flesh fed the strange carnivorous fungi that glowed sickly colours. Some survivors were mutated by the Phazon slowly spreading beneath the surface, and adapted to survive in the hostility. [MP2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Aether and its echo, the Phazon-infested Dark Aether, existed in synchronicity. As the Luminoth tried to rebuild their planet, it took only decades for cracks to form in the ether separating the two realities. As rips in the universe shattered open, Aether became a battlefield. [MP2]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiq826qgjkjpg" data-recommend-id="image://18zqiq826qgjkjpg" data-format="jpg" data-width="640" data-height="379" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:59.2%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiq826qgjkjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://xxkiragaxx.deviantart.com/art/ING-181463823&quot;,{&quot;metric25&quot;:1}]]" href="http://xxkiragaxx.deviantart.com/art/ING-181463823" target="_blank" rel="noopener noreferrer"><em>Artist: Xxkiragaxx</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A womb of Phazon mutation and dark energies had birthed a cunning and ferocious horde. The Ing erupted through the cracks between the two worlds, and commenced slaughter. They were fought back by the Luminoth, and a war began between the two parallel worlds. The Ing invaded Aether with regularity, and killed, pillaged and destroyed all that they could find. The Luminoth retaliated and crusaded into Dark Aether in their Light Suits, on suicide missions to exterminate the source of the Ing menace. Both sides suffered colossal casualties as the decades went on. [MP2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqirpbvm7a1jpg" data-recommend-id="image://18zqirpbvm7a1jpg" data-format="jpg" data-width="640" data-height="535" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:83.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w" draggable="auto" data-chomp-id="18zqirpbvm7a1jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/The-U-MOS-118477953&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/The-U-MOS-118477953" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The war was being lost by the Luminoth. The Ing had exterminated most of their race and had stolen too many vital technologies. With the theft of essential energy components from the Light of Aether power network, they had become a defeated people. [MP2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Ing had destroyed all of Aether’s ancient ships, and condemned the Luminoth to no escape from their doomed world. With no other choice, the survivors sealed themselves in an inner sanctum, and entered a state of suspended animation. One custodian, U-Mos, volunteered to be their guardian. As Aether became weaker and weaker, the Luminoth waited for someone to save them. They would wait a very long time. [MP2]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3297">
                                    <a class="js_header-anchor" id=""></a>The Sacrifice of the Alimbics
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqitehsufhejpg" data-recommend-id="image://18zqitehsufhejpg" data-format="jpg" data-width="640" data-height="393" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:61.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w" draggable="auto" data-chomp-id="18zqitehsufhejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125&quot;,{&quot;metric25&quot;:1}]]" href="http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125" target="_blank" rel="noopener noreferrer"><em>Artist: Kihunter</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As the Chozo and the Luminoth fell, so too did other ancient races. In a distant part of the universe, the Alimbics were a militaristic society that maintained peace in their galactic cluster. Their order was shattered when a murderous entity, originating from someplace beyond the understood universe, plummeted into one of their worlds. The creature emerged from the devastation as a gaseous entity, and assumed an Alimbic-styled body to begin its onslaught. [MPH]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    This alien juggernaut was named Gorea by the Alimbic race, and they soon understood it brought only death. Gorea killed every Alimbic it could find, and destroyed everything in its path. Planet after planet fell to Gorea, and the Alimbics realised the creature would never stop. [MPH]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiuxqv4hadjpg" data-recommend-id="image://18zqiuxqv4hadjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:55.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiuxqv4hadjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/The-Oubliette-46403925&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/The-Oubliette-46403925" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Alimbics performed an act of supreme sacrifice. They combined the mental energies of their entire race to forge a prison for Gorea. The psychic prison held it bound, and it was transplanted into an organic vessel called The Oubliette. The vessel was launched into the void outside of the universe, a course that would keep its indestructible prisoner in exile forever. The systems of the prison ship were tasked to scan the every molecule of the imprisoned Gorea, and devise an Omega weapon that could be used to kill it. [MPH / MPH SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The mental energies expelled in this plan consumed the physical bodies of the entire Alimbic race. They vanished from the universe in an instant. Their sacrifice protected all life in the cosmos from Gorea’s murderous rampage. [MPH]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3298">
                                    <a class="js_header-anchor" id=""></a>The War of Bryyo
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqixy9iqkrejpg" data-recommend-id="image://18zqixy9iqkrejpg" data-format="jpg" data-width="640" data-height="414" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:64.7%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w" draggable="auto" data-chomp-id="18zqixy9iqkrejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As the old races of the universe died around them, the lizard people of Bryyo faced their own challenges. The Bryyonians were an advanced, space-faring race who had learned much from their Chozo allies. Their society was a deeply polarised one, with tensions eternal between the scientific and religious factions.[MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Over the previous centuries, the scientific agenda had dominated, with space travel proving beneficial and enlightening. As the Chozo, Luminoth and Alimbics faced extinction, the religious Bryyonians believed more than ever that the universe was a hostile place, and became desperate to stop their scientific counterparts. [MP3]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A great war exploded across Bryyo. By its end, the scholars had been wiped out and the survivors of both sides had regressed to a feral existence. The race devolved into animals, wandering around ruins that they no longer understood. Language vanished and strength ruled. Anyone who landed on Bryyo was meat, to be killed and eaten. [MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3299">
                                    <a class="js_header-anchor" id=""></a>The Little Rainy Planet
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The onslaught of vengeances, conquerors, poisons and politics destroyed the old races. The Alimbics had lost their flesh, while the Bryyonians had lost their souls. The Luminoth had retreated into stasis, and the Chozo of Tallon IV had been condemned to a living death. [MP / MPH / MP2 / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqiznfcy0icjpg" data-recommend-id="image://18zqiznfcy0icjpg" data-format="jpg" data-width="640" data-height="430" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:67.2%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiznfcy0icjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151&quot;,{&quot;metric25&quot;:1}]]" href="http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151" target="_blank" rel="noopener noreferrer"><em>Artist: Kaiquesilva</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On a small, rainy planet called Zebes, the last known Chozo colony had watched the stars with impotence. This small settlement of the nearly-extinct avian race witnessed the end of the great universal renaissance, and the slow beginning of a new chapter in galactic history. Gradually, the younger races were launching their first satellites into space. In time, new empires would rise to take the place of the old. [M1 / M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqj0sv6pheljpg" data-recommend-id="image://18zqj0sv6pheljpg" data-format="jpg" data-width="640" data-height="591" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:92.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w" draggable="auto" data-chomp-id="18zqj0sv6pheljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Praying-for-Universe-179491357&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Praying-for-Universe-179491357" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Zebes prophets’ saw the visions the Chozo had always endured: great wars, spreading poison and death. And suddenly, something bold was foreseen. [M1 SP / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqj1sdn0v6rjpg" data-recommend-id="image://18zqj1sdn0v6rjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:82.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqj1sdn0v6rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://fddt.deviantart.com/art/Samus-Aran-368975394&quot;,{&quot;metric25&quot;:1}]]" href="http://fddt.deviantart.com/art/Samus-Aran-368975394" target="_blank" rel="noopener noreferrer"><em>Artist: Fddt</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A great hunter, clad in orange, red and green. The Chozo glimpsed a future hero, alone in the darkness beneath worlds, fighting so that good could survive evil. They saw her curing poisoned planets, and ending galactic wars. They saw the universe’s one chance to survive its apocalyptic future. They saw the only one who could defy prophecy. [M1 / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    And they saw her wearing Chozo armour. [M1]
                                </p>
                                <h2 class="sc-1bwb26k-1 RjwRf" id="h3300">
                                    <a class="js_header-anchor" id=""></a>Part Three: The New Empires
                                </h2>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3301">
                                    <a class="js_header-anchor" id=""></a>The Humans
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On the planet Earth, the human race had finally developed a ship capable of leaving their solar system. A brave crew ventured into the universe to learn whether life existed elsewhere. Their discoveries fundamentally changed the human condition. On planet after planet, they found ruined tombs and cities, guarded by weathered statues of dead races. Most significant of all, they found technology. [M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The humans reverse engineered their salvage, and advanced with pace. Within another century, faster-than-light ships explored the stars, and colonies transformed hostile worlds into homes. Peaceful relations formed between other younger races, and a great Galactic Federation was founded. [M1 SP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3302">
                                    <a class="js_header-anchor" id=""></a>The Space Pirates
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    In a less hospitable region of space, a cabal of battered races joined their forces to survive. On planets where acid rain burned flesh and magma flowed, the alliance expanded into a hardened space empire. They ventured into nearby systems and took what they needed from anyone they could reach. They found the ruins of the old races and ransacked the ancient technologies within. They immersed themselves in science and unlocked the secrets of their finds. Within decades, they had advanced their spread with stronger and faster ships. The creatures enhanced themselves, rewriting their genetics and integrating mechanisms beneath their flesh. They were unique: a cybernetic race of furious murderers with a skill for patient scientific process. As more planets were invaded, their conquered civilisations were conscripted by force. [M1 SP / MP / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The inevitable moment came when their Empire reached the borders of the vast Galactic Federation. [M1 SP / MP / MP3]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqjuebmfw70jpg" data-recommend-id="image://18zqjuebmfw70jpg" data-format="jpg" data-width="640" data-height="489" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:76.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjuebmfw70jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mr-corr.deviantart.com/art/fight-for-norion-175087687&quot;,{&quot;metric25&quot;:1}]]" href="http://mr-corr.deviantart.com/art/fight-for-norion-175087687" target="_blank" rel="noopener noreferrer"><em>Artist: Mr-Corr</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    First contact was brief and furious. On that day, the warning went out to all the worlds of the Federation: Beware the Space Pirates. Though no state of war was officially declared, the empires attacked each other on sight. The Galactic Federation was large enough to repress any meaningful incursions into their space. [M1 SP / MP SP / MP3 SP / SM SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3303">
                                    <a class="js_header-anchor" id=""></a>The Massacre of Two Families
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Galactic Federation discovered the last Chozo Colony on Zebes. The tired, ancient avians welcomed the humans and shared with them wisdom and knowledge. They offered the Galactic Federation new sciences, and taught them how to make organic computers. The Federation studied the Chozo’s own central processing unit, an engineered brain that mothered over their colony, and left with plans to assemble their own variants. On the nearest habitable planet of K-2L, a colony was established. [M1 / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    On this world, the human Samus Aran was born. [M1]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqjw7ft0zj5jpg" data-recommend-id="image://18zqjw7ft0zj5jpg" data-format="jpg" data-width="640" data-height="478" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:74.7%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjw7ft0zj5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Barely out of infancy, the young Samus witnessed her family die. A Space Pirate raiding party overwhelmed her colony and murdered everyone she ever knew. By staying silent while surrounded by horror, Samus survived as the Pirates ransacked the settlement and left. [M1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo colony on Zebes received K-2L’s automated distress signal. In an ancient dusty ship, they reached the planet and found Samus to be the only survivor of the massacre. The child was brought to Zebes, and the Chozo deliberated. Should she be returned to her own kind, or allowed to stay? [M1]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Across the colony, the Prophets experienced a simultaneous moment of clarity. They understood immediately that they had found their prophesised hero. The young girl was their inheritor, and would grow strong. She would learn all she could from them, and take their strongest technologies into the universe. She would be the hero against the oncoming storm. [M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqjz9xd98ltjpg" data-recommend-id="image://18zqjz9xd98ltjpg" data-format="jpg" data-width="640" data-height="524" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:81.9%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjz9xd98ltjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894&quot;,{&quot;metric25&quot;:1}]]" href="http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894" target="_blank" rel="noopener noreferrer"><em>Artist: R3dFiVe</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus Aran reached maturity amongst the Chozo. She was trained in the combat arts of the great extinct races. She was infused with Chozo genetic material so she could employ their technologies. She was educated to be a scientist, an explorer, and a tactician. Everything that was good about the Chozo civilisation was allowed to live on in Samus. [M1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqjzzky4ffnjpg" data-recommend-id="image://18zqjzzky4ffnjpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:80.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjzzky4ffnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pyra.deviantart.com/art/Decaying-Elder-53293713&quot;,{&quot;metric25&quot;:1}]]" href="http://pyra.deviantart.com/art/Decaying-Elder-53293713" target="_blank" rel="noopener noreferrer"><em>Artist: Pyra</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus became an adult, and the Chozo presented her with their greatest works: a toughened power suit and an agile spacecraft, both more potent than anything their race had ever made. The Chozo leader, decaying and blind, told Samus it was time for her to find her destiny in the universe. Samus Aran departed for the stars, and years pass. [M1 / M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As Samus tried to reconnect with her heritage on Earth, the last Chozo prophets on Zebes received a final vision: The Space Pirates were coming for them. It was time for the last Chozo to be extinguished from the universe. [M1 SP]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqk1guma1bojpg" data-recommend-id="image://18zqk1guma1bojpg" data-format="jpg" data-width="640" data-height="401" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:62.7%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w" draggable="auto" data-chomp-id="18zqk1guma1bojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://phobos-romulus.deviantart.com/art/The-Chozo-187935440&quot;,{&quot;metric25&quot;:1}]]" href="http://phobos-romulus.deviantart.com/art/The-Chozo-187935440" target="_blank" rel="noopener noreferrer"><em>Artist: Phobos-Romulus</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Chozo hid their technologies throughout the planet, in places that they were certain Samus would find them. They concealed a second Power Suit within the walls of their holy temple, having foreseen that Samus may require it in the future. They then returned to the surface to await the inevitable. [M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Space Pirates invaded in force, and murdered Samus Aran’s second family. The Chozo became extinct. [M1 / MP SP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3304">
                                    <a class="js_header-anchor" id=""></a>The Mother Brain
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Space Pirate scientists arrived shortly after the carnage and focused their attention on the legendary Chozo organic central processing unit. They rewrote its benign programming and injected stimulants into its flesh. They enabled it to form an artificial intelligence obsessed with strategy and conquest. They drove its computational potential towards absolute advancement of the Space Pirate Empire. [M1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqk2icdbv0cjpg" data-recommend-id="image://18zqk2icdbv0cjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:82.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk2icdbv0cjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://jaagup.deviantart.com/art/mother-brain-258536723&quot;,{&quot;metric25&quot;:1}]]" href="http://jaagup.deviantart.com/art/mother-brain-258536723" target="_blank" rel="noopener noreferrer"><em>Artist: Jaagup</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The results went beyond High Command’s most optimistic projections. The Space Pirates had created a leader, a desperately needed figure to unite their fragmented empire. They had created their Mother Brain. The great Space Pirate generals Ridley and Kraid arrived at Zebes, ready to pay tribute to their new master and to plan for the future. Mother Brain delivered to the Space Pirates knowledge and power. She told them of a world referenced in her oldest Chozo databanks, a planet bathed in a mutagenic poison waiting to be farmed. She instructed High Command to prepare an armada of ships and invade the planet Tallon IV. [M1 / MP SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The order was followed immediately, and the High Command discovered a world deranged by contagion. Beneath its surface, endless pools of Phazon waited to be weaponised, and a great mining operation began. Mother Brain received data from their readings on the planet; even after thousands of years, the source of the Phazon was still contained in the Chozo force field. She scrutinised her records further, and was unable to ascertain any method of breaching the barrier. The Space Pirates could retrieve the Phazon, but were denied access to its source. [MP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3305">
                                    <a class="js_header-anchor" id=""></a>The Metroids
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A perfect storm brewed. As the Space Pirates gained access to the most potent mutagen in the universe, the Galactic Federation made an equally eventful discovery: They found the dark planet SR388. [M1 / M2]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqk5mt4ocetjpg" data-recommend-id="image://18zqk5mt4ocetjpg" data-format="jpg" data-width="640" data-height="477" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:74.5%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk5mt4ocetjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://firebornform.deviantart.com/art/SR388-Tunnels-353312617&quot;,{&quot;metric25&quot;:1}]]" href="http://firebornform.deviantart.com/art/SR388-Tunnels-353312617" target="_blank" rel="noopener noreferrer"><em>Artist: Fireborn Form</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    A Galactic Federation survey team studied the surface, and soon encountered a gelatinous creature that swam through air. The alien defied gravity and physics as it phased through dense rock with ease. It perceived the survey team, and made a few curious chirps in their direction. It then suddenly changed temperament, aggressively charging to latch itself onto the skull of one of the party. The victim died in agony as the Metroid fed on all the energy within, and could not be removed until its prey had been reduced to a dried husk of collapsing matter. The young Metroid had just killed, in a way that science could not explain. [M1 SP / M2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With effort and casualties, the scientists contained a few infant specimens of the Metroid creatures, and left the planet without further incident. [M1]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As their vessel went back to the stars, SR388 was aware their withdrawal. It harboured a great contempt for the invaders, an endless hate fuelled by the impotence it endured centuries ago when the Chozo had committed their great invasion. The living planet had spent centuries honing the Metroids into perfect killers, and knew the devastation they could cause upon maturity. The planet had intentionally allowed the humans to take a few Metroids away so that the creatures could grow up and kill anyone out amongst the stars who ever thought of returning. SR388 took any opportunity to gain revenge against an outside universe that refused to leave it alone. [M2 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As the scientists began to broadcast their findings back to the Galactic Federation, Mother Brain intercepted the transmission. She cross-referenced their data with notes buried in the Chozo’s ancient fragmented records. She deduced that the Metroids were a form of genetically engineered predator of incredible power, created by the Chozo for an unknown purpose. Mother Brain ordered High Command to get the creatures to her by any means necessary. [M1 SP]
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    The Space Pirates overran the Galactic Federation vessel and stole the Metroid creatures. They divided their prize: some were sent to their nearest Homeworld; others were sent to the Tallon IV outpost; and the most potent were delivered straight to Zebes for the experiments of Mother Brain. [M1 / MP / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With the arrival of the first Phazon samples from Tallon IV, the exotic substance allowed the Space Pirates to slowly produce stable cloned Metroids across their breeding sites. [M1 SP / MP SP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3306">
                                    <a class="js_header-anchor" id=""></a>The Revenge of Samus Aran
                                </h3>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqk7ps96cb3jpg" data-recommend-id="image://18zqk7ps96cb3jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:75%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w" draggable="auto" data-chomp-id="18zqk7ps96cb3jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://ojanpohja.deviantart.com/art/Space-Pirate-31294390&quot;,{&quot;metric25&quot;:1}]]" href="http://ojanpohja.deviantart.com/art/Space-Pirate-31294390" target="_blank" rel="noopener noreferrer"><em>Artist: Ojanpohja</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    In her first mission as a Bounty Hunter, Samus Arran was commissioned by the Galactic Federation to neutralise the stolen Metroids. Through careful investigation, Samus discovered that the Pirates are operating from Zebes – her home. She concluded that the Space Pirates had murdered her second family, as they had done with her first. They have took from her everyone she ever loved, and destroyed her two worlds. [M1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqk8x71i4gnjpg" data-recommend-id="image://18zqk8x71i4gnjpg" data-format="jpg" data-width="640" data-height="384" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:60%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk8x71i4gnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://stuarthughe.deviantart.com/art/Samus-Varia-322194081&quot;,{&quot;metric25&quot;:1}]]" href="http://stuarthughe.deviantart.com/art/Samus-Varia-322194081" target="_blank" rel="noopener noreferrer"><em>Artist: Stuart Hughe</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus stormed Zebes and killed everyone in her path. [M1]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkachpcz0ijpg" data-recommend-id="image://18zqkachpcz0ijpg" data-format="jpg" data-width="640" data-height="530" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:82.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w" draggable="auto" data-chomp-id="18zqkachpcz0ijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://immarart.deviantart.com/art/Metroid-337270954&quot;,{&quot;metric25&quot;:1}]]" href="http://immarart.deviantart.com/art/Metroid-337270954" target="_blank" rel="noopener noreferrer"><em>Artist: Immarart</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As her defences were breached, Mother Brain unleashed the great generals Ridley and Kraid. Both were killled, and, desperate to stop the intruder, Mother Brain released the Metroids. Samus Aran exterminated the creatures, and invaded the inner sanctum. [M1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkbhxb2ugpjpg" data-recommend-id="image://18zqkbhxb2ugpjpg" data-format="jpg" data-width="640" data-height="360" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:56.3%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkbhxb2ugpjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495&quot;,{&quot;metric25&quot;:1}]]" href="http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495" target="_blank" rel="noopener noreferrer"><em>Artist: Twigs</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus confronted the malevolent Mother Brain and blasted apart her body. A power overload was caused, and the Tourian facility shook itself apart. Samus evacuated to her ship and tried to leave Zebes, but a Space Pirate battleship in orbit registered her ascent and opened fire. Samus’ gunship plummeted back towards the Zebes and impacted Chozodia, her former home. [M1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Extremely lucky to be alive, Samus crawled out of the remains of her destroyed power suit, and fled as Space Pirate forces stormed the area. Samus hid, crawled and ran to find sanctuary in the deepest part of the Chozo’s most revered temple. [M1]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkdb1egv73jpg" data-recommend-id="image://18zqkdb1egv73jpg" data-format="jpg" data-width="640" data-height="500" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:78.1%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkdb1egv73jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://eyes5.deviantart.com/art/Blessing-6012954&quot;,{&quot;metric25&quot;:1}]]" href="http://eyes5.deviantart.com/art/Blessing-6012954" target="_blank" rel="noopener noreferrer"><em>Artist: Eyes5</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus found herself surrounded with murals of the dead Chozo, and accepted she was alone in the universe. Overcoming despair, she solved the trials of the Chozodian temple and a concealed power suit was revealed to her. This shining armour was even more potent than the one she had just lost, and was able to integrate the most exotic Chozo technologies. Samus realised the greater meaning of her find; the Chozo had left her gifts for her in places they had foreseen she would traverse. Her adopted family continued to protect her long after their deaths, and she would find their statues cradling survival equipment in the darkest corners of the cosmos. [M1 / MP / MP3 / M2 / SM]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkeig3z5btjpg" data-recommend-id="image://18zqkeig3z5btjpg" data-format="jpg" data-width="640" data-height="374" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:58.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkeig3z5btjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Super-missile-309591371&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Super-missile-309591371" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    With her new armaments, Samus cleansed the Space Pirate presence from Zebes. She came to be known as “The Hunter”, and the Space Pirates learned that they will always be hunted down for what they did to her families. They fled the planet in terror. [M1 / MP / MP2 / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3307">
                                    <a class="js_header-anchor" id=""></a>Tallon IV
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    As years passed, Samus Aran accepted further missions from the Galactic Federation. The bounty earned funded her personal vendetta against the Space Pirates. She improved her armaments, paid for black market information and stormed their outposts. Samus showed her enemies no mercy, and became the feared nemesis of their entire civilisation. With the income from her Federation services, Samus had soon amassed enough money to buy the most secret information regarding the Space Pirates: the coordinates of their stronghold on an old forgotten planet called Tallon IV. [MP1 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus guided her ship into the Tallon system and investigated an orbiting space station. She discovered a failed genetic engineering facility whose Space Pirate crew was murdered when they lost control of their own creations. Samus fought her way through the ferocious beasts scattered within, and discovered a half-insane cyborg recreation of the Space Pirate general Ridley. As the station began to collapse, the biomechanical dragon fled to the world below, and Samus pursued. [MP1]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkglfb56vojpg" data-recommend-id="image://18zqkglfb56vojpg" data-format="jpg" data-width="640" data-height="311" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:48.6%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w" draggable="auto" data-chomp-id="18zqkglfb56vojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172" target="_blank" rel="noopener noreferrer"><em>Artist: Lightningarts</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus lost Ridley in the planet’s stormy atmosphere, and elected to land in a nearby jungle to conceal her presence from the Pirate ground forces. Exploring the surroundings, Samus discovered that the planet was once home to the bulk of the extinct Chozo civilisation. In a great temple Samus studied poetic murals that told of the Phazon comet that had struck their world. The scribblings informed her of a creature trapped deep in the comet that they referred to as “The Worm,” and of the powerful shield they erected to prevent its escape. Samus read their last prophecy; that a hero would traverse fire and ice, jungle and cave, and find twelve sacred keys that would deactivate the barrier and allow passage to the Impact Crater. This saviour from the stars would bring down the ancient shield, and destroy the worm that infected their planet. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    She continued her exploration, and battled ferocious flora and fauna. The Hunter came to understand that the Space Pirates had established a complex military installation that descended far below the surface. [MP1]
                                </p>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkick4w4i9jpg" data-recommend-id="image://18zqkick4w4i9jpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:80.8%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkick4w4i9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678&quot;,{&quot;metric25&quot;:1}]]" href="http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678" target="_blank" rel="noopener noreferrer"><em>Artist: R-Sraven</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus hunted the Pirates and accessed their computer logs. The Empire had found quantities of an intensely potent mutagen called Phazon. Laboratories across the outpost experimented with the substance, and in a short space of time they had created prototypes for the next generation of their races: powerful Phazon-fuelled juggernauts. Should these advances continue, Samus knew that the Space Pirates would be able to conquer the Galactic Federation. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--bleed js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 kivedT" data-id="18zqkje1rl63yjpg" data-recommend-id="image://18zqkje1rl63yjpg" data-format="jpg" data-width="800" data-height="816" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:800px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:102%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w" draggable="auto" data-chomp-id="18zqkje1rl63yjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Greenstranger</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    In the most secure laboratory, Samus made a devastating discovery. The Space Pirates had used Phazon to create an army of stable clone Metroids and lost containment. The Metroid creatures were roaming the caverns deep in the planet, reproducing and mutating as the Phazon influenced their physiology. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqklb3wp0jajpg" data-recommend-id="image://18zqklb3wp0jajpg" data-format="jpg" data-width="640" data-height="365" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:57%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w" draggable="auto" data-chomp-id="18zqklb3wp0jajpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Ohimseeinstars</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus’ final discovery was the most horrific. The powerful, poisonous Phazon was not a rare material on Tallon IV. Despite the Chozo shield containing the Impact Crater, the substance had spread and consumed the world inside-out. The core of the planet presented the Space Pirates with a vast supply of Phazon, enough to fuel their conquest of the stars. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus destroyed the mining facilities and laboratories, and reconstructed the twelve parts of the ancient Chozo cipher. She destroyed living weapons such as the Thardus experiment, and annihilated the prototype Omega Pirate. She overcame corrupted Metroids, and banished the tormented Chozo ghosts from the living world. She fought the mad Meta Ridley, and on his demise deactivated the Chozo containment shield. As prophesised, Samus Aran entered the Impact Crater. [MP1]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3308">
                                    <a class="js_header-anchor" id=""></a>The Worm
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus Aran had opened Metroid Prime’s cage, and had no understanding of what she was about to unleash on the universe. The creature had been imprisoned in a different era, and had spent eons being tortuously transformed by Phazon into an undying mad genius. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkn672gklqjpg" data-recommend-id="image://18zqkn672gklqjpg" data-format="jpg" data-width="640" data-height="499" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:78%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkn672gklqjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<em>Artist: Chrysaetos-Pteron</em>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus and the ancient Metroid battled, and the bounty hunter shattered the creature’s metal armour. By channelling the surrounding Phazon deposits into a supercharged energy beam, Samus was able to devastate Metroid Prime’s gelatinous body. After a tremendous battle, the old creature began to collapse on itself. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkodlj2z8kjpg" data-recommend-id="image://18zqkodlj2z8kjpg" data-format="jpg" data-width="640" data-height="525" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:82%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkodlj2z8kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sabretoontigers.deviantart.com/art/Samus-308644319&quot;,{&quot;metric25&quot;:1}]]" href="http://sabretoontigers.deviantart.com/art/Samus-308644319" target="_blank" rel="noopener noreferrer"><em>Artist: Sabretoontigers</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Seemingly dying, Metroid Prime lashed out, grabbing a layer of material from Samus Aran’s armour. The creature melted into a pool of Phazon particles, and the bounty hunter evacuated the Impact Crater. [MP1]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Samus Aran had seemingly succeeded in her mission. The surviving Space Pirates abandoned their devastated facilities and hastily evacuated the planet. With the defeat of Metroid Prime, the Phazon contagion was slowly stopping its spread. The tormented Chozo spirits that had been bound to the planet were finally able to achieve their rest. Leaving the world to recover from its devastation, Samus Aran headed back to the stars. [MP1 / MP1 SP]
                                </p>
                                <h3 class="sc-1bwb26k-1 RjwRf" id="h3309">
                                    <a class="js_header-anchor" id=""></a>The Dark Hunter
                                </h3>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Metroid Prime’s exposure to millennia of Phazon had given the creature extremely exotic abilities, the most potent being its durability – to recreate itself after nearly any level of destruction. As it had collapsed on itself, the essence of Metroid Prime craved the strength and adaptability present in Samus Aran. In the Talon IV impact crater, Metroid Prime recreated itself as a dark copy of the woman who had defeated it. [MP 1 / MP2 / MP3 SP]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <figure class="align--center js_lazy-image js_marquee-assetfigure sc-1eow4w5-1 iLDaWI" data-id="18zqkq6pqyr8ljpg" data-recommend-id="image://18zqkq6pqyr8ljpg" data-format="jpg" data-width="640" data-height="412" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
                                    <div class="img-wrapper sc-1eow4w5-2 gfolHV" contenteditable="false" style="max-width:640px" data-syndicationrights="false">
                                        <div class="magnifier js_lightbox lightbox hide sc-1m41dwj-0 hUFSvg">
                                            <span class="js_lightbox-wrapper sc-1eow4w5-0 dUoECc"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="ZoomIn icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M10.5 1a6.5 6.5 0 1 1-4.23 11.44l-4.42 4.41a.5.5 0 0 1-.7-.7l4.41-4.42A6.5 6.5 0 0 1 10.5 1zm0 1a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11zm0 2c.28 0 .5.22.5.5V7h2.5a.5.5 0 0 1 .5.41v.09a.5.5 0 0 1-.5.5H11v2.5a.5.5 0 0 1-.41.5h-.09a.5.5 0 0 1-.5-.5V8H7.5a.5.5 0 0 1-.5-.41V7.5c0-.28.22-.5.5-.5H10V4.5a.5.5 0 0 1 .41-.5z"></path></svg></span></span>
                                        </div>
                                        <div style="padding-bottom:64.4%" class="image-hydration-wrapper sc-1eow4w5-3 iJyiXs">
                                            <div>
                                                <img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w" draggable="auto" data-chomp-id="18zqkq6pqyr8ljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" />
                                            </div>
                                        </div>
                                    </div>
                                </figure>
                                <p class="sc-77igqf-0 hJpRRP">
                                    (<span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>)
                                </p>
                                <p class="sc-77igqf-0 hJpRRP">
                                    Dark Samus clawed its way out of the Impact Crater. It departed Tallon IV to spread its venom across the stars, and to sow the seeds of a great war. [MP1 / MP2 / MP3]
                                </p>
                                <div id="" class="js_ad-mobile-dynamic js_ad-dynamic ad-mobile-dynamic movable-ad bxm4mm-4 liWXlp">
                                    <div class="bxm4mm-1 bxm4mm-2 iXYVqp"></div>
                                    <div class="ad-unit ad-mobile bxm4mm-5 eZvXLs">
                                        <div class="bxm4mm-6 eblHLt">
                                            Advertisement
                                        </div>
                                        <div is="bulbs-dfp" class="ad-container dfp dfp-slot-MOBILE_IN_POST ad-mobile" data-ad-unit="MOBILE_IN_POST" data-targeting="{&quot;pos&quot;:&quot;mobile_inpost&quot;}"></div>
                                        <div class="bt-wrapper"></div>
                                    </div>
                                    <div class="bxm4mm-1 bxm4mm-3 dciqNP"></div>
                                </div>
                                <p class="sc-77igqf-0 hJpRRP">
                                    <span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108"><em>Click here for the second half of this epic story.</em></a></span>
                                </p>
                                <hr class="gcp5ez-0 dGHwsG" />
                                <p class="sc-77igqf-0 hJpRRP">
                                    <small>Mama Robotnik is a video game historian living somewhere in the British Empire. He specialises in unearthing lost gaming media, but also enjoys a good long essay about his favourite games every now and then. He drinks a lot of tea, and has a horrendously naughty black and white cat called Blossom. If you would like to contact him, he responds to his private messages over at</small> <span><a class="sc-145m8ut-0 FoItC js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/" target="_blank" rel="noopener noreferrer"><small>NeoGAF</small></a></span><small>.</small>
                                </p>
                            </div>
                            <div class="sc-18b1b2r-5 ccAJCg">
                                <div>
                                    <h4 class="z1qon0-0 sHsHa">
                                        Share This Story
                                    </h4>
                                    <div class="js_share-tools sc-18b1b2r-0 jZyWXs" data-position="bottom">
                                        <div class="sc-17x7c2u-2 gpwIdA">
                                            <a href="https://facebook.com/sharer.php?u=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_facebook" title="Share to Facebook" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Facebook&quot;,&quot;bottom&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Facebook icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M17 9.05A8.02 8.02 0 0 0 9 1C4.58 1 1 4.6 1 9.05A8.04 8.04 0 0 0 7.75 17v-5.62H5.72V9.05h2.03V7.28c0-2.02 1.2-3.14 3.02-3.14.88 0 1.8.16 1.8.16v1.98h-1.02c-.99 0-1.3.62-1.3 1.26v1.5h2.22l-.36 2.34h-1.86V17A8.04 8.04 0 0 0 17 9.05"></path></svg></span></span></a><a href="https://twitter.com/share?text=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;amp;url=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_twitter" title="Share to Twitter" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Twitter&quot;,&quot;bottom&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Twitter icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M12.46 1.13c-2.04 0-3.7 1.78-3.7 3.97 0 .31.04.62.1.9a10.26 10.26 0 0 1-7.6-4.15A4.2 4.2 0 0 0 2.4 7.16a3.5 3.5 0 0 1-1.68-.5v.05a3.92 3.92 0 0 0 2.97 3.9 3.45 3.45 0 0 1-1.67.07 3.74 3.74 0 0 0 3.45 2.76A7.08 7.08 0 0 1 0 15.1a9.92 9.92 0 0 0 5.66 1.79c6.8 0 10.5-6.06 10.5-11.32v-.51A7.85 7.85 0 0 0 18 2.99c-.66.32-1.37.53-2.12.63a3.95 3.95 0 0 0 1.62-2.2c-.71.45-1.5.78-2.34.96a3.57 3.57 0 0 0-2.7-1.25"></path></svg></span></span></a><a href="mailto:?subject=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;body=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%253Futm_medium%3Dsharefromsite%2526utm_source%3D_email%26utm_campaign=bottom" title="Share via Email" target="_blank" data-ga="[[&quot;Share Tools&quot;, &quot;Share to Email&quot;,&quot;bottom&quot;]]" class="sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Mail icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M14.5 3A2.5 2.5 0 0 1 17 5.5v7a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 1 12.5v-7A2.5 2.5 0 0 1 3.5 3h11zM2 5.5v7c0 .83.67 1.5 1.5 1.5h11c.83 0 1.5-.67 1.5-1.5v-7l-.03-.3-6.34 5.67a.5.5 0 0 1-.38.13.5.5 0 0 1-.38-.13l-6.7-6-.02-.02c-.1.2-.15.41-.15.64zM14.5 4h-11c-.24 0-.45.05-.65.14l6.4 5.73 6.19-5.54c-.26-.2-.58-.33-.93-.33z"></path></svg></span></span></a><a href="https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577" title="Share via Link" data-ga="[[&quot;Share Tools&quot;, &quot;Copy url&quot;,&quot;bottom&quot;]]" class="js_share-via-link sc-17x7c2u-0 eTFIkv"><span class="sc-17x7c2u-1 jBsDWZ"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Link icon" viewbox="0 0 18 18">
                                            <path fill-rule="evenodd" d="M11.06 7.75a.5.5 0 1 1-.7.7l-.85-.83a1.86 1.86 0 0 0-2.63 0l-4 4a1.86 1.86 0 0 0 0 2.64l1.33 1.33c.72.73 1.91.72 2.64 0l1.8-1.8a.5.5 0 1 1 .7.7l-1.8 1.8a2.87 2.87 0 0 1-4.05 0l-1.33-1.32a2.86 2.86 0 0 1 0-4.05l4-4.01a2.86 2.86 0 0 1 4.05 0l.84.84zm5.17-4.41a2.86 2.86 0 0 1 0 4.05l-4 4.01a2.86 2.86 0 0 1-4.05 0l-.84-.84a.5.5 0 1 1 .7-.71l.85.84c.73.73 1.9.73 2.63 0l4-4c.73-.73.73-1.91 0-2.64l-1.33-1.33a1.87 1.87 0 0 0-2.64 0l-1.8 1.8a.5.5 0 1 1-.7-.7l1.8-1.8a2.87 2.87 0 0 1 4.05 0l1.33 1.32z"></path></svg></span></span></a>
                                        </div>
                                    </div>
                                </div>
                                <div class="sc-18b1b2r-4 fwDNjy">
                                    <h4 class="z1qon0-0 sHsHa">
                                        Get our newsletter
                                    </h4><a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Permalink page click&quot;,&quot;Subscribe button click&quot;]]" href="/newsletter" target="_blank">
                                    <div class="j48i5d-1 fbNnTF">
                                        <button class="sc-18b1b2r-3 egRxyu j48i5d-2 jaUINu"><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="MailFilled icon" viewbox="0 0 18 18">
                                        <path fill-rule="evenodd" d="M17 5v8a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5c0-.12.01-.24.03-.35L8.7 10.4a.5.5 0 0 0 .6 0l7.67-5.75c.02.11.03.23.03.35zm-2-2a2 2 0 0 1 1.54.72L9 9.37 1.46 3.72A2 2 0 0 1 3 3h12z"></path></svg></span><span class="j48i5d-0 hPQZPo">Subscribe</span></button>
                                    </div></a>
                                </div>
                            </div>
                            <div class="js_liveblog-controls"></div>
                            <div class="js_qanda-controls"></div>
                            <div class="sc-1or3yyu-4 kSfANG">
                                <h4 class="sc-1or3yyu-0 nBxoz">
                                    More from Kotaku
                                </h4>
                                <div class="sc-1or3yyu-3 jvIkaX">
                                    <a class="sc-1or3yyu-2 bzrPWe js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Related Posts Module&quot;,&quot;Position 1 of 4&quot;,&quot;https://kotaku.com/sources-despite-huge-sales-borderlands-3-developers-a-1842617645&quot;,{&quot;metric18&quot;:1}]]" href="https://kotaku.com/sources-despite-huge-sales-borderlands-3-developers-a-1842617645">
                                    <h4 class="sc-1or3yyu-1 jcgXjw sc-759qgu-0 knZcug">
                                        Sources: Despite Huge Sales, <i>Borderlands 3</i> Developers Are Getting Stiffed On Bonuses
                                    </h4></a>
                                </div>
                                <div class="sc-1or3yyu-3 jvIkaX">
                                    <a class="sc-1or3yyu-2 bzrPWe js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Related Posts Module&quot;,&quot;Position 2 of 4&quot;,&quot;https://thebests.kotaku.com/lets-rank-the-total-war-games-from-best-to-worst-1535642069&quot;,{&quot;metric18&quot;:1}]]" href="https://thebests.kotaku.com/lets-rank-the-total-war-games-from-best-to-worst-1535642069">
                                    <h4 class="sc-1or3yyu-1 jcgXjw sc-759qgu-0 knZcug">
                                        Let's Rank The <em>Total War</em> Games, From Best To Worst
                                    </h4></a>
                                </div>
                                <div class="sc-1or3yyu-3 jvIkaX">
                                    <a class="sc-1or3yyu-2 bzrPWe js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Related Posts Module&quot;,&quot;Position 3 of 4&quot;,&quot;https://cosplay.kotaku.com/cosplayers-cant-go-to-cons-so-they-had-one-on-the-inte-1842633521&quot;,{&quot;metric18&quot;:1}]]" href="https://cosplay.kotaku.com/cosplayers-cant-go-to-cons-so-they-had-one-on-the-inte-1842633521">
                                    <h4 class="sc-1or3yyu-1 jcgXjw sc-759qgu-0 knZcug">
                                        Cosplayers Can't Go To Cons, So They Had One On The Internet [UPDATE]
                                    </h4></a>
                                </div>
                                <div class="sc-1or3yyu-3 jvIkaX">
                                    <a class="sc-1or3yyu-2 bzrPWe js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Related Posts Module&quot;,&quot;Position 4 of 4&quot;,&quot;https://kotaku.com/professional-fashion-photographer-now-taking-snaps-in-a-1842629671&quot;,{&quot;metric18&quot;:1}]]" href="https://kotaku.com/professional-fashion-photographer-now-taking-snaps-in-a-1842629671">
                                    <h4 class="sc-1or3yyu-1 jcgXjw sc-759qgu-0 knZcug">
                                        Professional Fashion Photographer Now Taking Snaps In <i>Animal Crossing</i>
                                    </h4></a>
                                </div>
                            </div><a name="replies" id="replies"></a>
                            <div class="js_postbottom-waypoint-hook"></div>
                            <div class="js_comments-iframe sc-73739c-0 iaHIzx" data-src="//kotaku.com/embed/comments/magma/1284029577?" data-replycount="158"></div>
                            <div class="js_ad-below-comments sc-73739c-4 cirOTP"></div>
                            <div class="sc-73739c-3 eOmEvw">
                                <div id="taboola-below-article-thumbnails" class="sc-73739c-2 kXLoyx"></div>
                            </div>
                            <div class="sc-1bdg1q0-0 dHZwOk">
                                <div class="sc-1bdg1q0-2 fItspw">
                                    <a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Share Tools&quot;,&quot;Share to Facebook click&quot;,&quot;Share bar&quot;]]" href="https://facebook.com/sharer.php?u=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_facebook" target="_blank">
                                    <div class="j48i5d-1 fbNnTF">
                                        <button class="sc-1bdg1q0-1 huOEht j48i5d-2 ghtMMt"><span class="j48i5d-0 hPQZPo">Share</span><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Facebook icon" viewbox="0 0 18 18">
                                        <path fill-rule="evenodd" d="M17 9.05A8.02 8.02 0 0 0 9 1C4.58 1 1 4.6 1 9.05A8.04 8.04 0 0 0 7.75 17v-5.62H5.72V9.05h2.03V7.28c0-2.02 1.2-3.14 3.02-3.14.88 0 1.8.16 1.8.16v1.98h-1.02c-.99 0-1.3.62-1.3 1.26v1.5h2.22l-.36 2.34h-1.86V17A8.04 8.04 0 0 0 17 9.05"></path></svg></span></button>
                                    </div></a><a class="js_link sc-1out364-0 fwjlmD" data-ga="[[&quot;Share Tools&quot;,&quot;Share to Twitter click&quot;,&quot;Share bar&quot;]]" href="https://twitter.com/share?text=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;amp;url=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_twitter" target="_blank">
                                    <div class="j48i5d-1 fbNnTF">
                                        <button class="sc-1bdg1q0-1 huOEht j48i5d-2 hNujir"><span class="j48i5d-0 hPQZPo">Tweet</span><span class="iyvn34-0 iSaTEN"><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" aria-label="Twitter icon" viewbox="0 0 18 18">
                                        <path fill-rule="evenodd" d="M12.46 1.13c-2.04 0-3.7 1.78-3.7 3.97 0 .31.04.62.1.9a10.26 10.26 0 0 1-7.6-4.15A4.2 4.2 0 0 0 2.4 7.16a3.5 3.5 0 0 1-1.68-.5v.05a3.92 3.92 0 0 0 2.97 3.9 3.45 3.45 0 0 1-1.67.07 3.74 3.74 0 0 0 3.45 2.76A7.08 7.08 0 0 1 0 15.1a9.92 9.92 0 0 0 5.66 1.79c6.8 0 10.5-6.06 10.5-11.32v-.51A7.85 7.85 0 0 0 18 2.99c-.66.32-1.37.53-2.12.63a3.95 3.95 0 0 0 1.62-2.2c-.71.45-1.5.78-2.34.96a3.57 3.57 0 0 0-2.7-1.25"></path></svg></span></button>
                                    </div></a>
                                </div>
                            </div>
                        </div>
                    </div>
                </main>
            </div>
            <div is="bulbs-dfp" class="ad-container dfp dfp-slot-INFINITE_PROMOTION ad-infinite-promotion" data-ad-unit="INFINITE_PROMOTION" data-pp-position="scroll" data-targeting="{&quot;pos&quot;:&quot;scroll&quot;,&quot;pp_position&quot;:&quot;scroll&quot;}"></div>
            <div class="js_reading-list"></div>
            <div class="js_subscribe sc-1cfejv7-0 iHpzjB"></div>
            <div class="js_footer-container"></div>
            <div class="js_lightbox-container"></div>
        </div>
        <script>
        <![CDATA[
        window.__renderData__ = {"blog":{"id":"9","name":"kotaku","displayName":"Kotaku","canonicalHost":"kotaku.com","hosts":["numbers.kotaku.com","de.kotaku.com","assets.kotaku.com","pocketmonster.kotaku.com","m.kotaku.com","uk.kotaku.com","tmi.kotaku.com","live.kotaku.com","pl.kotaku.com","toys.kotaku.com","screenburn.kotaku.com","fetch.kotaku.com","kotak.us","ru.kotaku.com","animalcrossing.kotaku.com","es.kotaku.com","br.kotaku.com","ca.kotaku.com","selects.kotaku.com","irl.kotaku.com","www.kotaku.com","watchlist.kotaku.com","nl.kotaku.com","au.kotaku.com","kotaku.kinja.com","blog.kotaku.com","kotaku.com.br","us.kotaku.com"],"status":"ENABLED","timezone":"America/New_York","timezoneOffset":-14400000,"createTimeMillis":1354577915472,"ownerId":"5724319325347612106","description":"Gaming Reviews, News, Tips and More.","properties":{"logoLink":"https://x.kinja-static.com/assets/images/logos/newsletter/kotaku-500px.png","aboutPostId":458637663,"recircGroup":"fmgNonSatire","twitterScreenName":"@kotaku","alexaId":"gmg-kotaku","hideViewcounts":true,"metaTitle":"The Gamer's Guide","videoNetwork":"kotaku","facebookPixelId":"574907642841384","singleOptIn":true,"chartbeatPopularPosts":true,"tagPageTitle":"{tag} - Gaming Reviews, News, Tips and More. | Kotaku","storyTypePageDescription":"Everything you ever wanted to know about {storyType}. News, stories, photos, videos and more.","isSearchable":true,"facebookScreenName":"kotaku","GANJA_IGNORE_GEO":["us.kotaku.com"],"groupBlog":true,"skimLinkId":"33330X911644","mainColor":"#fbc000","navigationGroup":"fmg","storyTypePageTitle":"{storyType} - Gaming Reviews, News, Tips and More. | Kotaku","robotsAllowed":true,"isGmgBlog":true,"youtubeUrl":"https://www.youtube.com/user/KotakuNYC","sitemapStartTime":"2008-02-03T00:00:00","instagramScreenName":"kotakudotcom","blogGroup":"kotaku","sourcepointDomain":"mms.kotaku.com","googleAnalyticsID":"UA-142218-8","tagPageDescription":"All of Kotaku's {tag} coverage. News, stories, photos, videos and more.","showBrowserTabType":"Category","globalVideoPage":true,"cxenseSiteId":"1141876438685671428","template":"kotaku","googleSiteVerification":"bM-oyO1vXKOAYf3H3fJQaVf8FeyOneJtVHbEYlNa7p8","newsletter":true,"fbAppId":"35737966741","campaignMonitorNewsletterName":"Kotaku_Daily","adsTxtEnabled":true},"avatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"logo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"}},"blogSales":{"id":"9","amazonInsetsEnabled":true,"amazonAffiliateTag":"kotakuamzn-20","adsEnabled":true,"adNetworkId":4246,"adSiteName":"gm.kotaku","indexExchangeWebSiteId":"80685363813128","indexExchangeAmpSiteId":"272210","bouncexId":"3592","blogNetworkId":null,"tagsExcludedFromPartnerRss":["metapost","externalPost","NSFW"],"tagsForceSynced":[],"adSlotsDisabled":[]},"disableAds":false,"features":{"superuser":false,"newrelicrum":true,"no3rdparty":false,"nosocialscripts":false,"disablereplyimages":false,"simplereach_expanded":true,"analyticstracking":true,"scribe_debug":false,"leftrail_notrending":false,"nodefaultblog":false,"frontendtiming":true,"dfp_form_related_promotions":false,"geo_features":false,"privacypolicy":false,"force_advanced_toolbar":false,"revealanalytics":false,"adx_permalink_text":true,"global_video_page":true,"permalink_paragraph_ads":true,"csp":false,"shop_button":false,"disable_confirmation_message":false,"scribe_debug_expose_html":false,"newmodalstyles":true,"infinite_scroll":true,"infinite_promotion":true,"smartnews_ads":false,"force_show_video_search":false,"amazon_georedirect":false,"dfp_lineitem_opts":true,"dfp_network_promotions":false,"samba_for_simplereach":true,"force_review_button":false,"tradedesk_pixel":true,"lightbox_newsletter_script":false,"claim_page":false,"chartbeat_video":true,"nofollowedblogs":false,"avclub_legacy_login":true,"amazon_aps_tag":true,"liveblog_new_comments_ui":false,"google_remarketing":false,"reviewbox_alignment_full_bleed":true,"piano_sandbox":false,"piano_prod":true,"hide_footer_content_guide":false,"fun_authenticated":false,"frontpage_recentvideo":true,"dynamic_edit_video":false,"force_paginate":false,"input_nav_bar":false,"paginated_category_page":false,"editor_save_screen_update":true,"scroll_vendor":true,"homepage_video_playlist":false,"storytype_boilerplate":true,"kinja_membership":false,"piano_loggedin":false,"store_already_seen_videos":false,"ab_test_feature":false,"kinja_darkmode":false,"hide_ellipsis":true,"fun_errorpages":true,"devtools":false,"smartcrop":true,"bulbs_ias":false,"disable_post_body_stream_clicks":false,"eu_disabled":false,"post_versioning":true,"kotaku_pride":false,"pure_save_button":true,"enable_experiments":false,"share_tools":true,"new_story_page_boilerplates":true,"share_tools_footer":true,"story_type_stream_below_6":true,"experimental_scores":true,"external_post_options":false,"enable_custom_subscribe_copy":false,"csp_strict":false,"kinja3_cards":false,"reading_list_delay_ads":false,"disable_skimlinks":true,"kinja3_cards_mobile_without_excerpt":false,"new_permalink_a":true,"new_permalink_b":true,"new_permalink_embiggened":false,"styled_browser_bar":false,"csp_strict_variant1":false,"csp_strict_variant2":false,"csp_strict_variant3":false,"csp_strict_variant4":false,"bucketcookies":true,"kinja_experiments_staging_test_feature_a":false,"kinja_experiments_staging_test_feature_b":false,"image_attr_url_validation":false,"kinja3_cards_phase2":true,"editor_link_insert_validation":false,"kinja3_cards_phase2_avatars":true,"meta_first":true,"second_scroll_var1":false,"second_scroll_var2":false,"native_stream_magma_rendered":false,"multiauthor_byline_toggle":false,"subscription_module_applenews":true,"subscription_module_amp":true,"native_sidebar_magma_rendered":true,"prebid":true,"blockthrough":false,"magma_second_scroll":true,"recommend_recommends":false,"native_stream_magma_rendered_phase_2":true,"mobilead_two_nodes":true,"magma_render_profiles":true,"kinja3_cards_phase3":true,"jwuploader_test_property":false,"grid_standard":false,"new_static_stream_header":true,"legacy_embiggen":true,"show_grid_overlay":false,"video_upload_captions":true,"native_stream_magma_rendered_phase_3":false,"save_querystrings":false,"enable_bouncex":true,"survey_popup":false,"featured_video_toolbar":true,"curation_on_storytype":true,"secondscroll_waypoint_a":false,"secondscroll_waypoint_b":false,"disable_ad_rule":false,"triplelift_enable":false,"enable_ga_exps":false,"native_stream_magma_rendered_phase_3_with_excerpts":true,"native_stream_magma_rendered_phase_2_with_excerpts":false,"native_stream_magma_rendered_test":false,"videoanalytics_queryparams":false,"simplereach_ad_tag":true,"blockthrough_wait_5sec":false,"blockthrough_wait_3sec":false,"ads_a9_timeout_600":false,"native_recirc_magma_rendered_test":false,"native_recirc_magma_rendered":true,"native_sidebar_magma_rendered_test":false,"comments_timing":false,"mobilead_two_nodes_amp":false,"custom_header":true,"newsletter_popup":false,"custom_kinja_standalone":true,"inarticle_player_2nd_node":false,"permalink_subscription":true,"magma_splashy_ad_logic_change":true,"magma_permalink_video_truncation":true,"featured_ads_four":false,"featured_ads_two":false,"commerce_permalink_module":true,"second_scroll_client":false,"confiant":false,"ymal_video_and_popular_posts":false,"kinja_video_page":true,"curation_toggle":true,"second_scroll_video_thumbnails":false,"restore_images":true,"disable_nongmg_kinjas":false,"slideshow":true,"no_ads":false,"disable_fbia_rss":true,"only_left_top_ad":false,"mobilead_three_nodes":false,"mobilead_three_nodes_amp":false,"devcon_script":true,"amp_skimlinks":true,"magma_amp_inarticle_videos":true,"survey_popup_permalink":false,"curated_homepage":false,"wide_rail":false,"feature_policy_header":false,"amazon_wait_for_bids":true,"recirc_sidebar":true,"load_dfp_statically":true,"ddrum":false,"theonion_podcast_player":true,"images_intersect":true,"taboola_lazy_load":false,"sourcepoint_ccpa":true,"permalink_performance":false,"specless_splashy_size":false,"sponsor_badge":false,"more_from_chartbeat":true,"videojs_debug":false,"chartbeat_powered_sidebar":true,"permalink_video_playlist":false,"refinitiv":false,"header_anchor_tags":true,"revcontent":false,"large_commerce_rail":true,"simple_image_lazyload":true,"digitrust_disable":false,"chartbeat_disable":false,"nielsen_disable":false,"fb_pixel_disable":false,"fastly_fs_test":false,"ats_enabled":false,"prebid_video":true,"curated_tagpage":false,"concurrent_editing":true,"amazon_right_rail":true,"commerce_button_inset":true,"header_simple_render":false,"parent_has_curated_homepage":false,"improved_comment_loading":false,"shortpost_nofollow":true,"medianet_headerbidding":true,"comment_nofollow":true,"right_rail_inset_a":false,"right_rail_inset_b":false,"curated_storytypepage":false,"filter_old_articles":true,"tag_follow_overwrite":false,"disable_teads":true,"sidebar_ad_whitespace":true,"bulbs_debug":false,"right_rail_show_post":false,"disallow_api":true,"ad_timeout_amazon":true,"ad_timeout_prebid":true,"ad_timeout_failsafe":true,"enable_html_sitemap":true,"count_later_posts":false,"recent_video_instream":true,"dynamic_ads_in_ads_bundle":false,"ad_script_in_head":true,"medianet_headerbidding_amp":true,"mobile_commerce_inset":true,"video_lazy_load":false,"comments_taboola_ad":true,"ad_metrics_unification":false,"improved_comment_preloading":false,"connatix":false,"prebid_video_disable_rubicon":false,"vpaid_insecure_mode":false,"prebid_video_enable_spotx":false,"msn_rss_filter_norights_images":false,"use_ad_manager":false,"amp_commerce_inset":false,"ad_mobile_after_first":false,"curated_big_story_settings":false},"sections":[{"index":1,"storyType":{"id":"76","blogId":"9","canonical":"video","title":"Video","content":"Video"},"active":false,"url":"/c/video"},{"index":2,"subBlog":{"id":"1633980057","name":"thebests","displayName":"The Bests","canonicalHost":"thebests.kotaku.com","avatar":{"id":"ncjew2plpihk2rfdipe2","format":"png","isAnimated":false,"frozenFormat":"png"},"isSubBlog":true,"description":"Our Favorite Games On Every Platform."},"active":false,"url":"//thebests.kotaku.com"},{"index":3,"featuredUrl":{"url":"https://kotaku.com/c/podcast","displayName":"Splitscreen","index":3},"active":false,"url":"https://kotaku.com/c/podcast","displayName":"Splitscreen"},{"index":4,"storyType":{"id":"1560","blogId":"9","canonical":"highlight-reel","title":"Highlight Reel","content":"Video","description":"Highlight Reel is Kotaku’s regular roundup of great plays, stunts, records and other great moments from around the gaming world. If you record an amazing feat while playing a game send it to us with a message confirming that the clip is yours at [email protected]. Or, if you see a great clip around that isn’t yours, encourage that person to send it in!"},"active":false,"url":"/c/highlight-reel"},{"index":5,"subBlog":{"id":"1538697436","name":"cosplay","displayName":"Cosplay","canonicalHost":"cosplay.kotaku.com","avatar":{"id":"ezm8ghxeumvswd9ksrmi","format":"png","isAnimated":false,"frozenFormat":"png"},"isSubBlog":true,"description":"The Best in Costume Play."},"active":false,"url":"//cosplay.kotaku.com"},{"index":6,"storyType":{"id":"69","blogId":"9","canonical":"review","title":"Review","content":"Standard"},"active":false,"url":"/c/review"},{"index":7,"featuredUrl":{"url":"https://store.kotaku.com/","displayName":"Shop","tagline":"SHOP THE COLLECTION","index":7},"active":false,"url":"https://store.kotaku.com/","displayName":"Shop","tagline":"SHOP THE COLLECTION"},{"index":900,"sponsoredSpecialSection":{"blogId":"1637558457","blog":{"id":"1637558457","name":"metal-gear","displayName":"Metal Gear Retrospective","canonicalHost":"metal-gear.kinja.com","hosts":[],"status":"ENABLED","timezone":"America/New_York","timezoneOffset":-14400000,"createTimeMillis":1561564533527,"ownerId":"5876237249236979407","description":"An ongoing series analyzing the Metal Gear games.","properties":{"robotsAllowed":true,"isLiveCustomKinja":true},"avatar":{"id":"ilpovqq5x3mrcq44d53p","format":"png","isAnimated":false,"frozenFormat":"png"},"logo":{"id":"jzy1uhmqtv9b0fn3kzss","format":"png","isAnimated":false,"frozenFormat":"png"}},"domainBlogId":"9","editorialPostIds":[],"editorialSectionHeading":"More in Metal Gear","editorialTags":[],"impactHeader":{"media":{"id":"ee2pczb239pimidxevr1","format":"png","width":3500,"height":1969,"alignment":"Center","caption":[],"syndicationRights":false,"attribution":[],"lightbox":true,"type":"Image"},"titleAlignment":"Below","overlay":"Black"},"customContent":[{"layout":"TextParagraph","type":"LunchBox"},{"layout":"ImageTextHeaderParagraphLeft","header":{"level":3,"alignment":"Left","containers":[],"value":[{"styles":[],"value":"Metal Gear Retrospective: Snake's Punishment Begins","type":"Text"}],"type":"Header"},"paragraph":{"paragraph":{"containers":[],"value":[{"styles":[],"value":"Metal Gear wants the player to fail. The game’s rough edges are part of the growing pains of an early genre, but taken in the context of the entire Metal Gear series, these challenges also feel like horrifying defense mechanisms. As Solid Snake infiltrates Outer Heaven, the player intrudes upon the game’s world. Neither are welcome, and if they’re caught, they will be destroyed.\n","type":"Text"}],"type":"Paragraph"},"alignment":"Center"},"image":{"id":"eymb86p2y03iipcivrvn","format":"png","width":2048,"height":1153,"alignment":"Center","caption":[],"syndicationRights":false,"attribution":[],"lightbox":true,"type":"Image"},"button":{"reference":"https://kotaku.com/metal-gear-the-kotaku-retrospective-1828740753","value":[{"styles":[],"value":"Read More","type":"Text"}],"type":"Link"},"postId":"1828740753","type":"LunchBox"},{"layout":"ImageTextHeaderParagraphRight","header":{"level":3,"alignment":"Left","containers":[],"value":[{"styles":[],"value":"Metal Gear 2 Retrospective: The World Spins Without Snake","type":"Text"}],"type":"Header"},"paragraph":{"paragraph":{"containers":[],"value":[{"styles":[],"value":"Metal Gear 2: Solid Snake’s defining attribute is texture. Metal Gear shaped an initial world, and Metal Gear 2 embellishes on that world by adding frictions that complicate the player’s previous relationship with the series. The results are often inconsistent; Metal Gear 2 is a game with a reach that exceeds its grasp but, also, an intoxicating and undeniable confidence.","type":"Text"}],"type":"Paragraph"},"alignment":"Center"},"image":{"id":"kxjnafqvpri8fws62ghm","format":"png","width":3000,"height":1688,"alignment":"Center","caption":[],"syndicationRights":false,"attribution":[],"lightbox":true,"type":"Image"},"button":{"reference":"https://kotaku.com/metal-gear-2-retrospective-the-world-spins-without-sna-1831544759","value":[{"styles":[],"value":"Read More","type":"Text"}],"type":"Link"},"postId":"1831544759","type":"LunchBox"},{"layout":"ImageTextHeaderParagraphLeft","header":{"level":3,"alignment":"Left","containers":[],"value":[{"styles":[],"value":"Metal Gear Solid Retrospective: 'You Enjoy All The Killing, That's Why'","type":"Text"}],"type":"Header"},"paragraph":{"paragraph":{"containers":[],"value":[{"styles":[],"value":"After Metal Gear 2: Solid Snake, the titular character went into retirement—both in the series’ fiction and real life. It would be another eight years before fans would play a Metal Gear game. That game was Metal Gear Solid, and it helped codify the stealth genre forever. Solid Snake’s story is full of betrayal, blood, and isolation.\n\n","type":"Text"}],"type":"Paragraph"},"alignment":"Center"},"image":{"id":"ee2pczb239pimidxevr1","format":"png","width":3500,"height":1969,"alignment":"Center","caption":[],"syndicationRights":false,"attribution":[],"lightbox":true,"type":"Image"},"button":{"reference":"https://kotaku.com/metal-gear-solid-retrospective-you-enjoy-all-the-killi-1835280265","value":[{"styles":[],"value":"Read More","type":"Text"}],"type":"Link"},"postId":"1835280265","type":"LunchBox"}],"socialMediaImage":{"id":"z4uhrwes9ezmqhdvfq5p","format":"png"},"attribution":"","renderBacklinks":true},"active":false,"url":"//metal-gear.kinja.com"}],"title":"The Spectacular Story Of Metroid, One Of Gaming's Richest Universes","pageType":"permalink","parentBlog":null,"post":{"postHeadline":"The Spectacular Story Of &lt;em&gt;Metroid&lt;/em&gt;, One Of Gaming&#39;s Richest Universes","postFormattedHeadline":"The Spectacular Story Of Metroid, One Of Gaming's Richest Universes","postPermalink":"https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577","adZone":"","featuredMedia":null,"replyCount":158,"embeddedVideos":[],"shareUrls":{"facebookShareUrl":"https://facebook.com/sharer.php?u=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_facebook","twitterShareUrl":"https://twitter.com/share?text=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&amp;url=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%3Futm_medium%3Dsharefromsite%26utm_source%3D_twitter","emailShareUrl":"mailto:?subject=The%20Spectacular%20Story%20Of%20Metroid%2C%20One%20Of%20Gaming's%20Richest%20Universes&body=https%3A%2F%2Fkotaku.com%2Fthe-spectacular-story-of-metroid-one-of-gamings-riche-1284029577%253Futm_medium%3Dsharefromsite%2526utm_source%3D_email","permalink":"https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577"},"videoPermalinkRecircPosts":{}},"postId":"1284029577","isRecent":false,"postHeadline":"The Spectacular Story Of Metroid, One Of Gaming's Richest Universes","postIsStarter":true,"postIsFeatured":false,"postIsSponsored":false,"postIsVideo":false,"postType":"DEFAULT","qAndAParticipants":[],"authorIds":[],"tags":[{"canonical":"metroid","urlName":"metroid","displayName":"metroid"},{"canonical":"kotakulongreads","urlName":"kotaku-longreads","displayName":"kotaku longreads"},{"canonical":"nintendo","urlName":"nintendo","displayName":"nintendo"}],"scrollListItems":["1842660990","1842660808","1842659793","1842657790","1842657719","1842657676","1842657528","1842631388","1842632937","1842629671","1842429089","1842646720","1794881447","1842596387","1842647990","1842647779","1842647138","1842646231","1842643475","1842639391"]}
        ]]>
        </script>
        <script>
        <![CDATA[
        window.kinja = {
                                meta: {"blog":{"id":"9","name":"kotaku","displayName":"Kotaku","canonicalHost":"kotaku.com","hosts":["numbers.kotaku.com","de.kotaku.com","assets.kotaku.com","pocketmonster.kotaku.com","m.kotaku.com","uk.kotaku.com","tmi.kotaku.com","live.kotaku.com","pl.kotaku.com","toys.kotaku.com","screenburn.kotaku.com","fetch.kotaku.com","kotak.us","ru.kotaku.com","animalcrossing.kotaku.com","es.kotaku.com","br.kotaku.com","ca.kotaku.com","selects.kotaku.com","irl.kotaku.com","www.kotaku.com","watchlist.kotaku.com","nl.kotaku.com","au.kotaku.com","kotaku.kinja.com","blog.kotaku.com","kotaku.com.br","us.kotaku.com"],"status":"ENABLED","timezone":"America/New_York","timezoneOffset":-14400000,"createTimeMillis":1354577915472,"ownerId":"5724319325347612106","description":"Gaming Reviews, News, Tips and More.","properties":{"logoLink":"https://x.kinja-static.com/assets/images/logos/newsletter/kotaku-500px.png","aboutPostId":458637663,"recircGroup":"fmgNonSatire","twitterScreenName":"@kotaku","alexaId":"gmg-kotaku","hideViewcounts":true,"metaTitle":"The Gamer's Guide","videoNetwork":"kotaku","facebookPixelId":"574907642841384","singleOptIn":true,"chartbeatPopularPosts":true,"tagPageTitle":"{tag} - Gaming Reviews, News, Tips and More. | Kotaku","storyTypePageDescription":"Everything you ever wanted to know about {storyType}. News, stories, photos, videos and more.","isSearchable":true,"facebookScreenName":"kotaku","GANJA_IGNORE_GEO":["us.kotaku.com"],"groupBlog":true,"skimLinkId":"33330X911644","mainColor":"#fbc000","navigationGroup":"fmg","storyTypePageTitle":"{storyType} - Gaming Reviews, News, Tips and More. | Kotaku","robotsAllowed":true,"isGmgBlog":true,"youtubeUrl":"https://www.youtube.com/user/KotakuNYC","sitemapStartTime":"2008-02-03T00:00:00","instagramScreenName":"kotakudotcom","blogGroup":"kotaku","sourcepointDomain":"mms.kotaku.com","googleAnalyticsID":"UA-142218-8","tagPageDescription":"All of Kotaku's {tag} coverage. News, stories, photos, videos and more.","showBrowserTabType":"Category","globalVideoPage":true,"cxenseSiteId":"1141876438685671428","template":"kotaku","googleSiteVerification":"bM-oyO1vXKOAYf3H3fJQaVf8FeyOneJtVHbEYlNa7p8","newsletter":true,"fbAppId":"35737966741","campaignMonitorNewsletterName":"Kotaku_Daily","adsTxtEnabled":true},"avatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"logo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"},"logoLink":"https://x.kinja-static.com/assets/images/logos/newsletter/kotaku-500px.png","aboutPostId":458637663,"recircGroup":"fmgNonSatire","twitterScreenName":"@kotaku","alexaId":"gmg-kotaku","hideViewcounts":true,"metaTitle":"The Gamer's Guide","videoNetwork":"kotaku","facebookPixelId":"574907642841384","singleOptIn":true,"chartbeatPopularPosts":true,"tagPageTitle":"{tag} - Gaming Reviews, News, Tips and More. | Kotaku","storyTypePageDescription":"Everything you ever wanted to know about {storyType}. News, stories, photos, videos and more.","isSearchable":true,"facebookScreenName":"kotaku","GANJA_IGNORE_GEO":["us.kotaku.com"],"groupBlog":true,"skimLinkId":"33330X911644","mainColor":"#fbc000","navigationGroup":"fmg","storyTypePageTitle":"{storyType} - Gaming Reviews, News, Tips and More. | Kotaku","robotsAllowed":true,"isGmgBlog":true,"youtubeUrl":"https://www.youtube.com/user/KotakuNYC","sitemapStartTime":"2008-02-03T00:00:00","instagramScreenName":"kotakudotcom","blogGroup":"kotaku","sourcepointDomain":"mms.kotaku.com","googleAnalyticsID":"UA-142218-8","tagPageDescription":"All of Kotaku's {tag} coverage. News, stories, photos, videos and more.","showBrowserTabType":"Category","globalVideoPage":true,"cxenseSiteId":"1141876438685671428","template":"kotaku","googleSiteVerification":"bM-oyO1vXKOAYf3H3fJQaVf8FeyOneJtVHbEYlNa7p8","newsletter":true,"fbAppId":"35737966741","campaignMonitorNewsletterName":"Kotaku_Daily","adsTxtEnabled":true},"syncFeatures":"","customFeatures":[],"post":{"adZone":"","author":{"displayName":"Gergo Vas"},"gaDimensions":{"gaVideoIds":"","wordCount":8302,"wordCountBucket":"8200 - 8400"},"headline":"The Spectacular Story Of <em>Metroid<\/em>, One Of Gaming's Richest Universes","id":"1284029577","isFeatured":false,"isVideo":false,"isSlideshow":false,"slideIndex":null,"permalink":"https://kotaku.com/the-spectacular-story-of-metroid-one-of-gamings-riche-1284029577","postPosition":0,"publishTimeMillis":1378908000474,"sponsored":false,"isStarter":true,"starterId":"1284029577","storyType":null,"tags":[{"canonical":"metroid","urlName":"metroid","displayName":"metroid"},{"canonical":"kotakulongreads","urlName":"kotaku-longreads","displayName":"kotaku longreads"},{"canonical":"nintendo","urlName":"nintendo","displayName":"nintendo"}],"truncation":false,"hasVideos":false},"commercePermalinkPosts":[{"post":{"id":"1842660540","headline":"Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More","permalink":"https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540","image":{"uid":"fmxkv4w3fn53bgahlsls","originalWidth":1280,"originalHeight":720,"format":"jpg","width":1280,"height":720,"id":"fmxkv4w3fn53bgahlsls","frozenFormat":"jpg"},"authorId":"5876237249238355545","authorNameOrByline":"","defaultBlogId":"9","defaultBlogDisplayName":"Kotaku","defaultBlogHost":"kotaku.com","defaultBlogGroup":"kotaku","defaultBlogRecircGroup":"fmgNonSatire","plainText":"A large heating pad, Comixology Marvel sale, Instant Pot, and six months of Xbox Game Pass Ultimate lead off Friday’s best from around the web. ","score":0,"publishTimeMillis":1585922400540,"defaultBlogAvatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"defaultBlogLogo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"},"isVideo":false,"amazonPrice":"","amazonPromoCode":"","originalProps":{"id":"1842660540","headline":"Friday's Best Deals: Children's Books, Circular Lamp, Memory Foam Pillows, Onsen Towels, and More","permalink":"https://kinjadeals.theinventory.com/fridays-best-deals-childrens-books-circular-lamp-mem-1842660540","image":{"uid":"fmxkv4w3fn53bgahlsls","originalWidth":1280,"originalHeight":720,"format":"jpg","width":1280,"height":720,"id":"fmxkv4w3fn53bgahlsls","frozenFormat":"jpg"},"authorId":"5876237249238355545","authorNameOrByline":"","defaultBlogId":"9","defaultBlogDisplayName":"Kotaku","defaultBlogHost":"kotaku.com","defaultBlogGroup":"kotaku","defaultBlogRecircGroup":"fmgNonSatire","plainText":"A large heating pad, Comixology Marvel sale, Instant Pot, and six months of Xbox Game Pass Ultimate lead off Friday’s best from around the web. ","score":0,"publishTimeMillis":1585922400540,"defaultBlogAvatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"defaultBlogLogo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"},"isVideo":false,"amazonPrice":"","amazonPromoCode":""}},"authors":[{"id":"5876237249238355545","screenName":"tercius","displayName":"Tercius","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"jcaeuivnqiba4tkyigru","format":"jpg","isAnimated":false,"frozenFormat":"jpg"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1542642801922,"confirmedEmail":null},{"id":"5876237249239477161","screenName":"thegabecarey","displayName":"Gabe Carey","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"athps4ffpcya8ltki1sh","format":"jpg","isAnimated":false,"frozenFormat":"jpg"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1580838192451,"confirmedEmail":null},{"id":"5876237249239545865","screenName":"hezeqiyah","displayName":"Quentyn Kennemer","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"guximzhf5lwpmfbqkqpc","format":"jpg","isAnimated":false,"frozenFormat":"jpg"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1583342960277,"confirmedEmail":null},{"id":"5876237249239598984","screenName":"jordanmcmahon","displayName":"Jordan McMahon","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"f9rslqxrljvhdn2mpoy3","format":"jpg","isAnimated":false,"frozenFormat":"jpg"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1585587052503,"confirmedEmail":null},{"id":"5876237249239477142","screenName":"ignacia","displayName":"Ignacia","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"ka7xqqfs3nogmfdrldp2","format":"png","isAnimated":false,"frozenFormat":"png"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1580837659736,"confirmedEmail":null}]},{"post":{"id":"1842658105","headline":"Buy Six Months of Xbox Game Pass Ultimate for the Price of Three","permalink":"https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105","image":{"uid":"vazlq4u31lycrfynccwx","originalWidth":1280,"originalHeight":720,"format":"jpg","width":1280,"height":720,"id":"vazlq4u31lycrfynccwx","frozenFormat":"jpg"},"authorId":"5876237249239545865","authorNameOrByline":"","defaultBlogId":"9","defaultBlogDisplayName":"Kotaku","defaultBlogHost":"kotaku.com","defaultBlogGroup":"kotaku","defaultBlogRecircGroup":"fmgNonSatire","plainText":"6 Months of Xbox Game Pass Ultimate | $45 | Amazon","score":0,"publishTimeMillis":1585909320105,"defaultBlogAvatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"defaultBlogLogo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"},"isVideo":false,"amazonPrice":"","amazonPromoCode":"","originalProps":{"id":"1842658105","headline":"Buy Six Months of Xbox Game Pass Ultimate for the Price of Three","permalink":"https://kinjadeals.theinventory.com/buy-six-months-of-xbox-game-pass-ultimate-for-the-price-1842658105","image":{"uid":"vazlq4u31lycrfynccwx","originalWidth":1280,"originalHeight":720,"format":"jpg","width":1280,"height":720,"id":"vazlq4u31lycrfynccwx","frozenFormat":"jpg"},"authorId":"5876237249239545865","authorNameOrByline":"","defaultBlogId":"9","defaultBlogDisplayName":"Kotaku","defaultBlogHost":"kotaku.com","defaultBlogGroup":"kotaku","defaultBlogRecircGroup":"fmgNonSatire","plainText":"6 Months of Xbox Game Pass Ultimate | $45 | Amazon","score":0,"publishTimeMillis":1585909320105,"defaultBlogAvatar":{"id":"v4sckews2f3bzf0ztbkf","format":"png","isAnimated":false,"frozenFormat":"png"},"defaultBlogLogo":{"id":"m9zdzkcum8jjhh7qpkaf","format":"png","isAnimated":false,"frozenFormat":"png"},"isVideo":false,"amazonPrice":"","amazonPromoCode":""}},"authors":[{"id":"5876237249239545865","screenName":"hezeqiyah","displayName":"Quentyn Kennemer","status":"enabled","isSuperuser":false,"isSales":false,"avatar":{"id":"guximzhf5lwpmfbqkqpc","format":"jpg","isAnimated":false,"frozenFormat":"jpg"},"token":null,"membership":[],"remotes":{},"authName":null,"isGmgMember":false,"isEditStaff":false,"createdMillis":1583342960277,"confirmedEmail":null}],"link":{"url":"https://www.amazon.com/dp/B07TGNFVWV?linkCode=ogi&th=1&psc=1&smid=A3ODHND3J0WMC8","provider":"amazon","headline":"Xbox Game Pass Ultimate: 3 Month Membership [Digital Code]","description":null,"thumbnails":["https://m.media-amazon.com/images/I/41xTjOl4iML.jpg"],"images":[{"id":"ffyphnwprvqfff3cthhn","format":"jpg","uri":"https://m.media-amazon.com/images/I/41xTjOl4iML.jpg","width":500,"height":500,"originalWidth":500,"originalHeight":500}],"meta":{"asin":"B07TGNFVWV","price":"44.99","conversions":"786"},"type":"none","height":null,"width":null,"sizeClass":"flex-video widescreen","autoReisize":false,"isSecure":true,"insetId":null,"originalUrl":"https://www.amazon.com/Xbox-Game-Pass-Ultimate-Membership/dp/B07TGNFVWV/","shortDescription":null,"startTime":null}}],"blogSales":{"id":"9","amazonInsetsEnabled":true,"amazonAffiliateTag":"kotakuamzn-20","adsEnabled":true,"adNetworkId":4246,"adSiteName":"gm.kotaku","indexExchangeWebSiteId":"80685363813128","indexExchangeAmpSiteId":"272210","bouncexId":"3592","blogNetworkId":null,"tagsExcludedFromPartnerRss":["metapost","externalPost","NSFW"],"tagsForceSynced":[],"adSlotsDisabled":[]},"pageType":"permalink","environmentDesc":"production:magma","isScrollActive":false},
                                categoryMeta: {"categories":""},
                                tagMeta: {"tags":"metroid,kotaku longreads,nintendo"}
                        };
        ]]>
        </script>
        <script async="async" src="/x-kinja-static/assets/new-client/runtime~trackers.a80485038c85d225c097.js"></script>
        <script async="async" src="/x-kinja-static/assets/new-client/0.dbae5dc63b4cbda565ad.js"></script>
        <script async="async" src="/x-kinja-static/assets/new-client/vendors~adEditor~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontPage~~eb3f2f08.a6883eb2583a17a295a7.js"></script>
        <script async="async" src="/x-kinja-static/assets/new-client/adEditor~curatedHomepage~errorPage~experiments~featuredPermalinkPage~newsletterPage~permalinkPage~pe~9288a84a.66cac4c8bb720d3ddbad.js"></script>
        <script async="async" src="/x-kinja-static/assets/new-client/permalinkPageIdle~trackers.c278813d2f54ff256aa3.js"></script>
        <script async="async" src="/x-kinja-static/assets/new-client/trackers.d0e941d9a281b638dd5a.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/runtime~permalinkPage.66e46354e7f840ca24ad.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~categoryPage~curatedHomepage~featuredPermalinkPage~frontPage~hamburger-menu~header~image~imp~c3252dce.436e24a3a4ef007064ee.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~adEditor~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontPage~~42d198c1.00468c8e4744beb4949e.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~adEditor~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontPage~~8379534a.bb03871c80f38458f237.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~browser-logs~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontP~b17b93e7.93f57e8d555d7b8a365e.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~adEditor~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontPage~~19904265.e182978c4e04fa08d1a1.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~categoryPage~curatedHomepage~errorPage~experiments~featuredPermalinkPage~frontPage~permalink~52f86dd3.a3bf982db8ac12c972f4.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~categoryPage~curatedHomepage~featuredPermalinkPage~frontPage~header~lunchbox-read-only-compo~84b37b4e.23edd58b2f6c0dbe0081.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~categoryPage~curatedHomepage~featuredPermalinkPage~frontPage~lunchbox-read-only-component~pe~045ae5d8.96a119d6d9e4856c1362.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/vendors~categoryPage~curatedHomepage~featuredPermalinkPage~frontPage~permalinkPage~searchPage~slides~a3dad056.b6c50ff3a5cb5bc3a8e6.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/curation-utils~embiggen~featuredPermalinkPage~homepage-edit~in-article-selector~inArticleAdTools~out~4fb4640d.735d21b4d44bf8002feb.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/adEditor~errorPage~experiments~featuredPermalinkPage~newsletterPage~permalinkPage~permalinkPageIdle~~7cddaefd.8d0c1b704d05907e48ab.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/adEditor~errorPage~experiments~featuredPermalinkPage~permalinkPage~permalinkPageIdle~profilePage~sea~3a495c6d.59edbdd41c30046114ac.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/errorPage~featuredPermalinkPage~permalinkPage~permalinkPageIdle~profilePage~searchPage~slideshowPerm~06881b51.91b46446b5efe4d81f1f.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/outstreamNativeView~permalinkPage~permalinkPageIdle~slideshowPermalinkPage~videojsIframe.f16340c882602d783e4c.js"></script>
        <script async="async" src="//x.kinja-static.com/assets/new-client/permalinkPage.66ff393cde34ac7bfae9.js"></script>
        <div class="js_modal"></div>
        <div id="kinja-bucket-setter"></div>
    </body>
</html>