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
|
<!DOCTYPE html>
<html lang="en-US" class="no-js no-svg">
<head>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WCLGG3Q');
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KX9D26');
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta charset="UTF-8">
<meta name="apple-itunes-app" content="app-id=383457673">
<meta name="apple-mobile-web-app-title" content="Plex Website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<!-- connect to domain of font files -->
<link rel="preconnect dns-prefetch" href="https://fonts.gstatic.com" crossorigin>
<!-- optionally increase loading priority -->
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=optional">
<!-- async CSS -->
<link rel="stylesheet" media="print" onload="this.onload=null;this.removeAttribute('media');" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=optional">
<!-- no-JS fallback -->
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=optional">
</noscript>
<link rel="icon" sizes="any" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/favicon.ico"/>
<link rel="apple-touch-icon" sizes="76x76" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-76.png"/>
<link rel="apple-touch-icon" sizes="120x120" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-120.png"/>
<link rel="apple-touch-icon" sizes="152x152" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-152.png"/>
<link rel="apple-touch-icon" sizes="167x167" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-167.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-180.png"/>
<link rel="icon" sizes="192x192" href="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/plex-192.png"/>
<meta name="application-name" content="Plex"/>
<meta name="msapplication-TileColor" content="#282A2D" />
<meta name="msapplication-TileImage" content="https://www.plex.tv/wp-content/themes/plex/assets/img/favicons/mstile-144x144.png" />
<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<script type="text/javascript">window.liveSettings={"settings":"","wp":true,"api_key":"aa123087176a485c86dea2bc33e151bf","prerender":true,"detectlang":function() { return "en-us";}};</script>
<script type="text/javascript" src="//cdn.transifex.com/live.js"></script>
<link rel="alternate" href="https://www.plex.tv/media-server-downloads/" hreflang="en-us"/>
<link rel="alternate" href="https://www.plex.tv/zh/media-server-downloads/" hreflang="zh-cn"/>
<link rel="alternate" href="https://www.plex.tv/nl/media-server-downloads/" hreflang="nl"/>
<link rel="alternate" href="https://www.plex.tv/en-au/media-server-downloads/" hreflang="en-au"/>
<link rel="alternate" href="https://www.plex.tv/en-ca/media-server-downloads/" hreflang="en-ca"/>
<link rel="alternate" href="https://www.plex.tv/en-gb/media-server-downloads/" hreflang="en-gb"/>
<link rel="alternate" href="https://www.plex.tv/fr/media-server-downloads/" hreflang="fr"/>
<link rel="alternate" href="https://www.plex.tv/de/media-server-downloads/" hreflang="de"/>
<link rel="alternate" href="https://www.plex.tv/hi/media-server-downloads/" hreflang="hi-in"/>
<link rel="alternate" href="https://www.plex.tv/ja/media-server-downloads/" hreflang="ja"/>
<link rel="alternate" href="https://www.plex.tv/ko/media-server-downloads/" hreflang="ko"/>
<link rel="alternate" href="https://www.plex.tv/pt/media-server-downloads/" hreflang="pt"/>
<link rel="alternate" href="https://www.plex.tv/pt-br/media-server-downloads/" hreflang="pt-br"/>
<link rel="alternate" href="https://www.plex.tv/ru/media-server-downloads/" hreflang="ru"/>
<link rel="alternate" href="https://www.plex.tv/es/media-server-downloads/" hreflang="es"/>
<link rel="alternate" href="https://www.plex.tv/sv/media-server-downloads/" hreflang="sv-se"/>
<link rel="alternate" href="https://www.plex.tv/media-server-downloads/" hreflang="x-default"/>
<style type="text/css">
.plexview-template-hide { display: none; }
.plexview-template { display: none; }
</style><link rel="alternate" href="https://www.plex.tv/media-server-downloads/" hreflang="x-default"/>
<!-- This site is optimized with the Yoast SEO Premium plugin v25.1 (Yoast SEO v25.1) - https://yoast.com/wordpress/plugins/seo/ -->
<title>Media Server Downloads | Plex Media Server for Windows, Mac, Linux, FreeBSD and More</title>
<meta name="description" content="Click here to Download the Plex media server for Windows, Mac, Linux FreeBSD and more free today." />
<link rel="canonical" href="https://www.plex.tv/media-server-downloads/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Downloads" />
<meta property="og:description" content="Click here to Download the Plex media server for Windows, Mac, Linux FreeBSD and more free today." />
<meta property="og:url" content="https://www.plex.tv/media-server-downloads/" />
<meta property="og:site_name" content="Plex" />
<meta property="article:publisher" content="https://www.facebook.com/plexapp/" />
<meta property="article:modified_time" content="2023-11-08T16:37:43+00:00" />
<meta property="og:image" content="https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1-1024x576.jpg" />
<meta property="og:image:width" content="1024" />
<meta property="og:image:height" content="576" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@plex" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.plex.tv/media-server-downloads/","url":"https://www.plex.tv/media-server-downloads/","name":"Media Server Downloads | Plex Media Server for Windows, Mac, Linux, FreeBSD and More","isPartOf":{"@id":"https://www.plex.tv/#website"},"primaryImageOfPage":{"@id":"https://www.plex.tv/media-server-downloads/#primaryimage"},"image":{"@id":"https://www.plex.tv/media-server-downloads/#primaryimage"},"thumbnailUrl":"https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1.jpg","datePublished":"2017-10-31T20:08:10+00:00","dateModified":"2023-11-08T16:37:43+00:00","description":"Click here to Download the Plex media server for Windows, Mac, Linux FreeBSD and more free today.","breadcrumb":{"@id":"https://www.plex.tv/media-server-downloads/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.plex.tv/media-server-downloads/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.plex.tv/media-server-downloads/#primaryimage","url":"https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1.jpg","contentUrl":"https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1.jpg","width":"3600","height":"2025"},{"@type":"BreadcrumbList","@id":"https://www.plex.tv/media-server-downloads/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.plex.tv/"},{"@type":"ListItem","position":2,"name":"Downloads"}]},{"@type":"WebSite","@id":"https://www.plex.tv/#website","url":"https://www.plex.tv/","name":"Plex","description":"Stream smarter.","publisher":{"@id":"https://www.plex.tv/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.plex.tv/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.plex.tv/#organization","name":"Plex","url":"https://www.plex.tv/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.plex.tv/#/schema/logo/image/","url":"https://www.plex.tv/wp-content/uploads/2018/01/pmp-icon-1.png","contentUrl":"https://www.plex.tv/wp-content/uploads/2018/01/pmp-icon-1.png","width":900,"height":900,"caption":"Plex"},"image":{"@id":"https://www.plex.tv/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/plexapp/","https://x.com/plex"]}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel="alternate" type="application/rss+xml" title="Plex » Feed" href="https://www.plex.tv/feed/" />
<link rel='stylesheet' id='plex-app-css' href='https://www.plex.tv/wp-content/themes/plex/dist/css/app.min.css?ver=4.0.0-1759750919' type='text/css' media='all' />
<script type="text/javascript" src="https://www.plex.tv/wp-content/themes/plex/assets/js/app/lib/jquery.min.js?ver=4.0.0-1759750919" id="jquery-core-js"></script>
<link rel="https://api.w.org/" href="https://www.plex.tv/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.plex.tv/wp-json/wp/v2/pages/57" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.plex.tv/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://www.plex.tv/?p=57' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.plex.tv/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.plex.tv%2Fmedia-server-downloads%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.plex.tv/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.plex.tv%2Fmedia-server-downloads%2F&format=xml" />
<link rel="preload" as="font" type="font/woff2" href="https://www.plex.tv/wp-content/themes/plex/assets/fonts/plexeina-regular-webfont.woff2" crossorigin="anonymous">
<link rel="preload" as="font" type="font/woff2" href="https://www.plex.tv/wp-content/themes/plex/assets/fonts/plexeina-bold-webfont.woff2" crossorigin="anonymous">
<link rel="preload" as="font" type="font/woff2" href="https://www.plex.tv/wp-content/themes/plex/assets/fonts/icomoon.woff2" crossorigin="anonymous">
</head>
<body class="page-template page-template-template page-template-downloads-modern page-template-templatedownloads-modern-php page page-id-57 flush-bottom lang-en-us" >
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WCLGG3Q"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KX9D26"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="plex-site-container" class="container">
<div id="plex-language-redirect" class="grid-x notification-bar notif-language-redirect container-standard text-center align-middle" style="display: none;">
<div class="large-12 cell">
<div style="margin-top:5px;"><div class="loader sub" style="width:15px;height:15px;float:left;margin-right:10px; border: 1px solid #000; border-left: 1em solid #F7C600;"></div> <span>Changing the site language for you. Please wait ...</span></div>
</div>
</div>
<div id="plex-language-bar" class="grid-x notification-bar notif-language container-standard text-center align-middle" style="display: none;">
<div class="large-12 cell wow fadeIn" data-wow-delay="0.5s">
<h4>Hey!</h4>
<p>Our website is available in <span class="site-language-switch-language">your language</span>, would you like to switch to that? <a class="notif-cta site-language-switch" href="">Yes</a> <a href="" class="notif-cta dismiss-language-switch">No</a></p>
</div>
</div>
<div class="header">
<div class="global-nav wow-fadeIn" data-wow-delay="0.5s">
<script type="text/x-template" id="plex-loading">
<div class="loading" v-if="loading">
<div class="field-spinner">
<div class="loader sub"></div>
<p class="loading-message" style="text-align: center;" v-if="getLoadingData">
{{getLoadingData}}
</p>
</div>
</div>
</script>
<div id="plex-global-nav" class="plex-global-nav plex-templating nav-menu" :class="{ legacyFlexGap : ! navBar.hasFlexGapSupport }" data-utm-section="menu-header" v-cloak>
<header class="plex-global-nav navbar" :class="{ isSearchFocused : navBar.searchIsFocused }">
<div class="plex-global-nav-search chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_grow chroma_Flex_module_nativeGap chroma_Flex_module_l" style="align-items:center">
<div class="logoContainer">
<a class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/" tabindex="0">
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">
<img alt="Plex" class="plex-logo nav-search-icon chroma_Icon_baseline chroma_Icon_none chroma_Icon_inheritColor" src="https://www.plex.tv/wp-content/themes/plex/assets/img/plex-logo.svg">
</span>
</a>
</div>
<div ref="navSearchContainer" class="searchContainer" id="universal-search-container" role="combobox" aria-haspopup="listbox" aria-owns="universal-search-menu" :ariaExpanded="navBar.searchIsFocused">
<div class="searchContainer-wrapper chroma_SearchInput_module_container chroma_SearchInput_module_isFilled" :class="{ chroma_SearchInput_module_isScopeOpen : navBar.searchScopeIsOpened, 'keepFocused': navBar.searchQuery && navBar.searchResultsIsOpened }" >
<button ref="navSearchScope"
@click="navSearchToggle"
@keyup.tab="navSearchScopeFocus"
id="universal-search-scope-menu-trigger"
class="nav-search-scope chroma_SearchInput_module_scopeButton chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base"
aria-expanded="false"
aria-haspopup="true"
aria-label="Open Search Scope"
type="button"
tabindex="0">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_xs" style="align-items:center">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" style="width:auto;height:max(1em, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<path d="M45.5 43.3788L34.1718 32.0507C36.8939 28.7827 38.2513 24.5911 37.9616 20.3479C37.672 16.1046 35.7575 12.1364 32.6166 9.26865C29.4757 6.40093 25.35 4.85455 21.098 4.95117C16.846 5.04779 12.7948 6.77999 9.78742 9.78742C6.77999 12.7948 5.04779 16.846 4.95117 21.098C4.85455 25.35 6.40093 29.4757 9.26865 32.6166C12.1364 35.7575 16.1046 37.672 20.3479 37.9616C24.5911 38.2513 28.7827 36.8939 32.0507 34.1718L43.3788 45.5L45.5 43.3788ZM7.99999 21.5C7.99999 18.8299 8.79175 16.2199 10.2751 13.9998C11.7585 11.7797 13.867 10.0494 16.3338 9.02762C18.8006 8.00583 21.515 7.73849 24.1337 8.25939C26.7525 8.78029 29.1579 10.066 31.0459 11.954C32.9339 13.8421 34.2197 16.2475 34.7406 18.8663C35.2615 21.485 34.9941 24.1994 33.9724 26.6662C32.9506 29.133 31.2202 31.2414 29.0002 32.7248C26.7801 34.2082 24.17 35 21.5 35C17.9208 34.996 14.4893 33.5724 11.9584 31.0415C9.42755 28.5107 8.00396 25.0792 7.99999 21.5Z" fill="currentColor"></path>
</svg>
<span v-if="navBar.searchIsFocused || navBar.searchScopeIsOpened || navBar.searchScope !== 'All' || navBar.searchQuery" class="chroma_SearchInput_module_scopeDisclosure">
<span class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" :title="navBar.searchScope">{{navBar.searchScope}}</span>
<span class="chroma_SearchInput_module_arrow" :class="{ chroma_SearchInput_module_isOpen : navBar.searchScopeIsOpened }">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" style="width:auto;height:max(1em, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<path d="M39 16L24 34.75L9 16H39Z" fill="currentColor"></path>
</svg>
</span>
</span>
</span>
</button>
<input ref="navSearchInput" id="universal-search-input" @focus="navSearchFocus" @click="navSearchFocus" @keyup="navDoSearch" v-model="navBar.searchQuery" class="chroma_SearchInput_module_input chroma_shared_module_base universal-search-input" aria-autocomplete="list" aria-controls="universal-search-menu" aria-labelledby="universal-search-label" autocomplete="off" value="" autocapitalize="off" autocorrect="off" tabindex="0" placeholder="Find Movies & TV">
<div v-show="navBar.searchQuery" @click="navClearSearch" class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink" style="align-items:center;height:100%">
<button ref="closeSearchResults" class="close-search-results chroma_SearchInput_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_SearchInput_module_clearButton" type="button" aria-label="close and clear search results" tabindex="0">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg" style="width: auto; height: max(1em, 1rem);">
<path d="M8.46448 37.4355L10.5645 39.5355L24 26.0999L37.4356 39.5355L39.5356 37.4355L26.1 23.9999L39.5356 10.5644L37.4356 8.46439L24 21.8999L10.5645 8.46438L8.46448 10.5644L21.9 23.9999L8.46448 37.4355Z" fill="currentColor"></path>
</svg>
</button>
</div>
</div>
<div ref="universalSearchFlyout" id="universal-search-flyout" class="chroma_Flyout_modules_popper" v-show="navBar.searchScopeIsOpened">
<div class="chroma_Flyout_modules_flyout chroma_shared_module_base">
<span hidden=""></span>
<div aria-labelledby="universal-search-scope-menu-trigger" class="chroma_Menu_module_menu" id="universal-search-scope-menu" role="menu">
<div class="chroma_Menu_module_menuContainer" style="width: 216px;">
<div class="chroma_VisuallyHidden_module_container">
<button @click="navSearchScopeClose" aria-label="Close Search Scope Menu" tabindex="-1"></button>
</div>
<button
v-for="(scope, key, index) in navBar.searchScopes"
:ref="`universalSearchFlyout-${index+1}`"
:id="`universalSearchFlyout-${index+1}`"
@click="navSearchSetScope(key)"
@keydown.enter.space="navSearchSetScope(key, $event)"
class="chroma_Menu_module_menuButton chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base"
role="menuitem"
type="button"
tabindex="-1"
aria-checked="navBar.searchScope === key">
<span class="Text_gap">
<span class="search-menu-item chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor" :class="{ Text_accent : navBar.searchScope === key }">{{key}}</span>
<svg v-if="navBar.searchScope === key" aria-hidden="true" class="Icon_accent" fill="currentColor" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg" style="width: auto; height: max(1em, 1rem);">
<path clip-rule="evenodd" d="M4 24.7518L18.6461 39.4008L44 14.0497L38.9502 9L18.6461 29.3069L9.04416 19.7076L4 24.7518Z" fill="currentColor" fill-rule="evenodd"></path>
</svg>
</span>
</button>
</div>
</div><span hidden=""></span>
</div>
</div>
</div>
</div>
<div ref="navSearchResultsContainer" id="universal-search-menu" class="plex-global-nav-search" role="listbox" aria-labelledby="universal-search-label" v-show="navBar.searchResultsIsOpened">
<div class="chroma_Flyout_modules_popper" tabindex="-1" :style="navBar.searchResultsMenuStyle" style="position: absolute; inset: 0px auto auto 0px">
<div class="chroma_Flyout_modules_flyout chroma_shared_module_base" style="opacity: 1; transform: none;">
<div class="chroma_Scroller_modules_scroller chroma_Scroller_modules_vertical chroma_Scroller_modules_auto" style="padding: 0px;">
<!-- component-->
<div class="emptyContainer" v-show="navBar.fetchingSlowSearchResults">
<plex-loading :loading="navBar.fetchingSlowSearchResults" :status="'loading'" :no-message="true"></plex-loading>
</div>
<!-- /component -->
<div
v-show="navBar.searchScope === 'All' && navBar.searchHasResults && ! navBar.fetchingSlowSearchResults"
v-for="(term, key) in navBar.searchSuggestedTerms"
@click="navDoTermSearch(term)"
:id="`universal-search-suggestion-${key}`"
:key="`universal-search-suggestion-${key}`"
class="listItem"
role="option"
aria-selected="false">
<span class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_xs" style="align-items: center;">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" style="width: auto; height: max(1em, 1rem);" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<path d="M45.5 43.3788L34.1718 32.0507C36.8939 28.7827 38.2513 24.5911 37.9616 20.3479C37.672 16.1046 35.7575 12.1364 32.6166 9.26865C29.4757 6.40093 25.35 4.85455 21.098 4.95117C16.846 5.04779 12.7948 6.77999 9.78742 9.78742C6.77999 12.7948 5.04779 16.846 4.95117 21.098C4.85455 25.35 6.40093 29.4757 9.26865 32.6166C12.1364 35.7575 16.1046 37.672 20.3479 37.9616C24.5911 38.2513 28.7827 36.8939 32.0507 34.1718L43.3788 45.5L45.5 43.3788ZM7.99999 21.5C7.99999 18.8299 8.79175 16.2199 10.2751 13.9998C11.7585 11.7797 13.867 10.0494 16.3338 9.02762C18.8006 8.00583 21.515 7.73849 24.1337 8.25939C26.7525 8.78029 29.1579 10.066 31.0459 11.954C32.9339 13.8421 34.2197 16.2475 34.7406 18.8663C35.2615 21.485 34.9941 24.1994 33.9724 26.6662C32.9506 29.133 31.2202 31.2414 29.0002 32.7248C26.7801 34.2082 24.17 35 21.5 35C17.9208 34.996 14.4893 33.5724 11.9584 31.0415C9.42755 28.5107 8.00396 25.0792 7.99999 21.5Z" fill="currentColor"></path>
</svg>
{{term}}
</div>
</span>
</div>
<div
ref="navSearchResult"
v-show="navBar.searchHasResults && ! navBar.fetchingSlowSearchResults"
v-for="(item, key) in navBar.searchResults"
@click="navSearchRedirect( navSearchSanitizedItem( item, 'URL' ) )"
@keyup.enter="navSearchRedirect( navSearchSanitizedItem( item, 'URL' ) )"
@keyup="navSearchKeyboardNavigation( $event, key, navBar.searchResults.length )"
:id="`universal-search-item-${key}`"
class="listItem"
role="option"
aria-selected="false"
style="justify-content: space-between;"
:key="`universal-search-item-${key}`"
class="search-item-result"
tabindex="-1">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_s" style="align-items: center;">
<div class="chroma_Poster_module_container chroma_Poster_module_rectangle" :class="'scope-' + navSearchSanitizedItem( item, 'type' )" style="width: 40px; height: calc(60px); min-width: 40px;">
<div style="display: block; overflow: hidden; position: absolute; inset: 0px; box-sizing: border-box; margin: 0px;">
<img v-if="navSearchSanitizedItem( item, 'thumb' )" :src="navSearchSanitizedItem( item, 'thumb' )" :alt="navSearchSanitizedItem( item, 'title' )" sizes="30px" decoding="async" data-nimg="true" style="position: absolute; inset: 0px; box-sizing: border-box; padding: 0px; border: none; margin: auto; display: block; width: 0px; height: 0px; min-width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; object-fit: cover;">
<div v-else class="no-cover">?</div>
</div>
</div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-search-result-title chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" :title="navSearchSanitizedItem( item, 'title' )">{{navSearchSanitizedItem( item, 'title' )}}</span>
<span class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_singleLine" :title="navSearchSanitizedItem( item, 'title' )">{{navSearchItemTypeDesc( item )}}</span>
</div>
</div>
<div v-if="navSearchItemIsPlayable( item )" class="channel-is-playable" style="font-size: 0.75rem; background-color: #0000004d; padding: 0.25rem 0.5rem; font-weight: bolder; color: #fff;">
<span title="Watch Free">Watch Free</span>
</div>
</div>
<div v-show="navBar.searchHasResults === false && ! navBar.fetchingSearchResults" class="emptyContainer">
<span class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_secondary">No results</span>
</div>
</div>
</div>
</div>
</div>
<nav ref="globalNav" class="fresnel-greaterThanOrEqual-md nav" role="menubar">
<div class="nav" @mouseleave="navMouseLeave">
<div ref="navSuperMenuButtons" class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_l">
<button
ref="movies-tv-super-menu-button"
class="chroma_TextButton_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_TextButton_module_default"
id="movies-tv-super-menu-button"
type="button"
tabindex="0"
@mouseenter="navOpenSection"
@touchstart="navOpenSection"
@click="navOpenSection"
@focus="navOpenSectionFocus"
@keydown.space.prevent="navOpenSection"
aria-expanded="false"
>
<span tabindex="-1" class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor Text_menu_label">Free Movies & TV</span>
</button>
<button
ref="live-tv-super-menu-button"
class="chroma_TextButton_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_TextButton_module_default"
id="live-tv-super-menu-button"
type="button"
tabindex="0"
@mouseenter="navOpenSection"
@touchstart="navOpenSection"
@click="navOpenSection"
@focus="navOpenSectionFocus"
@keydown.space.prevent="navOpenSection"
aria-expanded="false"
>
<span tabindex="-1" class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor Text_menu_label">Live TV</span>
</button>
<button
ref="features-super-menu-button"
class="chroma_TextButton_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_TextButton_module_default"
id="features-super-menu-button"
type="button"
tabindex="0"
@mouseenter="navOpenSection"
@touchstart="navOpenSection"
@click="navOpenSection"
@focus="navOpenSectionFocus"
@keydown.space.prevent="navOpenSection"
aria-expanded="false"
>
<span tabindex="-1" class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor Text_menu_label">Features</span>
</button>
<button
ref="download-super-menu-button"
class="chroma_TextButton_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_TextButton_module_default"
id="download-super-menu-button"
type="button"
tabindex="0"
@mouseenter="navOpenSection"
@touchstart="navOpenSection"
@click="navOpenSection"
@focus="navOpenSectionFocus"
@keydown.space.prevent="navOpenSection"
aria-expanded="false"
>
<span tabindex="-1" class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor Text_menu_label">Download</span>
</button>
</div>
<transition
:css="false"
@before-enter="navBeforeEnter"
@enter="navEnter"
@leave="navLeave">
<div ref="navSuperMenuContainer" class="superMenuContainer" v-show="navBar.isOpened">
<div ref="arrow" class="arrow" :style="navBar.arrowStyle"></div>
<div class="superMenu" :style="navBar.menuStyle" @mouseleave="navMouseLeave">
<div
ref="movies-tv"
tabindex="-1"
:class="{ isVisible: navIsActiveSection('movies-tv') }"
:aria-expanded="navIsActiveSection('movies-tv') ? 'true' : 'false'"
:aria-hidden="!navIsActiveSection('movies-tv') ? 'true' : 'false'"
aria-labelledby="movies-tv-super-menu-button"
id="movies-tv"
class="section"
role="dialog">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink">
<div
class="SuperMenuSectionList_container tint"
:class="{ 'tinted' : true}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs chroma_Flex_module_nativeGap chroma_Flex_module_m">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Explore</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-0"
id="movies-tv-0"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, Featured"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Featured</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="divider"></span>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-1"
id="movies-tv-1"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, Movies & TV Shows"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Movies & TV Shows</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-2"
id="movies-tv-2"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/live-tv"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, Live TV Channels"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Live TV Channels</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="divider"></span>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-3"
id="movies-tv-3"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/list/trending"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, Most Popular"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Most Popular</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-4"
id="movies-tv-4"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/list/expiring"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, Leaving Soon"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Leaving Soon</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="movies-tv-5"
id="movies-tv-5"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/what-to-watch/"
role="menuitem"
tabindex="-1"
aria-label="Free Movies & TV, Explore, What to Watch"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">What to Watch</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div v-if="navBar.fetchingCategories || navHasCategories" class="SuperMenuSectionList_container SuperMenuSectionList_twoColumn" style="min-width: 436px;">
<!-- component-->
<div v-if="navBar.fetchingCategories">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Categories</span>
</div>
<div class="emptyContainer">
<plex-loading :loading="navBar.fetchingCategories" :status="'loading'" :no-message="true"></plex-loading>
</div>
</div>
<!-- /component -->
<div v-if="navHasCategories" class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="sprinkles_display_flex_s sprinkles_minWidth_0 reset sprinkles_gap_m_xxs sprinkles_flexDirection_column_s sprinkles_flexShrink_1_s sprinkles_flexGrow_0_s">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Categories</span>
</div>
<ul class="SuperMenuSectionList_grid">
<li v-for="(item, key) in navBar.categoriesMenu" class=" chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="navMenuAvodCategories"
:id="'movies-tv-categories-' + key"
:href="navMediaverseCategoryURL( item.slug )"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default"
role="menuitem"
tabindex="-1"
:aria-label="'Free Movies & TV, Category, ' + navUCFirst(item.title)"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">{{navUCFirst(item.title)}}</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div
ref="live-tv"
tabindex="-1"
:class="{ isVisible: navIsActiveSection('live-tv') }"
:aria-expanded="navIsActiveSection('live-tv') ? 'true' : 'false'"
:aria-hidden="!navIsActiveSection('live-tv') ? 'true' : 'false'"
aria-labelledby="live-tv-super-menu-button"
id="live-tv"
class="section"
role="dialog">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink">
<div
class="SuperMenuSectionList_container tint"
:class="{ 'tinted' : true}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs chroma_Flex_module_nativeGap chroma_Flex_module_m">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Explore</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="live-tv-0"
id="live-tv-0"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/live-tv"
role="menuitem"
tabindex="-1"
aria-label="Live TV, Explore, Browse Channels"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Browse Channels</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<div v-if="navBar.fetchingEpgFeatured || navHasEpgFeatured" class="epg-featured chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs chroma_Flex_module_nativeGap chroma_Flex_module_m">
<!-- component-->
<div v-if="navBar.fetchingEpgFeatured">
<div class="card-title title nav-subheading-title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Featured Channels</span>
</div>
<div class="emptyContainer">
<plex-loading :loading="navBar.fetchingEpgFeatured" :status="'loading'" :no-message="true"></plex-loading>
</div>
</div>
<!-- /component -->
<div v-if="navHasEpgFeatured">
<div class="card-title title nav-subheading-title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Featured Channels</span>
</div>
<ul class="grid">
<li v-for="(item, key) in navBar.featuredEpgMenu" class=" chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
:id="'live-tv-featured-' + key"
:href="navMediaverseEpgChannelURL( item.slug )"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default"
role="menuitem"
tabindex="-1"
:aria-label="'Live TV, Featured Channel, ' + navUCFirst(item.name)"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">{{navUCFirst(item.name)}}</span>
</a>
</li>
</ul>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div v-if="navBar.fetchingEpgCategories || navHasEpgCategories" class="SuperMenuSectionList_container SuperMenuSectionList_twoColumn" style="min-width: 400px;">
<!-- component-->
<div v-if="navBar.fetchingEpgCategories">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Categories</span>
</div>
<div class="emptyContainer">
<plex-loading :loading="navBar.fetchingEpgCategories" :status="'loading'" :no-message="true"></plex-loading>
</div>
</div>
<!-- /component -->
<div v-if="navHasEpgCategories" class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="sprinkles_display_flex_s sprinkles_minWidth_0 reset sprinkles_gap_m_xxs sprinkles_flexDirection_column_s sprinkles_flexShrink_1_s sprinkles_flexGrow_0_s">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Categories</span>
</div>
<ul class="SuperMenuSectionList_grid">
<li v-for="(item, key) in navBar.categoriesEpgMenu" class=" chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
:id="'live-tv-categories-' + key"
:href="navMediaverseEpgCategoryURL( item.slug )"
class="nav-menu-item-simple chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default"
role="menuitem"
tabindex="-1"
:aria-label="'Live TV, Category, ' + navUCFirst(item.name)"
>
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">{{navUCFirst(item.name)}}</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div
ref="features"
tabindex="-1"
:class="{ isVisible: navIsActiveSection('features') }"
:aria-expanded="navIsActiveSection('features') ? 'true' : 'false'"
:aria-hidden="!navIsActiveSection('features') ? 'true' : 'false'"
aria-labelledby="features-super-menu-button"
id="features"
class="section"
role="dialog">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink">
<div
class="SuperMenuSectionList_container cards"
:class="{ 'tinted' : false}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs ">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Plex for All</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-0"
id="features-0"
class="navCardLink"
href="https://www.plex.tv/watch-free-tv/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for All, 600+ Free Live TV Channels, Tune in anytime, on any device.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-tv-ico " ><svg class="plexico-icon-nav-tv-ico-15" id="nav-tv-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M17 4.00001L24 13L31.0468 4L34.5 4L27.5 13H42C42.7957 13 43.5587 13.3161 44.1213 13.8787C44.6839 14.4413 45 15.2044 45 16V41C45 41.7957 44.6839 42.5587 44.1213 43.1213C43.5587 43.6839 42.7957 44 42 44H6C5.20435 44 4.44129 43.6839 3.87868 43.1213C3.31607 42.5587 3 41.7957 3 41V16C3 15.2044 3.31607 14.4413 3.87868 13.8787C4.44129 13.3161 5.20435 13 6 13L20.5 13L13.5 4L17 4.00001ZM42 41H6V16H42V41Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">600+ Free Live TV Channels</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Tune in anytime, on any device.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-1"
id="features-1"
class="navCardLink"
href="https://www.plex.tv/watch-free/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for All, Free Movies & Shows, Stream 50,000+ titles on demand.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-player-ico " ><svg class="plexico-icon-nav-player-ico-16" id="nav-player-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M19.5455 28C19.4008 28 19.2621 27.9429 19.1598 27.8414C19.0575 27.7398 19 27.602 19 27.4583V15.5417C19 15.4476 19.0247 15.3551 19.0717 15.2733C19.1186 15.1915 19.1862 15.1233 19.2678 15.0754C19.3494 15.0275 19.4422 15.0015 19.5369 15.0001C19.6317 14.9986 19.7253 15.0217 19.8083 15.067L30.7174 21.0254C30.803 21.0721 30.8743 21.1408 30.9241 21.2243C30.9738 21.3078 31 21.403 31 21.5C31 21.597 30.9738 21.6922 30.9241 21.7757C30.8743 21.8592 30.803 21.9279 30.7174 21.9746L19.8083 27.9329C19.7278 27.9769 19.6374 28 19.5455 28Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M42 5H6C5.20435 5 4.44129 5.31607 3.87868 5.87868C3.31607 6.44129 3 7.20435 3 8V34C3 34.7957 3.31607 35.5587 3.87868 36.1213C4.44129 36.6839 5.20435 37 6 37H42C42.7957 37 43.5587 36.6839 44.1213 36.1213C44.6839 35.5587 45 34.7957 45 34V8C45 7.20435 44.6839 6.44129 44.1213 5.87868C43.5587 5.31607 42.7957 5 42 5ZM42 34H6V8H42V34Z" fill="#E5A00D" fill-rule="evenodd"></path><path d="M36 40V43H12V40H36Z" fill="#E5A00D"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Free Movies & Shows</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Stream 50,000+ titles on demand.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-2"
id="features-2"
class="navCardLink"
href="https://www.plex.tv/discover/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for All, Experience Discover on Plex, Find a movie. Find a show. Find your friends.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-discover " ><svg class="plexico-icon-discover-17" id="discover" width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.6675 9.17321C20.7031 8.89961 20.5713 8.6319 20.3333 8.49448C20.0952 8.35703 19.7975 8.37679 19.5783 8.54438L12.7145 13.7958C12.6426 13.8509 12.58 13.9235 12.5346 14.002C12.4894 14.0805 12.46 14.1671 12.4483 14.2569L11.3323 22.8268C11.2968 23.1005 11.4285 23.3681 11.6666 23.5056C11.9046 23.643 12.2023 23.6233 12.4215 23.4557L19.2853 18.2043C19.3572 18.1492 19.4199 18.0765 19.4651 17.9981C19.5104 17.9196 19.5398 17.8329 19.5515 17.7432L20.6675 9.17321ZM17.4433 16.8334C16.983 17.6305 15.9637 17.9036 15.1666 17.4434C14.3694 16.9832 14.0963 15.9638 14.5565 15.1667C15.0168 14.3695 16.0361 14.0964 16.8332 14.5566C17.6304 15.0169 17.9035 16.0362 17.4433 16.8334Z" fill="#E5A00D"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M30 16C30 23.732 23.732 30 16 30C8.26801 30 2 23.732 2 16C2 8.26801 8.26801 2 16 2C23.732 2 30 8.26801 30 16ZM28 16C28 22.6274 22.6274 28 16 28C9.37258 28 4 22.6274 4 16C4 9.37258 9.37258 4 16 4C22.6274 4 28 9.37258 28 16Z" fill="#E5A00D"/>
</svg>
</div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Experience Discover on Plex</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Find a movie. Find a show. Find your friends.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-3"
id="features-3"
class="navCardLink"
href="https://www.plex.tv/apps-devices/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for All, Stream on Almost Any Device, Download our free app to start.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-stream-ico " ><svg class="plexico-icon-nav-stream-ico-18" id="nav-stream-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M35.6274 25.3137L33.3647 27.5765C28.366 22.5778 20.2615 22.5778 15.2627 27.5765L13 25.3137C19.2484 19.0653 29.379 19.0653 35.6274 25.3137Z" fill="#E5A00D"></path><path d="M28.8392 32.1019L31.1019 29.8392C27.3529 26.0902 21.2745 26.0902 17.5255 29.8392L19.7882 32.1019C22.2876 29.6026 26.3398 29.6026 28.8392 32.1019Z" fill="#E5A00D"></path><path d="M24.3137 36.6274L22.051 34.3647C23.3006 33.115 25.3268 33.115 26.5764 34.3647L24.3137 36.6274Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M24 13L17 4.00001L13.5 4L20.5 13L6 13C5.20435 13 4.44129 13.3161 3.87868 13.8787C3.31607 14.4413 3 15.2044 3 16V41C3 41.7957 3.31607 42.5587 3.87868 43.1213C4.44129 43.6839 5.20435 44 6 44H42C42.7957 44 43.5587 43.6839 44.1213 43.1213C44.6839 42.5587 45 41.7957 45 41V16C45 15.2044 44.6839 14.4413 44.1213 13.8787C43.5587 13.3161 42.7957 13 42 13H27.5L34.5 4L31.0468 4L24 13ZM6 41H42V16H6V41Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Stream on Almost Any Device</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Download our free app to start.</span>
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div
class="SuperMenuSectionList_container cards"
:class="{ 'tinted' : false}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs ">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Plex for Pros</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-4"
id="features-4"
class="navCardLink"
href="https://www.plex.tv/your-media/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for Pros, Add Your Personal Media, Organize & stream your own collection.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-personal-media-ico " ><svg class="plexico-icon-nav-personal-media-ico-19" id="nav-personal-media-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M36 3H12V6H36V3Z" fill="#E5A00D"></path><path d="M9 10H39V13H9V10Z" fill="#E5A00D"></path><path d="M25.5385 29.0257H31.5642V32.0385H25.5385V38.0642H22.5257V32.0385H16.5V29.0257H22.5257V23H25.5385V29.0257Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M9 44H39C39.7954 43.9992 40.558 43.6828 41.1204 43.1204C41.6828 42.558 41.9992 41.7954 42 41V20C41.9992 19.2046 41.6828 18.442 41.1204 17.8796C40.558 17.3172 39.7954 17.0008 39 17H9C8.20461 17.0008 7.44203 17.3172 6.8796 17.8796C6.31717 18.442 6.00083 19.2046 6 20V41C6.00083 41.7954 6.31717 42.558 6.8796 43.1204C7.44203 43.6828 8.20461 43.9992 9 44ZM9 41V20H39V41H9Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Add Your Personal Media</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Organize & stream your own collection.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-5"
id="features-5"
class="navCardLink"
href="https://www.plex.tv/plans/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for Pros, Choose a Plan, Upgrade to stream your personal media remotely & more.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-plex-pass-ico " ><svg class="plexico-icon-nav-plex-pass-ico-20" id="nav-plex-pass-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M6 12C7.5 10.5 7 8 7 8H41C41 8 40.5 10.5 42 12C43.5 13.5 46 13 46 13V35C46 35 43.5 34.5 42 36C40.5 37.5 41 40 41 40H7C7 40 7.5 37.5 6 36C4.5 34.5 2 35 2 35V13C2 13 4.5 13.5 6 12ZM8.5 14.5C10 13 10 11 10 11H38C38 11 38 13 39.5 14.5C41 16 43 16 43 16V32C43 32 41 32 39.5 33.5C38 35 38 37 38 37H10C10 37 10 35 8.5 33.5C7 32 5.00002 32 5.00002 32L5 16C5 16 7 16 8.5 14.5ZM24.2295 33H19L24.7705 24L19 15H24.2295L30 24L24.2295 33Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Choose a Plan</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Upgrade to stream your personal media remotely & more.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-6"
id="features-6"
class="navCardLink"
href="https://www.plex.tv/plexamp/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for Pros, Plexamp, Experience the app made for audiophiles.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-plexamp-ico " ><svg class="plexico-icon-nav-plexamp-ico-21" id="nav-plexamp-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M3 6C3 4.34315 4.34315 3 6 3H42C43.6569 3 45 4.34315 45 6V42C45 43.6569 43.6569 45 42 45H6C4.34315 45 3 43.6569 3 42V6ZM6 6H42V24H33.5L27.5 35H23.5L29.5 24L22 10H11L17 21H6V6ZM6 24V42H42V27H35.5L29.5 38H18.5L26 24L20 13H16L22 24H6Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Plexamp</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Experience the app made for audiophiles. </span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="features-7"
id="features-7"
class="navCardLink"
href="https://www.plex.tv/tv/"
role="menuitem"
tabindex="-1"
:aria-label="'Features, Plex for Pros, Ultimate DVR (Plex Pass Exclusive), Watch & record broadcast TV.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-dvr-ico " ><svg class="plexico-icon-nav-dvr-ico-22" id="nav-dvr-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M17 4.00001L24 13L31.0468 4L34.5 4L27.5 13H42C42.7957 13 43.5587 13.3161 44.1213 13.8787C44.6839 14.4413 45 15.2044 45 16V41C45 41.7957 44.6839 42.5587 44.1213 43.1213C43.5587 43.6839 42.7957 44 42 44H6C5.20435 44 4.44129 43.6839 3.87868 43.1213C3.31607 42.5587 3 41.7957 3 41V16C3 15.2044 3.31607 14.4413 3.87868 13.8787C4.44129 13.3161 5.20435 13 6 13L20.5 13L13.5 4L17 4.00001ZM42 41H6V16H42V41Z" fill="#E5A00D" fill-rule="evenodd"></path><path d="M31.5 27H25.5V21H22.5V27H16.5V30H22.5V36H25.5V30H31.5V27Z" fill="#E5A00D"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Ultimate DVR (Plex Pass Exclusive)</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Watch & record broadcast TV. </span>
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div
ref="download"
tabindex="-1"
:class="{ isVisible: navIsActiveSection('download') }"
:aria-expanded="navIsActiveSection('download') ? 'true' : 'false'"
:aria-hidden="!navIsActiveSection('download') ? 'true' : 'false'"
aria-labelledby="download-super-menu-button"
id="download"
class="section"
role="dialog">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink">
<div
class="SuperMenuSectionList_container cards"
:class="{ 'tinted' : false}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs ">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Get the App</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-0"
id="download-0"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-app"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Get the App, For TVs, Roku, Fire TV, Samsung & more'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-tv-ico " ><svg class="plexico-icon-nav-tv-ico-23" id="nav-tv-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M17 4.00001L24 13L31.0468 4L34.5 4L27.5 13H42C42.7957 13 43.5587 13.3161 44.1213 13.8787C44.6839 14.4413 45 15.2044 45 16V41C45 41.7957 44.6839 42.5587 44.1213 43.1213C43.5587 43.6839 42.7957 44 42 44H6C5.20435 44 4.44129 43.6839 3.87868 43.1213C3.31607 42.5587 3 41.7957 3 41V16C3 15.2044 3.31607 14.4413 3.87868 13.8787C4.44129 13.3161 5.20435 13 6 13L20.5 13L13.5 4L17 4.00001ZM42 41H6V16H42V41Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">For TVs</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Roku, Fire TV, Samsung & more</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-1"
id="download-1"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-app"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Get the App, For Mobile, iOS & Android'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-mobile-ico " ><svg class="plexico-icon-nav-mobile-ico-24" id="nav-mobile-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M24 39C25.3807 39 26.5 37.8807 26.5 36.5C26.5 35.1193 25.3807 34 24 34C22.6193 34 21.5 35.1193 21.5 36.5C21.5 37.8807 22.6193 39 24 39Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M9.87969 44.1203C10.4421 44.6827 11.2046 44.9991 12 45H36C36.7954 44.9991 37.5579 44.6827 38.1203 44.1203C38.6827 43.5579 38.9991 42.7954 39 42V6C38.9991 5.20463 38.6827 4.4421 38.1203 3.87968C37.5579 3.31728 36.7954 3.00091 36 3H12C11.8012 3.00023 11.6044 3.02017 11.4122 3.05875C11.272 3.08691 11.1343 3.12499 11 3.17258C10.5825 3.32058 10.1989 3.56051 9.87969 3.87968C9.52818 4.23119 9.27279 4.66087 9.13045 5.12788C9.04505 5.40809 9.00034 5.70174 9 6V42C9.00091 42.7954 9.31728 43.5579 9.87969 44.1203ZM36 6H12V9H36V6ZM36 12H12V42H36V12Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">For Mobile</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">iOS & Android</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-2"
id="download-2"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-app"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Get the App, For Consoles, PlayStation & Xbox'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-gaming-ico " ><svg class="plexico-icon-nav-gaming-ico-25" id="nav-gaming-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M13.3333 23.4944C13.8266 23.8241 14.4067 24 15 24C15.7957 24 16.5587 23.6839 17.1213 23.1213C17.6839 22.5587 18 21.7957 18 21C18 20.4067 17.8241 19.8266 17.4944 19.3333C17.1648 18.8399 16.6962 18.4554 16.1481 18.2284C15.5999 18.0013 14.9967 17.9419 14.4147 18.0576C13.8328 18.1734 13.2982 18.4591 12.8787 18.8787C12.4591 19.2982 12.1734 19.8328 12.0576 20.4147C11.9419 20.9967 12.0013 21.5999 12.2284 22.1481C12.4554 22.6962 12.8399 23.1648 13.3333 23.4944Z" fill="#E5A00D"></path><path d="M33 19.5C33.8284 19.5 34.5 18.8284 34.5 18C34.5 17.1716 33.8284 16.5 33 16.5C32.1716 16.5 31.5 17.1716 31.5 18C31.5 18.8284 32.1716 19.5 33 19.5Z" fill="#E5A00D"></path><path d="M34.5 24C34.5 24.8284 33.8284 25.5 33 25.5C32.1716 25.5 31.5 24.8284 31.5 24C31.5 23.1716 32.1716 22.5 33 22.5C33.8284 22.5 34.5 23.1716 34.5 24Z" fill="#E5A00D"></path><path d="M30 22.5C30.8284 22.5 31.5 21.8284 31.5 21C31.5 20.1716 30.8284 19.5 30 19.5C29.1716 19.5 28.5 20.1716 28.5 21C28.5 21.8284 29.1716 22.5 30 22.5Z" fill="#E5A00D"></path><path d="M37.5 21C37.5 21.8284 36.8284 22.5 36 22.5C35.1716 22.5 34.5 21.8284 34.5 21C34.5 20.1716 35.1716 19.5 36 19.5C36.8284 19.5 37.5 20.1716 37.5 21Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M9.10496 38.715C9.80912 38.9054 10.5355 39.0013 11.265 39C12.6719 38.9851 14.0512 38.608 15.27 37.905C16.2245 37.3528 17.0596 36.6162 17.7266 35.738C18.3936 34.8599 18.8792 33.8577 19.155 32.79L19.5 31.5H28.5L28.77 32.82C29.0457 33.8877 29.5313 34.8899 30.1983 35.768C30.8653 36.6462 31.7004 37.3828 32.655 37.935C33.5874 38.4751 34.6177 38.8248 35.6863 38.9638C36.7548 39.1028 37.8404 39.0285 38.88 38.745C41.003 38.1456 42.8051 36.7351 43.8968 34.8182C44.9886 32.9013 45.2825 30.6318 44.715 28.5L41.22 15.21C40.9419 14.1433 40.4554 13.1421 39.7886 12.2642C39.1219 11.3864 38.2879 10.6491 37.335 10.095C36.4025 9.55492 35.3722 9.20524 34.3036 9.0662C33.2351 8.92716 32.1496 9.00153 31.11 9.285C30.0037 9.58934 28.9732 10.1215 28.0846 10.8473C27.1961 11.5732 26.469 12.4767 25.95 13.5H22.05C21.5287 12.4784 20.8009 11.5762 19.9126 10.8506C19.0244 10.125 17.9951 9.59188 16.89 9.285C15.8504 9.00153 14.7648 8.92716 13.6963 9.0662C12.6277 9.20524 11.5974 9.55492 10.665 10.095C9.70731 10.6506 8.87033 11.3919 8.20318 12.2754C7.53602 13.1589 7.05214 14.1669 6.77995 15.24L3.28495 28.5C2.72578 30.6256 3.022 32.8857 4.11005 34.7954C5.1981 36.7051 6.99131 38.1122 9.10496 38.715ZM12.165 12.69C12.9508 12.2408 13.8398 12.0031 14.745 12C15.2009 12.0008 15.6547 12.0613 16.095 12.18C16.9119 12.4113 17.6619 12.834 18.2828 13.4131C18.9036 13.9923 19.3775 14.7111 19.665 15.51L20.025 16.5H27.975L28.335 15.51C28.6199 14.7122 29.0911 13.9938 29.7094 13.4147C30.3277 12.8355 31.0752 12.4122 31.89 12.18C32.5488 12.0014 33.2363 11.9545 33.9133 12.042C34.5902 12.1296 35.2432 12.3497 35.835 12.69C36.4447 13.0461 36.9775 13.5199 37.4024 14.0839C37.8273 14.6479 38.1358 15.2907 38.31 15.975L41.805 29.235C42.1794 30.5993 42.0002 32.0563 41.3065 33.2893C40.6127 34.5224 39.4604 35.4318 38.1 35.82C37.4412 35.9986 36.7536 36.0455 36.0767 35.958C35.3997 35.8704 34.7467 35.6502 34.155 35.31C33.544 34.9534 33.0095 34.4797 32.5822 33.9159C32.1549 33.3522 31.8432 32.7096 31.665 32.025L30.75 28.5H17.25L16.32 32.025C16.1448 32.7109 15.8343 33.3548 15.4067 33.919C14.9791 34.4831 14.443 34.9561 13.83 35.31C13.2411 35.6506 12.5906 35.871 11.916 35.9586C11.2415 36.0461 10.5562 35.999 9.89995 35.82C8.54111 35.4281 7.39023 34.5188 6.69463 33.2875C5.99903 32.0562 5.81423 30.6011 6.17995 29.235L9.67496 15.975C10.0379 14.5938 10.9332 13.4127 12.165 12.69Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">For Consoles</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">PlayStation & Xbox</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-3"
id="download-3"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-app"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Get the App, For Desktop, Mac, Windows & Web'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-desktop-ico " ><svg class="plexico-icon-nav-desktop-ico-26" id="nav-desktop-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M6 5H42C42.7957 5 43.5587 5.31607 44.1213 5.87868C44.6839 6.44129 45 7.20435 45 8V34C45 34.7957 44.6839 35.5587 44.1213 36.1213C43.5587 36.6839 42.7957 37 42 37H6C5.20435 37 4.44129 36.6839 3.87868 36.1213C3.31607 35.5587 3 34.7957 3 34V8C3 7.20435 3.31607 6.44129 3.87868 5.87868C4.44129 5.31607 5.20435 5 6 5ZM6 34H42V8H6V34Z" fill="#E5A00D" fill-rule="evenodd"></path><path d="M36 43V40H12V43H36Z" fill="#E5A00D"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">For Desktop</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Mac, Windows & Web</span>
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div
class="SuperMenuSectionList_container cards"
:class="{ 'tinted' : false}">
<div class="chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink sprinkles_gap_m_xxs ">
<div class="card-title title">
<span class="nav-simple-title chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Plex Pro Downloads</span>
</div>
<ul class="grid">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-4"
id="download-4"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-media-server"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Plex Pro Downloads, Plex Media Server, Create, organize, and store your collections.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-pms-ico " ><svg class="plexico-icon-nav-pms-ico-27" id="nav-pms-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path d="M18 11.65C18 12.4785 17.3284 13.15 16.5 13.15C15.6716 13.15 15 12.4785 15 11.65C15 10.8216 15.6716 10.15 16.5 10.15C17.3284 10.15 18 10.8216 18 11.65Z" fill="#E5A00D"></path><path d="M16.5 25.5C17.3284 25.5 18 24.8284 18 24C18 23.1716 17.3284 22.5 16.5 22.5C15.6716 22.5 15 23.1716 15 24C15 24.8284 15.6716 25.5 16.5 25.5Z" fill="#E5A00D"></path><path d="M18 36.35C18 37.1784 17.3284 37.85 16.5 37.85C15.6716 37.85 15 37.1784 15 36.35C15 35.5215 15.6716 34.85 16.5 34.85C17.3284 34.85 18 35.5215 18 36.35Z" fill="#E5A00D"></path><path clip-rule="evenodd" d="M11 4H37C37.7957 4 38.5587 4.31607 39.1213 4.87868C39.6839 5.44129 40 6.20435 40 7V41C40 41.7957 39.6839 42.5587 39.1213 43.1213C38.5587 43.6839 37.7957 44 37 44H11C10.2044 44 9.44129 43.6839 8.87868 43.1213C8.31607 42.5587 8 41.7957 8 41V7C8 6.20435 8.31607 5.44129 8.87868 4.87868C9.44129 4.31607 10.2044 4 11 4ZM37 16.3V7H11V16.3H37ZM11 19.3V28.6H37V19.3H11ZM11 31.6V41H37V31.6H11Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Plex Media Server</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Create, organize, and store your collections.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-5"
id="download-5"
class="navCardLink"
href="https://www.plex.tv/plexamp/#downloads"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Plex Pro Downloads, Plexamp, Experience the app made for audiophiles.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-plexamp-ico " ><svg class="plexico-icon-nav-plexamp-ico-28" id="nav-plexamp-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M3 6C3 4.34315 4.34315 3 6 3H42C43.6569 3 45 4.34315 45 6V42C45 43.6569 43.6569 45 42 45H6C4.34315 45 3 43.6569 3 42V6ZM6 6H42V24H33.5L27.5 35H23.5L29.5 24L22 10H11L17 21H6V6ZM6 24V42H42V27H35.5L29.5 38H18.5L26 24L20 13H16L22 24H6Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Plexamp</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">Experience the app made for audiophiles.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-6"
id="download-6"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-plexphotos"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Plex Pro Downloads, Plex Photos New, All your photo collections. One easy app.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-photos-c " ><svg class="plexico-icon-photos-c-29" id="photos-c" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 48 48" height="35" width="35">
<path style="fill: #e5a00d;fill-rule: evenodd;" d="M24,35c-1.8,0-3.5-.5-5-1.5-1.5-1-2.6-2.4-3.3-4-.7-1.6-.9-3.5-.5-5.2.3-1.7,1.2-3.3,2.5-4.6,1.3-1.3,2.9-2.1,4.6-2.5,1.7-.3,3.6-.2,5.2.5,1.6.7,3.1,1.8,4,3.3,1,1.5,1.5,3.2,1.5,5s-.9,4.7-2.6,6.4c-1.7,1.7-4,2.6-6.4,2.6ZM22.6,23.1c-1.1-1.6-2-3-2-3h0c0,0,4.2,0,4.2,0l2,3c1.1,1.6,2,3,2,3,0,0-4,5.9-4,5.9,0,0,0,0-2.1,0h-2.1s1.7-2.5,1.7-2.5c.9-1.3,1.7-2.6,2-2.9l.4-.6-2-2.9Z"/>
<path style="fill: #e5a00d;fill-rule: evenodd;" d="M28.8,7h-9.6c-.9,0-1.7.3-2.5.8-.7.5-1.3,1.3-1.5,2.1l-1.1,3.5h-6.9c-1.1,0-2.2.4-3,1.2-.8.8-1.2,1.9-1.2,3v19.1c0,1.1.4,2.2,1.2,3,.8.8,1.9,1.2,3,1.2h33.6c1.1,0,2.2-.4,3-1.2.8-.8,1.2-1.9,1.2-3v-19.1c0-1.1-.4-2.2-1.2-3-.8-.8-1.9-1.2-3-1.2h-6.9l-1.1-3.5c-.3-.8-.8-1.6-1.5-2.1-.7-.5-1.6-.8-2.5-.8ZM41.6,16.7c-.2-.2-.5-.4-.8-.4h-9.1l-1.8-5.5c0-.3-.2-.5-.4-.6-.2-.1-.4-.2-.7-.2h-9.6c-.2,0-.5,0-.7.2-.2.1-.4.4-.4.6l-1.8,5.5H7.2c-.3,0-.6.1-.8.4-.2.2-.4.6-.4.9v19.1c0,.3.1.7.4.9.2.2.5.4.8.4h33.6c.3,0,.6-.1.8-.4.2-.2.4-.6.4-.9h0v-19.1h0c0-.3-.1-.7-.4-.9Z"/>
</svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Plex Photos <span class="pill" style="padding: var(--size-xxs) var(--size-xs);min-width: 40px;vertical-align: middle;line-height: 1.5em;margin-top: 1px;background-color: var(--color-primary-background-10);border-radius: 0.25rem;color: #00000099">New</span></span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">All your photo collections. One easy app.</span>
</span>
</span>
</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a
ref="download-7"
id="download-7"
class="navCardLink"
href="https://www.plex.tv/media-server-downloads/#plex-plexdash"
role="menuitem"
tabindex="-1"
:aria-label="'Download, Plex Pro Downloads, Plex Dash (Plex Pass Exclusive), A custom app for remote server monitoring.'"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_accent">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items:center">
<div class="plex-svg-holder icon-nav-plex-dash-ico " ><svg class="plexico-icon-nav-plex-dash-ico-30" id="nav-plex-dash-ico" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" class="z2jm1k26 _1qkugli1 _1qkugli3" fill="currentColor" height="48" style="width:auto;height:max(2rem, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="M3 6C3 4.34315 4.34315 3 6 3H42C43.6569 3 45 4.34315 45 6V42C45 43.6569 43.6569 45 42 45H6C4.34315 45 3 43.6569 3 42V6ZM6 6H42V21H36L30 10L19 30L16 24H6L6 6ZM6 27V42H42V24H34L30 16L19 36L14 27H6Z" fill="#E5A00D" fill-rule="evenodd"></path></svg></div>
<span class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<span class="nav-menu-item-label gtm-menu-item nav-main-title chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_primary">Plex Dash (Plex Pass Exclusive)</span>
<span class="gtm-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_secondary chroma_Text_module_multiLine" style="-webkit-line-clamp:2">A custom app for remote server monitoring.</span>
</span>
</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</transition>
</div>
<div class="divider"></div>
<div ref="navActionable" class="nav-menu-user chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_l" style="align-items: center;">
<plex-loading class="navbar-loading" :style="navBar.loadingStyle" :loading="isSigninIn || isSigninOut" :status="'loading'" :no-message="true"></plex-loading>
<template v-if="! isSigninIn && ! isSigninOut">
<template v-if="isSignedIn">
<a role="link" :href="webURL" rel="nofollow" class="chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_accent chroma_Button_module_xs" target="_blank" tabindex="0">
<span class="chroma_Text_module_text chroma_Text_module_body1 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine Text_menu_label" title="Open Plex">Open Plex</span>
</a>
<div ref="navUserContainer" tabindex="-1">
<button
ref="navUser"
id="user-menu-trigger"
@click="navToggleUser"
aria-expanded="false"
aria-haspopup="true"
class="chroma_TextButton_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_TextButton_module_default"
:aria-label="'User profile for ' + user.username"
type="button"
tabindex="0"
>
<span class="chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_xxs" style="align-items: center;">
<div class="chroma_Poster_module_container chroma_Poster_module_circle" style="width: 32px; height: calc(32px); min-width: 32px;">
<div style="display:block;overflow:hidden;position:absolute;top:0;left:0;bottom:0;right:0;box-sizing:border-box;margin:0">
<img :alt="user.username"
:src="user.thumb"
decoding="async" data-nimg="true"
style="position:absolute;top:0;left:0;bottom:0;right:0;box-sizing:border-box;padding:0;border:none;margin:auto;display:block;width:0;height:0;min-width:100%;max-width:100%;min-height:100%;max-height:100%;object-fit:cover"
sizes="32px">
</div>
</div>
<span class="chroma_DisclosureButton_module_arrow" :class="{ chroma_DisclosureButton_module_isOpen : navBar.userMenuIsOpened }">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg" style="width: auto; height: max(1em, 1rem);">
<path d="M39 16L24 34.75L9 16H39Z" fill="currentColor"></path>
</svg>
</span>
</span>
</span>
</button>
<div ref="navUserPopper" :style="navBar.userMenuStyle" class="chroma_Flyout_modules_popper" tabindex="-1" style="position: absolute; inset: 0px auto auto 0px; max-height: 488px; width: 216px;">
<div v-show="navBar.userMenuIsOpened" class="chroma_Flyout_modules_flyout chroma_shared_module_base" style="opacity: 1; transform: none;">
<span hidden=""></span>
<div aria-labelledby="user-menu-trigger" class="chroma_Menu_module_menu" id="user-menu" role="menu">
<div class="chroma_Menu_module_menuContainer" style="width: 216px;">
<div class="chroma_VisuallyHidden_module_container">
<button aria-label="Close User Menu" tabindex="-1"></button>
</div>
<div class="chroma_Menu_module_menuButton chroma_shared_module_base nav-menu-username" target="_blank" role="menuitem" tabindex="-1">
<span class="chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor">
{{user.username}}
</span>
</div>
<a
v-for="(item, key) in navUserMenuItems"
:ref="'navUserMenuItems-' + key"
:id="'navUserMenuItems-' + key"
:href="item.href"
class="chroma_Menu_module_menuButton chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base"
target="_blank"
role="menuitem"
tabindex="-1"
rel="nofollow"
>
<span class="nav-menu-item-label gtm-menu-item user-menu-item chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">
{{item.title}}
</span>
</a>
<template v-if="hasAdminPermissions">
<hr class="Menu_divider">
<a :href="adminURL" rel="nofollow" class="chroma_Menu_module_menuButton chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base" target="_blank" role="menuitem" tabindex="-1">
<span class="user-menu-item chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">Admin</span>
</a>
</template>
<hr class="Menu_divider">
<button @click="navSignOut" class="nav-signout chroma_Menu_module_menuButton chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base" role="menuitem" type="button" tabindex="-1">
<span class="user-menu-item chroma_Text_module_text chroma_Text_module_body2 chroma_shared_module_base chroma_Text_module_inheritColor">Sign Out</span>
</button>
</div>
</div>
<span hidden=""></span>
</div>
</div>
</div>
</template>
<template v-else>
<a class="signin chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/sign-in/?forward=https://www.plex.tv/media-server-downloads/" tabindex="0">
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor Text_menu_label" title="Sign In">Sign In</span>
</a>
<a class="signup chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_accent chroma_Button_module_xs" href="https://www.plex.tv/sign-up/?forward=web" tabindex="0">
<span class="nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine Text_menu_label" title="Sign Up">Sign Up Free</span>
</a>
</template>
</template>
</div>
</nav>
<div class="fresnel-lessThan-md nav menuContainer">
<button ref="navMobileButton" @click="navToggleMobile" class="nav-toggle-mobile chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_transparent chroma_Button_module_m chroma_Button_module_noShrink" type="button" aria-label="Open Navigation Menu">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_xs" style="align-items:center">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" style="width:auto;height:max(1em, 1rem)" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<path d="M42 14H6V17H42V14Z" fill="currentColor"></path>
<path d="M42 32H6V35H42V32Z" fill="currentColor"></path>
<path d="M6 23H42V26H6V23Z" fill="currentColor"></path>
</svg>
</span>
</button>
</div>
<div v-show="navBar.mobileMenuIsOpened" class="mobile-navbar chroma_Modal_module_backdrop animate__animated animate__fadeIn">
<span hidden=""></span>
<div ref="navMobileModal" class="chroma_Modal_module_modal chroma_Modal_module_s chroma_Modal_module_modal" aria-label="Navigation" aria-modal="true" role="dialog" tabindex="-1" style="opacity: 1; transform: none;">
<div class="chroma_Modal_module_modalContent">
<div class="chroma_Modal_module_closeButton">
<button @click="navToggleMobile" class="nav-close-mobile chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_transparent chroma_Button_module_m chroma_Button_module_noShrink" type="button" aria-label="Close Navigation">
<span class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_xs" style="align-items: center;">
<svg aria-hidden="true" class="chroma_Icon_none chroma_Icon_inheritColor" fill="currentColor" height="48" style="width: auto; height: max(1em, 1rem);" viewBox="0 0 48 48" width="48" xmlns="http://www.w3.org/2000/svg">
<path d="M8.46448 37.4355L10.5645 39.5355L24 26.0999L37.4356 39.5355L39.5356 37.4355L26.1 23.9999L39.5356 10.5644L37.4356 8.46439L24 21.8999L10.5645 8.46438L8.46448 10.5644L21.9 23.9999L8.46448 37.4355Z" fill="currentColor"></path>
</svg>
</span>
</button>
</div>
<div class="chroma_Scroller_modules_scroller chroma_Scroller_modules_vertical chroma_Scroller_modules_auto" style="padding-top: var(--size-m); padding-right: var(--size-xl); padding-bottom: var(--size-m); padding-left: var(--size-xl);">
<span class="chroma_Text_module_text chroma_Text_module_body6 chroma_shared_module_base chroma_Text_module_primary">
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_l">
<template v-if="isSignedIn">
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items: center; justify-content: center;">
<a :href="appStoreURL" class="nav-menu-item-label gtm-menu-item chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_accent chroma_Button_module_m" target="_blank">
<span class="chroma_Text_module_text chroma_Text_module_label1 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" title="navUserOpenAppLabel">{{navUserOpenAppLabel}}</span>
</a>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m">
<template v-for="(menu, key) in navBar.userMenu">
<span class="chroma_Text_module_text chroma_Text_module_label2 chroma_shared_module_base chroma_Text_module_accent">{{user.username}}</span>
<ul class="grid">
<li v-for="(item, key) in menu.items" class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a :href="item.href" rel="nofollow" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" target="_blank">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">
{{item.title}}
</span>
</a>
</li>
<li v-if="hasAdminPermissions" class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a :href="adminURL" rel="nofollow" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" target="_blank" role="menuitem" tabindex="-1">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Admin</span>
</a>
</li>
</ul>
</template>
</div>
<div class="chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m" style="align-items: center; justify-content: center;">
<button class="nav-signout chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_default chroma_Button_module_m" type="button">
<span class="action-menu-item nav-menu-item-label gtm-menu-item chroma_Text_module_text chroma_Text_module_label1 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" title="Sign Out" @click="navSignOut">Sign Out</span>
</button>
</div>
</template>
<template v-else>
<div class="signup chroma_Flex_module_flex chroma_Flex_module_horizontal chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group" style="align-items: center; justify-content: center;">
<a class="chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_accent chroma_Button_module_m" href="https://www.plex.tv/sign-up/?forward=web">
<span class="gtm-menu-item nav-menu-item-label gtm-menu-item action-menu-item chroma_Text_module_text chroma_Text_module_label1 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" title="Sign Up">Sign Up Free</span>
</a>
<a class="signin chroma_Button_module_button chroma_UnstyledButton_module_unstyledButton chroma_shared_module_base chroma_Button_module_default chroma_Button_module_m" href="https://www.plex.tv/sign-in/?forward=https://www.plex.tv/media-server-downloads/">
<span class="gtm-menu-item nav-menu-item-label gtm-menu-item action-menu-item chroma_Text_module_text chroma_Text_module_label1 chroma_shared_module_base chroma_Text_module_inheritColor chroma_Text_module_singleLine" title="Sign In">Sign In</span>
</a>
</div>
</template>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Free Movies & TV</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Featured</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Movies & Shows</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-2" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/live-tv">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Live TV Channels</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-3" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/list/plex-picks-of-the-week">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plex Picks</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-4" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/list/popular/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Most Popular</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-5" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/movies-and-shows/list/expiring/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Leaving Soon</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-free-movies-tv-6" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/what-to-watch/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">What to Watch</span>
</a>
</li>
</ul>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Live TV</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-live-tv-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/live-tv">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Browse Channels</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-live-tv-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://watch.plex.tv/live-tv/category">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Categories</span>
</a>
</li>
</ul>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Features for All</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-all-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/watch-free-tv/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Live TV Channels</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-all-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/watch-free/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">On Demand Movies & Shows</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-all-2" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/apps-devices/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Stream on Almost Any Device</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-all-3" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/watch-free/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Pause, Save, Resume</span>
</a>
</li>
</ul>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Features for Plex Pros</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-plex-pros-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/your-media/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Add Your Personal Media</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-plex-pros-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/plex-pass/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Upgrade to Plex Pass</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-plex-pros-2" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/plexamp/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plexamp (Plex Pass Exclusive)</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-features-for-plex-pros-3" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/tv/">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Ultimate TV & DVR (Plex Pass Exclusive)</span>
</a>
</li>
</ul>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Get the App</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-get-the-app-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-app">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">For TVs</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-get-the-app-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-app">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">For Mobile</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-get-the-app-2" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-app">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">For Consoles</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-get-the-app-3" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-app">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">For Desktop</span>
</a>
</li>
</ul>
</div>
<div class="divider"></div>
<div class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink chroma_Flex_module_nativeGap chroma_Flex_module_m mobile-nav-group">
<span class="chroma_Text_module_text chroma_Text_module_heading6 chroma_shared_module_base chroma_Text_module_accent">Plex Pro Downloads</span>
<ul class="grid ">
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-plex-pro-downloads-0" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-media-server">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plex Media Server</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-plex-pro-downloads-1" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/plexamp/#downloads">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plexamp (Plex Pass Exclusive)</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-plex-pro-downloads-2" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-plexphotos">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plex Photos</span>
</a>
</li>
<li class="chroma_Flex_module_flex chroma_Flex_module_vertical chroma_Flex_module_shrink">
<a id="mobile-plex-pro-downloads-3" class="chroma_Link_module_link chroma_UnstyledLink_module_unstyledLink chroma_shared_module_base chroma_Link_module_default" href="https://www.plex.tv/media-server-downloads/#plex-plexdash">
<span class="nav-menu-item-label gtm-menu-item mobile-menu-item chroma_Text_module_text chroma_Text_module_inherit chroma_shared_module_base chroma_Text_module_inheritColor">Plex Dash (Plex Pass Exclusive)</span>
</a>
</li>
</ul>
</div>
</div>
</span>
</div>
</div>
</div>
<span hidden=""></span>
<div></div>
</div>
</header>
</div>
<style></style>
</div>
</div>
<style>
.plex-responsive-bg-image.content-hero-block-12368{background-image:url('https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1-1800x1013.jpg')}@media screen and (max-width:1440px){.plex-responsive-bg-image.content-hero-block-12368{background-image:url('https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1-1440x810.jpg')}}@media screen and (max-width:1024px){.plex-responsive-bg-image.content-hero-block-12368{background-image:url('https://www.plex.tv/wp-content/uploads/2019/11/hero-blog-plex-tunefind-final-1-1024x576.jpg')}}</style>
<section class="grid-x hero align-middle no-pad plex-responsive-bg-image content-hero-block-12368 " style="background-position: center center;">
<div class="large-12 cell wow fadeIn" data-wow-delay="0.5s">
<div class="hero-text">
<h1>
Downloads </h1>
</div>
</div>
</section>
<script type="text/x-template" id="plex-downloads-product-apps">
<div class="downloads-product">
<div class="download-specifics">
<div class="download-meta">
<p id="requirements" v-if="product.requirements" v-html="product.requirements"><a target="_blank"></a></p>
<p id="description" v-if="product.description">{{product.description}}</p>
<p id="version" v-if="product.version">v.{{product.version}}</p>
<p id="date" v-if="product.custom_metadata.release_date">{{product.custom_metadata.release_date}}</p>
</div>
</div>
<div class="grid-x download-releases" :class="{'align-top': product.id === 'windows', 'align-middle': product.id !== 'windows'}">
<template v-if="product.custom_metadata.is_package">
<div class="cta-download grid-x">
<div>
<button v-show="product.custom_metadata.is_multi_release" class="plex-downloads-releasesbutton">
<span>Choose Distribution</span>
</button>
<a v-show="! product.custom_metadata.is_multi_release"
:href="productReleasePart('url')"
class="button plex-downloads-releasesbutton releasesbutton-app"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick"
>
{{productReleasePart('label')}}
</a>
</div>
</div>
</template>
<template v-else-if="productMultiStore">
<a v-for="(store, key) in product.releases"
class="plex-downloads-releasesbutton releasesbutton-build"
:key="key"
:href="store.url"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
<img :src="$parent.dmGetImageSrc(store.image_src)" width="150" :alt="typeof store.alt !== 'undefined' ? store.alt : ''">
</a>
</template>
<template v-else>
<a
v-show="productReleasePart('image_src')"
:href="productReleasePart('url')"
class="plex-downloads-releasesbutton releasesbutton-app-image"
target="_blank" rel="noopener noreferrer nofollow"
@click="trackClick">
<img :src="productReleasePart('image_src')" width="150" :alt="productReleasePart('alt')">
</a>
<a
v-show="! productReleasePart('image_src') && productIsDownloadable"
:href="productReleasePart('url')"
class="button plex-downloads-releasesbutton releasesbutton-app"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
{{productReleasePart('label')}}
</a>
<div v-if="group === 'plex desktop' && product.id === 'windows'" class="apps-ms-store cell large-2 small-2" aria-label="download from the microsoft store" tabindex="0">
<ms-store-badge productid="XP9CDQW6ML4NQN" theme="auto"></ms-store-badge>
</div>
<div v-else-if="group === 'plex htpc' && product.id === 'windows'" class="apps-ms-store cell large-2 small-2" aria-label="download from the microsoft store" tabindex="0">
<ms-store-badge productid="XPFFFF6NN1LZDQ" theme="auto"></ms-store-badge>
</div>
</template>
</div>
</div>
</script>
<script type="text/x-template" id="plex-downloads-product-pms">
<div class="downloads-product">
<div class="download-specifics">
<div v-if="group === 'nas' && ! beta" class="download-meta nas-info">
<p>Many NAS devices have important limitations.</p>
<p>Please read this <a href="https://support.plex.tv/?p=38971">article</a> to learn more.</p>
<br/>
<p>For help with installation or setup, please visit our <a href="https://support.plex.tv/?p=38854">Quick Start</a> guide</p>
<br/>
<p class="extra-info" v-if="product.extra_info" v-html="product.extra_info"></p>
</div>
<div v-if="product.version" class="download-meta">
<div v-if="product.requirements && ! beta">
<p v-html="product.requirements"><a target="_blank"></a></p>
<br/>
</div>
<p v-if="product.description">{{product.description}}</p>
<p v-if="product.version">v.{{product.version}}</p>
<p v-if="product.custom_metadata.release_date">{{product.custom_metadata.release_date}}</p>
</div>
<div class="download-meta unique-release" v-if="checksums && ! product.custom_metadata.is_multi_release && product.releases[0].checksum">
<b>SHA-1 Checksum</b><br>
<span>{{product.releases[0].checksum}}</span>
</div>
</div>
<div class="grid-x align-middle download-releases">
<div class="cta-download grid-x">
<div>
<button :id="tooltipContainerId" v-show="product.custom_metadata.is_multi_release" class="plex-downloads-releasesbutton">
<span v-if="group === 'computer'">Choose Distribution</span>
<span v-else>Choose Package</span>
</button>
<a
v-show="! product.custom_metadata.is_multi_release"
:href="productReleasePart('url')"
class="button plex-downloads-releasesbutton releasesbutton-app"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
{{productReleasePart('label')}}
</a>
</div>
<div class="pms-ms-store cell large-2 small-2" v-if="product.id === 'windows'" aria-label="download from the microsoft store" tabindex="0">
<ms-store-badge productid="XPFM11Z0W10R7G" theme="auto"></ms-store-badge>
</div>
</div>
<!-- packages -->
<div :ref="tooltipContainerId" class="downloads-tooltip plex-downloads-releases" v-show="false">
<a
v-for="(release, key) in product.releases"
:key="key" :href="release.url"
target="_blank"
rel="noopener noreferrer nofollow"
class="release-link"
:aria-label="'Download ' + release.label">
{{release.label}}
<template v-if="product.custom_metadata.recommended_build && product.custom_metadata.recommended_build === release.build">
<span class="user-arch">recommended</span>
</template>
<span v-if="checksums && release.checksum" class="modal-hash">SHA-1 Checksum<br>{{release.checksum}}</span>
</a>
</div>
<!-- // -->
</div>
</div>
</script>
<script type="text/x-template" id="plex-downloads-product-plexamp">
<div class="downloads-product">
<div class="download-specifics">
<div class="download-meta">
<p v-if="product.requirements" v-html="productRequirements"><a target="_blank"></a></p>
<p id="version" v-if="product.version">v.{{product.version}}</p>
<p id="date" v-if="product.custom_metadata.release_date">{{product.custom_metadata.release_date}}</p>
</div>
</div>
<div class="grid-x align-middle download-releases" v-show="product.custom_metadata.is_multi_release">
<div class="cta-download grid-x">
<div class="cell">
<button :id="tooltipContainerId" class="tooltip-plexamp-downloads plex-downloads-releasesbutton">
<span>Choose Package</span>
</button>
</div>
</div>
</div>
<!-- packages -->
<div :ref="tooltipContainerId" class="downloads-tooltip plex-downloads-releases" v-show="false">
<a
v-for="(release, key) in product.releases"
:key="key"
:href="release.url"
target="_blank"
rel="noopener noreferrer nofollow"
class="release-link"
:aria-label="'Download ' + release.label">
{{release.label}}
</a>
</div>
<!-- // -->
<div v-if="! product.custom_metadata.is_multi_release" class="grid-x align-middle cta-download">
<template v-for="(release, key) in product.releases">
<div v-if="! skipDownloadButton( release )" v-show="! release.store">
<a
v-if="appImageReleaseIndex >=0"
:key="key"
:href="release.url"
class="button plex-downloads-releasesbutton releasesbutton-plexamp1"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
{{release.label}}
</a>
</div>
<div v-show="release.store">
<a
:href="release.url"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
<img :src="$parent.dmGetImageSrc(release.image_src)" width="150" :alt="typeof release.alt !== 'undefined' ? release.alt : ''">
</a>
</div>
</template>
</div>
</div>
</script>
<script type="text/x-template" id="plex-downloads-product-plexphotos">
<div class="downloads-product">
<div class="download-specifics">
<div class="download-meta">
<p v-if="product.requirements" v-html="productRequirements"><a target="_blank"></a></p>
<p id="version" v-if="product.version">v.{{product.version}}</p>
<p id="date" v-if="product.custom_metadata.release_date">{{product.custom_metadata.release_date}}</p>
</div>
</div>
<div v-if="! product.custom_metadata.is_multi_release" class="grid-x align-middle cta-download">
<template v-for="(release, key) in product.releases">
<div>
<a
:href="release.url"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
<img :src="$parent.dmGetImageSrc(release.image_src)" width="150" :alt="typeof release.alt !== 'undefined' ? release.alt : ''">
</a>
</div>
</template>
</div>
</div>
</script>
<script type="text/x-template" id="plex-downloads-product-plexdash">
<div class="downloads-product">
<div class="download-specifics">
<div class="download-meta">
<p v-if="product.requirements" v-html="productRequirements"><a target="_blank"></a></p>
<p id="version" v-if="product.version">v.{{product.version}}</p>
<p id="date" v-if="product.custom_metadata.release_date">{{product.custom_metadata.release_date}}</p>
</div>
</div>
<div v-if="! product.custom_metadata.is_multi_release" class="grid-x align-middle cta-download">
<template v-for="(release, key) in product.releases">
<div>
<a
:href="release.url"
target="_blank"
rel="noopener noreferrer nofollow"
@click="trackClick">
<img :src="$parent.dmGetImageSrc(release.image_src)" width="150" :alt="typeof release.alt !== 'undefined' ? release.alt : ''">
</a>
</div>
</template>
</div>
</div>
</script>
<section class="grid-x gray no-pad container-standard align-center centered-treatment downloads-section">
<div class="large-10 cell cards">
<div id="plex-downloads-manage" class="plex-templating plex-downloads-manage " v-cloak>
<div class="grid-x card plex-form-downloads">
<div v-if="downloadsManage.fatalError" class="warning" v-cloak>
Could not load apps at this time. Please try again later.
<br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<ul class="tabs tabs-downloads" data-smooth-scroll data-tabs id="download-tabs" data-deep-link="true" ref="downloadTabs" style="">
<li class="tabs-title tab-plex-media-server is-active" data-type="pms">
<a href="#plex-media-server">Plex Media Server</a>
</li>
<li class="tabs-title tab-plex-app " data-type="apps">
<a href="#plex-app">Plex</a>
</li>
<li class="tabs-title tab-plex-plexamp " data-type="plexamp">
<a href="#plex-plexamp">Plexamp</a>
</li>
<li class="tabs-title tab-plex-plexphotos " data-type="plexphotos">
<a href="#plex-plexphotos">Plex Photos</a>
</li>
<li class="tabs-title tab-plex-plexdash " data-type="plexdash">
<a href="#plex-plexdash">Plex Dash</a>
</li>
</ul>
<div class="tabs-content tabs-content-downloads" data-tabs-content="download-tabs">
<div class="tabs-panel is-active" id="plex-media-server">
<div class="grid-x modal-download">
<!-- component-->
<plex-loading :loading="! dmIsReady('pms') && ! dmHasErrors('pms') && ! downloadsManage.fatalError" :status="'loading'" :custom-status="'Fetching the Plex Media Server list ...'"></plex-loading>
<!-- /component -->
<div v-if="dmHasErrors('pms')" class="warning" v-cloak>
Something went wrong. The <strong>Plex Media Server</strong> list of apps, is not available at this time. Please try <a href="/media-server-downloads/?cat=computer&plat=linux&duid=31#plex-media-server" rel="nofollow noreferrer">reloading</a> the page, or try again later.
<br/><br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<div v-if="dmIsReady('pms')" class="large-5 cell text-left downloads-panel downloads-panel-left">
<h3>Plex Media Server</h3>
<span class="plex-downloads-container">
<div class="select-container">
<select v-model="downloadsManage.selProducts.pms.groupId" @change="dmSetPlatforms($event)" aria-label="Select a platform to download the plex media server">
<option value="">Choose your platform</option>
<optgroup v-for="(pms, cat) in dmGetSortedItems('pms')" :key="`pms_${cat}`" :label="cat.toUpperCase()">
<option v-for="(app, key) in pms" :key="`pms_${cat}_${app.id}`" :value="`pms_${cat}_${app.id}`" :data-group="cat" :data-platform="app.id" :aria-label="'You\'ve selected plex media server for ' + app.name">
{{app.name}}
</option>
</optgroup>
</select>
</div>
</span>
<div v-if="! hasActivePlexPass" class="plex-downloads-no-pp">
<p>Get a <a href="https://www.plex.tv/plex-pass/">Plex Pass</a> to access exclusive preview downloads. <a class="signin" href="#">Sign in</a> with a Plex Pass enabled account to access exclusive preview downloads.</p>
</div>
<div class="toggle-group plex-pass-downloads-toggle" v-else>
<span class="toggle-title plex-downloads-ppcheck">Include Beta releases (<a href="https://www.plex.tv/plex-pass/">Plex Pass</a> required)</span>
<div id="plex-pass-channel-pms-container" class="slideThree plex-downloads-ppcheck toggle-ppcheck" tabindex="0" aria-live="polite" :aria-label="'Beta releases are ' + (downloadsManage.ppDownloads ? 'visible' : 'not visible') + '. Click to toggle.'" @keyup="dmAccessibilityToggle($event)">
<input ref="plex-pass-channel-pms-container-ref" id="plex-pass-channel-pms" type="checkbox" v-model="downloadsManage.ppDownloads" style="visibility:hidden;" aria-labelledby="plex-pass-channel-pms-label-container" role="switch"/>
<label for="plex-pass-channel-pms"></label>
</div>
</div>
<div class="toggle-group checksums-toggle">
<span class="toggle-title plex-downloads-checkums">Display Checksums</span>
<div id="checksums-pms-container" class="slideThree plex-downloads-checkums" tabindex="0" aria-live="polite" :aria-label="'Checksums are ' + (downloadsManage.isVisibleChecksum ? 'visible' : 'not visible') + '. Click to toggle.'" @keyup="dmAccessibilityToggle($event)">
<input ref="checksums-pms-container-ref" id="checksums-pms" type="checkbox" v-model="downloadsManage.isVisibleChecksum" style="visibility:hidden;" aria-labelledby="checksums-pms-container" role="switch"/>
<label for="checksums-pms"></label>
</div>
</div>
</div>
<div v-if="dmIsReady('pms')" class="large-7 cell text-left downloads-panel downloads-panel-right plex-form-downloads">
<template v-if="dmSelActiveProduct">
<div class="cell large-12 cards">
<h4 class="download-group-title">{{dmSelActiveProductGroup.toUpperCase()}}</h4>
</div>
<div class="download-tray plex-release" v-cloak>
<div class="icon-container">
<span v-if="dmSelProductIconImage"><img :src="dmSelProductIconImage" width="200"></span>
<span v-else-if="dmGetSelProductReleasePart('icon')" class="downloads-icons plex-sel-icon" v-html="dmGetSelProductReleasePart('icon')"></span>
<span ref="downloadsIconPlaceholder-pms" v-else class="downloads-icons plex-sel-icon"></span>
</div>
<h4 id="name">Plex Media Server for <span class="notranslate">{{dmSelActiveProduct.name}}</span></h4>
<!-- component-->
<plex-downloads-product-pms :product="dmSelActiveProduct" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums"></plex-downloads-product-pms>
<!-- component-->
<div class="downloads-pp-beta-releases" v-if="dmCanDownloadBetaVersions">
<h5>Beta Release</h5>
<!-- component-->
<plex-downloads-product-pms :product="dmSelActiveProduct.pp_beta" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums" :beta="true"></plex-downloads-product-pms>
<!-- component-->
</div>
<div class="downloads-footer">
<div class="form-legal">
By downloading this software, you confirm that you accept the <a href="#remodal-terms">Terms of Service</a> and are at least 13 years old.
</div>
</div>
</div>
</template>
<template v-else>
<div class="no-platform-selected" v-if="! dmSelActiveProduct">
<h4 class="download-group-title">NO PLATFORM SELECTED</h4>
</div>
</template>
</div>
</div>
</div>
<div class="tabs-panel " id="plex-app">
<div class="grid-x modal-download">
<!-- component-->
<plex-loading :loading="! dmIsReady('apps') && ! dmHasErrors('apps') && ! downloadsManage.fatalError" :status="'loading'" :custom-status="'Fetching the Apps list ...'"></plex-loading>
<!-- /component -->
<div v-if="dmHasErrors('apps')" class="warning" v-cloak>
Something went wrong. The <strong>Apps & Devices</strong> list is not available at this time. Please try <a href="/media-server-downloads/?cat=computer&plat=linux&duid=32#plex-app" rel="nofollow noreferrer">reloading</a> the page, or try again later.
<br/><br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<div v-if="dmIsReady('apps')" class="large-5 cell text-left downloads-panel downloads-panel-left">
<h3>Plex</h3>
<span class="plex-downloads-container">
<div class="select-container">
<select v-model="downloadsManage.selProducts.apps.groupId" @change="dmSetPlatforms($event)" aria-label="Select a platform to download the plex app">
<option value="">Choose your platform</option>
<optgroup v-for="(apps, cat) in downloadsManage.devices.apps" :key="`apps_${cat}`" :label="cat.toUpperCase()">
<option v-for="(app, key) in apps" :key="`apps_${cat}_${app.id}`" :value="`apps_${cat}_${app.id}`" :data-group="cat" :data-platform="app.id" :aria-label="'You\'ve selected plex for ' + app.name">
{{app.name}}
</option>
</optgroup>
</select>
</div>
</span>
</div>
<div v-if="dmIsReady('apps')" class="large-7 cell text-left downloads-panel downloads-panel-right plex-form-downloads">
<template v-if="dmSelActiveProduct">
<div class="cell large-12 cards">
<h4 class="download-group-title">{{dmSelActiveProductGroup.toUpperCase()}}</h4>
</div>
<div class="download-tray plex-release" v-cloak>
<div class="icon-container">
<span v-if="dmSelProductIconImage"><img :src="dmSelProductIconImage" width="200"></span>
<span v-else-if="dmSelProductHasIcon" class="downloads-icons plex-sel-icon" v-html="dmGetSelProductReleasePart('icon')"></span>
<span v-else ref="downloadsIconPlaceholder-apps" class="downloads-icons plex-sel-icon"></span>
</div>
<h4 id="name" v-if="dmSelActiveProductGroup === 'plex htpc'">Plex HTPC (for {{dmSelActiveProduct.name}} Home Theater PCs)</h4>
<h4 id="name" v-else>Plex for <span class="notranslate">{{dmSelActiveProduct.name}}</span></h4>
<!-- component-->
<plex-downloads-product-apps :product="dmSelActiveProduct" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums"></plex-downloads-product-apps>
<!-- component-->
<div class="downloads-footer">
<div class="form-legal">
By downloading this software, you confirm that you accept the <a href="#remodal-terms">Terms of Service</a> and are at least 13 years old.
</div>
</div>
</div>
</template>
<template v-else>
<div class="no-platform-selected" v-if="! dmSelActiveProduct">
<h4 class="download-group-title">NO PLATFORM SELECTED</h4>
</div>
</template>
</div>
</div>
</div>
<div class="tabs-panel " id="plex-plexamp">
<div class="grid-x modal-download">
<!-- component-->
<plex-loading :loading="! dmIsReady('plexamp') && ! dmHasErrors('plexamp') && ! downloadsManage.fatalError" :status="'loading'" :custom-status="'Fetching the Plexamp list ...'"></plex-loading>
<!-- /component -->
<div v-if="dmHasErrors('plexamp')" class="warning" v-cloak>
Something went wrong. The <strong>Plexamp</strong> list of apps, is not available at this time. Please try <a href="/media-server-downloads/?cat=computer&plat=linux&duid=33#plex-plexamp" rel="nofollow noreferrer">reloading</a> the page, or try again later.
<br/><br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<div v-if="dmIsReady('plexamp')" class="large-5 cell text-left downloads-panel downloads-panel-left">
<h3>Plexamp</h3>
<p class="downloads-learn-more">Learn more about <a href="https://www.plex.tv/plexamp/">Plexamp</a>.</p>
<span class="plex-downloads-container">
<div class="select-container">
<select v-model="downloadsManage.selProducts.plexamp.groupId" @change="dmSetPlatforms($event)" aria-label="Select a platform to download plexamp">
<option value="">Choose your platform</option>
<optgroup v-for="(apps, cat) in downloadsManage.devices.plexamp" :key="`plexamp_${cat}`" :label="cat.toUpperCase()">
<option v-for="(app, key) in apps" :key="`plexamp_${cat}_${app.id}`" :value="`plexamp_${cat}_${app.id}`" :data-group="cat" :data-platform="app.id" :aria-label="'You\'ve selected plexamp for ' + app.name">
{{app.name}}
</option>
</optgroup>
</select>
</div>
</span>
</div>
<div v-if="dmIsReady('plexamp')" class="large-7 cell text-left downloads-panel downloads-panel-right plex-form-downloads">
<template v-if="dmSelActiveProduct">
<div class="cell large-12 cards">
<h4 class="download-group-title">{{dmSelActiveProductGroup.toUpperCase()}}</h4>
</div>
<div class="download-tray plex-release" v-cloak>
<div class="icon-container">
<span v-if="dmSelProductIconImage"><img :src="dmSelProductIconImage" width="200"></span>
<span v-else-if="dmGetSelProductReleasePart('icon')" class="downloads-icons plex-sel-icon" v-html="dmGetSelProductReleasePart('icon')"></span>
<span v-else ref="downloadsIconPlaceholder-plexamp" class="downloads-icons plex-sel-icon"></span>
</div>
<h4 id="name">Plexamp for <span class="notranslate">{{dmSelActiveProduct.name}}</span></h4>
<!-- component-->
<plex-downloads-product-plexamp :product="dmSelActiveProduct" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums"></plex-downloads-product-plexamp>
<!-- component-->
<div class="plex-downloads-no-pp">
<p>You'll need the <a href="#plex-media-server">Plex Media Server</a><span v-if="! isSignedIn"> and a <a href="" class="signin">Plex account</a></span> to use this app.</p>
</div>
<div class="downloads-footer">
<div class="form-legal">
By downloading this software, you confirm that you accept the <a href="#remodal-terms">Terms of Service</a> and are at least 13 years old.
</div>
</div>
</div>
</template>
<template v-else>
<div class="no-platform-selected" v-if="! dmSelActiveProduct">
<h4 class="download-group-title">NO PLATFORM SELECTED</h4>
</div>
</template>
</div>
</div>
</div>
<div class="tabs-panel " id="plex-plexphotos">
<div class="grid-x modal-download">
<!-- component-->
<plex-loading :loading="! dmIsReady('plexphotos') && ! dmHasErrors('plexphotos') && ! downloadsManage.fatalError" :status="'loading'" :custom-status="'Fetching the Plex Photos list ...'"></plex-loading>
<!-- /component -->
<div v-if="dmHasErrors('plexphotos')" class="warning" v-cloak>
Something went wrong. The <strong>Plex Photos</strong> list of apps, is not available at this time. Please try <a href="/media-server-downloads/?cat=computer&plat=linux&duid=34#plex-plexphotos" rel="nofollow noreferrer">reloading</a> the page, or try again later.
<br/><br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<div v-if="dmIsReady('plexphotos')" class="large-5 cell text-left downloads-panel downloads-panel-left">
<h3>Plex Photos</h3>
<p class="downloads-learn-more">See the <a href="https://www.plex.tv/blog/plex-pro-week-24-introducing-plex-photos-beta/">Photos App</a> in action.</p>
<span class="plex-downloads-container">
<div class="select-container">
<select v-model="downloadsManage.selProducts.plexphotos.groupId" @change="dmSetPlatforms($event)" aria-label="Select a platform to download plex photos">
<option value="">Choose your platform</option>
<option v-for="(app, key) in downloadsManage.devices.plexphotos['mobile']" :key="`plexphotos_mobile_${app.id}`" :value="`plexphotos_mobile_${app.id}`" :data-group="'mobile'" :data-platform="app.id" :aria-label="'You\'ve selected plex photos for ' + app.name">
{{app.name}}
</option>
</select>
</div>
</span>
</div>
<div v-if="dmIsReady('plexphotos')" class="large-7 cell text-left downloads-panel downloads-panel-right plex-form-downloads">
<template v-if="dmSelActiveProduct">
<div class="cell large-12 cards">
<h4 class="download-group-title">{{dmSelActiveProductGroup.toUpperCase()}}</h4>
</div>
<div class="download-tray plex-release" v-cloak>
<div class="icon-container">
<span v-if="dmSelProductIconImage"><img :src="dmSelProductIconImage" width="200"></span>
<span v-else-if="dmGetSelProductReleasePart('icon')" class="downloads-icons plex-sel-icon" v-html="dmGetSelProductReleasePart('icon')"></span>
<span v-else ref="downloadsIconPlaceholder-plexphotos" class="downloads-icons plex-sel-icon"></span>
</div>
<h4 id="name">Plex Photos for <span class="notranslate">{{dmSelActiveProduct.name}}</span></h4>
<!-- component-->
<plex-downloads-product-plexphotos :product="dmSelActiveProduct" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums"></plex-downloads-product-plexphotos>
<!-- component-->
<div class="plex-downloads-no-pp">
<p>You'll need the <a href="#plex-media-server">Plex Media Server</a><span v-if="! isSignedIn"> and a <a href="" class="signin">Plex account</a></span> to use this app.</p>
</div>
<div class="downloads-footer">
<div class="form-legal">
By downloading this software, you confirm that you accept the <a href="#remodal-terms">Terms of Service</a> and are at least 13 years old.
</div>
</div>
</div>
</template>
<template v-else>
<div class="no-platform-selected" v-if="! dmSelActiveProduct">
<h4 class="download-group-title">NO PLATFORM SELECTED</h4>
</div>
</template>
</div>
</div>
</div>
<div class="tabs-panel " id="plex-plexdash">
<div class="grid-x modal-download">
<!-- component-->
<plex-loading :loading="! dmIsReady('plexdash') && ! dmHasErrors('plexdash') && ! downloadsManage.fatalError" :status="'loading'" :custom-status="'Fetching the Plex Dash list ...'"></plex-loading>
<!-- /component -->
<div v-if="dmHasErrors('plexdash')" class="warning" v-cloak>
Something went wrong. The <strong>Plex Dash</strong> list of apps, is not available at this time. Please try <a href="/media-server-downloads/?cat=computer&plat=linux&duid=35#plex-dash" rel="nofollow noreferrer">reloading</a> the page, or try again later.
<br/><br/>If the problem persists, please contact <a href="https://www.plex.tv/contact/">support</a>.
</div>
<div v-if="dmIsReady('plexdash')" class="large-5 cell text-left downloads-panel downloads-panel-left">
<h3>Plex Dash</h3>
<p class="downloads-learn-more">See real-time stats, usage data, users, and more across your media server.</p>
<span class="plex-downloads-container">
<div class="select-container">
<select v-model="downloadsManage.selProducts.plexdash.groupId" @change="dmSetPlatforms($event)" aria-label="Select a platform to download plex dash">
<option value="">Choose your platform</option>
<option v-for="(app, key) in downloadsManage.devices.plexdash['mobile']" :key="`plexdash_mobile_${app.id}`" :value="`plexdash_mobile_${app.id}`" :data-group="'mobile'" :data-platform="app.id" :aria-label="'You\'ve selected plex dash for ' + app.name">
{{app.name}}
</option>
</select>
</div>
</span>
</div>
<div v-if="dmIsReady('plexdash')" class="large-7 cell text-left downloads-panel downloads-panel-right plex-form-downloads">
<template v-if="dmSelActiveProduct">
<div class="cell large-12 cards">
<h4 class="download-group-title">{{dmSelActiveProductGroup.toUpperCase()}}</h4>
</div>
<div class="download-tray plex-release" v-cloak>
<div class="icon-container">
<span v-if="dmSelProductIconImage"><img :src="dmSelProductIconImage" width="200"></span>
<span v-else-if="dmGetSelProductReleasePart('icon')" class="downloads-icons plex-sel-icon" v-html="dmGetSelProductReleasePart('icon')"></span>
<span v-else ref="downloadsIconPlaceholder-plexdash" class="downloads-icons plex-sel-icon"></span>
</div>
<h4 id="name">Plex Dash for <span class="notranslate">{{dmSelActiveProduct.name}}</span></h4>
<!-- component-->
<plex-downloads-product-plexdash :product="dmSelActiveProduct" :group="dmSelActiveProductGroup" :checksums="dmVisibleChecksums"></plex-downloads-product-plexdash>
<!-- component-->
<div class="plex-downloads-no-pp">
<p>You'll need the <a href="#plex-media-server">Plex Media Server</a><span v-if="! hasActivePlexPass"> and a <a href="https://www.plex.tv/plex-pass/">Plex Pass</a> </span> to use this app.</p>
</div>
<div class="downloads-footer">
<div class="form-legal">
By downloading this software, you confirm that you accept the <a href="#remodal-terms">Terms of Service</a> and are at least 13 years old.
</div>
</div>
</div>
</template>
<template v-else>
<div class="no-platform-selected" v-if="! dmSelActiveProduct">
<h4 class="download-group-title">NO PLATFORM SELECTED</h4>
</div>
</template>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="tooltip_templates">
<span class="tooltips tooltips-left"></span>
</div>
<div id="downloads-icons">
<div class="plex-svg-holder icon-apple dynamic-icons icon-apple svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-apple-36" id="apple" version="1.1" xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
<title></title>
<g id="icomoon-ignore">
</g>
<path fill="#000" d="M395.749 272.046c-0.647-64.841 52.879-95.938 55.271-97.483-30.076-44.010-76.925-50.039-93.621-50.736-39.871-4.037-77.798 23.474-98.033 23.474-20.184 0-51.409-22.877-84.476-22.276-43.458 0.646-83.529 25.269-105.906 64.19-45.152 78.349-11.563 194.42 32.445 257.963 21.504 31.102 47.146 66.038 80.813 64.79 32.421-1.294 44.681-20.979 83.878-20.979s50.214 20.979 84.525 20.335c34.887-0.648 56.991-31.699 78.346-62.898 24.695-36.084 34.863-71.019 35.462-72.813-0.774-0.353-68.030-26.118-68.704-103.567zM331.281 81.761c17.869-21.679 29.93-51.756 26.64-81.761-25.739 1.048-56.939 17.145-75.405 38.775-16.571 19.188-31.074 49.813-27.187 79.218 28.733 2.242 58.064-14.602 75.952-36.232z"></path>
</svg>
</div> <div class="plex-svg-holder icon-android dynamic-icons icon-android svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-android-37" id="android" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>android</title>
<path d="M28 12c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2s2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM4 12c-1.1 0-2 0.9-2 2v8c0 1.1 0.9 2 2 2s2-0.9 2-2v-8c0-1.1-0.9-2-2-2zM7 23c0 1.657 1.343 3 3 3v0 4c0 1.1 0.9 2 2 2s2-0.9 2-2v-4h4v4c0 1.1 0.9 2 2 2s2-0.9 2-2v-4c1.657 0 3-1.343 3-3v-11h-18v11z"></path>
<path d="M24.944 10c-0.304-2.746-1.844-5.119-4.051-6.551l1.001-2.001c0.247-0.494 0.047-1.095-0.447-1.342s-1.095-0.047-1.342 0.447l-1.004 2.009-0.261-0.104c-0.893-0.297-1.848-0.458-2.84-0.458s-1.947 0.161-2.84 0.458l-0.261 0.104-1.004-2.009c-0.247-0.494-0.848-0.694-1.342-0.447s-0.694 0.848-0.447 1.342l1.001 2.001c-2.207 1.433-3.747 3.805-4.051 6.551v1h17.944v-1h-0.056zM13 8c-0.552 0-1-0.448-1-1s0.447-0.999 0.998-1c0.001 0 0.002 0 0.003 0s0.001-0 0.002-0c0.551 0.001 0.998 0.448 0.998 1s-0.448 1-1 1zM19 8c-0.552 0-1-0.448-1-1s0.446-0.999 0.998-1c0 0 0.001 0 0.002 0s0.002-0 0.003-0c0.551 0.001 0.998 0.448 0.998 1s-0.448 1-1 1z"></path>
</svg>
</div> <div class="plex-svg-holder icon-linux dynamic-icons icon-linux svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-linux-38" id="linux" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28">
<title>linux</title>
<path d="M10.359 6.422q-0.172 0.016-0.242 0.164t-0.133 0.148q-0.078 0.016-0.078-0.078 0-0.187 0.297-0.234h0.156zM11.719 6.641q-0.063 0.016-0.18-0.102t-0.273-0.070q0.375-0.172 0.5 0.031 0.047 0.094-0.047 0.141zM6.234 13.312q-0.063-0.016-0.094 0.047t-0.070 0.195-0.086 0.211-0.156 0.203q-0.109 0.156-0.016 0.187 0.063 0.016 0.195-0.109t0.195-0.281q0.016-0.047 0.031-0.109t0.031-0.094 0.023-0.070 0.008-0.063v-0.047t-0.016-0.039-0.047-0.031zM19.594 18.922q0-0.281-0.859-0.656 0.063-0.234 0.117-0.43t0.078-0.406 0.047-0.336 0.008-0.352-0.016-0.305-0.055-0.344-0.063-0.32-0.078-0.391-0.086-0.414q-0.156-0.75-0.734-1.609t-1.125-1.172q0.375 0.313 0.891 1.297 1.359 2.531 0.844 4.344-0.172 0.625-0.781 0.656-0.484 0.063-0.602-0.289t-0.125-1.305-0.18-1.672q-0.141-0.609-0.305-1.078t-0.305-0.711-0.242-0.383-0.203-0.234-0.117-0.109q-0.219-0.969-0.484-1.609t-0.461-0.875-0.367-0.516-0.234-0.625q-0.063-0.328 0.094-0.836t0.070-0.773-0.695-0.391q-0.234-0.047-0.695-0.281t-0.555-0.25q-0.125-0.016-0.172-0.406t0.125-0.797 0.562-0.422q0.578-0.047 0.797 0.469t0.063 0.906q-0.172 0.297-0.031 0.414t0.469 0.008q0.203-0.063 0.203-0.562v-0.578q-0.078-0.469-0.211-0.781t-0.328-0.477-0.367-0.234-0.422-0.117q-1.672 0.125-1.391 2.094 0 0.234-0.016 0.234-0.141-0.141-0.461-0.164t-0.516 0.008-0.242-0.078q0.016-0.891-0.25-1.406t-0.703-0.531q-0.422-0.016-0.648 0.43t-0.258 0.93q-0.016 0.234 0.055 0.578t0.203 0.586 0.242 0.211q0.156-0.047 0.25-0.219 0.063-0.141-0.109-0.125-0.109 0-0.242-0.227t-0.148-0.523q-0.016-0.344 0.141-0.578t0.531-0.219q0.266 0 0.422 0.328t0.148 0.609-0.023 0.344q-0.344 0.234-0.484 0.453-0.125 0.187-0.43 0.367t-0.32 0.195q-0.203 0.219-0.242 0.422t0.117 0.281q0.219 0.125 0.391 0.305t0.25 0.297 0.289 0.203 0.555 0.102q0.734 0.031 1.594-0.234 0.031-0.016 0.359-0.109t0.539-0.164 0.461-0.203 0.328-0.273q0.141-0.219 0.313-0.125 0.078 0.047 0.102 0.133t-0.047 0.187-0.258 0.148q-0.313 0.094-0.883 0.336t-0.711 0.305q-0.688 0.297-1.094 0.359-0.391 0.078-1.234-0.031-0.156-0.031-0.141 0.031t0.266 0.297q0.391 0.359 1.047 0.344 0.266-0.016 0.562-0.109t0.562-0.219 0.523-0.273 0.469-0.266 0.383-0.187 0.273-0.039 0.133 0.172q0 0.031-0.016 0.070t-0.063 0.078-0.094 0.070-0.133 0.078-0.141 0.070-0.156 0.078-0.148 0.070q-0.438 0.219-1.055 0.688t-1.039 0.672-0.766 0.016q-0.328-0.172-0.984-1.141-0.344-0.484-0.391-0.344-0.016 0.047-0.016 0.156 0 0.391-0.234 0.883t-0.461 0.867-0.328 0.906 0.18 0.984q-0.359 0.094-0.977 1.406t-0.742 2.203q-0.031 0.281-0.023 1.078t-0.086 0.922q-0.125 0.375-0.453 0.047-0.5-0.484-0.562-1.469-0.031-0.438 0.063-0.875 0.063-0.297-0.016-0.281l-0.063 0.078q-0.562 1.016 0.156 2.594 0.078 0.187 0.391 0.438t0.375 0.313q0.313 0.359 1.625 1.414t1.453 1.195q0.25 0.234 0.273 0.594t-0.219 0.672-0.711 0.359q0.125 0.234 0.453 0.695t0.438 0.844 0.109 1.102q0.719-0.375 0.109-1.437-0.063-0.125-0.164-0.25t-0.148-0.187-0.031-0.094q0.047-0.078 0.203-0.148t0.313 0.039q0.719 0.812 2.594 0.562 2.078-0.234 2.766-1.359 0.359-0.594 0.531-0.469 0.187 0.094 0.156 0.812-0.016 0.391-0.359 1.437-0.141 0.359-0.094 0.586t0.375 0.242q0.047-0.297 0.227-1.203t0.211-1.406q0.031-0.328-0.102-1.148t-0.117-1.516 0.359-1.102q0.234-0.281 0.797-0.281 0.016-0.578 0.539-0.828t1.133-0.164 0.938 0.352zM9.781 6q0.047-0.266-0.039-0.469t-0.18-0.234q-0.141-0.031-0.141 0.109 0.031 0.078 0.078 0.094 0.156 0 0.109 0.234-0.047 0.313 0.125 0.313 0.047 0 0.047-0.047zM16.328 9.078q-0.031-0.125-0.102-0.18t-0.203-0.078-0.227-0.086q-0.078-0.047-0.148-0.125t-0.109-0.125-0.086-0.102-0.063-0.063-0.063 0.023q-0.219 0.25 0.109 0.68t0.609 0.492q0.141 0.016 0.227-0.125t0.055-0.313zM13.547 5.75q0-0.172-0.078-0.305t-0.172-0.195-0.141-0.047q-0.219 0.016-0.109 0.109l0.063 0.031q0.219 0.063 0.281 0.484 0 0.047 0.125-0.031zM14.391 2.109q0-0.031-0.039-0.078t-0.141-0.109-0.148-0.094q-0.234-0.234-0.375-0.234-0.141 0.016-0.18 0.117t-0.016 0.203-0.008 0.195q-0.016 0.063-0.094 0.164t-0.094 0.141 0.047 0.133q0.063 0.047 0.125 0t0.172-0.141 0.234-0.141q0.016-0.016 0.141-0.016t0.234-0.031 0.141-0.109zM23.219 23.063q0.313 0.187 0.484 0.383t0.187 0.375-0.039 0.352-0.242 0.344-0.367 0.305-0.469 0.289-0.492 0.258-0.5 0.242-0.422 0.203q-0.594 0.297-1.336 0.875t-1.18 1q-0.266 0.25-1.062 0.305t-1.391-0.227q-0.281-0.141-0.461-0.367t-0.258-0.398-0.344-0.305-0.734-0.148q-0.688-0.016-2.031-0.016-0.297 0-0.891 0.023t-0.906 0.039q-0.688 0.016-1.242 0.234t-0.836 0.469-0.68 0.445-0.836 0.18q-0.453-0.016-1.734-0.484t-2.281-0.672q-0.297-0.063-0.797-0.148t-0.781-0.141-0.617-0.148-0.523-0.227-0.266-0.305q-0.156-0.359 0.109-1.039t0.281-0.852q0.016-0.25-0.063-0.625t-0.156-0.664-0.070-0.57 0.164-0.422q0.219-0.187 0.891-0.219t0.938-0.187q0.469-0.281 0.656-0.547t0.187-0.797q0.328 1.141-0.5 1.656-0.5 0.313-1.297 0.234-0.531-0.047-0.672 0.156-0.203 0.234 0.078 0.891 0.031 0.094 0.125 0.281t0.133 0.281 0.070 0.266 0.016 0.344q0 0.234-0.266 0.766t-0.219 0.75q0.047 0.266 0.578 0.406 0.313 0.094 1.32 0.289t1.555 0.32q0.375 0.094 1.156 0.344t1.289 0.359 0.867 0.063q0.672-0.094 1.008-0.438t0.359-0.75-0.117-0.914-0.297-0.812-0.313-0.57q-1.891-2.969-2.641-3.781-1.062-1.156-1.766-0.625-0.172 0.141-0.234-0.234-0.047-0.25-0.031-0.594 0.016-0.453 0.156-0.812t0.375-0.734 0.344-0.656q0.125-0.328 0.414-1.125t0.461-1.219 0.469-0.953 0.609-0.844q1.719-2.234 1.937-3.047-0.187-1.75-0.25-4.844-0.031-1.406 0.375-2.367t1.656-1.633q0.609-0.328 1.625-0.328 0.828-0.016 1.656 0.211t1.391 0.648q0.891 0.656 1.43 1.898t0.461 2.305q-0.078 1.484 0.469 3.344 0.531 1.766 2.078 3.406 0.859 0.922 1.555 2.547t0.93 2.984q0.125 0.766 0.078 1.32t-0.187 0.867-0.313 0.344q-0.156 0.031-0.367 0.297t-0.422 0.555-0.633 0.523-0.953 0.219q-0.281-0.016-0.492-0.078t-0.352-0.211-0.211-0.242-0.18-0.32-0.141-0.305q-0.344-0.578-0.641-0.469t-0.438 0.766 0.109 1.516q0.313 1.094 0.016 3.047-0.156 1.016 0.281 1.57t1.141 0.516 1.328-0.555q0.922-0.766 1.398-1.039t1.617-0.664q0.828-0.281 1.203-0.57t0.289-0.539-0.391-0.445-0.805-0.367q-0.516-0.172-0.773-0.75t-0.234-1.133 0.242-0.742q0.016 0.484 0.125 0.883t0.227 0.633 0.32 0.445 0.328 0.297 0.336 0.203 0.258 0.148z"></path>
</svg>
</div> <div class="plex-svg-holder icon-synology dynamic-icons icon-synology svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-synology-39" version="1.1" id="synology-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 80 22" style="enable-background:new 0 0 80 22;" xml:space="preserve">
<g>
<title>synology</title>
<path d="M0.2,11.8l2.9-0.3c0.2,1,0.5,1.7,1.1,2.1c0.5,0.4,1.2,0.7,2.1,0.7c0.9,0,1.7-0.2,2.1-0.6c0.5-0.4,0.7-0.9,0.7-1.4
c0-0.3-0.1-0.6-0.3-0.9c-0.2-0.2-0.6-0.5-1.1-0.6c-0.3-0.1-1.1-0.3-2.4-0.7C3.9,9.8,2.8,9.3,2.1,8.7c-0.9-0.8-1.3-1.8-1.3-3
C0.8,5,1,4.3,1.4,3.7c0.4-0.7,1-1.1,1.8-1.5C4,1.9,5,1.7,6.1,1.7c1.8,0,3.2,0.4,4.1,1.2c0.9,0.8,1.4,1.9,1.5,3.2l-3,0.1
C8.6,5.5,8.3,5,7.9,4.6c-0.4-0.3-1-0.5-1.9-0.5c-0.9,0-1.5,0.2-2,0.5C3.8,4.9,3.6,5.2,3.6,5.6c0,0.4,0.1,0.6,0.4,0.9
c0.4,0.3,1.3,0.6,2.7,1c1.4,0.3,2.5,0.7,3.2,1.1c0.7,0.4,1.2,0.9,1.6,1.5c0.4,0.6,0.6,1.4,0.6,2.3c0,0.8-0.2,1.6-0.7,2.4
c-0.5,0.7-1.1,1.3-2,1.6c-0.9,0.3-1.9,0.5-3.2,0.5c-1.8,0-3.3-0.4-4.3-1.3C1,14.7,0.4,13.5,0.2,11.8L0.2,11.8L0.2,11.8z"/>
<path d="M11.7,6h3l2.5,7.5L19.7,6h2.9l-3.7,10.2L18.2,18c-0.2,0.6-0.5,1.1-0.7,1.4c-0.2,0.3-0.5,0.6-0.8,0.8
c-0.3,0.2-0.6,0.4-1.1,0.5c-0.4,0.1-0.9,0.2-1.4,0.2c-0.5,0-1.1-0.1-1.6-0.2l-0.2-2.2c0.4,0.1,0.8,0.1,1.2,0.1
c0.6,0,1.1-0.2,1.4-0.6c0.3-0.4,0.5-0.9,0.7-1.5L11.7,6L11.7,6z"/>
<path d="M32.3,16.6h-2.8v-5.4c0-1.1-0.1-1.9-0.2-2.2S29,8.4,28.8,8.2c-0.3-0.2-0.6-0.3-1-0.3c-0.5,0-0.9,0.1-1.3,0.4
c-0.4,0.3-0.7,0.6-0.8,1c-0.1,0.4-0.2,1.2-0.2,2.4v4.8h-2.8V6h2.6v1.6c0.9-1.2,2.1-1.8,3.5-1.8c0.6,0,1.2,0.1,1.7,0.3
C31,6.3,31.3,6.6,31.6,7s0.4,0.7,0.5,1.2c0.1,0.4,0.2,1.1,0.2,1.9C32.3,10,32.3,16.6,32.3,16.6z"/>
<path d="M32.3,11.2c0-0.9,0.2-1.8,0.7-2.7c0.5-0.9,1.1-1.5,2-2c0.8-0.5,1.8-0.7,2.8-0.7c1.6,0,2.9,0.5,3.9,1.6c1,1,1.5,2.4,1.5,3.9
c0,1.6-0.5,2.9-1.6,4c-1,1-2.3,1.6-3.9,1.6c-1,0-1.9-0.2-2.8-0.7c-0.9-0.4-1.6-1.1-2-1.9C32.6,13.4,32.3,12.4,32.3,11.2L32.3,11.2z
M35.2,11.3c0,1.1,0.2,1.9,0.8,2.4c0.5,0.6,1.1,0.8,1.9,0.8c0.7,0,1.3-0.3,1.8-0.8c0.5-0.5,0.7-1.4,0.7-2.4c0-1.1-0.2-1.9-0.7-2.4
C39.1,8.3,38.5,8,37.8,8c-0.7,0-1.4,0.3-1.9,0.8C35.4,9.5,35.2,10.3,35.2,11.3z"/>
<path d="M46.7,0.5v13.7c0,0.7,0,1.1,0.1,1.3c0.1,0.2,0.2,0.4,0.4,0.5c0.2,0.1,0.6,0.2,1.1,0.2v0.4h-5.1v-0.4c0.5,0,0.8-0.1,1-0.2
c0.2-0.1,0.3-0.3,0.4-0.5c0.1-0.2,0.1-0.7,0.1-1.3V4.9c0-1.2,0-1.9-0.1-2.2c0-0.3-0.1-0.4-0.2-0.5C44.4,2.1,44.2,2,44.1,2
c-0.2,0-0.4,0.1-0.7,0.2l-0.2-0.4l3-1.3L46.7,0.5L46.7,0.5z"/>
<path d="M53.4,5.9c1.6,0,2.8,0.6,3.8,1.8c0.8,1,1.2,2.2,1.2,3.5c0,0.9-0.2,1.9-0.7,2.8s-1.1,1.7-1.8,2.1c-0.8,0.5-1.6,0.7-2.6,0.7
c-1.6,0-2.8-0.6-3.7-1.9c-0.8-1-1.2-2.2-1.2-3.5c0-0.9,0.2-1.9,0.7-2.8c0.5-0.9,1.1-1.6,1.9-2.1C51.7,6.2,52.5,5.9,53.4,5.9
C53.4,5.9,53.4,5.9,53.4,5.9z M53,6.7c-0.4,0-0.8,0.1-1.2,0.3c-0.4,0.2-0.7,0.6-1,1.2c-0.2,0.6-0.4,1.4-0.4,2.3
c0,1.5,0.3,2.8,0.9,3.9c0.6,1.1,1.4,1.6,2.4,1.6c0.7,0,1.3-0.3,1.8-0.9c0.5-0.6,0.7-1.6,0.7-3.1c0-1.8-0.4-3.3-1.2-4.3
C54.6,7.1,53.9,6.7,53,6.7L53,6.7L53,6.7z"/>
<path d="M60.6,12.8c-0.6-0.3-1.1-0.7-1.4-1.3c-0.3-0.6-0.5-1.2-0.5-1.8c0-1,0.4-1.9,1.1-2.6c0.8-0.7,1.8-1.1,3-1.1
c1,0,1.8,0.2,2.6,0.7h2.2c0.3,0,0.5,0,0.6,0c0,0,0.1,0.1,0.1,0.1c0,0.1,0.1,0.2,0.1,0.4c0,0.2,0,0.3-0.1,0.4c0,0-0.1,0.1-0.1,0.1
c-0.1,0-0.2,0-0.6,0h-1.3c0.4,0.5,0.6,1.2,0.6,2.1c0,1-0.4,1.8-1.1,2.5c-0.7,0.7-1.7,1-3,1c-0.5,0-1-0.1-1.6-0.2
c-0.3,0.3-0.5,0.5-0.6,0.8c-0.1,0.2-0.2,0.4-0.2,0.5c0,0.1,0.1,0.3,0.2,0.4c0.1,0.1,0.4,0.2,0.7,0.3c0.2,0,0.7,0.1,1.6,0.1
c1.5,0.1,2.5,0.1,3,0.2c0.7,0.1,1.3,0.4,1.7,0.8c0.4,0.4,0.6,0.9,0.6,1.5c0,0.8-0.4,1.6-1.2,2.4c-1.2,1.1-2.7,1.6-4.6,1.6
c-1.4,0-2.7-0.3-3.7-1c-0.6-0.4-0.8-0.8-0.8-1.2c0-0.2,0-0.4,0.1-0.5c0.1-0.3,0.4-0.7,0.8-1.2c0.1-0.1,0.4-0.5,1.1-1.2
c-0.4-0.2-0.7-0.4-0.8-0.6c-0.2-0.2-0.2-0.4-0.2-0.6c0-0.3,0.1-0.6,0.3-0.9C59.4,14,59.9,13.4,60.6,12.8L60.6,12.8L60.6,12.8z
M60.6,16.6c-0.3,0.4-0.6,0.7-0.8,1.1c-0.2,0.3-0.3,0.6-0.3,0.9c0,0.4,0.2,0.7,0.6,0.9c0.8,0.5,1.8,0.7,3.3,0.7
c1.3,0,2.3-0.2,3-0.7s1-1,1-1.5c0-0.4-0.2-0.7-0.6-0.8c-0.4-0.2-1.2-0.3-2.3-0.3C62.8,16.8,61.5,16.7,60.6,16.6L60.6,16.6
L60.6,16.6z M62.6,6.5c-0.6,0-1,0.2-1.4,0.7c-0.4,0.4-0.6,1.1-0.6,2c0,1.2,0.3,2.1,0.8,2.7c0.4,0.5,0.9,0.7,1.5,0.7
c0.6,0,1-0.2,1.4-0.6s0.5-1.1,0.5-2c0-1.2-0.3-2.1-0.8-2.8C63.7,6.8,63.2,6.5,62.6,6.5L62.6,6.5L62.6,6.5z"/>
<path d="M68.6,6.2h4.8v0.4h-0.2c-0.3,0-0.6,0.1-0.8,0.2c-0.2,0.2-0.2,0.3-0.2,0.5c0,0.3,0.1,0.7,0.4,1.2l2.5,5.2l2.3-5.7
c0.1-0.3,0.2-0.6,0.2-0.9c0-0.1,0-0.2-0.1-0.3c-0.1-0.1-0.2-0.2-0.3-0.2c-0.1-0.1-0.4-0.1-0.7-0.1V6.2h3.3v0.4
c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.5,0.5c-0.1,0.1-0.2,0.4-0.4,0.9l-4.2,10.3c-0.4,1-0.9,1.8-1.6,2.3s-1.3,0.8-1.9,0.8
c-0.4,0-0.8-0.1-1.1-0.4c-0.3-0.2-0.4-0.5-0.4-0.9c0-0.3,0.1-0.6,0.3-0.8s0.5-0.3,0.9-0.3c0.2,0,0.6,0.1,1,0.2
c0.3,0.1,0.5,0.2,0.6,0.2c0.2,0,0.5-0.1,0.7-0.4c0.3-0.2,0.5-0.7,0.8-1.3l0.7-1.8l-3.7-7.8c-0.1-0.2-0.3-0.5-0.5-0.9
c-0.2-0.3-0.3-0.4-0.5-0.5c-0.2-0.1-0.5-0.2-0.8-0.3L68.6,6.2L68.6,6.2z"/>
</g>
</svg>
</div> <div class="plex-svg-holder icon-freebsd dynamic-icons icon-freebsd svg-icon-hidden cell" ><svg class="plexico-icon-freebsd-40" id="freebsd" class="plexico-icon-freebsd-38" version="1.1" id="FreeBSD_Foundation_logo" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="439.8" height="228.4" viewBox="0 0 439.8 228.4" style="enable-background:new 0 0 439.8 228.4;" xml:space="preserve">
<style type="text/css">
#icon-freebsd-38 #icon-freebsd-40 .st0{fill:#AB2B28;}
#icon-freebsd-38 #icon-freebsd-40 .st1{fill:#AC2A29;}
#icon-freebsd-38 #icon-freebsd-40 .st2{fill:#EB0028;}
</style>
<g>
<g>
<path class="st0" d="M263.8,176.3c2.3,0,5.1-0.2,7.3-1.2c4.8-2,7.8-7.1,7.8-13.2c0-8.5-5.6-14.1-14.2-14.1h-18.4v28.5H263.8z
M263.6,138.3c7.4,0,12.1-5.1,12.1-12.6c0-4.8-1.9-8.8-5.3-10.8c-2.3-1.2-5-1.6-8.5-1.6h-15.5v25H263.6z M224.6,176.7h10.2v-64
h-10.2v-9h37.3c5.9,0,10.3,0.6,14.4,2.4c6.5,2.9,11.3,9.6,11.3,18.5c0,8-4,14.4-10.3,17.7v0.2c8.8,2.6,13.6,10.6,13.6,19.9
c0,10.8-6.6,18.9-15.1,21.8c-4,1.3-7.8,1.5-12.3,1.5h-38.8V176.7z" fill="#282A2D"></path>
<path class="st0" d="M309.6,161.2v6c0,6,7.8,9.6,16.4,9.6c9.4,0,16.3-4.4,16.3-12.6c0-9.5-9.6-12.7-19.8-16.6
c-10.8-4.1-21.8-8.7-21.8-23.2c0-15.5,12.4-22.1,26.3-22.1c12.3,0,24.9,4.6,24.9,13.6v9.6H341v-5.7c0-4.8-7.3-7.3-14.1-7.3
c-8,0-14.4,3.7-14.4,11.3c0,8.7,8.2,11.6,17.4,15.1c12.1,4.5,24.1,9.2,24.1,24.4c0,15.7-12.8,23.8-28,23.8
c-12.8,0-27.1-5.7-27.1-17.4v-8.6H309.6z" fill="#282A2D"></path>
<path class="st0" d="M395.9,176.3c5.3,0,9.8-0.5,13.9-2.1c11-3.8,17.9-14.4,17.9-29.4c0-15.1-6.9-25.7-17.8-29.6
c-4.5-1.6-8.7-1.9-14.1-1.9h-12.6v63H395.9z M361.5,176.7h10.2v-64h-10.2v-9h35c6.9,0,12,0.4,17.4,2c15.7,4.9,25.9,19.1,25.9,39
c0,19.9-9.9,33.7-25.9,38.8c-5.4,1.7-10.8,2.2-17.3,2.2h-35.1V176.7z" fill="#282A2D"></path>
</g>
<g>
<polygon points="0,176.7 10.2,176.7 10.2,112.7 0,112.7 0,103.7 56.8,103.7 56.8,123.2 46.7,123.2 46.7,113.7 21.8,113.7
21.8,140.9 50.2,140.9 50.2,150.5 21.8,150.5 21.8,176.7 33,176.7 33,185.8 0,185.8 "></polygon>
<path d="M60.7,177.1h8.8v-38.8c0-1.7-0.9-2.6-2.6-2.6h-7.3V127h13.3c5.1,0,7.5,2.1,7.5,6.9v3.7c0,2.3-0.2,4.1-0.2,4.1h0.2
c2.7-8.6,9.5-15.3,18.6-15.3c1.5,0,2.9,0.2,2.9,0.2v11.2c0,0-1.4-0.3-3.3-0.3c-12.6,0-17.9,12.7-17.9,24.2v15.6h8.7v8.7H60.7
V177.1z" fill="#282A2D"></path>
<path d="M147.4,150.2c-0.3-10.3-6.6-15.7-14.1-15.7c-8.6,0-15.6,5.8-17.2,15.7H147.4z M133.5,125.6c16.7,0,25.5,12.3,25.5,27.5
c0,1.5-0.3,4.3-0.3,4.3h-43c0.7,13,9.9,20,20.3,20c10.2,0,17.5-6.6,17.5-6.6l4.7,8.3c0,0-8.8,8.1-22.9,8.1
c-18.5,0-31.1-13.4-31.1-30.8C104.1,137.7,116.8,125.6,133.5,125.6" fill="#282A2D"></path>
<path d="M207.2,150.2c-0.3-10.3-6.6-15.7-14.1-15.7c-8.6,0-15.6,5.8-17.2,15.7H207.2z M193.4,125.6c16.7,0,25.5,12.3,25.5,27.5
c0,1.5-0.3,4.3-0.3,4.3h-43c0.7,13,9.9,20,20.3,20c10.2,0,17.5-6.6,17.5-6.6l4.6,8.3c0,0-8.8,8.1-22.9,8.1
c-18.5,0-31.1-13.4-31.1-30.8C164,137.7,176.7,125.6,193.4,125.6" fill="#282A2D"></path>
<polygon points="50.1,202.3 64.3,202.3 64.3,205.4 53.7,205.4 53.7,213.8 62.7,213.8 62.7,217 53.7,217 53.7,228 50.1,228 "></polygon>
<path d="M91.5,225.1c5.2,0,9.5-4.4,9.5-10.2c0-5.6-4.2-9.8-9.5-9.8c-5.2,0-9.5,4.2-9.5,9.8C82,220.7,86.2,225.1,91.5,225.1
M91.5,201.8c7.4,0,13.2,5.7,13.2,13.1c0,7.6-5.8,13.5-13.2,13.5c-7.4,0-13.2-5.9-13.2-13.5C78.3,207.5,84,201.8,91.5,201.8" fill="#282A2D"></path>
<path d="M120.4,202.3h3.6v16.6c0,3.9,2.5,6.2,6.5,6.2c4,0,6.6-2.3,6.6-6.3v-16.5h3.6v16.6c0,5.7-4.1,9.5-10.1,9.5
c-6,0-10.1-3.8-10.1-9.5V202.3z" fill="#282A2D"></path>
<path d="M158.2,202.3h3.6l11.4,16.7c1,1.4,2.2,3.7,2.2,3.7h0.1c0,0-0.3-2.3-0.3-3.7v-16.7h3.6V228h-3.5l-11.5-16.7
c-0.9-1.4-2.1-3.8-2.1-3.8h-0.1c0,0,0.3,2.3,0.3,3.8V228h-3.6V202.3z" fill="#282A2D"></path>
<path d="M204.9,224.8c5.8,0,9.6-3.4,9.6-9.8c0-6.3-3.8-9.7-9.6-9.7h-4.7v19.4H204.9z M196.7,202.3h8.5c7.9,0,13,4.7,13,12.8
c0,8.2-5.2,12.9-13,12.9h-8.5V202.3z" fill="#282A2D"></path>
<path d="M242.3,205.8c0,0-0.6,2.3-1,3.6l-2.9,8.2h7.8l-2.8-8.2C242.9,208.1,242.4,205.8,242.3,205.8L242.3,205.8z M247.1,220.6
h-9.7l-2.5,7.4h-3.7l9.3-25.7h3.8l9.3,25.7h-3.7L247.1,220.6z" fill="#282A2D"></path>
<polygon points="272.1,205.4 263.3,205.4 263.3,202.3 284.5,202.3 284.5,205.4 275.7,205.4 275.7,228 272.1,228 "></polygon>
<rect x="299.1" y="202.3" width="3.6" height="25.7"></rect>
<path d="M332.1,225.1c5.2,0,9.5-4.4,9.5-10.2c0-5.6-4.2-9.8-9.5-9.8c-5.2,0-9.5,4.2-9.5,9.8C322.6,220.7,326.8,225.1,332.1,225.1
M332.1,201.8c7.4,0,13.2,5.7,13.2,13.1c0,7.6-5.8,13.5-13.2,13.5c-7.4,0-13.2-5.9-13.2-13.5C318.9,207.5,324.6,201.8,332.1,201.8
" fill="#282A2D"></path>
<path d="M361.4,202.3h3.6l11.4,16.7c1,1.4,2.2,3.7,2.2,3.7h0.1c0,0-0.3-2.3-0.3-3.7v-16.7h3.6V228h-3.5L367,211.3
c-0.9-1.4-2.1-3.8-2.1-3.8h-0.1c0,0,0.2,2.3,0.2,3.8V228h-3.6V202.3z" fill="#282A2D"></path>
</g>
<polygon class="st1" points="110.8,72.1 110.8,50.4 154.4,25.2 154.4,0 89,37.8 89,59.5 "></polygon>
<polygon class="st1" points="176.2,37.8 176.2,59.5 132.6,84.6 132.6,109.8 198,72.1 198,50.4 "></polygon>
<g>
<polygon class="st2" points="89,59.5 89,84.6 110.8,97.2 132.6,84.6 "></polygon>
<polygon class="st2" points="198,50.4 198,25.2 176.2,12.6 154.4,25.2 "></polygon>
</g>
<g>
<path d="M204.8,29.3h-0.7v-3.7h-1.3V25h3.2v0.6h-1.3V29.3z" fill="#282A2D"></path>
<path d="M208.6,29.3l-1.2-3.6h0c0,0.5,0,1,0,1.5v2.1h-0.6V25h1l1.2,3.4h0l1.2-3.4h1v4.3h-0.7v-2.1c0-0.2,0-0.5,0-0.8
c0-0.3,0-0.5,0-0.6h0l-1.3,3.6H208.6z" fill="#282A2D"></path>
</g>
</g>
</svg></div> <div class="plex-svg-holder icon-netgear dynamic-icons icon-netgear svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-netgear-41" id="netgear" version="1.1" xmlns="http://www.w3.org/2000/svg" width="91" height="32" viewBox="0 0 91 32">
<title>netgear</title>
<path d="M0.203 21.706h2.953v-6.928l5.375 6.928h3.028v-11.356h-3.028v6.891l-5.375-6.816h-2.953v11.281z"></path>
<path d="M22.647 12.887v-2.497h-6.434v11.356h6.434v-2.538h-3.522v-1.969h3.331v-2.497h-3.331v-1.894h3.522v0.037z"></path>
<path d="M32.297 12.906h2.422v-2.5h-7.794v2.5h2.422v8.819h2.953v-8.819h-0.003z"></path>
<path d="M50.353 15.441c0.013 0.162 0.019 0.347 0.019 0.534 0 1.459-0.428 2.822-1.175 3.959-0.994 1.334-2.597 2.209-4.406 2.209-0.081 0-0.166-0.003-0.244-0.003-0.094 0.006-0.216 0.012-0.337 0.012-3.156 0-5.716-2.559-5.716-5.716 0-0.125 0.003-0.247 0.013-0.369-0.006-0.078-0.013-0.188-0.013-0.297 0-3.197 2.594-5.791 5.791-5.791 0.125 0 0.244 0.003 0.366 0.012 0.063-0.003 0.163-0.006 0.259-0.006 2.156 0 4.006 1.297 4.825 3.153l-2.788 1.206c-0.331-1.037-1.291-1.781-2.419-1.781-0.016 0-0.025 0-0.041 0-1.666 0.15-2.966 1.547-2.966 3.244 0 0.113 0.006 0.222 0.016 0.331-0.013 0.078-0.016 0.188-0.016 0.297 0 1.7 1.322 3.097 2.994 3.209 0.078 0.006 0.163 0.016 0.244 0.016 1.128 0 2.053-0.869 2.147-1.972l-2.384-0.006v-2.234l5.831-0.009z"></path>
<path d="M61.481 12.887v-2.497h-6.397v11.356h6.434v-2.538h-3.522v-1.969h3.294v-2.497h-3.294v-1.894h3.481l0.003 0.037z"></path>
<path d="M71.588 13.794l1.213 3.597h-2.425l1.213-3.597zM73.634 19.775l0.719 1.969h3.141l-4.241-11.356h-3.253l-4.353 11.356h3.103l0.831-1.969h4.053z"></path>
<path d="M84.609 12.634h0.3c0.947 0 2.044 0 2.044 1.4s-1.1 1.4-2.044 1.4h-0.3v-2.8zM87.522 17.059c1.416-0.275 2.469-1.5 2.469-2.975 0-0.072-0.003-0.144-0.006-0.216 0-0.019 0.003-0.053 0.003-0.088 0-1.881-1.525-3.406-3.406-3.406-0.134 0-0.266 0.006-0.394 0.022h-4.525v11.356h2.953v-4.391l2.65 4.316h3.784l-3.563-4.616 0.034-0.003z"></path>
</svg>
</div> <div class="plex-svg-holder icon-qnap dynamic-icons icon-qnap svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-qnap-42" version="1.1" id="qnap-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 70 18" style="enable-background:new 0 0 70 18;" xml:space="preserve">
<title>qnap</title>
<path d="M51.3,3.5c-0.6-0.5-1.5-0.7-2.6-0.7h-8.9c-1.1,0-2,0.2-2.6,0.7c-0.6,0.5-0.9,1.1-0.9,2V15H41v-3.3h6.6V15h4.7V5.4
C52.2,4.6,51.9,4,51.3,3.5z M47.6,9.5H41V6h6.6V9.5z"/>
<path d="M69,3.4c-0.5-0.4-1.2-0.6-2.2-0.6l0,0h-0.2c0,0-0.1,0-0.1,0l-8.6,0c-1.1,0-2,0.2-2.6,0.7c-0.6,0.5-0.9,1.1-0.9,1.9h0v0
c0,0,0,0,0,0V15h4.7v-3.2h7.6c2.1,0,3.1-0.8,3.1-2.5V5.4C69.8,4.5,69.5,3.8,69,3.4z M65,9.1h-6V6h6V9.1z"/>
<path d="M30.4,2.8h-0.7v7.1c0,0.1-0.1,0.1-0.2,0.1c0,0-0.1,0-0.2-0.1c-0.8-1.2-3.8-5.4-4.8-6.7c0,0,0,0,0,0h0c0,0,0,0,0,0
c0,0,0,0,0,0c-0.2-0.2-0.6-0.3-1-0.3h-3.8c-0.5,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.6-0.4,1.1l0,0V15h4.4c0,0,0-5.7,0-7.4
c0-0.1,0.1-0.3,0.4-0.2c0,0,0.1,0,0.2,0.1C24,8.9,29.6,15,29.6,15h4.6V2.8L30.4,2.8L30.4,2.8z"/>
<path d="M16,13.3c0.2-0.4,0.3-0.9,0.3-1.5v-6c0-2.1-1.2-3.1-3.6-3.2l0,0v0h-0.4c0,0,0,0,0,0H4.4c-2.7,0-4,1.1-4,3.3v6
c0,2.2,1.3,3.2,4,3.2l7.9,0c0.5,0,0.9,0,1.3-0.1c0.1,0.2,0.2,0.3,0.3,0.5h3.9C17.6,15.2,17.2,14.3,16,13.3z M5.4,5.6h6.5v5.6
c-1.1-0.3-2.4-0.6-3.9-0.8c0,0,1.2,0.7,2.6,1.7H5.3L5.4,5.6L5.4,5.6z"/>
</svg>
</div> <div class="plex-svg-holder icon-unraid dynamic-icons icon-unraid svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-unraid-43" version="1.1" id="unraid" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 91 32" style="enable-background:new 0 0 91 32;" xml:space="preserve">
<style type="text/css">
#icon-unraid-43 .st0{fill:#1A1A1A;}
</style>
<path class="st0" d="M59.8,20h-4.7l-1.2,3.6h-2.6l5.4-15.5h3.2l5.4,15.5h-2.9l-4.3-12.7l-2.3,6.8H59L59.8,20z"/>
<path class="st0" d="M12.7,8.1v10.2c0,3.6-2.3,5.5-6,5.5s-6-1.9-6-5.5V8.1h2.6v10.2c0,2.1,1.3,3.2,3.3,3.2s3.4-1.1,3.4-3.2V8.1H12.7
z"/>
<path class="st0" d="M21.2,13v10.7h-2.6V8.1H21l6.8,10.7V8.1h2.7v15.5h-2.5L21.2,13z"/>
<path class="st0" d="M69.7,8.1h2.6v15.5h-2.6V8.1z"/>
<path class="st0" d="M90.3,18.1c0,3.6-2.4,5.6-6.1,5.6h-5.9V8.1h5.9c3.7,0,6.1,1.9,6.1,5.6V18.1z M87.7,13.7c0-2.1-1.3-3.3-3.4-3.3
H81v10.9h3.2c2.1,0,3.5-1.1,3.5-3.3L87.7,13.7z"/>
<path class="st0" d="M44.3,17.8c1.7-0.6,2.8-2.1,2.8-4.7c0-3.5-2-5-5.1-5h-5.5v15.5h2.6V10.4h2.8c1.5,0,2.5,0.7,2.5,2.7
s-1,2.7-2.5,2.7h-1.4l3.7,7.8h3L44.3,17.8z"/>
</svg>
</div> <div class="plex-svg-holder icon-drobo dynamic-icons icon-drobo svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-drobo-44" version="1.1" id="drobo-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 58 22" style="enable-background:new 0 0 58 22;" xml:space="preserve">
<title>drobo</title>
<path d="M10.6,0.7H8.5C8.2,0.7,8,0.9,8,1.1v4C7.6,5,6.9,4.9,5.8,4.9c-2.3,0-5.3,1.2-5.3,5.3l0,0v1.5c0.1,4,2.8,5.1,5.6,5.1
c2.8,0,4.2-0.5,4.7-0.7c0.1,0,0.1,0,0.1-0.1h0C11,16,11,15.9,11,15.7V1.1C11,0.9,10.8,0.7,10.6,0.7L10.6,0.7L10.6,0.7z M6,14.4
c-1.5,0-2.5-0.7-2.5-3.1l0,0v-0.9c0-2.4,1-3.1,2.5-3.1c1.5,0,2,0.2,2,0.2v6.6C8,14.2,7.5,14.4,6,14.4L6,14.4z"/>
<path d="M19.7,4.9h-0.4c0,0,0,0,0,0c-1,0-4.1,0.2-5.1,1C14,6,14,6,13.9,6.1l0,0l0,0c0,0.1-0.1,0.1-0.1,0.2v9.9
c0,0.3,0.2,0.5,0.5,0.5h2.1c0.3,0,0.5-0.2,0.5-0.5V7.8c0.3-0.1,1-0.3,2.4-0.3h0.4c0.3,0,0.5-0.2,0.5-0.5V5.4
C20.1,5.1,19.9,4.9,19.7,4.9L19.7,4.9L19.7,4.9z"/>
<path d="M26.8,4.9L26.8,4.9c-3.6,0-5.4,2.3-5.4,5.6c0,0,0,0.4,0,0.4v0.5c0,3.3,2,5.5,5.4,5.5h0c3.5,0,5.4-2.4,5.4-5.7v-0.3
c0,0,0-0.3,0-0.3C32.2,7.3,30.3,4.9,26.8,4.9L26.8,4.9z M29.2,10.9V11c0,2.1-0.9,3.2-2.4,3.2h0c-1.5,0-2.4-1-2.4-3.2v-0.2
c0,0,0-0.2,0-0.2c0-2,0.8-3.2,2.4-3.2h0c1.6,0,2.4,1.2,2.4,3.2C29.2,10.7,29.2,10.9,29.2,10.9z"/>
<path d="M39.9,9.5c-1.2,0-1.8,0.1-2.2,0.2v-4c0-0.3-0.2-0.5-0.5-0.5h-2.1c-0.3,0-0.5,0.2-0.5,0.5v14.6c0,0.2,0.1,0.3,0.2,0.4l0,0h0
c0,0,0.1,0.1,0.1,0.1c0.4,0.2,1.8,0.7,4.7,0.7c2.8,0,5.5-1.1,5.5-5.1h0v-1.5h0C45.2,10.7,42.2,9.5,39.9,9.5L39.9,9.5L39.9,9.5z
M42.2,15v0.8c0,2.4-1,3.1-2.5,3.1s-2-0.2-2-0.2v-6.6c0,0,0.5-0.2,2-0.2C41.1,11.9,42.1,12.6,42.2,15L42.2,15L42.2,15L42.2,15z"/>
<path d="M57.7,10.9c0,0,0-0.3,0-0.3c0-3.3-1.9-5.6-5.4-5.6h0c-3.6,0-5.4,2.3-5.4,5.6c0,0,0,0.4,0,0.4v0.5c0,3.3,2,5.5,5.4,5.5h0
c3.5,0,5.4-2.4,5.4-5.7V10.9z M54.7,10.9V11c0,2.1-0.9,3.2-2.4,3.2h0c-1.5,0-2.4-1-2.4-3.2v-0.2c0,0,0-0.2,0-0.2
c0-2,0.8-3.2,2.4-3.2h0c1.6,0,2.4,1.2,2.4,3.2C54.7,10.7,54.7,10.9,54.7,10.9z"/>
</svg>
</div> <div class="plex-svg-holder icon-asustor dynamic-icons icon-asustor svg-icon-hidden cell" ><svg class="plexico-icon-asustor-45" id="asustor" class="plexico-icon-asustor-48" version="1.1" id="asustor-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 75 15" style="enable-background:new 0 0 75 15;" xml:space="preserve" width="75" height="15" >
<title>asustor</title>
<path d="M10.9,6.4l-1.3,7.9H3.7c-0.9,0-1.7-0.3-2.3-0.9c-0.6-0.6-0.9-1.4-0.9-2.3c0-0.1,0-0.3,0-0.5l0.2-1.5C1.3,7.4,2.3,6.5,4,6.5
h3.7c0.1-0.5,0-0.9-0.4-1.3C7,4.8,6.6,4.6,6.1,4.6H2.5l0.3-1.9h4.9C8.6,2.7,9.3,3,10,3.6c0.6,0.6,1,1.4,1,2.3
C10.9,6.1,10.9,6.3,10.9,6.4L10.9,6.4L10.9,6.4z M7.3,8.5H5.4c-0.3,0-0.7,0.1-1,0.3C4.1,9.1,4,9.3,3.9,9.7l-0.2,1
c-0.1,0.4,0.1,0.8,0.4,1.2c0.3,0.4,0.7,0.5,1.2,0.5h1.3L7.3,8.5L7.3,8.5z" fill="#282A2D"></path>
<path d="M23.1,2.7l-0.3,1.9h-5.1c-0.9,0-1.4,0.4-1.6,1.3l4,2.4c1,0.6,1.6,1.5,1.6,2.7c0,1-0.4,1.9-1.2,2.5c-0.6,0.5-1.3,0.8-2.1,0.8
h-6.9l0.3-2h5.1c0.9,0,1.5-0.5,1.6-1.4l-4-2.3C13.5,8.1,13,7.2,13,6c0-1,0.3-1.7,0.9-2.4s1.4-0.9,2.3-0.9
C16.2,2.7,23.1,2.7,23.1,2.7z" fill="#282A2D"></path>
<path d="M34.7,2.7l-1.5,9c-0.1,0.7-0.5,1.3-1.1,1.9c-0.6,0.5-1.3,0.8-2.1,0.8h-3.1c-0.9,0-1.7-0.3-2.3-0.9c-0.6-0.6-0.9-1.4-0.9-2.3
c0-0.2,0-0.4,0-0.6L25,2.7h3.2L27,10.5c0,0.1,0,0.2,0,0.3c0,0.5,0.2,0.9,0.5,1.1c0.3,0.3,0.7,0.4,1.2,0.4c0.9,0,1.4-0.5,1.5-1.4
l1.3-8.3L34.7,2.7L34.7,2.7z" fill="#282A2D"></path>
<path d="M45.9,2.7l-0.3,1.9h-4.6c-0.9,0-1.4,0.4-1.6,1.3l4,2.4c1,0.6,1.6,1.5,1.6,2.7c0,1-0.4,1.9-1.2,2.5c-0.6,0.5-1.3,0.8-2.1,0.8
h-6.9l0.3-2h5.1c0.9,0,1.5-0.5,1.6-1.4l-4-2.3c-1-0.6-1.5-1.5-1.5-2.7c0-1,0.3-1.7,0.9-2.4s1.4-0.9,2.3-0.9L45.9,2.7L45.9,2.7z" fill="#282A2D"></path>
<path d="M54.7,2.7l-0.3,1.9h-3.3l-1,5.9c0,0.1,0,0.2,0,0.3c0,0.4,0.2,0.8,0.5,1.1s0.7,0.5,1.1,0.5h1.3l-0.3,2h-2.6
c-0.9,0-1.7-0.3-2.3-0.9c-0.6-0.6-0.9-1.4-0.9-2.3c0-0.2,0-0.4,0-0.6l1.6-9.8h3.2l-0.3,2L54.7,2.7L54.7,2.7z" fill="#282A2D"></path>
<path d="M64.8,3.6c-0.6-0.6-1.4-0.9-2.3-0.9h-3.1c-0.8,0-1.4,0.2-2.1,0.7c-0.6,0.5-1,1.1-1.1,1.8l-0.9,5.3c0,0.2,0,0.4,0,0.6
c0,0.9,0.3,1.7,0.9,2.3c0.6,0.6,1.4,0.9,2.3,0.9h3.1c0.8,0,1.5-0.3,2.1-0.8c0.6-0.5,1-1.2,1.1-1.9l0.9-5.1c0-0.2,0.1-0.4,0.1-0.6
C65.7,5,65.4,4.2,64.8,3.6C64.8,3.6,64.8,3.6,64.8,3.6z M63.4,6.4l-0.8,4.5c-0.2,0.9-0.7,1.4-1.6,1.4c-0.5,0-0.8-0.1-1.1-0.4
c-0.3-0.3-0.4-0.6-0.4-1.1c0-0.1,0-0.3,0-0.3L60.3,6c0.1-0.9,0.6-1.3,1.5-1.3c0.5,0,1.1,0.1,1.5,0.4C63.6,5.4,63.5,5.9,63.4,6.4
L63.4,6.4L63.4,6.4z" fill="#282A2D"></path>
<path d="M74.7,2.7l-0.3,1.9h-1.9C71.5,4.6,71,5,70.8,6l-1.3,8.4h-3.2l1.5-9.1c0.1-0.7,0.5-1.4,1.1-1.8c0.6-0.5,1.3-0.7,2.1-0.7
L74.7,2.7L74.7,2.7z" fill="#282A2D"></path>
</svg></div> <div class="plex-svg-holder icon-thecus dynamic-icons icon-thecus svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-thecus-46" version="1.1" id="thecus-7" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 245 55" style="enable-background:new 0 0 245 55;" xml:space="preserve">
<style type="text/css">
#icon-thecus-46 .st0{fill:#231F20;}
</style>
<g>
<g>
<g>
<path class="st0" d="M46.4,11.9H29.9v42H17.2v-42H0.9V1.2h45.5V11.9z"/>
<path class="st0" d="M84.4,53.9H72.8V30.4c0-2.3-0.4-3.8-1.1-4.6c-0.5-0.4-1-0.7-1.7-0.9c-0.7-0.2-1.6-0.3-2.8-0.3l-6.9,0.1v29.2
H48.8V1.1h11.5v13.7h7.7c5.8,0,10,1.1,12.5,3.4c2.6,2.3,3.8,6,3.8,11.1L84.4,53.9z"/>
<path class="st0" d="M123.6,53.9h-15.2c-6.4,0-11.2-1.7-14.5-5s-5-8.2-5-14.7c0-6.4,1.7-11.2,5-14.5s8.2-5,14.5-5h15.2v9.5h-13.8
c-3.3,0-5.5,0.4-6.6,1.2c-1.1,0.9-1.6,2.2-1.6,4h22V39h-22c0,1.7,0.5,3,1.4,3.9s3.2,1.3,6.7,1.3h13.9V53.9L123.6,53.9z"/>
<path class="st0" d="M160.4,53.9h-14.2c-1.8,0-3.3-0.1-4.8-0.3c-1.4-0.2-2.7-0.5-3.9-0.8c-2.2-0.7-4.2-2-6-3.7
c-0.8-0.8-1.6-1.8-2.3-3c-0.7-1.1-1.3-2.3-1.9-3.6c-0.5-1.2-0.8-2.5-1.1-3.8c-0.2-1.3-0.3-2.7-0.3-4.3c0-2.9,0.5-5.7,1.4-8.2
c1-2.5,2.4-4.8,4.2-6.8c1.7-1.5,3.7-2.7,6-3.4c2.3-0.8,5.2-1.2,8.6-1.2h14.3v9.8h-11.3c-2.4,0-4.2,0.1-5.7,0.4
c-1.4,0.4-2.5,0.9-3.3,1.7c-1.6,1.5-2.4,4-2.4,7.7c0,2,0.4,3.7,1.1,5.2c0.6,1.4,1.6,2.5,2.9,3.5l2.3,0.8c0.6,0.1,1.3,0.2,1.9,0.2
c0.7,0,1.7,0.1,3.1,0.1h11.4V53.9L160.4,53.9z"/>
<path class="st0" d="M200.3,53.9H181c-5.7,0-9.8-1.2-12.3-3.5c-2.6-2.3-3.9-6-3.9-11.1V14.7h11.5v23.8c0,2.3,0.4,3.7,1.1,4.3
c0.6,0.7,2.1,1,4.4,1h7V14.7h11.6L200.3,53.9L200.3,53.9z"/>
<path class="st0" d="M244.1,41.2c0,3.7-1,6.7-3.1,9c-2.1,2.4-4.7,3.6-8,3.6h-26.1v-9.6h21.5c1.5,0,2.7-0.3,3.5-0.9
c0.6-0.4,0.9-1,0.9-2s-0.3-1.7-0.9-2.1c-0.6-0.4-1.8-0.6-3.5-0.6h-8.5c-5.2,0-8.8-0.8-10.7-2.6c-1.9-1.7-2.9-4.7-2.9-8.9
c0-4.4,1.1-7.6,3.5-9.6c2.2-2,5.6-3,10.4-3h22V24H224c-2.7,0-4.4,0.2-5.1,0.6c-0.5,0.2-0.7,0.8-0.7,1.8c0,0.9,0.2,1.5,0.6,1.9
c0.7,0.4,1.7,0.6,3,0.6h8.8c4.3,0,7.6,1,9.8,3.1C242.8,34.4,244.1,37.3,244.1,41.2z"/>
</g>
</g>
</g>
</svg>
</div> <div class="plex-svg-holder icon-seagate dynamic-icons icon-seagate svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-seagate-47" id="seagate" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
<title>seagate</title>
<path d="M15.009 30.012c-0.344-1.319-0.691-2.616-1.019-3.878 0.363-0.175 0.656-0.313 1.044-0.503 1.625-0.694 3.2-1.488 4.659-2.484 1.831-1.247 3.544-2.647 5.031-4.287 1.172-1.291 2.144-2.712 2.703-4.387 0.372-1.116 0.553-2.253 0.387-3.425-0.137-0.975-0.494-1.859-1.044-2.675-0.669-0.978-1.538-1.728-2.594-2.259-1.325-0.669-2.728-0.912-4.2-0.869-1.303 0.037-2.553 0.322-3.775 0.772-2.244 0.822-4.306 1.991-6.278 3.319-0.575 0.387-1.106 0.838-1.566 1.363-0.253 0.291-0.444 0.606-0.525 0.984-0.138 0.641 0.231 1.128 0.881 1.159 0.453 0.022 0.866-0.153 1.262-0.344 1.241-0.584 2.363-1.378 3.522-2.1 0.953-0.597 1.916-1.175 2.959-1.591 1.034-0.409 2.094-0.634 3.209-0.45 1.216 0.203 2.194 0.778 2.791 1.894 0.416 0.781 0.45 1.613 0.231 2.456-0.253 0.963-0.809 1.744-1.466 2.463-0.909 0.991-1.959 1.816-3.113 2.494-1.216 0.712-2.419 1.444-3.659 2.1-1.456 0.766-3.009 1.306-4.584 1.766-1.328 0.384-2.675 0.559-4.053 0.438-1.153-0.103-2.244-0.438-3.2-1.106-0.866-0.603-1.503-1.4-1.894-2.391-0.597-1.525-0.569-3.078-0.188-4.644 0.431-1.766 1.328-3.291 2.434-4.713 0.844-1.078 1.806-2.028 2.85-2.909 1.478-1.241 3.041-2.356 4.722-3.316 0.569-0.322 1.15-0.628 1.684-0.925 0.188 0.387 0.366 0.759 0.553 1.137-0.497 0.269-0.997 0.525-1.481 0.8-2.094 1.166-4.016 2.575-5.728 4.256-0.931 0.912-1.712 1.941-2.309 3.106-0.625 1.219-0.956 2.509-0.809 3.884 0.166 1.503 0.869 2.662 2.253 3.359 0.825 0.416 1.712 0.538 2.619 0.519 1.259-0.028 2.441-0.384 3.609-0.803 1.744-0.625 3.362-1.494 4.944-2.444 0.925-0.559 1.85-1.128 2.637-1.887 0.416-0.4 0.825-0.803 1.041-1.363 0.378-0.991-0.159-1.844-1.219-1.947-0.575-0.056-1.1 0.137-1.609 0.372-1.347 0.625-2.559 1.478-3.813 2.259-0.956 0.597-1.931 1.175-2.988 1.588-0.734 0.284-1.488 0.466-2.281 0.372-1.362-0.153-2.209-1.231-2.063-2.594 0.116-1.072 0.641-1.947 1.341-2.725 0.778-0.866 1.691-1.569 2.663-2.194 1.5-0.956 3.019-1.875 4.644-2.603 1.887-0.847 3.825-1.516 5.897-1.7 1.503-0.131 2.988-0.050 4.453 0.334 1.297 0.341 2.488 0.887 3.566 1.678 1.066 0.787 1.925 1.766 2.572 2.925 0.584 1.044 0.919 2.166 1.019 3.359 0.103 1.259-0.044 2.488-0.409 3.688-0.356 1.172-0.831 2.291-1.478 3.331-0.909 1.45-1.975 2.772-3.216 3.95-1.262 1.197-2.544 2.384-3.981 3.375-1.872 1.291-3.825 2.441-5.934 3.309-0.559 0.225-1.116 0.459-1.706 0.706v0z"></path>
</svg>
</div> <div class="plex-svg-holder icon-wd dynamic-icons icon-wd svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-wd-48" id="wd" version="1.1" xmlns="http://www.w3.org/2000/svg" width="43" height="32" viewBox="0 0 43 32">
<title>wd</title>
<path d="M40.124 3.487h-37.44c-1.475 0-2.684 1.208-2.684 2.684v19.657c0 1.475 1.208 2.684 2.684 2.684h37.437c1.475 0 2.684-1.208 2.684-2.684v-19.657c0-1.542-1.205-2.684-2.68-2.684v0zM20.8 9.258h3.822l-1.007 2.819h-3.757l0.941-2.819zM14.293 9.258h2.951l0.267 2.819h-4.763l1.545-2.819zM7.315 9.192h3.822l-0.403 2.885h-3.757l0.337-2.885zM15.567 22.405l-0.805-7.85-3.892 7.85h-5.1l1.073-9.662 3.691 0.135-0.67 4.562 2.416-4.496 5.302 0.201 0.469 4.628 1.475-4.562 3.691 0.135-3.152 9.058h-4.496zM37.37 15.833c-1.208 3.691-5.232 6.576-8.857 6.576h-7.246l3.020-9.058 4.899 0.201-1.812 5.298c0.74 0.066 0.941 0 1.475 0 2.080-0.066 3.892-1.475 4.496-3.354 0.604-1.812-0.267-3.288-2.080-3.354h-6.576l0.941-2.819h7.246c3.687-0.066 5.767 2.819 4.492 6.51v0z"></path>
</svg>
</div> <div class="plex-svg-holder icon-terramaster dynamic-icons icon-terramaster svg-icon-hidden cell" ><svg class="plexico-icon-terramaster-49" id="terramaster" class="plexico-icon-terramaster-52" version="1.1" id="terramaster-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 67 32" style="enable-background:new 0 0 67 32;" xml:space="preserve" width="300" height="143" >
<title>terramaster</title>
<g>
<path d="M3.2,9.9v2.8c0.7,0,1.4-0.1,2.1-0.2v10l1.5,0.2V12.4c0.7,0,1.3-0.1,2-0.1c0-1.1,0-1.8,0-2.9C7,9.5,5.1,9.7,3.2,9.9z" fill="#282A2D"></path>
<path d="M24.9,17.4c0.7-1.4,0.7-2.9,0.7-4.5c0-0.7,0-1.4,0-2c0-0.6,0-1.4-0.1-1.9c0-0.4-0.3-1.7-1-1.6c-0.3,0-0.5,0-0.7,0.1
c-0.7,0-1.3,0.1-2,0.2v4.2c0,1.3,0,2.6,0,4c0,1.3,0,2.7,0,4c0,1.2,0,3.1,0,4.4l1.1,0.1c0-1,0-2.6,0-3.5c0-1,0-2.4,0-3.4
c0.3,0,0.6,0,0.9,0h0c0.1,1.2,0.3,2.5,0.3,3.7c0.1,1.1,0.3,2.3,0.4,3.5l1.2,0.2c-0.2-1.2-0.3-2.4-0.4-3.6
C25.2,19.9,25,18.6,24.9,17.4z M24.5,13.5c0,0.2-0.1,0.4-0.2,0.5c0,0.1-0.1,0.1-0.2,0.1h-0.4c-0.3,0-0.6,0-0.9,0c0-0.9,0-2.5,0-3.5
c0.3,0,0.6,0,0.9,0c0.1,0,0.3,0,0.4,0c0.3,0,0.3,0.2,0.3,0.4c0,0.3,0.1,1.2,0.1,1.6C24.6,13,24.6,13.3,24.5,13.5z" fill="#282A2D"></path>
<path d="M11.3,17.4h2.8v-2.6c-0.9,0-1.9,0-2.8,0.1c0-0.8,0-2.2,0-3c1.1-0.1,2.1-0.2,3.2-0.3v-3c-1.5,0.1-3,0.3-4.6,0.5v3.2l0,0v3.5
c0,1.1,0,2.3,0,3.5v3.6l4.6,0.5v-2.9c-1.1-0.1-2.2-0.3-3.3-0.3V17.4z" fill="#282A2D"></path>
<path d="M20.1,13L20.1,13c0-0.7,0-1.4,0-1.9c0-0.7-0.1-2.7-0.9-3C19,8,18.9,8,18.8,8c-0.3,0-0.6,0-0.8,0c-0.6,0.1-1.3,0.2-2,0.3
c0,1.2,0,2.4,0,3.7v3.8c0,1.2,0,2.5,0,3.8v3.9l1.1,0.1l0-6.4h1c0.1,1.1,0.3,2.2,0.4,3.4c0.1,1,0.3,2.1,0.3,3.2l1.3,0.1
c-0.1-1-0.3-2.1-0.3-3.2c-0.1-1.1-0.3-2.3-0.4-3.4c0.4-0.8,0.6-1.5,0.6-2.4C20.1,14.4,20.1,13.7,20.1,13z M18.9,13.7L18.9,13.7
c0,0.3-0.2,0.7-0.5,0.8H18c-0.3,0-0.6,0-1,0v-3.3c0.3,0,0.6,0,1-0.1h0.5c0.2,0,0.3,0,0.3,0.3C19,12,19.1,13,18.9,13.7z" fill="#282A2D"></path>
<path d="M29.7,6.7L29.7,6.7l-0.5,0.1l-2.5,17.9l1.5,0.2l0.7-4.7l0.9,0l1,0l0.3,5l1.5,0.1L30.4,6.6L29.7,6.7z M29.7,17.2L29.7,17.2
h-0.6l0.6-4.3h0.3l0.4,4.3H29.7z" fill="#282A2D"></path>
<path d="M55.9,16.9c0.7,0,1.5,0,2.2,0v-2.2c-0.7,0-1.5-0.2-2.2-0.2v-2.7c0.9,0.1,1.8,0.2,2.7,0.3V9.2C57.3,9,56,8.9,54.8,8.7v14.6
l3.8-0.4v-3.3c-0.9,0.1-1.9,0.2-2.7,0.3V16.9z" fill="#282A2D"></path>
<path d="M63.4,15.8c0.1-0.3,0.2-0.6,0.3-0.9c0-0.4,0.1-0.8,0.1-1.3c0-0.9-0.1-2.1-0.5-2.9c-0.3-0.5-0.7-0.8-1.4-0.9l0,0h-0.2
c-0.7-0.1-1.5-0.3-2.2-0.4v13.5l1-0.1v-5.8h1.1c0,0.3,0,0.5,0.1,0.8c0.1,0.6,0.2,1.3,0.3,2c0.1,0.9,0.3,1.8,0.4,2.8l1.2-0.1
c0,0,0.1,0,0.2,0c-0.1-0.9-0.3-1.9-0.4-2.8c-0.1-1-0.3-1.9-0.4-2.9c0,0,0.2-0.1,0.2-0.2C63.2,16.3,63.3,16.1,63.4,15.8z M62.1,15
L62.1,15c-0.1,0-0.3,0-0.4,0c-0.3,0-0.7,0-1,0v-2.6c0.3,0,0.6,0.1,1,0.1h0.3C63,12.5,62.9,15,62.1,15z" fill="#282A2D"></path>
<polygon points="54.1,8.7 54.1,8.7 54.1,8.7 "></polygon>
<path d="M54.1,8.7c-1.2-0.2-2.3-0.3-3.5-0.5c0,1.2,0,1.7-0.1,3c0.3,0,0.7,0.1,1,0.1v12.4l1-0.1V11.5c0.5,0,1,0.1,1.5,0.2
C54.1,10.6,54,9.9,54.1,8.7z" fill="#282A2D"></path>
<path d="M45.3,15.8L45.3,15.8c-0.2-1.4-0.3-2.8-0.5-4.2l-0.4-4.2c-0.1,0-0.3,0-0.4,0c-0.1,0-0.3,0-0.5,0c-0.1,1.5-0.3,2.9-0.4,4.4
c-0.1,1.5-0.3,2.9-0.4,4.4c-0.1,1.4-0.3,2.9-0.4,4.3c-0.1,1.4-0.3,2.8-0.4,4.3l1.1-0.1c0.1-1.5,0.2-3.1,0.3-4.6c0.3,0,0.5,0,0.7,0
c0.3,0,0.4,0,0.7,0c0.1,1.5,0.3,3,0.4,4.5l1.1-0.1c-0.1-1.4-0.3-2.8-0.4-4.2C45.6,18.6,45.5,17.2,45.3,15.8z M44,17.1L44,17.1h-0.5
c0.1-1.3,0.3-2.6,0.3-4h0.2c0.1,1.3,0.2,2.6,0.4,4H44z" fill="#282A2D"></path>
<path d="M40.4,15.9L40.4,15.9c-0.1-1.5-0.2-2.9-0.3-4.4C40,9.9,39.9,8.5,39.8,7c-0.3,0-0.7-0.1-1.1-0.1c-0.1,1.1-0.3,2.3-0.3,3.5
c-0.1,1.1-0.3,2.3-0.4,3.5h-0.3c-0.1-1.2-0.3-2.4-0.3-3.6c-0.1-1.2-0.3-2.4-0.3-3.6c-0.3,0-0.6-0.1-0.9-0.1C36,7.1,36,7.5,35.9,8
c0,0.5-0.1,1-0.1,1.5c-0.1,0.8-0.1,1.7-0.3,2.7c-0.1,1-0.2,2.1-0.3,3.3c-0.1,1.3-0.2,2.7-0.3,4.2c-0.1,0.8-0.1,1.6-0.2,2.5
c-0.1,0.9-0.1,2.1-0.2,3.1h0l1.4-0.1c0-0.8,0.1-1.7,0.1-2.5c0-0.9,0.1-1.7,0.1-2.6c0-0.8,0.1-1.7,0.1-2.6c0-0.8,0.1-1.7,0.1-2.5
h0.3c0,0.8,0,1.6,0.1,2.5s0,1.7,0.1,2.5c0,0.8,0.1,1.7,0.1,2.5c0,0.8,0.1,1.7,0.1,2.5l1-0.1c0-0.8,0-1.6,0.1-2.5
c0-0.8,0-1.6,0.1-2.5c0-0.8,0.1-1.7,0.1-2.5c0-0.8,0.1-1.7,0.2-2.5h0.3c0,0.8,0.1,1.7,0.1,2.5c0,0.8,0,1.7,0.1,2.5
c0,0.8,0,1.7,0.1,2.5c0,0.8,0,1.6,0.1,2.4l1.5-0.1c-0.1-1.5-0.2-2.9-0.3-4.4C40.6,18.9,40.5,17.4,40.4,15.9z" fill="#282A2D"></path>
<path d="M48.1,11.7L48.1,11.7c0.1,0,0.3,0,0.4,0.1c0.1,0.1,0.1,0.3,0.2,0.4c0.1,0.2,0.1,0.4,0.1,0.6c0,0.1,0,0.3,0,0.5
c0.3,0,0.6,0,0.9,0c0-0.2,0-0.4,0-0.6c0-0.4,0-0.9-0.1-1.5c0-0.5-0.1-1-0.3-1.5c-0.1-0.4-0.2-0.8-0.3-1c-0.1-0.2-0.3-0.4-0.4-0.5
s-0.3-0.2-0.4-0.2c-0.3,0-0.4,0.1-0.7,0.4c-0.2,0.3-0.3,0.7-0.4,1.2s-0.1,1-0.2,1.5c0,0.5,0,1,0,1.7c0,0.6,0,1.3,0.1,1.9
c0,0.6,0.2,1.1,0.3,1.5c0.1,0.4,0.2,0.6,0.3,0.7c0.1,0.1,0.2,0.3,0.3,0.4c0.1,0.1,0.3,0.2,0.5,0.4c0.1,0.2,0.3,0.3,0.3,0.6
c0,0.2,0.1,0.4,0.1,0.7c0,0.3,0,0.5-0.1,0.7c0,0.2-0.1,0.3-0.2,0.4c-0.1,0-0.1,0.1-0.3,0.1c-0.1,0-0.2,0-0.3,0
c-0.1,0-0.1-0.1-0.3-0.3c0-0.1-0.1-0.3-0.1-0.5c0-0.2,0-0.4,0-0.7v-0.5c-0.3-0.1-0.6-0.1-0.8-0.1c0,0.3,0,0.6,0,0.9
c0,0.7,0,1.4,0.1,2c0,0.6,0.1,1.2,0.3,1.5c0,0.4,0.1,0.7,0.3,0.9c0.3,0.5,1,0.5,1.3,0.1c0.2-0.1,0.3-0.3,0.4-0.6
c0.1-0.3,0.2-0.7,0.3-1.2c0-0.5,0.1-1,0.1-1.7c0-0.4,0-0.9,0-1.4c0-0.5,0-0.9,0-1.3c0-0.4-0.1-0.8-0.1-1.1c0-0.4-0.2-0.7-0.3-1
c-0.1-0.3-0.2-0.5-0.3-0.6c-0.2-0.1-0.3-0.3-0.4-0.4c-0.2-0.1-0.3-0.3-0.4-0.3c-0.1-0.1-0.2-0.2-0.2-0.4c0-0.2-0.1-0.4-0.1-0.6
c0-0.2,0-0.5,0-0.7C47.8,11.8,47.9,11.7,48.1,11.7z" fill="#282A2D"></path>
<path d="M65.5,6.5L65.5,6.5c-0.7-0.6-1.7-1-2.9-1.2L38.8,0.5C37.1,0.2,35.3,0,33.5,0c-0.8,0-1.6,0-2.4,0.1c-0.5,0-1,0.1-1.4,0.2
c-0.5,0-1,0.1-1.5,0.3L4.4,5.2C3.2,5.5,2.2,5.8,1.5,6.5C0.7,7.1,0.3,8.1,0.3,9.6v12.8c0,1.5,0.4,2.5,1.1,3.2
c0.7,0.6,1.7,0.9,2.9,1.2h0l23.8,4.7c1.7,0.4,3.5,0.5,5.3,0.5c0.7,0,1.5,0,2.3-0.1c0.5,0,1-0.1,1.5-0.2c0.5,0,1-0.1,1.5-0.2
l23.8-4.7c1.2-0.3,2.2-0.5,2.9-1.2c0.7-0.7,1.1-1.6,1.1-3.2V9.6C66.7,8.1,66.3,7.1,65.5,6.5z M65.4,22.4L65.4,22.4
c0,1.1-0.3,1.8-0.8,2.2c-0.5,0.4-1.3,0.7-2.3,0.9l-23.8,4.7c-0.4,0.1-1,0.2-1.4,0.3c-0.5,0-1,0.1-1.4,0.1c-0.7,0-1.4,0.1-2.2,0.1
c-1.7,0-3.4-0.1-5.1-0.5L4.6,25.5c-1-0.2-1.8-0.4-2.3-0.9c-0.5-0.4-0.7-1.1-0.7-2.2V9.6c0-1.1,0.3-1.8,0.7-2.2
c0.5-0.4,1.3-0.7,2.3-0.9l23.8-4.7c0.4-0.1,0.9-0.2,1.4-0.3c0.5-0.1,1-0.1,1.4-0.2c0.7,0,1.5-0.1,2.2-0.1c1.7,0,3.4,0.2,5,0.5
l23.8,4.7c1,0.2,1.8,0.4,2.3,0.9c0.5,0.4,0.8,1.1,0.8,2.2V22.4z" fill="#282A2D"></path>
</g>
</svg></div> <div class="plex-svg-holder icon-docker dynamic-icons icon-docker svg-icon-hidden cell" ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-docker-50" id="docker" version="1.1" xmlns="http://www.w3.org/2000/svg" width="91" height="32" viewBox="0 0 91 32">
<title>docker</title>
<path d="M72.655 7.935c-1.903-1.098-4.435-1.249-6.595-0.614-0.266-2.293-1.773-4.305-3.564-5.745l-0.711-0.572-0.596 0.69c-1.201 1.389-1.558 3.697-1.395 5.47 0.121 1.304 0.529 2.626 1.331 3.673-0.608 0.366-1.301 0.656-1.921 0.868-1.255 0.427-2.623 0.662-3.948 0.662h-2.874v-5.808h-9.088v-5.697l-20.435 0.036-0.024 5.657v5.808h-4.861l-0.079 0.859c-0.266 2.868 0.127 5.739 1.313 8.359l0.511 1.038 0.058 0.097c0.475 0.808 1.001 1.552 1.567 2.233 2.205-0.070 4.613-0.275 6.583-0.762 1.425-0.354 1.991-0.705 1.997-0.708 0.548-0.427 1.334-0.33 1.764 0.218 0.427 0.548 0.33 1.334-0.218 1.764-0.194 0.151-0.977 0.681-2.938 1.168-1.34 0.333-2.922 0.569-4.731 0.711 3.403 2.662 7.748 3.842 12.349 3.842 12.987 0 23.7-5.802 28.619-18.055 3.288 0.172 6.652-0.802 8.259-3.939l0.411-0.802-0.784-0.451zM35.36 24.065c-0.929 0-1.682-0.753-1.682-1.682s0.753-1.682 1.682-1.682c0.929 0 1.682 0.753 1.682 1.682s-0.753 1.682-1.682 1.682zM39.871 12.394h-14.040v-8.649h14.040v8.649zM49.164 12.33h-5.869v-2.953h5.869v2.953z"></path>
</svg>
</div> <div class="plex-svg-holder icon-freenas dynamic-icons icon-freenas svg-icon-hidden cell" >
<!-- Generator: Adobe Illustrator 24.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-freenas-51" version="1.1" id="freenas" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 114.6 73.8" style="enable-background:new 0 0 114.6 73.8;" xml:space="preserve">
<g>
<path d="M31.5,18.7c0.5-2.8,1.7-5.4,2.5-8c0.9-2.9,0.5-6.1-1.5-8.7C32.3,1.6,31.9,1.4,32,1c0.2-0.5,0.7-0.3,1.1-0.3
c5.1-0.4,9.7,1.1,13.8,4.2c0.8,0.6,1.4,0.7,2.4,0.3C55.6,2.5,62.4,1,69.3,0c0.9-0.1,1.3,0.1,1.1,1.2c-0.7,3.2-1.7,6.3-3.1,9.3
c-0.3,0.6-0.7,0.8-1.3,0.9c-2.3,0.4-4.6,0.9-7,1.5c1.6,0.4,3.2,0.7,4.8,1.1c1.4,0.3,1.4,0.4,0.6,1.5c-0.6,0.8-1.1,1.5-1.7,2.3
c-0.8,1.1-0.7,1.3,0.6,1.6c1.8,0.5,3.7,0.5,5.6,0.3c1.2-0.2,2,0,2.5,1.1c0.4,0.9,0.9,1,1.3,0c0.4-0.9,1-1.3,2-1.4
c3-0.4,5.6-1.7,7.6-3.9c0.2-0.2,0.4-0.6,0.7-0.5c0.4,0.1,0.3,0.6,0.3,0.9c-0.2,5.3-2.8,8.9-7.6,11c-0.8,0.3-1.3,0.8-1.6,1.6
C71,36,65.3,40.6,57.2,42.1c-0.2,0-0.4,0.1-0.6,0.2c-2,0-4,0-6,0c-4.1-0.7-7.9-2.2-11.1-5c-1-0.9-1.5-0.7-2.3,0.1
c-1,1-2.1,2-3.4,2.8c-0.3-0.6,0.1-1,0.2-1.4c0.6-1.3,1.3-2.6,1.9-3.8c0.2-0.4,0.4-0.8,0-1.3c-2.5-3.3-4-6.9-4.6-11
C31.5,21.4,31.5,20,31.5,18.7z M62.5,33.6c2.6-0.2,4.7-1.4,6-3.9c0.9-1.9,0.8-2.1-1.2-2.4c-0.2,0-0.4-0.1-0.6-0.1
c-2.8-0.7-5-2.3-6.8-4.4c-0.6-0.7-1-0.7-1.4,0.1c-0.7,1.1-1.4,2.2-1.8,3.5c-1,3,0,5.4,2.9,6.7C60.4,33.4,61.4,33.6,62.5,33.6z"/>
<g>
<path d="M63.2,55.2c0,0.4,0,0.8,0,1.3c0,5.2,0,10.5,0,15.7c0,1.1-0.3,1.5-1.4,1.5c-0.8,0-1.2-0.4-1.1-1.2c0-0.2,0-0.3,0-0.5
c0-6.9,0-13.8,0-20.8c0-0.6-0.4-1.4,0.6-1.6c0.9-0.1,1.9-0.4,2.6,0.9c2.9,5.6,5.9,11.1,8.9,16.6c0.1,0.2,0.3,0.5,0.5,0.8
c0.3-0.5,0.2-0.9,0.2-1.3c0-5.2,0-10.4,0-15.6c0-0.9,0.2-1.5,1.3-1.5c1.1,0,1.4,0.4,1.4,1.4c0,4,0,8,0,12c0,3,0,6,0,8.9
c0,0.6,0.3,1.4-0.6,1.6c-0.9,0.1-2,0.4-2.6-0.8c-1.9-3.6-3.8-7.2-5.7-10.7c-1.2-2.3-2.5-4.6-3.7-6.9
C63.4,55.2,63.3,55.2,63.2,55.2z"/>
<path d="M88.2,49.7c0.9-0.1,1.5,0.1,1.7,1c2.2,7.2,4.5,14.3,6.8,21.5c0.1,0.4,0.7,1.2-0.2,1.3c-0.8,0.1-1.8,0.6-2.2-0.7
c-0.6-1.7-1.1-3.5-1.6-5.2c-0.2-0.9-0.7-1.2-1.6-1.2c-1.9,0.1-3.8,0-5.6,0c-0.8,0-1.2,0.3-1.4,1.1c-0.5,1.8-1.1,3.5-1.6,5.2
c-0.3,0.8-1.8,1.3-2.5,0.8c-0.5-0.4-0.2-0.8,0-1.2c0.9-3,1.9-5.9,2.8-8.9c1.3-4.2,2.7-8.3,4-12.5C86.8,50.1,87.2,49.4,88.2,49.7z
M88.3,53.6c-1.1,3.5-2.1,6.7-3.1,9.8c-0.2,0.5,0,0.8,0.6,0.8c1.6,0,3.3,0,4.9,0c0.6,0,0.8-0.3,0.6-0.8
C90.3,60.3,89.3,57.1,88.3,53.6z"/>
<path d="M108.5,49.7c1.2,0,2.4,0,3.6,0c0.8,0,1.3,0.2,1.3,1.1c0,0.9-0.5,1.1-1.3,1.1c-2.2,0-4.5,0-6.7,0c-1.6,0-2.7,0.9-3.2,2.4
c-0.4,1.3,0,2.8,1.2,3.7c0.5,0.4,1.1,0.5,1.8,0.7c1.3,0.3,2.6,0.5,3.9,0.8c3.7,0.8,6,4,5.6,7.9c-0.3,3.5-3.4,6.2-7,6.3
c-2.1,0-4.2,0-6.4,0c-0.8,0-1.1-0.3-1.1-1.1c0-0.8,0.4-1.1,1.2-1.1c2,0,4,0,6,0c2.5,0,4.6-2,4.8-4.4c0.2-2.7-1.3-4.8-3.9-5.3
c-1.5-0.3-3-0.6-4.4-1c-2.8-0.7-4.7-3.3-4.3-6c0.4-3,2.6-5,5.6-5C106.2,49.7,107.3,49.7,108.5,49.7z"/>
<path d="M44.8,64.1c0-1.2-0.1-2.4,0-3.6c0.3-2.4,2.2-3.9,4.6-4c1.1,0,2.2,0,3.4,0c2.4,0.1,4.2,1.7,4.6,4c0.3,2-1.1,4.2-3.2,4.9
c-1.8,0.6-3.7,1-5.6,1.4c-1.3,0.3-1.5,0.7-1,2c0.5,1.5,1.8,2.5,3.5,2.6c1.5,0,3,0,4.4,0c0.8,0,1.2,0.2,1.2,1.1
c0,0.9-0.4,1.2-1.2,1.2c-1.3,0-2.6,0-3.8,0c-4.1,0-6.8-2.7-7-6.8C44.7,66,44.7,65.1,44.8,64.1C44.7,64.1,44.7,64.1,44.8,64.1z
M51.1,58.8C51.1,58.8,51.1,58.8,51.1,58.8c-0.4,0-0.8,0-1.2,0c-1.8,0-2.5,0.8-2.6,2.5c0,0.8,0,1.7,0,2.5c0,0.7,0.3,0.9,1,0.7
c1.6-0.4,3.3-0.8,4.9-1.2c1.2-0.4,1.7-1.4,1.5-2.7c-0.2-1.1-1-1.8-2.2-1.8C52.1,58.8,51.6,58.8,51.1,58.8z"/>
<path d="M0,61.7c0-3.5,0-7.1,0-10.6c0-1,0.3-1.4,1.4-1.4c3.5,0.1,7,0,10.4,0c0.8,0,1.3,0.2,1.3,1.1c0,0.9-0.5,1.1-1.3,1.1
c-2.6,0-5.2,0-7.8,0c-1,0-1.4,0.3-1.4,1.3c0.1,1.2,0.1,2.4,0,3.6c0,1,0.4,1.3,1.4,1.3c2-0.1,3.9,0,5.9,0c0.8,0,1.3,0.1,1.3,1.1
c0,1-0.5,1.2-1.3,1.2c-2,0-3.9,0-5.9,0c-1,0-1.3,0.4-1.3,1.3c0,3.5,0,7.1,0,10.6c0,1-0.3,1.5-1.4,1.5c-1,0-1.2-0.4-1.2-1.3
C0,68.8,0,65.2,0,61.7z"/>
<path d="M28.6,64.2c0-1,0-2,0-3c0.1-2.7,2-4.5,4.7-4.6c1.1,0,2.2,0,3.2,0c2.5,0.1,4.3,1.6,4.7,3.9c0.3,2.2-1.1,4.3-3.4,5
c-1.8,0.5-3.7,1-5.6,1.4c-1,0.2-1.2,0.6-0.9,1.5c0.4,1.7,1.8,3,3.6,3c1.5,0.1,3,0,4.6,0c0.9,0,1.2,0.4,1.2,1.2c0,0.9-0.5,1-1.2,1
c-1.4,0-2.8,0-4.2,0c-3.6-0.1-6.5-2.8-6.6-6.4C28.5,66.2,28.6,65.2,28.6,64.2z M31.1,62.5c0,0.5,0,1,0,1.4c0,0.6,0.3,0.8,0.8,0.7
c1.8-0.4,3.6-0.8,5.3-1.4c1.1-0.4,1.6-1.4,1.3-2.6c-0.2-1.1-0.9-1.8-2.1-1.8c-1,0-2.1,0-3.1,0c-1.2,0-1.8,0.6-2.2,1.7
C31.1,61.2,31.1,61.9,31.1,62.5z"/>
<path d="M18.6,57.8c1.7-1.3,3.7-1.3,5.7-1.3c0.7,0,1.1,0.3,1.1,1c0,0.8-0.2,1.2-1.1,1.2c-0.5,0-1,0-1.4,0
c-2.6,0.1-4.2,1.6-4.2,4.2c0,3.1,0,6.1,0,9.2c0,1.4-0.2,1.6-1.6,1.5c-0.7,0-0.9-0.3-0.9-1c0-4.7,0-9.3,0-14c0-1.1,1.1-1.6,1.8-2.3
c0.2-0.2,0.4,0.1,0.4,0.4C18.4,57.1,18.2,57.5,18.6,57.8z"/>
</g>
</g>
</svg>
</div> <div class="plex-svg-holder icon-raspberry-pi dynamic-icons icon-raspberry-pi svg-icon-hidden cell" ><svg class="plexico-icon-raspberry-pi-52" id="raspberry-pi" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" fill="#000000" width="800" height="800" viewBox="0 0 24 24" role="img"><title>Raspberry Pi icon</title><path d="M16.111 17.338c-.857.989-1.334 2.79-.709 3.371.596.449 2.201.391 3.385-1.23.86-1.08.569-2.893.081-3.372-.73-.555-1.778.164-2.757 1.243v-.012zm-8.057.3c-.908-1.04-2.088-1.658-2.851-1.199-.51.382-.605 1.685.123 2.967 1.078 1.524 2.596 1.679 3.221 1.307.659-.488.3-2.137-.493-3.075zm4.105 3.145c-1.103-.026-2.798.439-2.776 1.032-.018.403 1.331 1.572 2.705 1.513 1.326.03 2.699-1.139 2.682-1.649-.004-.523-1.498-.927-2.607-.884l-.004-.012zm-.075-13.944c-1.275-.032-2.502.933-2.502 1.493-.004.68 1.008 1.376 2.51 1.394 1.543.01 2.518-.559 2.532-1.26.016-.794-1.394-1.639-2.518-1.627h-.022zm-3.071.532c-2.135-.345-3.913.9-3.842 3.192.07.884 4.63-3.041 3.843-3.177l-.001-.015zm9.749 3.251c.071-2.277-1.709-3.521-3.844-3.176-.787.135 3.772 4.061 3.844 3.176zm.364.824c-1.239-.329-.42 5.049.588 4.615 1.109-.869 1.466-3.446-.588-4.6v-.015zM4.228 16.121c1.007.45 1.827-4.929.589-4.6-2.053 1.153-1.698 3.73-.589 4.615v-.015zm9.415-5.948c-1.146.75-1.354 2.428-.461 3.746.891 1.318 2.543 1.813 3.691 1.078 1.146-.733 1.353-2.412.462-3.746-.892-1.333-2.545-1.813-3.692-1.063v-.015zm-3.096.135c-1.146-.734-2.799-.254-3.689 1.064-.892 1.334-.686 3.012.461 3.761s2.799.269 3.691-1.064c.885-1.318.675-2.997-.465-3.745l.002-.016zm4.369 7.162c-.009-1.393-1.252-2.518-2.781-2.502-1.527.016-2.761 1.139-2.754 2.532v.029c.01 1.394 1.254 2.517 2.783 2.502 1.527 0 2.756-1.138 2.742-2.517v-.029l.01-.015zm3.209-15.133c-2.307 1.184-3.652 2.128-4.389 2.938.377 1.498 2.344 1.558 3.063 1.512-.147-.06-.271-.149-.315-.269.18-.12.821-.016 1.268-.255-.171-.03-.252-.061-.329-.195.419-.135.875-.24 1.141-.465-.143 0-.278.03-.467-.09.377-.194.778-.359 1.095-.658-.196 0-.406 0-.466-.075.346-.21.635-.435.877-.704-.272.045-.39.016-.454-.03.261-.255.593-.479.749-.81-.203.076-.391.09-.522 0 .091-.194.47-.314.69-.779-.215.03-.441.046-.486 0 .098-.389.269-.613.435-.854-.457 0-1.15 0-1.117-.029l.283-.285c-.448-.12-.904.015-1.236.12-.149-.105 0-.255.185-.405-.39.061-.733.135-1.034.256-.164-.15.105-.285.24-.436-.599.12-.839.27-1.094.42-.18-.165-.015-.314.104-.449-.449.164-.674.374-.914.568-.09-.104-.209-.179-.06-.449-.314.18-.554.39-.734.629-.194-.134-.119-.299-.119-.449-.33.27-.54.54-.794.811-.061-.031-.105-.15-.135-.346-.779.75-1.889 2.623-.285 3.356 1.349-1.094 2.981-1.903 4.779-2.503l.041-.075zm-12.259 0c1.798.6 3.419 1.408 4.777 2.518 1.596-.75.493-2.623-.282-3.356-.041.194-.085.329-.135.359-.255-.27-.462-.54-.788-.81 0 .15.077.33-.117.45-.175-.239-.41-.45-.725-.63.149.256.025.33-.056.449-.24-.225-.465-.434-.899-.599.12.149.3.3.12.465-.239-.149-.494-.3-1.078-.42.135.149.404.3.238.45-.315-.122-.66-.212-1.035-.258.181.15.342.289.192.405-.345-.12-.806-.255-1.255-.135l.284.284c.03.037-.659.03-1.121.035.165.225.337.449.435.854-.045.045-.27.016-.483 0 .225.449.599.57.688.765-.135.096-.314.075-.523 0 .164.314.494.539.748.81-.074.044-.18.074-.464.037.239.26.524.494.869.704-.06.07-.271.069-.479.075.314.304.719.464 1.094.663-.195.136-.33.105-.465.105.255.225.72.329 1.139.464-.09.135-.164.165-.344.195.449.254 1.078.135 1.258.27-.045.119-.164.209-.314.27.719.045 2.697-.015 3.072-1.514-.736-.807-2.084-1.752-4.391-2.921l.04.016zM7.6.103c.236-.007.436.135.652.201.529-.17.65.063.91.159.577-.12.752.141 1.029.419l.322-.009c.869.507 1.305 1.536 1.457 2.065.152-.529.584-1.559 1.457-2.065l.321.007c.277-.283.453-.539 1.029-.418.261-.105.38-.33.911-.166.33-.104.62-.375 1.057-.045.368-.149.726-.195 1.045.09.495-.06.653.061.774.21.108 0 .809-.104 1.132.36.81-.09 1.064.464.774.988.165.255.337.494-.05.975.15.269.062.553-.27.913.091.374-.074.63-.374.839.06.51-.48.81-.629.914-.061.3-.181.584-.795.734-.089.449-.464.523-.824.614 1.185.675 2.188 1.558 2.188 3.731l.181.299c1.349.809 2.562 3.402.674 5.514-.119.659-.329 1.124-.511 1.648-.269 2.113-2.082 3.101-2.561 3.221-.689.525-1.438 1.02-2.442 1.363-.942.961-1.976 1.336-2.994 1.336h-.092c-1.033 0-2.063-.375-3.012-1.335-1.007-.344-1.754-.838-2.447-1.363-.479-.12-2.283-1.107-2.562-3.221-.187-.524-.394-1.004-.518-1.662-1.894-2.113-.681-4.705.666-5.515l.172-.3c0-2.172 1.005-3.057 2.188-3.73-.359-.09-.72-.165-.823-.615-.615-.15-.735-.434-.795-.734-.15-.105-.689-.404-.629-.928-.3-.211-.465-.465-.375-.854-.314-.346-.404-.645-.27-.915-.39-.479-.209-.733-.045-.974C3.236 1.329 3.491.76 4.3.85 4.614.385 5.32.491 5.423.491c.121-.15.285-.285.779-.225.314-.285.675-.24 1.049-.102.151-.12.286-.164.406-.164L7.6.103z"/></svg></div></div>
<div class="remodal remodal-terms text-left" data-remodal-id="remodal-terms">
<div class="remodal-close close-right" data-remodal-action="close">
<i class="icomoon icon-close"></i>
</div>
<div class="grid-x">
<div class="cell large-12 content">
<h2>Terms of Service</h2>
<p>Revised March 19, 2025</p>
<p><span style="font-weight: 400;">By using or otherwise accessing the Plex website, a Plex software, mobile, or web application(s), or any related Plex service(s) (collectively, the “Plex Solution”), you accept and agree to the following Terms of Service (this “TOS”). Plex GmbH and its affiliates, including Plex, Inc., a Delaware company, (together, “Plex”) is willing to license and permit use of the Plex Solution subject at all times to agreement with this TOS. If you do not agree to this TOS, do not use the Plex Solution.</span></p>
<ol>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">LICENSE.</span></li>
</ol>
<p><i><span style="font-weight: 400;">Overview</span></i><span style="font-weight: 400;">. For more information regarding the currently available Plex Solution, please click </span><a href="https://www.plex.tv/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">. The Plex Solution is provided pursuant to this TOS to individual persons (and not entities) residing in the countries or regions where Plex makes available its products and services.</span></p>
<p><i><span style="font-weight: 400;">General Plex Solution Grant</span></i><span style="font-weight: 400;">. The Plex Solution is made available by Plex, and this TOS provides to you (identified herein as “you” or a “user” or with “your” (as further described below)) a personal (non-commercial), revocable, limited, non-exclusive, nontransferable, and non-sublicensable license to access and use the Plex Solution (by you and your Authorized Users (as defined below)) conditioned on your continued compliance with this TOS. You may print and download Plex materials and information from the Plex Solution solely for your personal use, provided that all hard copies contain all copyright and other applicable notices contained in (or that are required to be displayed with) such materials and information and that you (or your Authorized User(s)) do not further distribute or disclose such materials and information. The content layout, formatting, and features (or functionality) of and online or remote access processes for the Plex Solution shall be as made available by Plex in its sole discretion. You also acknowledge and agree to the following: (i) Plex has the right to control and direct the means, manner, and method by which the Plex Solution is provided; (ii) Plex may, from time to time, engage independent contractors, consultants, or subcontractors to aid Plex in providing the Plex Solution or use thereof; and (iii) Plex has the right to provide the Plex Solution to others.</span></p>
<p><i><span style="font-weight: 400;">Additional License Restrictions</span></i><span style="font-weight: 400;">. When using the Plex Solution in accordance with the foregoing license, you shall not directly or indirectly (a) use the Plex Solution to create any service, software or documentation that performs substantially the same functionality as the Plex Solution, (b) disassemble, decompile, reverse-engineer, or use any other means to attempt to discover any source code, algorithms, trade secrets, or applications underlying the Plex Solution or any of its tools, content, or features, (c) encumber, sublicense, transfer, distribute, rent, lease, time-share, or use the Plex Solution in any service bureau arrangement or otherwise for the benefit of any third party, (d) adapt, combine, create derivative works of, or otherwise modify the Plex Solution, (e) disable, circumvent, or otherwise avoid or undermine any security device, mechanism, protocol, or procedure implemented in the Plex Solution, (f) use or access the Plex Solution for any unlawful, fraudulent, deceptive, tortious, malicious, or otherwise harmful or injurious purpose, (g) remove, obscure, deface, or alter any proprietary rights notices on any element of the Plex Solution or accompanying documentation, or (h) use the Plex Solution in any manner which could damage, disable, overburden, or impair the Plex Solution or interfere with any third party’s authorized use of the Plex Solution.</span></p>
<p><i><span style="font-weight: 400;">PMS Software Download(s)</span></i><span style="font-weight: 400;">. Plex may make downloadable software or a mobile application(s) available through or as a part of the Plex Solution for use in connection with your personal media management (“PMS Software”). The right to use the PMS Software is provided as a part of the grant (above) to use the Plex Solution in accordance with this TOS and subject to the following additional obligations. You may only use the PMS Software: (i) on a device or hardware that you own; (ii) to add Content (defined below) to that PMS Software; and (iii) and as a part of your use of the Plex Solution or other Plex service. You hereby acknowledge that the PMS Software may include or allow integration with certain third-party executable modules that may be subject to additional license terms and conditions. References to the Plex Solution herein shall include the PMS Software and any integrated third-party executable module(s) that you utilize.</span></p>
<p><i><span style="font-weight: 400;">Interfacing Software. “Interfacing Software”</span></i><span style="font-weight: 400;"> means any software that you obtain or provide and that accesses or calls any PMS Software provided by Plex as part of the Plex Solution including, but not limited to, plug-ins for the Plex Solution, channel plug-ins, metadata agents, and client applications that communicate directly or indirectly with the Plex Solution. You are responsible and liable for any Interfacing Software, including any data collection that may be undertaken or occur through the Interfacing Software. Plex encourages the implementation and adherence of data collection and use practices substantially similar to those articulated in the privacy policy of Plex (identified below). By making, or assisting others in making, available any Interfacing Software, you hereby grant Plex a worldwide, non-exclusive, and royalty-free right and license to use (including testing, hosting, and linking to), copy, publicly perform, publicly display (including screenshots), reproduce in copies for distribution, market or promote (as a part of the Plex Solution or other services of Plex), and distribute the copies of any Interfacing Software (or its associated name). In connection therewith, you hereby agree to provide and include (or link to) a privacy notice summarizing practices consistent with the privacy policy of Plex noted below and include in the source code of the Interfacing Software a copyright notice of the form: Copyright © <year> <copyright holders>. Any data collection by Plex shall be in a manner consistent with Plex’s privacy policy (noted below). Subject to the inclusion by Plex of this notice (if first provided to Plex by you), you grant, and authorize Plex to grant on your behalf, if necessary, a license, free of charge, to any person obtaining a copy of the Interfacing Software and associated documentation files from Plex, to deal in the Interfacing Software without restriction, including, without limitation, the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Interfacing Software, and to permit persons to whom the Interfacing Software is furnished to do so. You represent and warrant that you have all rights necessary to make the foregoing grants, and you further agree that you will use and integrate the Interfacing Software in a manner consistent with acceptable use of the Plex Solution pursuant to this TOS. You may notify us (please click </span><a href="https://www.plex.tv/contact/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">) if you do not wish for Plex to use the Interfacing Software that was created by and is owned by you. Any such notification must include all requested information and representations (as indicated by Plex). Plex will comply with such a proper request and cease its own use of the Interfacing Software, but Plex must be granted a transition period of at least thirty (30) days after receipt of the request to comply. Plex, however, shall not be obligated to confirm removal or cessation of the Interfacing Software by you or others (including Authorized Users) outside its control.</span></p>
<p><i><span style="font-weight: 400;">Content Available Through the Plex Solution.</span></i><span style="font-weight: 400;"> In connection with the foregoing grant to use the Plex Solution, the Plex Solution allows you to view or otherwise access original Plex or third party Content. “Content” includes, but is not limited to, text, graphics, photos, sounds, audio, and videos in the form of, by way of example and not limitation, news reports, videos, and music. The availability of such Content may change and not all Content is available in all formats. Use of the Content is subject to the license grant for the Plex Solution, but in addition, shall remain non-transferable and may be subject to additional license grant terms set by the respective third party licensor(s). Third-party Content displayed or accessible through the Plex Solution is protected by copyright and other intellectual property law and belongs to the respective owner(s) or licensor(s). This TOS does not grant you the right to copy (further), distribute, prepare derivative works, publicly display, or otherwise use any Content. You are expressly prohibited from engaging in or facilitating the unauthorized sharing or distribution of Content. For that reason, Content available on your PMS Software must be on storage that you own.</span></p>
<p><i><span style="font-weight: 400;">Plex Solution Updates.</span></i><span style="font-weight: 400;"> Plex may, but is not obligated to, update the Plex Solution with updates, upgrades, enhancements, improvements, additions, new or incremental features or functionality of and generally made available through the Plex Solution (as determined by Plex in its sole discretion), or modifications that are provided as part of product support and any other support or maintenance services that Plex provides as part of or otherwise in connection with the Plex Solution (collectively, “Plex Solution Updates”). In some instances, you may be required to consent to or to agree to use and implement an applicable Plex Solution Update in a timely manner, including, without limitation, as a means to protect the Plex Solution from unauthorized use, content, or data. If you decline a Plex Solution Update, you may not be able to use or access the Plex Solution (in whole or in part), and Plex shall have no responsibility or liability for any continued use. Unless otherwise indicated, references to the Plex Solution include any Plex Solution Updates.</span></p>
<p><i><span style="font-weight: 400;">Support.</span></i><span style="font-weight: 400;"> This TOS does not entitle you to any support or installation service (collectively, “Support”). Any such Support that may be made available by Plex, in its sole discretion, shall be subject to separate terms and conditions with Plex.</span></p>
<p><i><span style="font-weight: 400;">Authorized User(s).</span></i><span style="font-weight: 400;"> Subject to any third party license restrictions for applicable Content, you may enable members of your immediate family, for whom you will be responsible (each, an “Authorized User(s)”), to access and use the Plex Solution so long as all such use remains in compliance with this TOS. Nevertheless, you acknowledge and agree that you shall be responsible for monitoring your own and your Authorized User(s)’s use of the Plex Solution and for maintaining compliance with this TOS and any third party license restrictions for applicable Content. Any breach of this TOS by an Authorized User(s) shall constitute a breach by you. Unless otherwise indicated, references to “you” or “your” throughout this TOS therefore mean you, your Authorized User(s), and the person or entity named on your account with Plex.</span></p>
<p><i><span style="font-weight: 400;">Restrictions.</span></i><span style="font-weight: 400;"> This TOS is only a license and not an assignment or sale. Plex transfers no ownership or intellectual property interest or title in and to the Plex Solution to you or anyone else. Plex expressly prohibits you and any third parties from: (i) selling or purchasing access to the Plex Solution or to any other service that makes improper and unauthorized use of the Plex Solution in violation of these TOS; (ii) distributing all or part of the Plex Solution; (iii) replicating any exclusive Plex Pass functionality as described </span><a href="https://www.plex.tv/plex-pass/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">; or (iv) obtaining Plex Pass functionality without a valid Plex Pass. Further, Plex reserves all rights not expressly granted by this TOS. Accordingly, you may not modify, translate, decompile, create derivative work(s) of, copy, distribute, disassemble, broadcast, transmit, publish, remove or alter any proprietary notices or labels, license, sublicense (other than to an Authorized User(s)), transfer, sell, mirror, frame, exploit, rent, lease, private label, grant a security interest in, or otherwise use in any manner not expressly permitted herein (or by Plex) the Plex Solution. In particular, and without limitation of the foregoing, there is no right to distribute further the PMS Software to the public or in excess of the limited license (above). Moreover, this TOS does not grant any right to modify the PMS Software or provide a right or license in or to any third-party executable module(s) or accessible content beyond the limited and express grant herein.</span></p>
<ol start="2">
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">USER OBLIGATIONS.</span></li>
</ol>
<p><i><span style="font-weight: 400;">Generally.</span></i><span style="font-weight: 400;"> You represent that you are at least eighteen (18) years of age (or the legal age of majority, whichever is greater) and will, at all times, provide true, accurate, current, and complete information when submitting information or materials on or through the Plex Solution, including, without limitation, when you provide information via a Plex Solution registration, account, or submission form. You are responsible for completing any registration(s) or account requirements for access to applicable third party Content available through the Plex Solution. Individuals under the age of eighteen (18) (or the applicable age of majority) may utilize the Plex Solution only with the involvement and acceptance of (this TOS by) a parent or legal guardian and then solely as an Authorized User under a parent or legal guardian’s account. You further represent that you (or the person agreeing to, accepting, or acting under this TOS) are authorized to act on behalf of the person or entity named on the account with Plex. In addition, you agree to abide by all applicable local, state, national, and international laws and regulations with respect to your use of the Plex Solution. In particular, you may not take any action that will infringe on or facilitate in any way the infringement of the intellectual property rights of Plex or any other third party. If you violate this TOS, Plex has sole discretion to suspend or permanently disable your access to the Plex Solution, and we may permanently disable or delete your account or prohibit you from creating a new account. You acknowledge that unauthorized use of copyrighted content of others may subject you to civil and criminal penalties, including possible monetary damages, for copyright infringement. You also acknowledge and agree that use of the Internet and the Plex Solution is solely at your own risk. You further understand that by using the Plex Solution you may encounter content that you may find offensive, indecent, or objectionable. You assume all responsibility for obtaining and paying for all licenses and costs for third-party software and hardware necessary for access to the Plex Solution, and for maintaining and backing-up your content and data.</span></p>
<p><i><span style="font-weight: 400;">User Account.</span></i><span style="font-weight: 400;"> You may be required to provide certain personal information necessary to create an account with Plex. You may be required to create login credentials, such as a username and password, or adhere to other particular access requirements as designated by Plex in its sole discretion from time to time. You are solely responsible for the activity that occurs on your account and agree to keep your login credentials confidential and secure. You acknowledge that Plex may not provide controls that restrict the maturity level of content available through the Plex Solution. If you allow your child (under the age of 18 or the legal age of majority, whichever is greater) to access your Plex account, you are solely responsible for monitoring your child’s use of the Plex Solution and determining what maturity level is appropriate for or accessible to your child. You shall immediately notify Plex if you suspect or become aware of any loss or theft of or unauthorized use of your access credentials.</span></p>
<p><i><span style="font-weight: 400;">Content and Acceptable Use.</span></i><span style="font-weight: 400;"> The Plex Solution enables you to access content, data, communication, and other interactive features and functionality (with such uploaded, downloaded, shared, or exchanged information or content referenced collectively herein as a “User Content”). Distribution of User Content may be subject to third-party rights. You agree that by using the Plex Solution you will not upload, post, display, or transmit any of the following:</span></p>
<ul>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which defames, harasses, threatens, offends, or in any way violates or infringes on the rights (including, without limitation, patents, copyrights, or trademark rights) of others;</span></li>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which may damage, lessen, or harm the goodwill or reputation of Plex and its services;</span></li>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which involves the impersonation of any other person or entity;</span></li>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which constitutes viral or harmful programming code, files, or software;</span></li>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which constitutes junk mail, spam, or unauthorized advertising; or</span></li>
<li style="font-weight: 400;" aria-level="2"><span style="font-weight: 400;">anything which is unlawful.</span></li>
</ul>
<p>Plex reserves the right to establish additional practices, parameters, and limits in its sole discretion concerning the display or availability of any User Content. Further, Plex shall not have any obligation to incorporate or utilize any User Content that does not correspond to or meet Plex’s technical or usage practices, parameters, and limits.</p>
<p><em>Permission to User Content.</em> You continue to retain any ownership rights you have in the User Content you make available to Plex and/or the Plex Solution. However, by submitting or making available any type of User Content, you automatically and hereby grant to Plex a royalty-free, transferable, sub-licensable and non-exclusive right and license to use or act on any such User Content in furtherance of and in connection with the operation of the Plex Solution. Additionally, you grant us a non-exclusive, royalty-free, transferable, sub-licensable and non-exclusive right to use, reproduce, distribute and display (including for commercial and marketing purposes) on the Service and in other media, any User Content (including but not limited to watch history, reviews, your name, your avatar) on a Plex account with public (“Anyone”) settings. You acknowledge and agree that we may generate revenues, increase goodwill or otherwise increase our value from your use of the Plex Solution, including but not limited to, through use of the User Content, and the sale of advertising, sponsorships, promotions, and usage data. Except as specifically permitted by us in these TOS, you will have no right to share in any such revenue, goodwill or value whatsoever. You further acknowledge that, except as specifically permitted by us in these TOS, you (i) have no right to receive any income or other consideration from any use by Plex of the User Content, and (ii) are prohibited from exercising any rights to monetize or obtain consideration from any User Content within the Services. You specifically acknowledge that the Plex Solution facilitates distribution of the User Content, and as a part of the foregoing grant, you permit any user with whom you share content a non-exclusive license to access and use the User Content through the Plex Solution as permitted through the functionality of the Plex Solution. You represent that you have all necessary rights to make the foregoing grants and to otherwise make User Content(s) available to Plex and for (and through) the Plex Solution.</p>
<p><em>No Pre-screening; Removal.</em> Plex is not responsible for pre-screening or editing your or any other user’s User Content, support forum posts, or any other communications and encourages all of its users to use reasonable discretion and caution in evaluating or reviewing any such content or communications. Moreover, Plex does not endorse, oppose, or edit any opinion or information provided by you or another user (unless separately and expressly provided by Plex) and does not make any representation with respect to, nor does it endorse the accuracy, integrity, quality, acceptability, completeness, timeliness, lawfulness, suitability, or reliability of any User Content or communications displayed, uploaded, or distributed by you or any other user. You also acknowledge that Plex has no control over the extent to which any idea, content, or information may be used by any party or person once it’s posted, shared, or displayed. Nevertheless, Plex reserves the right to take any action within its control with respect to User Content (or parts thereof), support forum posts, or any other communications that Plex reasonably believes is necessary to: (i) satisfy any applicable law, regulation, legal process or governmental request; (ii) enforce this TOS, including investigation of potential violations hereof; (iii) detect, prevent, or otherwise address fraud, security, or technical issues; (iv) respond to user support requests; (v) protect the rights, property, or safety of Plex, its users, or the public; or (vi) address any act or omission that Plex believes in good faith violates this TOS and/or is, or is potentially, unlawful or harmful to Plex, its services, or goodwill.</p>
<p><em>Enforcing Security.</em> You may not use the Plex Solution or any of Plex’s data, systems, network, or services to engage in, foster, or promote illegal, abusive, dishonest, malicious, or irresponsible behavior, including, without limitation, accessing or using Plex data, systems, or networks in an unauthorized manner, attempting to probe, scan, or test the vulnerability of a Plex system or network, circumventing any Plex security or authentication measures, monitoring Plex data or traffic, interfering with any Plex services, collecting or using from the Plex Solution email addresses, screen names, or other identifiers, collecting or using from the Plex Solution information without the consent of the owner or licensor, using any false, misleading, or deceptive TCP-IP packet header information, using the Plex Solution to distribute software or tools that gather information, distributing advertisements, or engaging in conduct that is likely to result in retaliation against Plex or its data, systems, or network. Actual or attempted unauthorized use of the Plex Solution may result in criminal and/or civil prosecution, including, without limitation, punishment under the Computer Fraud and Abuse Act of 1986 under U.S. federal law. Plex reserves the right to view, monitor, and record activity through the Plex Solution without notice or permission from you. Any information obtained by monitoring, reviewing, or recording is subject to review by law enforcement organizations in connection with investigation or prosecution of possible criminal or unlawful activity through the Plex Solution as well as to disclosures required by or under applicable law or related government agency actions. Plex will also comply with all court orders or subpoenas involving requests for such information. In addition to the foregoing, Plex reserves the right to, at any time and without notice, modify, update, suspend, terminate, or interrupt operation of or access to the Plex Solution, or any portion of the Plex Solution in order to protect the Plex Solution or Plex.</p>
<p><em>Mobile Usage.</em> The Plex Solution offers a tool(s) or display functionality that is available to you via your mobile phone or other mobile computing device (“Mobile Plex Solution(s)”). Please note that your mobile carrier’s normal messaging, data, and other rates and fees will apply to your use of the Mobile Plex Solution(s). In addition, downloading, installing, or using certain Mobile Plex Solution(s) may be prohibited or restricted by your mobile carrier, and not all Mobile Plex Solution(s) may work with all carriers or devices or in all locations. Therefore, you are solely responsible for checking with your mobile carrier to determine if the Mobile Plex Solution(s) are available for your mobile devices; what restrictions, if any, may be applicable to your use of the Mobile Plex Solution(s); and how much such use will cost you. Nevertheless, your use of the Plex Solution shall be strictly in accordance with this TOS.</p>
<p><em>Additional Terms and Conditions for Apple Users.</em><br />
<strong>NOTE</strong> – The terms and conditions of this paragraph apply to you only if you downloaded the Mobile Plex Solution(s) through Apple Inc.’s App Store. You acknowledge that this TOS is between you and Company, and that Apple Inc. (“Apple”) bears no responsibility for the Mobile Plex Solution and its content. The license grant under this TOS with respect to the Mobile Plex Solution is a non-transferable license to use the Mobile Plex Solution on any Apple-branded products that you own or control as permitted by this TOS and the Usage Rules set forth in the Apple Media Services Terms and Conditions, except that the Mobile Plex Solution may be accessed and used by other accounts associated with you via “Family Sharing” (as defined in the Apple Media Services Terms and Conditions) or volume purchasing. You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the Mobile Plex Solution. In the event of any failure of Company’s mobile app to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price (if any) of the Mobile Plex Solution to you; provided that, to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the Mobile Plex Solution. Apple is not responsible for addressing any claims by you or a third party relating to the Mobile Plex Solution or your use of the Mobile Plex Solution, including without limitation: (i) product liability claims; (ii) any claim that the Mobile Plex Solution fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection, privacy, or similar legislation. In the event of any third-party claim that the Mobile Plex Solution or your possession and use thereof infringes a third party’s intellectual property rights, Apple will not be responsible for any investigation, defense, settlement, or discharge thereof. Apple and its subsidiaries are third-party beneficiaries of this TOS, and upon your acceptance of this TOS, Apple will have the right (and will be deemed to have accepted the right) to enforce this TOS against You as a third-party beneficiary thereof.</p>
<p><em>Feedback.</em> Plex welcomes your feedback and suggestions about Plex’s products or services or with respect to how to improve the Plex Solution. By transmitting any suggestions, information, material, or other content (collectively, “Feedback”) to Plex, you represent and warrant that such Feedback does not infringe or violate the intellectual property or proprietary rights of any third party (including, without limitation, patents, copyrights, or trademark rights) and that you have all rights necessary to convey to Plex and enable Plex to use such Feedback. In addition, any Feedback received by Plex will be deemed to include a royalty-free, perpetual, irrevocable, transferable, non-exclusive right and license from you for Plex to adopt, publish, reproduce, disseminate, transmit, distribute, copy, use, create derivative works of, and display (in whole or in part) worldwide, or act on such Feedback without additional approval or consideration, in any form, media, or technology now known or later developed for the full term of any rights that may exist therein, and you hereby waive any claim to the contrary.</p>
<ol start="3">
<li style="font-weight: 400;" aria-level="3"><span style="font-weight: 400;">SUBSCRIPTIONS & RENTALS.</span></li>
</ol>
<p><span style="font-weight: 400;">Plex currently offers access to the Plex Solution at no cost. However, Plex may make available through fee-based subscriptions, rentals, or other transactional offering(s), Content and functionality that is not available in the free version of the Plex Solution. Click </span><a href="https://www.plex.tv/plex-pass"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;"> for more information on subscription offerings. All subscriptions and rentals are subject to additional terms and conditions which are incorporated in this TOS and can be accessed </span><a href="https://www.plex.tv/about/privacy-legal/subscriptions-and-billing/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">.</span></p>
<ol start="4">
<li style="font-weight: 400;" aria-level="4"><span style="font-weight: 400;">PRIVACY POLICY.</span></li>
</ol>
<p><span style="font-weight: 400;">Please see Plex’s </span><a href="https://www.plex.tv/about/privacy-legal/"><span style="font-weight: 400;">Privacy Policy</span></a><span style="font-weight: 400;"> for a summary of how Plex collects, uses, and shares personal data. Plex is not responsible for your use of Interfacing Software or any data collection or related usage practices associated with your operation or maintenance of any Interfacing Software. </span></p>
<ol start="5">
<li style="font-weight: 400;" aria-level="5"><span style="font-weight: 400;">THIRD-PARTY CONTENT, WEBSITES, AND PLATFORMS.</span></li>
</ol>
<p><i><span style="font-weight: 400;">Third-party Content.</span></i><span style="font-weight: 400;"> Third-party content displayed or accessible through the Plex Solution is protected by copyright and other intellectual property law and belongs to the respective owner. Use of the third-party content is subject to the terms of use of the third party providing such content. This TOS does not grant you the right to copy, distribute, prepare derivative works, publicly display, or otherwise use any third-party content. You are expressly prohibited from engaging in or facilitating the unauthorized sharing or distribution of third-party content.</span></p>
<p><i><span style="font-weight: 400;">Links to Other Sites or Applications.</span></i><span style="font-weight: 400;"> Plex may provide links, in its sole discretion, to other sites or applications on the Internet, including to the Plex Store. Such other sites are maintained by third parties over which Plex exercises no control. These links do not imply an endorsement with respect to any third party or any third-party web site or the information, products, or services provided by any third party. Plex encourages review of the applicable terms, conditions or notices governing use of these third party sites or applications.</span></p>
<p><i><span style="font-weight: 400;">Third-party Platforms and Networks.</span></i><span style="font-weight: 400;"> Certain features allow you to synchronize your content across third-party platforms and networks. These features will enhance the performance of the Plex Solution and allow you to better integrate and harmonize the Plex Solution with information stored on or used with third-party networks. Using this functionality typically requires you to login to your account on the third-party service, and you do so at your own risk. You should always review, and if necessary, adjust your privacy settings on these networks and platforms before linking or connecting them to the Plex Solution. You expressly acknowledge and agree that Plex is in no way responsible or liable for any such third-party services or features.</span></p>
<p><i><span style="font-weight: 400;">Additional Terms and Conditions.</span></i><span style="font-weight: 400;"> Additional notices, terms, and conditions may apply to certain subscription arrangements (including sign-up or registration), Plex products, solutions, or services, receipt of (or access to) certain content, participation in a particular program, and/or to specific portions or features of the Plex Solution. Without limitation of the foregoing, you hereby agree that (a) this TOS operates in addition to any terms of use imposed or required by any digital download platform from which you download the Plex Solution (“App Provider Terms”); and (b) the terms of this TOS supplement and do not alter or amend any such App Provider Terms.</span></p>
<ol start="6">
<li style="font-weight: 400;" aria-level="6"><span style="font-weight: 400;">PROPRIETARY RIGHTS AND CONFIDENTIALITY. </span></li>
</ol>
<p><i><span style="font-weight: 400;">Proprietary Rights</span></i><span style="font-weight: 400;">. The Plex Solution is owned by Plex or its licensor(s). Copyright 2016-2024 © Plex and/or its licensor(s). All rights reserved. All content available through the Plex Solution, unless otherwise indicated, is protected by copyright, trade secret, or other intellectual property laws. PLEX, the Plex logo, and all other names, logos, and icons identifying Plex and its solutions, products, and services are proprietary trademarks of Plex, and any use of such marks without the express written permission of Plex is strictly prohibited. Please see the Plex Trademarks and Guidelines policy statement available </span><a href="https://www.plex.tv/about/privacy-legal/plex-trademarks-and-guidelines/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;"> for more information regarding the trademarks or service marks of Plex. Other service, product, or company names mentioned herein may be the trademarks and/or service marks of their respective owners.</span></p>
<p><span style="font-weight: 400;">Confidentiality. You acknowledge and agree that the Plex Solution contains confidential or nonpublic information that is the trade secret(s) of Plex and/or its licensors (the “Confidential Information”). You agree to secure and protect the confidentiality of the Confidential Information of Plex (and/or its licensors) in a manner consistent with the maintenance of Plex’s rights therein, using at least as great a degree of care as you use to maintain the confidentiality of your own confidential information of a similar nature, but in no event using less than reasonable efforts. You shall not, nor permit any third party to, sell, transfer, publish, disclose, or otherwise make available any portion of the Confidential Information to third parties, except as expressly authorized in this TOS.</span></p>
<ol start="7">
<li style="font-weight: 400;" aria-level="7"><span style="font-weight: 400;">REPRESENTATIONS, DISCLAIMERS, LIMITATION OF LIABILITY, AND INDEMNIFICATION. </span></li>
</ol>
<p><i><span style="font-weight: 400;">Representations and Warranties</span></i><span style="font-weight: 400;">. You represent and warrant that (i) the person accepting this TOS has the legal authority to bind the named person on the account, and (ii) he or she has the right, power, and authority to (a) enter into this TOS, (b) make the respective and applicable representations and warranties contained herein, and (c) commit to and perform the respective duties, obligations, and covenants set forth hereunder.</span></p>
<p><i><span style="font-weight: 400;">Warranty Disclaimer</span></i><span style="font-weight: 400;">. THE PLEX SOLUTION IS PROVIDED ON AN “AS-IS” AND “AS AVAILABLE” BASIS AND MAY INCLUDE ERRORS, OMISSIONS, OR OTHER INACCURACIES. PLEX MAY MAKE MODIFICATIONS AND/OR CHANGES IN THE PLEX SOLUTION AT ANY TIME AND FOR ANY REASON. OTHER THAN THE RIGHT TO FULFILL ITS OBLIGATIONS UNDER THIS TOS, AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, PLEX EXPRESSLY DISCLAIMS ALL OTHER WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF INTERFERENCE WITH ENJOYMENT OF INFORMATION, SECURITY, NON-INFRINGEMENT, MERCHANTABILITY, QUALITY, OR FITNESS FOR A PARTICULAR PURPOSE. MOREOVER, YOU ACKNOWLEDGE AND AGREE THAT PLEX DOES NOT WARRANT THAT THE PLEX SOLUTION WILL OPERATE FREE OF VIRUSES, MALWARE, OR HARMFUL PROGRAMMING SOFTWARE (OR CODE), ERROR-FREE, UNINTERRUPTED, OR IN A MANNER THAT WILL MEET YOUR REQUIREMENTS OR MEET ANY LEGAL, TECHNICAL, OR CERTIFICATION STANDARD. BECAUSE THE PLEX SOLUTION IS BASED ON YOUR CONTENT AND DATA, THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PLEX SOLUTION IS WITH YOU. IF THIS DISCLAIMER OF WARRANTY IS HELD TO BE UNENFORCEABLE BY A COURT OF COMPETENT JURISDICTION IN ANY MANNER, THEN ALL EXPRESS AND/OR IMPLIED WARRANTIES MANDATED BY SUCH COURT SHALL BE LIMITED IN DURATION TO A PERIOD OF THIRTY (30) DAYS FROM THE COMMENCEMENT OF THE INITIAL PERIOD FOR THE PLEX SOLUTION AND NO WARRANTIES SHALL APPLY AFTER THIS THIRTY (30) DAY PERIOD.</span></p>
<p><span style="font-weight: 400;">Limitation of Liability. YOU EXPRESSLY ABSOLVE AND RELEASE PLEX FROM ANY CLAIM OF HARM RESULTING FROM A CAUSE BEYOND PLEX’S CONTROL, INCLUDING, WITHOUT LIMITATION, ANY DAMAGE CAUSED BY HARDWARE, FILES, SYSTEMS, SOFTWARE, SERVICES, OR NETWORKS OUTSIDE THE CONTROL OF PLEX. PLEX IS NOT RESPONSIBLE OR LIABLE FOR YOUR OR ANY OTHER PERSON’S USE OF ANY INTERFACING SOFTWARE (OUTSIDE ITS CONTROL). MOREOVER, ALL USER CONTENT (OR OTHER DATA OR CONTENT) YOU ACCESS THROUGH THE PLEX SOLUTION IS AT YOUR OWN RISK. IN CONNECTION THEREWITH, YOU SPECIFICALLY ACKNOWLEDGE THAT PLEX SHALL NOT BE LIABLE FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF YOUR USE (OR DELAY IN USE) OF OR FAILURE TO STORE ANY DATA OR CONTENT MADE AVAILABLE THROUGH THE PLEX SOLUTION AND SHALL NOT BE LIABLE FOR ANY USE OF ANY USER CONTENT BY OTHERS, INCLUDING YOUR AUTHORIZED USERS. MOREOVER, IN NO EVENT SHALL PLEX BE LIABLE FOR ANY INDIRECT, PUNITIVE, INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN ANY WAY CONNECTED WITH THE USE OF THE PLEX SOLUTION OR WITH THE DELAY OR INABILITY TO USE THE PLEX SOLUTION, EVEN IF PLEX HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NOTWITHSTANDING THE FOREGOING, YOUR ABILITY TO RECOVER FROM PLEX FOR BREACH OF THIS TOS, THE PRIVACY POLICY, OR FOR ANY OTHER REASON RELATED TO OR ARISING OUT OF YOUR USE OF THE PLEX SOLUTION SHALL BE STRICTLY LIMITED TO PAYMENT OF EITHER AN AMOUNT NOT TO EXCEED $100 OR THE TOTAL AMOUNT ACTUALLY PAID BY YOU TO PLEX DURING THE PAST THREE MONTHS IN CONNECTION WITH YOUR INDIVIDUAL USE OF THE PLEX SOLUTION, WHICHEVER IS GREATER. </span></p>
<p><i><span style="font-weight: 400;">Indemnification</span></i><span style="font-weight: 400;">. You agree to indemnify, defend, and hold Plex (and its affiliated companies, contractors, employees, agents, and suppliers and partners) harmless from any and all claims, suits, actions, liabilities, losses, costs, damages, expenses, and any other liabilities, including, without limitation, attorneys’ fees, arising out of or related in any manner to your breach or alleged breach of this TOS, your Interfacing Software, or for any violation or alleged violation of the rights (including, without limitation, patents, copyrights, or trademark rights) of any other person or entity by your User Content.</span></p>
<ol start="8">
<li style="font-weight: 400;" aria-level="8"><span style="font-weight: 400;">INFORMAL DISPUTE RESOLUTION </span></li>
</ol>
<p><span style="font-weight: 400;">This informal dispute resolution process applies to any Claim (defined below) between you and Plex and its affiliates, regardless of whether those Claims arose before or after your acceptance of this TOS. A “Claim” is any dispute, cause of action, or controversy between you and Plex arising from or in any way related to the Plex Solution, any advertising or promotions conducted by or for Plex, or any use or disclosure of your information or information about you, or claims related to this TOS. Claim does not include any matter based on the infringement of intellectual property rights.</span></p>
<p><span style="font-weight: 400;">In the event of a Claim, you and Plex agree to attempt to avoid the costs of formal dispute resolution by giving each party a full and fair opportunity to address and resolve the Claim informally. The party making the Claim must send to the other party a written notice of a Claim, with: (a) the name, email, and contact information of the party giving the notice; (b) detailed factual information sufficient to understand and evaluate the Claim; and (c) the specific relief sought, including any amount of money demanded and the method by which that amount was determined. If you are making the Claim, the written notice must be sent to: Plex, 1999 S. Bascom Ave., Suite 700, PMB 735, Campbell, CA 95008, USA, Attention: Legal. If we are making the Claim, we will send any notice to the contact information we have associated with your Plex account.</span></p>
<p><span style="font-weight: 400;">Within ninety (90) days beginning from the date the notice of a Claim is received, you and we will attempt to resolve the Claim through informal negotiation. This informal negotiation must take place in person, or via teleconference or videoconference (the “Discussion”). If you are represented by counsel, your counsel may participate in the Discussion, but you will also need to individually participate. Plex will also participate in the Discussion through one or more representatives, which may include our counsel. After the end of the ninety (90) day informal negotiation period and after the completion of the Discussion, whichever comes later, you or we may commence a proceeding regarding the Claim. Nothing in this paragraph is intended to prohibit the parties from engaging in informal communications to resolve the Claim before, during, or after any Discussion. Each party agrees that a court may enter injunctive relief to enforce the pre-filing requirements of this paragraph.</span></p>
<ol start="9">
<li style="font-weight: 400;" aria-level="9"><span style="font-weight: 400;">GENERAL INFORMATION</span></li>
</ol>
<p><i><span style="font-weight: 400;">Choice of Law and Forum</span></i><span style="font-weight: 400;">. The Plex Solution is controlled and operated by Plex from its offices within the United States. This TOS has been made in and will be construed and enforced in accordance with the laws of the State of Delaware as applied to agreements entered into and completely performed in the State of Delaware. You access and use the Plex Solution on your own volition and are responsible for compliance with all applicable laws with respect to your access and use of the Plex Solution. Additionally, Plex’s headquarters are located in the United States. Please be aware that information you provide to Plex, or that Plex obtains as a result of your use of the Plex Solution, may be processed and transferred to the United States and be subject to United States law. Subject to the foregoing informal dispute resolution, any action arising from or in any way related to the Plex Solution, your use of or access to the Plex Solution, or this TOS will be brought in the courts presiding in the state of Delaware, and all parties to this TOS expressly agree to be subject to the jurisdiction of such courts. You and Plex waive trial by jury except where such waiver is prohibited by law. </span></p>
<p><i><span style="font-weight: 400;">Export Control Compliance</span></i><span style="font-weight: 400;">. You represent and warrant that you are not (a) located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country; and (b) listed on any U.S. Government list of prohibited or restricted parties. You hereby agree that (i) you will comply with all applicable Sanctions and Export Control Laws, (ii) you are solely responsible for ensuring that the Plex Solution is used, disclosed, and/or transported only in accordance with all applicable Sanctions and Export Control Laws, and (iii) you will not re-export or transfer the Plex Solution, in any form, directly or indirectly, to any person or entity based in Cuba, Iran, Syria, Sudan, South Sudan, or North Korea.</span></p>
<p><i><span style="font-weight: 400;">Injunctive Relief</span></i><span style="font-weight: 400;">. You acknowledge that any breach, threatened or actual, of this TOS, including, without limitation, unauthorized use of Plex proprietary assets, will cause irreparable injury to Plex, and such injury would not be quantifiable in monetary damages, and Plex would not have an adequate remedy at law. You therefore agree that Plex shall be entitled, in addition to other available remedies, to seek and be awarded an injunction or other appropriate equitable relief from a court of competent jurisdiction restraining any breach, threatened or actual, of your obligations under any provision of this TOS. Accordingly, you hereby waive any requirement that Plex post any bond or other security in the event any injunctive or equitable relief is sought by or awarded to Plex to enforce any provision of this TOS.</span></p>
<p><i><span style="font-weight: 400;">Term and Termination</span></i><span style="font-weight: 400;">. This TOS will take effect (or re-take effect) at the (and each) time you begin installing, accessing, or using the Plex Solution, WHICHEVER IS EARLIEST, and is effective until terminated as set forth below. Plex reserves the right to terminate this TOS at any time on reasonable grounds, which shall specifically include, without limitation, discontinuation of the Plex Solution (or related services) as an offering of the Plex business, nonpayment, termination of account, fraudulent or unlawful activity, or actions or omissions that violate this TOS, subject to the survival rights of certain provisions identified below. In addition, Plex shall have the right to take appropriate administrative and/or legal action in the event of breach or (alleged) criminal activity, including alerting legal authorities, as it deems necessary in its sole discretion. You may also terminate this TOS at any time by providing Plex with notice of cancellation, but all applicable provisions of this TOS will survive termination, as identified below. You may close your account by clicking </span><a href="https://plex.tv/users/edit"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">. Upon termination and in accordance with law, your right to access and use the Plex Solution shall cease (regardless of the subscription period) and you must immediately destroy all copies of any aspect of the Plex Solution in your possession. Termination shall result in deactivation or deletion of your account with Plex. The following provisions will survive the termination of this TOS for any reason: License (Additional License Restrictions, Content Available Through the Plex Solution, Restrictions); User Obligations (Permission to User Content, Enforcing Security, Additional Terms and Conditions for Apple Users, Feedback); Third Party Content, Websites, and Platforms (Additional Terms and Conditions); Privacy Policy; Proprietary Rights and Confidentiality (all sections); Representations, Disclaimers, Limitation of Liability, and Indemnification (all sections); Informal Dispute Resolution (all sections); General Information (Choice of Law and Forum, Injunctive Relief, Term and Termination, Waiver & Severability, Entire Agreement and Updates). Further, Plex shall not be responsible for any damage that may result or arise out of termination of this TOS.</span></p>
<p><i><span style="font-weight: 400;">Waiver & Severability</span></i><span style="font-weight: 400;">. Failure to insist on strict performance of any of the terms and conditions of this TOS will not operate as a waiver of any subsequent default or failure of performance. No waiver by Plex of any right under this TOS will be deemed to be either a waiver of any other right or provision or a waiver of that same right or provision at any other time. If any part of this TOS is determined to be invalid or unenforceable pursuant to applicable law including, but not limited to, the warranty disclaimers, venue, claim, and liability limitations set forth above, then the invalid or unenforceable provision will be deemed superseded by a valid, enforceable, provision that most clearly matches the intent of the original provision and the remainder of this TOS shall continue in effect.</span></p>
<p><i><span style="font-weight: 400;">Entire Agreement and Updates</span></i><span style="font-weight: 400;">. No joint venture, partnership, employment, or agency relationship exists between you and Plex as a result of this TOS or your utilization of the Plex Solution, and you do not have any authority of any kind to bind Plex in any respect whatsoever. This TOS represents the entire agreement between you and Plex with respect to your individual use of the Plex Solution. This TOS is not assignable, transferable, or sub-licensable by you except with Plex’s prior written consent. Plex may transfer, assign, or delegate this TOS and its rights and obligations without consent. Please note that Plex reserves the right to change the terms and conditions of this TOS and the terms and conditions under which the Plex Solution and its offerings are extended to you by posting online a revised TOS or e-mailing notice thereof to you. In addition, Plex may add, modify, or delete any aspect, program, functionality, or feature of the Plex Solution. Your continued use of the Plex Solution following any addition, modification, or deletion will be conclusively deemed acceptance of any change to the terms and conditions of this TOS. Accordingly, please review this TOS found at this location on a periodic basis.</span></p>
<p><i><span style="font-weight: 400;">Notices</span></i><span style="font-weight: 400;">. Any communication(s) or notice (and any related materials or information) to be sent pursuant to this TOS shall be in the English language and shall be deemed provided: (a) to the email address designated by you; or (b) by posting to the Plex Solution. For notices made by e-mail, the date of receipt will be deemed the date on which such notice is transmitted. You further agree that any notices, agreements, disclosures, or other communications that Plex sends you electronically (using the contact information you provide through the Plex Solution) will satisfy any legal communication requirements.</span></p>
<p><i><span style="font-weight: 400;">Contact</span></i><span style="font-weight: 400;">. If you have questions regarding the Plex Solution or if you are interested in obtaining more information concerning Plex or its products, services, or solutions, please </span><a href="https://www.plex.tv/contact/"><span style="font-weight: 400;">contact Plex</span></a><span style="font-weight: 400;">.</span></p>
</div>
</div>
</div>
<script type="module" src="https://get.microsoft.com/badge/ms-store-badge.bundled.js"></script>
<style>
.page-template-downloads-modern .tabs-content.tabs-content-downloads{background:transparent}.page-template-downloads-modern .tabs-downloads:not(.tabs-hide) + .tabs-content{border-top:solid 1px #F2F3F4}.page-template-downloads-modern .tabs-content.tabs-content-downloads .tabs-panel{padding:0}.page-template-downloads-modern .tabs-downloads{margin:40px auto;@media screen and (max-width:40em){margin:0 auto;padding:25px;display:flex;flex-direction:column;align-items:center;flex:0 0 100%}}.page-template-downloads-modern .tabs-title > a{max-width:200px;@media screen and (max-width:40em){min-width:100%;font-size:0.8em}}.page-template-downloads-modern .downloads-panel{padding:40px;@media screen and (max-width:40em){padding:25px}}.page-template-downloads-modern .downloads-panel-left{border-right:solid 1px #F2F3F4;@media screen and (max-width:64em){border-bottom:solid 1px #F2F3F4}}.page-template-downloads-modern .downloads-panel h3{padding-bottom:15px}.page-template-downloads-modern .downloads-panel .plex-downloads-releasesbutton{margin-top:0}.page-template-downloads-modern .unique-release{margin:0;font-size:0.9em;color:#868C96;line-height:1.4em}.page-template-downloads-modern .downloads-footer{padding-top:20px}.page-template-downloads-modern .form-legal{font-size:0.9em;color:#868C96;line-height:1.4em}.page-template-downloads-modern .download-specifics{padding-bottom:20px}.page-template-downloads-modern.download-specifics p{padding:0;font-size:0.9em;line-height:1.4em}.page-template-downloads-modern .download-tray h4{padding-bottom:20px}.page-template-downloads-modern .download-tray .plex-sel-icon{max-width:50px;display:inline-block;margin-bottom:10px}.page-template-downloads-modern .download-tray svg path{fill:#282A2D}.page-template-downloads-modern .toggle-title{display:block;clear:both;font-size:0.9em;color:#868C96;line-height:1.4em;padding-bottom:8px}.page-template-downloads-modern input#plex-pass-channel-pms[type=checkbox],
.page-template-downloads-modern input#plex-pass-channel-pht[type=checkbox],
.page-template-downloads-modern input#plex-toggle[type=checkbox]{visibility:hidden}.page-template-downloads-modern .slideThree{width:80px;height:30px;background-color:#F2F3F4;border-radius:1000px;position:relative;display:inline-block}.page-template-downloads-modern .slideThree:after,
.page-template-downloads-modern .slideThree:before{font-size:0.8em;position:absolute;font-family:"Circular Bold",'plexeina-bold', Helvetica, sans-serif;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;top:8px;z-index:0;color:#868C96}.page-template-downloads-modern .slideThree:after{content:'OFF';right:10px}.page-template-downloads-modern .slideThree:before{content:'ON';color:#E5A00D;left:10px}.page-template-downloads-modern .slideThree label{display:block;width:34px;height:22px;border-radius:1000px;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;-o-transition:all .4s ease;-ms-transition:all .4s ease;transition:all .4s ease;cursor:pointer;position:absolute;top:4px;left:5px;z-index:1;background:#B3BAC1}.page-template-downloads-modern .slideThree input[type=checkbox]:checked + label{left:42px;background:#E5A00D}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a{color:#575B61;font-family:"Circular Bold",'plexeina-bold', Helvetica, sans-serif;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;border-bottom:solid 1px #F2F3F4;overflow:hidden;display:block;padding:5px 0;text-align:left;white-space:nowrap}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a:last-child{border-bottom:none}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a:hover{color:#E5A00D}.page-template-downloads-modern .downloads-tooltip .tooltipster-content .modal-hash{color:#868C96;display:block;clear:both;font-family:'plexeina-regular', Helvetica, sans-serif;font-weight:normal;font-style:normal;padding-top:3px}.page-template-downloads-modern .dist-requirements{border-bottom:solid 1px #DFE1E3;padding-bottom:5px}.page-template-downloads-modern .dist-requirements,
.page-template-downloads-modern .dist-requirements a{color:#868C96;font-family:'plex-circular', Helvetica, sans-serif}.page-template-downloads-modern .releasesbutton-build img,
.page-template-downloads-modern .releasesbutton-build-pmp img{max-height:46px;max-width:160px;margin-right:10px;border-radius:8px}.page-template-downloads-modern .downloads-section{min-height:400px}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a{color:#575B61;font-family:"Circular Bold", 'plexeina-bold', Helvetica, sans-serif;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;border-bottom:solid 1px #F2F3F4;overflow:hidden;display:block;padding:5px 0;text-align:left;white-space:nowrap}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a:hover{color:#E5A00D}.page-template-downloads-modern .downloads-tooltip .tooltipster-content .modal-hash{color:#868C96;display:block;clear:both;font-family:'plexeina-regular', Helvetica, sans-serif;font-weight:normal;font-style:normal;padding-top:3px}.page-template-downloads-modern #requirements{padding:10px 0}.page-template-downloads-modern .toggle-checksums{margin:10px 0}.page-template-downloads-modern .unique-release{background-color:#f9f9f9}.page-template-downloads-modern .downloads-pp-beta-releases{margin-top:30px;border-top:1px solid #E0E3E6}.page-template-downloads-modern .downloads-pp-beta-releases h5{margin:10px 0}.page-template-downloads-modern .cta-download{padding-top:10px;gap:10px}.page-template-downloads-modern .download-meta p{padding:0;font-size:0.9em;line-height:1.4em}.page-template-downloads-modern ms-store-badge::part(img){margin-left:17px;max-height:50px}.page-template-downloads-modern .download-specifics{background-color:#fafafab8;border-radius:10px;padding:0px;margin-bottom:15px}.page-template-downloads-modern .download-meta{padding:10px}.page-template-downloads-modern .toggle-group:not(:first-of-type){margin-top:20px}.page-template-downloads-modern .plex-pass-downloads-toggle{margin-top:20px}.page-template-downloads-modern .user-arch{background-color:#f0f0f0;padding:3px 10px}.page-template-downloads-modern .plex-downloads-manage .tabs-content-downloads{min-height:580px}.page-template-downloads-modern .plex-downloads-manage h4.download-group-title{color:#B3BAC1}.page-template-downloads-modern .plex-downloads-manage .plex-form-downloads{min-height:400px;position:relative}.page-template-downloads-modern .plex-downloads-manage .plex-downloads-no-pp{padding-top:25px}.page-template-downloads-modern .plex-downloads-manage .plex-downloads-no-pp p{font-size:0.9em;color:#868C96}.page-template-downloads-modern .plex-downloads-manage .plex-svg-holder{display:flex !important;width:100% !important;max-height:100px;max-width:100% !important;height:100%}.page-template-downloads-modern .plex-downloads-manage .icon-container{display:flex;height:60px;margin-bottom:25px}.page-template-downloads-modern .plex-downloads-manage .download-tray .plex-sel-icon{display:flex;height:100%;max-width:150px}.page-template-downloads-modern .plex-downloads-manage .download-tray .plex-sel-icon svg{width:auto}.page-template-downloads-modern .plex-downloads-manage .loading{margin:0;position:absolute;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%);width:100%;left:0}.page-template-downloads-modern .plex-downloads-manage .warning{margin:31px;position:relative;width:100%}.page-template-downloads-modern .plex-downloads-manage .no-platform-selected{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.page-template-downloads-modern .downloads-learn-more{margin-top:-10px}@media screen and (max-width:40em){.page-template-downloads-modern ms-store-badge::part(img){max-height:40px}.page-template-downloads-modern .downloads-tooltip .tooltipster-content a{white-space:normal;font-size:0.80rem}.page-template-downloads-modern .tooltipster-base{width:100% !important;max-width:100% !important}.page-template-downloads-modern .download-tray{margin-top:15px}}</style>
</div><!-- #plex-site-container -->
<div class="grid-x notification-bar cookie-consent container-standard align-middle" style="display: none;">
<div class="large-12 cell">
<h4>We value your privacy.</h4>
</div>
<div class="large-8 cell">
<p>Plex and our partners use standard Web technologies, such as browser cookies, which may be necessary to make our site work and enable core functionality, such as security, network management, and accessibility. You may disable these by changing your browser settings, but note that it may affect how our site functions. </p>
<p>We’d also like to enable analytics cookies, optional to you, to improve our website by collecting and reporting information on how you use it; we specifically use Google and Facebook analytics to derive insights about who is doing what on our site and to help us improve your experience. We won’t set these optional cookies unless you agree to and enable them. This tool will set a cookie on your device to remember your preferences once you have accepted.</p>
</div>
<div class="large-4 cell main-actions text-center grid-x align-middle">
<div class="large-12 medium-12 small-12 grid-x">
<div class="large-6 medium-12 small-12 cca">
<a class="button button-small cookie-consent-accept">I Accept</a>
</div>
<div class="large-6 medium-12 small-12 ccr">
<a class="button button-small cookie-consent-reject">I Reject</a>
</div>
</div>
<div class="large-12 cell">
<a class="cookie-consent-settings" data-utm="plex-cookies-use" data-remodal-target="plex-cookies-use" href="">More Options</a>
</div>
</div>
</div>
</div>
<!-- Mobile Only -->
<div class="remodal notification-bar-mobile cookie-consent text-left" data-remodal-id="plex-cookies-use-mobile" data-remodal-options="hashTracking: false, closeOnOutsideClick: false, closeOnEscape: false">
<div class="grid-x">
<div class="large-9 cell cookie-consent-header">
<h4>We value your privacy.</h4>
</div>
<div class="large-9 cell">
<p>Plex and our partners use standard Web technologies, such as browser cookies, which may be necessary to make our site work and enable core functionality, such as security, network management, and accessibility. You may disable these by changing your browser settings, but note that it may affect how our site functions. </p>
<p>We’d also like to enable analytics cookies, optional to you, to improve our website by collecting and reporting information on how you use it; we specifically use Google and Facebook analytics to derive insights about who is doing what on our site and to help us improve your experience. We won’t set these optional cookies unless you agree to and enable them. This tool will set a cookie on your device to remember your preferences once you have accepted.</p>
</div>
<div class="large-3 cell main-actions text-center">
<a class="button button-small cookie-consent-accept">I Accept</a>
<a class="button button-small cookie-consent-reject">I Reject</a>
<a class="cookie-consent-settings" data-utm="plex-cookies-use" data-remodal-target="plex-cookies-use" href="">More Options</a>
</div>
</div>
</div>
<!-- // -->
<div class="remodal remodal-cookie-settings text-left" data-remodal-id="plex-cookies-use" data-remodal-options="hashTracking: true, closeOnOutsideClick: false, closeOnEscape: false">
<div class="grid-x">
<div class="cell large-12 content cookie-consent-expand">
<h2>Plex’s use of cookies</h2>
<p>Necessary cookies make our site work. We’d also like to enable analytics cookies, optional to you, to help us improve the site and your experience. This tool will set a cookie on your device to remember your preferences once you have accepted. You can change your mind and change your consent choices at any time by returning to this site.</p>
<p>For more information on how these cookies work please see our <a href="https://www.plex.tv/about/privacy-legal/tracking-technologies/">Tracking Technologies page</a>.</p>
<h3>Necessary cookies</h3>
<p>Necessary cookies enable core functionality on our site, such as security, network management, and accessibility. You may disable these by changing your browser settings, but it may affect how the site functions.</p>
<h3>Analytics cookies</h3>
<p>Analytics cookies help us improve our website by collecting and reporting information on how you use it; we specifically use Google analytics to derive insights about who is doing what on our site. These cookies collect information anonymously.</p>
<div class="setting-group">
<div class="row optin_analytics">
<a class="settings-option">
<div class="opt opt-panel-left">
<label class="toggle">
<input class="toggle-checkbox user-option optin_analytics" type="checkbox" data-option="optin_analytics" data-checked="ON" data-unchecked="OFF" >
<div class="toggle-switch"></div> <span class="toggle-label optin_analytics disabled">OFF</span>
</label>
</div>
</a>
</div>
</div>
<script type="text/javascript">
jQuery(function($) {
$(document).on( 'change', '.user-option.optin_analytics', function( evt, data ) {
if ( evt.target.tagName.toUpperCase() !== "INPUT" ) return
var $toggle = $(this).closest('.toggle'), $input = $toggle.find('input'), $label = $toggle.find('.toggle-label'), optionID = $input.data('option'), isChecked = $input.is(':checked');
var label = isChecked ? $input.data('checked') : $input.data('unchecked');
$toggle.find('.toggle-label').removeClass('disabled');
if ( ! isChecked ) $toggle.find('.toggle-label').addClass('disabled');
$label.html( label );
$.event.trigger( 'PlexSettingToggle', [ optionID, isChecked, data ] );
})
})
</script>
<h3>Third Party Cookies</h3>
<p>Third-party cookies enable us to correctly attribute traffic driven to our site; specifically, we use Facebook cookies to measure performance of Facebook campaigns, as well as cookies from Commission Junction, which help us see traffic directed to our site by affiliates we work with in marketing.</p>
<div class="setting-group">
<div class="row optin_thirdparty">
<a class="settings-option">
<div class="opt opt-panel-left">
<label class="toggle">
<input class="toggle-checkbox user-option optin_thirdparty" type="checkbox" data-option="optin_thirdparty" data-checked="ON" data-unchecked="OFF" >
<div class="toggle-switch"></div> <span class="toggle-label optin_thirdparty disabled">OFF</span>
</label>
</div>
</a>
</div>
</div>
<script type="text/javascript">
jQuery(function($) {
$(document).on( 'change', '.user-option.optin_thirdparty', function( evt, data ) {
if ( evt.target.tagName.toUpperCase() !== "INPUT" ) return
var $toggle = $(this).closest('.toggle'), $input = $toggle.find('input'), $label = $toggle.find('.toggle-label'), optionID = $input.data('option'), isChecked = $input.is(':checked');
var label = isChecked ? $input.data('checked') : $input.data('unchecked');
$toggle.find('.toggle-label').removeClass('disabled');
if ( ! isChecked ) $toggle.find('.toggle-label').addClass('disabled');
$label.html( label );
$.event.trigger( 'PlexSettingToggle', [ optionID, isChecked, data ] );
})
})
</script>
<div class="setting-group-none">
<div class="row accept_all_cookies">
<a class="button user-option button-accept_all_cookies" data-option="accept_all_cookies">Accept All</a>
</div>
</div>
<script type="text/javascript">
jQuery(function($) {
$(document).on( 'click', '.button-accept_all_cookies', function( evt ) {
var optionID = $(this).data('option');
$.event.trigger( 'PlexSettingClick', [ optionID ] );
evt.preventDefault();
return false;
})
})
</script>
<div class="setting-group-none">
<div class="row reject_all_cookies">
<a class="button user-option button-reject_all_cookies" data-option="reject_all_cookies">Reject All</a>
</div>
</div>
<script type="text/javascript">
jQuery(function($) {
$(document).on( 'click', '.button-reject_all_cookies', function( evt ) {
var optionID = $(this).data('option');
$.event.trigger( 'PlexSettingClick', [ optionID ] );
evt.preventDefault();
return false;
})
})
</script>
<div class="remodal-save close-right" data-remodal-action="close">
<a class="button remodal-confirm cookie-settings-save" data-remodal-action="confirm">Save & Exit</a>
</div>
</div>
</div>
</div>
<script>jQuery(document).on( 'click', '.manage-cookie-settings', function(e){var cookieSettings = jQuery('[data-remodal-id=plex-cookies-use]').remodal(); cookieSettings.open(); e.preventDefault();return false;})</script>
<div class="remodal remodal-fedauth" data-remodal-id="modal-fedauth" data-action="signin" data-panels="all">
<div class="remodal-close close-right wow fadeIn" data-remodal-action="close" style="z-index: 999;" data-wow-delay="1.5s">
<i class="icomoon icon-close"></i>
</div>
<div class="grid-x">
<div class="cell large-12 modal-fedauth" style="display: none;">
<div class="plexview-fedauth-form plexview-fedauth-form-tmp--modal fedauth-form"></div>
<div class="plexview-template" data-view="fedauth-form-tmp--modal">
{{#if (or isSignedIn isSigninIn) }}
<div class="sign form-signin">
<div class="large-12 sign-frame">
<div class="plex-element plex-success form-alert form-success">
<div class="field-spinner">
<div class="loader"></div>
</div>
{{#if isSigninIn }}
<p class="status-check">Signing you in, Please wait ...</p>
{{else}}
<p class="status-check">Redirecting you, please wait ...</p>
{{/if}}
</div>
</div>
</div>
{{else}}
<div class="grid-x fedauth-panels">
<div class="cell fedauth-panel fedauth-form-container fedauth-panel-right large-12">
<div class="grid-x">
<div class="cell large-12 fedauth-panel-top">
<div class="fedauth-form-title">
<h3 class="fedauth-title">
<span class="fedauth-headline signin-dynamic toggable fedoff">Account Sign in</span>
<span class="fedauth-headline signup-dynamic toggable">Create your free account</span>
</h3>
<p class="fedauth-title-desc">
<span class="fedauth-form-desc signup-dynamic toggable">No credit card required.</span>
<span class="fedauth-form-desc signin-dynamic toggable"></span>
</p>
</div>
<div class="iframe-placeholder" style="position: relative; text-align: center;">
<div class="field-spinner fedauth-wait" style="display: inline-block; margin: auto; z-index: -1; top: 200px; position: relative;">
<div class="loader"></div>
</div>
<div class="cell large-12" id="fedauth-form-modal"></div>
</div>
</div>
</div>
</div>
</div>
{{/if}}
</div>
<script type="text/javascript">
jQuery(function($) {
if ( typeof checkoutFedAuth !== 'undefined' ) {
return;
}
function initFedAuth() {
var action = 'signin';
var isModal = '1'
if ( isModal ) {
// Modal sign-in.
var modalOptions = {
closeOnOutsideClick: false,
hashTracking: false
};
var fedAuthactionData = {};
var $fedAuthModal = $('.modal-fedauth');
var $modalInstance = null;
try {
$modalInstance = $('.remodal[data-remodal-id=' + window.modalFedAuth + ']').remodal( modalOptions );
} catch (e) {
console.error( e );
}
$fedAuthModal.hide();
$(document).on( 'fedAuth', function( evt, data ){
fedAuthactionData = data;
action = data.action;
// If we don't have a valid 'remodal' instance redirect the user to the sign-in/up pages.
if ( ! $modalInstance ) {
if ( action === 'signin' ) {
Plex.signInRedirect()
} else {
Plex.signUpRedirect()
}
return;
}
$modalInstance.open();
})
$(document).on( 'fedAuthStateChange', function(e) {
$modalInstance.close();
})
// Check if additional auth is required (i.e: email/pass confirmation)
$(document).on('fedaAuthAdditionalAuth', function( e ){
action = 'signin';
$modalInstance.open()
})
$(document).on( 'opened', '.remodal[data-remodal-id=' + window.modalFedAuth + ']', function () {
var $target = this;
$.event.trigger( 'fedauthModalOpened',
[ fedAuthactionData ]
);
// Toggle menu when users click anywhere outside the nav menu.
$(document).on('click', function(e) {
if ( e.target !== $target && ! $(e.target).closest( $target ).length ) {
$modalInstance.close();
}
})
})
$(document).on('closed', '.remodal[data-remodal-id=' + window.modalFedAuth + ']', function (e) {
// Refresh user current SSO state.
PlexSignIn.loadSSO();
$(this).find('.remodal-close').hide();
$fedAuthModal.hide();
})
//
} else {
// Regular sign-in.
$('.form-signin').show();
action = 'signin';
$.event.trigger( 'fedAuthOpened', [ action , false ] );
//
}
}
var autoRedirect = 1;
if ( Plex.isRefreshingInfo('webapp') || ! autoRedirect ) {
PlexView.addAfterRenderHook( function() {
initFedAuth();
});
} else {
initFedAuth();
}
})
</script>
</div>
</div>
</div>
<script type="text/javascript">
window.modalFedAuth = 'modal-fedauth';
</script>
<!-- Enable for Support Articles when we provide translations -->
<div class="grid-x footer">
<div class="large-12 cell footer-main">
<div class="foot-container">
<div class="grid-x footer-inner">
<div class="large-2 medium-12 cell logo">
<a href="https://www.plex.tv/" aria-label="Plex">
<img alt="Plex" src="https://www.plex.tv/wp-content/themes/plex/assets/img/plex-logo.svg">
</a>
</div>
<div class="large-10 medium-12 cell menu-footer">
<div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-20323" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-20323"><a href="https://www.plex.tv/about/" role="heading">Company</a>
<ul class="sub-menu">
<li id="menu-item-20188" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20188"><a href="https://www.plex.tv/about/">About</a></li>
<li id="menu-item-19915" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19915"><a href="https://www.plex.tv/careers/">Careers</a></li>
<li id="menu-item-20179" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20179"><a href="https://www.plex.tv/about/culture/">Our Culture</a></li>
<li id="menu-item-4493" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4493"><a href="https://www.plex.tv/about/giving/">Giving</a></li>
<li id="menu-item-12173" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12173"><a href="https://www.plex.tv/about/partners/">Partners</a></li>
<li id="menu-item-11462" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11462"><a href="https://www.plex.tv/press/">News</a></li>
<li id="menu-item-20726" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20726"><a href="https://plex-gear.myshopify.com/">Plex Gear</a></li>
<li id="menu-item-18818" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18818"><a href="https://www.plex.tv/blog/">The Plex Blog</a></li>
<li id="menu-item-21902" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21902"><a href="https://www.plex.tv/advertising/">Advertise with Us</a></li>
</ul>
</li>
<li id="menu-item-17009" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-17009"><a href="https://www.plex.tv/plex-pass/" role="heading">Go Premium</a>
<ul class="sub-menu">
<li id="menu-item-22899" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22899"><a href="https://www.plex.tv/plans/">Plans</a></li>
<li id="menu-item-20553" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20553"><a href="https://www.plex.tv/plexamp/">Plexamp</a></li>
<li id="menu-item-86" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-86"><a href="https://www.plex.tv/plex-labs/">Plex Labs</a></li>
<li id="menu-item-8572" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8572"><a href="https://www.plex.tv/plex-pass/perks/">Get Perks</a></li>
</ul>
</li>
<li id="menu-item-75" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-57 current_page_item menu-item-has-children menu-item-75"><a href="https://www.plex.tv/media-server-downloads/" aria-current="page" role="heading">Downloads</a>
<ul class="sub-menu">
<li id="menu-item-18864" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18864"><a href="https://www.plex.tv/media-server-downloads/#plex-media-server">Plex Media Server</a></li>
<li id="menu-item-4707" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4707"><a href="https://www.plex.tv/media-server-downloads/#plex-app">Plex</a></li>
<li id="menu-item-21771" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21771"><a href="https://www.plex.tv/media-server-downloads/#plex-plexamp">Plexamp</a></li>
<li id="menu-item-22317" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22317"><a href="https://www.plex.tv/media-server-downloads/#plex-plexphotos">Plex Photos</a></li>
<li id="menu-item-22316" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22316"><a href="https://www.plex.tv/media-server-downloads/#plex-plexdash">Plex Dash</a></li>
<li id="menu-item-18862" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18862"><a href="https://www.plex.tv/apps-devices/">Where to Watch</a></li>
</ul>
</li>
<li id="menu-item-8578" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-8578"><a href="https://support.plex.tv" role="heading">Support</a>
<ul class="sub-menu">
<li id="menu-item-20180" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20180"><a href="https://support.plex.tv">Finding Help</a></li>
<li id="menu-item-4551" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4551"><a href="https://support.plex.tv/articles">Support Library</a></li>
<li id="menu-item-4561" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4561"><a href="https://forums.plex.tv">Community Forums</a></li>
<li id="menu-item-22404" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22404"><a href="https://www.plex.tv/about/community-guidelines/">Community Guidelines</a></li>
<li id="menu-item-8579" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8579"><a href="https://www.plex.tv/contact/?option=plex-pass-billing">Billing Questions</a></li>
<li id="menu-item-4599" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4599"><a href="https://status.plex.tv">Status</a></li>
<li id="menu-item-11651" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11651"><a href="https://support.plex.tv/articles/reporting-security-issues/">Bug Bounty</a></li>
<li id="menu-item-9286" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9286"><a href="https://cordcutter.plex.tv">CordCutter</a></li>
<li id="menu-item-4569" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4569"><a href="https://www.plex.tv/contact/">Get in Touch</a></li>
</ul>
</li>
<li id="menu-item-20346" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-20346"><a href="https://watch.plex.tv/movies-and-shows" role="heading">Watch Free</a>
<ul class="sub-menu">
<li id="menu-item-22036" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22036"><a href="https://www.plex.tv/discover/">Discover on Plex</a></li>
<li id="menu-item-20201" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20201"><a href="https://www.plex.tv/live-tv-channels/">TV Channel Finder</a></li>
<li id="menu-item-20347" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20347"><a href="https://www.plex.tv/what-to-watch/">What to Watch</a></li>
<li id="menu-item-22109" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22109"><a href="https://www.plex.tv/what-to-watch/netflix/">What To Watch on Netflix</a></li>
<li id="menu-item-20985" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20985"><a href="https://www.plex.tv/what-to-watch/hulu/">What To Watch on Hulu</a></li>
<li id="menu-item-20348" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20348"><a href="https://www.plex.tv/a24-movies/">A24 Movies</a></li>
<li id="menu-item-22669" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22669"><a href="https://www.plex.tv/valentines-day-movies/">Valentine’s Day Movies</a></li>
<li id="menu-item-22633" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22633"><a href="https://www.plex.tv/best-christmas-movies/">Christmas Movies</a></li>
</ul>
</li>
</ul></div>
</div>
</div>
</div>
</div>
<div class="large-12 cell footer-sub">
<div class="foot-container">
<div class="grid-x footer-inner align-middle">
<div class="large-7 medium-12 cell menu-sub-footer">
<span class="footer-copy">Copyright © 2025 Plex</span>
<div class="menu-sub-footer-container"><ul id="menu-sub-footer" class="menu"><li id="menu-item-15685" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15685"><a href="https://www.plex.tv/about/privacy-legal/">Privacy & Legal</a></li>
<li id="menu-item-19660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19660 "><a href="https://www.plex.tv/accessibility-statement/">Accessibility</a></li>
<li id="menu-item-22910" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22910 geolocation-hide geolocation-continent-EU-hide nav-item-toggable"><a href="https://www.plex.tv/accessibility-statement-eaa/">Accessibility</a></li>
<li id="menu-item-21565" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21565"><a href="#" class=" manage-cookie-settings">Manage Cookies</a></li>
</ul></div>
<span class="footer-lang"> <span class="lang-selector">
<span id="tooltip-lang-container" class="tooltip-lang" data-tooltip-content="#tooltip_content">Language: <a class="sel-language" aria-expanded="false" tabindex="0" aria-controls="tip-languages" aria-labelledby="tooltip-lang-container"></a></span>
<div class="lang-selector tooltip_templates">
<span id="tooltip_content">
<ul id="tip-languages" class="tip-languages-content" aria-label="Language Selector">
<!--dynamically added-->
</ul>
</span>
</div>
</span>
</span>
</div>
<div class="large-5 medium-12 cell menu-social">
<div class="menu-social-container"><ul id="menu-social" class="menu"><li id="menu-item-65" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-65"><a target="_blank" href="https://www.instagram.com/plex.tv/" data-pulldown="item-social-instagram"><i class="icomoon icon-social-instagram" aria-label="Instagram"></i></a></li>
<li id="menu-item-22699" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22699"><a target="_blank" href="https://www.tiktok.com/@plex.tv" class=" tiktok" data-pulldown="item-social-tiktok"><i class="icomoon icon-social-tiktok" aria-label="TikTok"></i></a></li>
<li id="menu-item-67" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-67"><a target="_blank" href="https://twitter.com/plex" data-pulldown="item-social-x"><i class="icomoon icon-social-x" aria-label="Twitter X"></i></a></li>
<li id="menu-item-22570" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22570"><a href="https://bsky.app/profile/plex.tv" class=" bluesky"><span class="nav-icon" alt="BlueSky" title="BlueSky" aria-label="BlueSky"><div class="plex-svg-holder icon-bsky-logo-gray " ><svg class="plexico-icon-bsky-logo-gray-31" id="bsky-logo-gray" width="64" height="57" viewBox="0 0 64 57" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1004_3)">
<path d="M13.873 3.80516C21.21 9.33216 29.103 20.5372 32 26.5502V42.4322C32 42.0942 31.87 42.4762 31.59 43.2992C30.078 47.7552 24.172 65.1462 10.667 51.2432C3.556 43.9232 6.848 36.6032 19.792 34.3932C12.387 35.6572 4.062 33.5682 1.778 25.3782C1.12 23.0222 0 8.51016 0 6.55016C0 -3.26784 8.579 -0.181838 13.873 3.80516ZM50.127 3.80516C42.79 9.33216 34.897 20.5372 32 26.5502V42.4322C32 42.0942 32.13 42.4762 32.41 43.2992C33.922 47.7552 39.828 65.1462 53.333 51.2432C60.444 43.9232 57.152 36.6032 44.208 34.3932C51.613 35.6572 59.938 33.5682 62.222 25.3782C62.88 23.0222 64 8.51016 64 6.55016C64 -3.26784 55.422 -0.181838 50.127 3.80516Z" fill="#7E7F81"/>
</g>
<defs>
<clipPath id="clip0_1004_3">
<rect width="64" height="57" fill="white"/>
</clipPath>
</defs>
</svg>
</div></span></a></li>
<li id="menu-item-66" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-66"><a target="_blank" href="https://www.facebook.com/plexapp" data-pulldown="item-social-facebook"><i class="icomoon icon-social-facebook" aria-label="BlueSky"></i></a></li>
<li id="menu-item-64" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-64"><a target="_blank" href="https://www.linkedin.com/company/plex-inc" data-pulldown="item-social-linkedin"><i class="icomoon icon-social-linkedin" aria-label="LinkedIn"></i></a></li>
<li id="menu-item-63" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-63"><a target="_blank" href="https://www.youtube.com/user/plextvapp" data-pulldown="item-social-youtube"><i class="icomoon icon-social-youtube" aria-label="YouTube"></i></a></li>
</ul></div>
</div>
</div>
<div class="grid-x footer-inner align-middle">
<div class="large-12 cell menu-sub-footer menu-sub-footer-alt">
<div class="menu-sub-footer-us-container"><ul id="menu-sub-footer-us" class="menu"><li id="menu-item-20707" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20707 geolocation-hide geolocation-country-US-hide nav-item-toggable"><a href="https://www.plex.tv/vendors-us/">Do Not Sell or Share My Personal Information / Opt-out of Targeted Advertising</a></li>
</ul></div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener( 'DOMContentLoaded', function(event) {
if ( typeof PlexMetrics === 'undefined' ) return;
var pagename = 'downloads';
PlexMetrics.track( 'click', pagename );
});
</script>
<script>
try {
var setActiveMenuItemByFragment = function( fragment ) {
document.querySelectorAll('#menu-footer .sub-menu .menu-item [href*="media-server-downloads"]').forEach(function(el) {
el.parentElement.classList.remove('current-menu-item');
})
var menuItem = document.querySelector('#menu-footer .sub-menu .menu-item [href*="' + fragment + '"]');
if ( menuItem ) {
menuItem.parentElement.classList.add('current-menu-item');
}
}
document.addEventListener("DOMContentLoaded", function(event) {
if ( window.location.hash && ['#plex-media-server', '#plex-app', '#plex-plexamp', '#plex-plexdash', '#plex-plexphotos'].indexOf( window.location.hash ) >= 0 ) {
setActiveMenuItemByFragment( window.location.hash );
} else if ( ! window.location.hash ) {
setActiveMenuItemByFragment( '#plex-media-server' );
}
})
jQuery(document).on( 'change.zf.tabs', '#download-tabs', function( target, $tab ) {
setActiveMenuItemByFragment( window.location.hash );
})
} catch (error) {
//
}
</script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/lib.min.js?ver=4.0.0-1759750919" id="plex-lib-js"></script>
<script type="text/javascript" id="plex-app-js-extra">
/* <![CDATA[ */
var plex_l10n = {"app_version":"4.0.0-1759750919","enable_sentry":"","ajaxurl":"https:\/\/www.plex.tv\/wp-admin\/admin-ajax.php","ajax_nonce":"7f3ba594d6","post_id":"57","post_parent":"0","curr_page":"media-server-downloads","is_page":"1","is_mobile":"","path_to_css":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/scss\/","path_to_js":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/js\/","firstrun":"1","siid":"1","js_debug_log":"","js_error_log":"","google_oauth_client_id":"954396107311-vpdi0ie6905j1pr8udc2v1drm9p0kn0p.apps.googleusercontent.com","rest_api":{"nonce":"fd4a85135e","optional_nonce":["\/wp-json\/plex\/v1\/posts\/recent","\/wp-json\/plex\/v1\/appstores\/ratings","\/wp-json\/plex\/v1\/mediaverse\/vod\/categories","\/wp-json\/plex\/v1\/mediaverse\/vod\/hub","\/wp-json\/plex\/v1\/mediaverse\/vod\/hub\/rentals","\/wp-json\/plex\/v1\/mediaverse\/epg\/featured","\/wp-json\/plex\/v1\/mediaverse\/epg\/hub","\/wp-json\/plex\/v1\/mediaverse\/epg\/categories"]},"errors":{"endpoint":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/post_js_error","nonce":"fd4a85135e"},"plans":{"tidal":{"9":{"id":"premium","title":"TIDAL Add-On","alt_title":"TIDAL Add-on","description":"Ad-free listening to over 110 million tracks in lossless quality, over 350 thousand music videos to enjoy, and access to your My TIDAL content on all your devices.","trial":30},"10":{"id":"hifi","title":"TIDAL with DJ Extension Add-On","alt_title":"TIDAL with DJ Extension Add-on","description":" Everything in the TIDAL plan plus access to over 110 million songs in lossless quality via TIDAL\u2019s suite of DJ partners.","trial":30},"11":{"id":"premium_bundle","title":"TIDAL","alt_title":"TIDAL","description":"Ad-free listening to over 110 million tracks in lossless quality, over 350 thousand music videos to enjoy, and access to your My TIDAL content on all your devices.","trial":30},"12":{"id":"hifi_bundle","title":"TIDAL with DJ Extension and Plex Pass","alt_title":"TIDAL with DJ Extension and Plex Pass","description":"Everything in the TIDAL plan plus access to over 110 million songs in lossless quality via TIDAL\u2019s suite of DJ partners.","trial":30}}},"pages":{"signin":"https:\/\/www.plex.tv\/sign-in\/","signup":"https:\/\/www.plex.tv\/sign-up\/"},"geolocation":{"continent":"AS","country":"CN","region":""},"privacy_restricted_regions":[],"global_nav_menu":{"sections":{"movies-tv-super-menu-button":"movies-tv","live-tv-super-menu-button":"live-tv","features-super-menu-button":"features","download-super-menu-button":"download","news-super-menu-button":"news"},"user_menu":[{"title":"My Account","href":"#","items":[{"title":"Account Settings","href":"WEB_ACCOUNT_URL"},{"title":"My Watchlist","href":"WATCHLIST_URL"},{"title":"Support","href":"https:\/\/support.plex.tv"}]}],"atts":{"max_windows_width":1800,"search_type_delay":800}},"utm_params":{"source":"Plex","medium":"marketing-site","campaign":"Downloads","internal":"marketing-site|Downloads"},"active_exps":[],"feature_flags_active":[],"external_providers":{"version":"7.2.0","metadata":{"search":"https:\/\/discover.provider.plex.tv\/library\/search"},"rest_api":{"endpoints":{"vod_categories":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/mediaverse\/vod\/categories","epg_categories":"https:\/\/epg.provider.plex.tv","epg_featured":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/mediaverse\/epg\/featured"},"cached_data":{"vod_categories":[{"slug":"action","title":"Action"},{"slug":"animation","title":"Animation"},{"slug":"comedy","title":"Comedy"},{"slug":"crime","title":"Crime"},{"slug":"descriptive-audio","title":"Descriptive Audio"},{"slug":"documentary","title":"Documentary"},{"slug":"drama","title":"Drama"},{"slug":"en-espanol","title":"En Espa\u00f1ol"},{"slug":"horror","title":"Horror"},{"slug":"musical","title":"Music"},{"slug":"romance","title":"Romance"},{"slug":"sci-fi","title":"Sci-Fi"},{"slug":"thriller","title":"Thriller"},{"slug":"western","title":"Western"}],"epg_featured":[{"slug":"nosey","name":"Nosey","thumb":"https:\/\/provider-static.plex.tv\/epg\/cms\/production\/e9308466-68d1-4ba8-8321-629834fe20eb\/Nosey_Background_1920x1080.jpg"},{"slug":"failarmy-2","name":"FailArmy","thumb":"https:\/\/provider-static.plex.tv\/epg\/cms\/production\/25f1472a-6283-4ad8-beba-6314b91d9aeb\/FA-asset-1920x1080_-_Erica_Laible__1_.jpg"},{"slug":"always-funny","name":"Always Funny","thumb":"https:\/\/provider-static.plex.tv\/epg\/cms\/production\/519c15de-e2cc-48ad-84e4-4d1af1407452\/AlwaysFunny_Hero_Banner_1920x1080_1_.jpg"}]},"country":"CN"}},"transifex":{"js_redirect":"","localized_urls":{"zh_CN":"https:\/\/www.plex.tv\/zh\/media-server-downloads\/","nl":"https:\/\/www.plex.tv\/nl\/media-server-downloads\/","en_AU":"https:\/\/www.plex.tv\/en-au\/media-server-downloads\/","en_CA":"https:\/\/www.plex.tv\/en-ca\/media-server-downloads\/","en_GB":"https:\/\/www.plex.tv\/en-gb\/media-server-downloads\/","fr":"https:\/\/www.plex.tv\/fr\/media-server-downloads\/","de":"https:\/\/www.plex.tv\/de\/media-server-downloads\/","hi_IN":"https:\/\/www.plex.tv\/hi\/media-server-downloads\/","ja":"https:\/\/www.plex.tv\/ja\/media-server-downloads\/","ko":"https:\/\/www.plex.tv\/ko\/media-server-downloads\/","pt":"https:\/\/www.plex.tv\/pt\/media-server-downloads\/","pt_BR":"https:\/\/www.plex.tv\/pt-br\/media-server-downloads\/","ru":"https:\/\/www.plex.tv\/ru\/media-server-downloads\/","es":"https:\/\/www.plex.tv\/es\/media-server-downloads\/","sv_SE":"https:\/\/www.plex.tv\/sv\/media-server-downloads\/","en_US":"https:\/\/www.plex.tv\/media-server-downloads\/"},"href_lang_map":{"zh_CN":"zh","nl":"nl","en_AU":"en-au","en_CA":"en-ca","en_GB":"en-gb","fr":"fr","de":"de","hi_IN":"hi","ja":"ja","ko":"ko","pt":"pt","pt_BR":"pt-br","ru":"ru","es":"es","sv_SE":"sv"},"valid_languages":true},"perks":{"endpoint":{"activate_code":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/perks\/activate_code","new_code":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/perks\/new_code","single_code":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/perks\/single_code","url_code":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/perks\/url_code","view_promo":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/perks\/view_promo"},"rest_token":"fd4a85135e"}};
/* ]]> */
</script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/app.min.js?ver=4.0.0-1759750919" id="plex-app-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/thirdparty/fullstory.min.js?ver=4.0.0-1759750919" id="fullstory-js"></script>
<script type="text/javascript" id="plex-downloads-manage-js-extra">
/* <![CDATA[ */
var plex_l10n_downloads_manage = {"markup_template_id":"plex-downloads-manage","devices":{"apps":{"gaming consoles":{"nvidia-shield":{"name":"NVIDIA SHIELD","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Download Plex for NVIDIA SHIELD from the Google Play Store.","releases":[{"icon":"<div class=\"plex-svg-holder icon-nvidia \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-nvidia-8\" id=\"nvidia\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M212.9 359.4v95.85h27.1v-95.85h-27.1zM0 359.3v95.95h27.3v-72.9h21.15c7 0 12 1.75 15.4 5.35 4.3 4.55 6.050 11.9 6.050 25.4v42.15h26.45v-53c0-37.85-24.1-42.95-47.7-42.95h-48.65zM256.5 359.4v95.85h43.9c23.4 0 31-3.9 39.3-12.6 5.85-6.1 9.6-19.55 9.6-34.25 0-13.45-3.2-25.5-8.75-32.95-10.050-13.4-24.45-16-46.050-16h-38zM283.35 380.3h11.65c16.9 0 27.8 7.6 27.8 27.25 0 19.7-10.9 27.25-27.8 27.25h-11.65v-54.5zM173.9 359.4l-22.6 75.95-21.65-75.95h-29.2l30.9 95.85h39l31.15-95.85h-27.6zM361.9 455.25h27.050v-95.85h-27.1l0.050 95.85zM437.75 359.45l-37.8 95.75h26.7l6-16.95h44.75l5.65 16.95h29l-38.1-95.8-36.2 0.050zM455.35 376.9l16.4 44.85h-33.3l16.9-44.85z\"><\/path>\n<path fill=\"#000\" d=\"M177.15 134.9v-23c2.25-0.15 4.5-0.3 6.8-0.35 62.95-2 104.3 54.1 104.3 54.1s-44.6 61.95-92.45 61.95c-6.9 0-13.050-1.1-18.6-3v-69.75c24.5 2.95 29.45 13.8 44.2 38.35l32.8-27.65c0 0-23.95-31.4-64.25-31.4-4.5 0-8.7 0.35-12.8 0.75zM177.15 58.85v34.4c2.25-0.2 4.5-0.3 6.8-0.4 87.55-2.95 144.6 71.8 144.6 71.8s-65.55 79.7-133.8 79.7c-6.25 0-12.1-0.6-17.6-1.55v21.25c4.7 0.6 9.6 0.95 14.65 0.95 63.55 0 109.5-32.45 153.95-70.85 7.35 5.9 37.55 20.25 43.8 26.55-42.3 35.4-140.9 63.95-196.75 63.95-5.4 0-10.55-0.3-15.65-0.8v29.9h241.45v-254.9h-241.45zM177.15 224.65v18.15c-58.75-10.5-75.050-71.55-75.050-71.55s28.2-31.25 75.050-36.3v19.9c-0.050 0-0.050 0-0.1 0-24.6-2.95-43.8 20-43.8 20s10.75 38.65 43.9 49.8zM72.75 168.6c0 0 34.85-51.4 104.35-56.7v-18.65c-77 6.2-143.7 71.4-143.7 71.4s37.75 109.2 143.7 119.2v-19.8c-77.7-9.8-104.35-95.45-104.35-95.45z\"><\/path>\n<\/svg>\n<\/div>","label":"Download","url":"https:\/\/shield.nvidia.com\/apps\/plex","image_markup":"","image_src":"","alt":"Download"}],"id":"nvidia-shield"},"playstation-4":{"name":"PlayStation","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Available from the PlayStation Store.","releases":[{"icon":"<div class=\"plex-svg-holder icon-playstation \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-playstation-9\" id=\"playstation\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M84.096 377.248c12.912 4.864 33.952 3.264 50.128-3.264l42.016-14.576v43.68c-3.264 0-4.864 1.6-8.064 1.6-42.016 6.464-85.696 3.264-129.36-9.712-40.416-11.312-46.88-35.552-29.104-48.528s45.28-22.64 45.28-22.64l119.648-42.016v48.528l-85.696 30.704c-14.576 4.912-17.84 13.040-4.864 16.24z\"><\/path>\n<path fill=\"#000\" d=\"M507.68 361.072c-9.712 12.912-33.952 21.040-33.952 21.040l-182.704 66.304v-48.528l134.224-48.48c14.576-4.864 17.776-12.912 4.864-17.776s-33.952-3.264-50.128 3.264l-88.944 32.304v-50.128l4.864-1.6c0 0 25.904-9.712 61.456-12.912 35.552-3.264 80.832 0 116.384 14.576 38.816 11.264 43.68 29.040 33.952 41.952z\"><\/path>\n<path fill=\"#000\" d=\"M308.8 278.64v-122.896c0-14.576-3.264-27.504-16.176-32.352-9.712-3.264-16.176 6.464-16.176 21.040v308.8l-84.096-25.904v-368.592c34.016 6.464 85.744 21.040 114.848 30.752 71.168 24.24 95.408 54.992 95.408 122.896-1.664 66.256-42.080 92.144-93.808 66.256z\"><\/path>\n<\/svg>\n<\/div>","label":"Download","url":"","image_markup":"","image_src":"","alt":"Download"}],"id":"playstation-4"},"xbox-one":{"name":"Xbox","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Available from the Microsoft Store.","releases":[{"icon":"<div class=\"plex-svg-holder icon-xbox \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-xbox-13\" id=\"xbox\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M425.6 84.8c0 0-22.4-19.2-104 64 49.6 59.2 150.4 208 121.6 260.8v0 0 0c33.6-41.6 54.4-94.4 54.4-152 0-68.8-27.2-129.6-72-172.8v0c0 0 0-1.6 0 0zM97.6 438.4v0 0c43.2 36.8 97.6 59.2 158.4 59.2s116.8-22.4 158.4-59.2v0 0 0c38.4-38.4-86.4-176-158.4-230.4-72 54.4-196.8 192-158.4 230.4zM86.4 83.2c0 0 0 1.6 0 0v0c-44.8 44.8-72 105.6-72 172.8 0 57.6 20.8 110.4 54.4 152v0 0 0c-28.8-52.8 70.4-200 121.6-260.8-83.2-81.6-104-62.4-104-64zM256 14.4c46.4 0 92.8 12.8 136 41.6-1.6-1.6-12.8-8-30.4-6.4-46.4 1.6-105.6 36.8-105.6 36.8v0 0c0 0-59.2-35.2-105.6-36.8-17.6-1.6-28.8 6.4-30.4 6.4 43.2-28.8 89.6-41.6 136-41.6v0 0z\"><\/path>\n<\/svg>\n<\/div>","label":"Learn More","url":"https:\/\/www.microsoft.com\/store\/apps\/9NBLGGH3ZZVF","image_markup":"","image_src":"","alt":"Learn More"}],"id":"xbox-one"}},"home accessories":{"amazon-alexa":{"name":"Amazon Alexa","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Click below to get started with Plex on Amazon Alexa.","releases":[{"icon":"<div class=\"plex-svg-holder icon-amazon-alexa \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-amazon-alexa-1\" id=\"amazon-alexa\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M459.168 201.5c0-111.54-90.41-202-201.95-202s-201.95 90.41-201.95 201.95c0 95.032 65.674 174.776 154.103 196.261v102.499c0 0-0.863 11.936 9.092 11.936 0 0 10.209 3.403 25.853-12.241l144.605-145.367c43.021-36.976 70.245-91.832 70.245-153.036zM305.928 308.824l12.394 50.742c0 0 2.997 9.244-4.368 12.444 0 0-5.13 3.2-14.832-4.521l-97.166-61.865c-37.231-19.809-62.626-59.020-62.626-104.124 0-65.115 52.773-117.838 117.838-117.838s117.838 52.773 117.838 117.838c0.051 47.694-28.291 88.785-69.077 107.324z\"><\/path>\n<\/svg>\n<\/div>","label":"Get Started","url":"https:\/\/support.plex.tv\/articles\/categories\/alexa-voice-control","image_markup":"","image_src":"","alt":"Get Started"}],"id":"amazon-alexa"},"sonos":{"name":"Sonos","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Visit Music Services from your Sonos app.","releases":[{"icon":"<div class=\"plex-svg-holder icon-sonos \" >\n<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->\n<svg class=\"plexico-icon-sonos-12\" version=\"1.1\" id=\"sonos-1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n\t viewBox=\"0 0 77 15\" style=\"enable-background:new 0 0 77 15;\" xml:space=\"preserve\">\n<title>sonos<\/title>\n<path d=\"M35.1,5.4v8.8h-2V0.4l9.1,9.2V0.8h2v13.8L35.1,5.4L35.1,5.4z\"\/>\n<path d=\"M56.2,0.2c-4,0-7.2,3.3-7.2,7.3s3.2,7.3,7.2,7.3c4,0,7.2-3.3,7.2-7.3C63.4,3.5,60.1,0.2,56.2,0.2L56.2,0.2z M56.2,12.7\n\tc-2.8,0-5.1-2.3-5.1-5.2c0-2.9,2.3-5.2,5.1-5.2c2.8,0,5.1,2.3,5.1,5.2S59,12.7,56.2,12.7z\"\/>\n<path d=\"M21.1,0.2c-4,0-7.2,3.3-7.2,7.3s3.2,7.3,7.2,7.3s7.2-3.3,7.2-7.3C28.3,3.5,25.1,0.2,21.1,0.2L21.1,0.2z M21.1,12.7\n\tc-2.8,0-5.1-2.3-5.1-5.2c0-2.9,2.3-5.2,5.1-5.2s5.1,2.3,5.1,5.2C26.2,10.4,23.9,12.7,21.1,12.7z\"\/>\n<path d=\"M5,8.5L5,8.5c-1.4-0.4-2.3-0.9-3-1.4c-1-0.8-1.5-1.7-1.5-2.9c0-1.1,0.5-2.1,1.3-2.9C2.8,0.6,4,0.2,5.3,0.2\n\tc2.8,0,4.3,1.9,4.4,1.9L8.1,3.3C7.7,3,6.7,2.3,5.3,2.3c-1.7,0-2.6,1-2.6,1.9c0,0.7,0.4,1.4,3,2.2l0,0C7,6.9,7.9,7.4,8.6,7.9\n\tc1,0.8,1.5,1.7,1.5,2.9c0,1.1-0.5,2.1-1.4,2.9c-0.9,0.8-2.1,1.2-3.4,1.2c-2.8,0-4.3-1.9-4.4-1.9l1.7-1.1C3,12,4,12.7,5.3,12.7\n\tc1.7,0,2.6-1,2.6-1.9C8,10.1,7.6,9.4,5,8.5z\"\/>\n<path d=\"M71.6,8.5L71.6,8.5c-1.4-0.4-2.3-0.9-3-1.4c-1-0.8-1.5-1.7-1.5-2.9c0-1.1,0.5-2.1,1.4-2.9c0.9-0.8,2.1-1.2,3.4-1.2\n\tc2.8,0,4.3,1.9,4.4,1.9l-1.7,1.1c-0.4-0.3-1.4-0.9-2.7-0.9c-1.7,0-2.6,1-2.6,1.9c0,0.7,0.4,1.4,3,2.2l0,0c1.4,0.4,2.3,0.9,2.9,1.4\n\tc1,0.8,1.5,1.7,1.5,2.9c0,1.1-0.5,2.1-1.3,2.9c-0.9,0.8-2.1,1.2-3.4,1.2c-2.8,0-4.3-1.9-4.4-1.9l1.7-1.1c0.4,0.3,1.4,0.9,2.7,0.9\n\tc1.7,0,2.6-1,2.6-1.9C74.6,10.1,74.2,9.4,71.6,8.5z\"\/>\n<\/svg>\n<\/div>","label":"Get started","url":"https:\/\/support.plex.tv\/articles\/categories\/plex-apps\/sonos-beta\/","image_markup":"","image_src":"","alt":"Get started"}],"id":"sonos"}},"mobile":{"android":{"name":"Android","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Click below to get started with Plex on Android.","releases":[{"icon":"<div class=\"plex-svg-holder icon-android \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-android-3\" id=\"android\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M448 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.4-32-32-32zM64 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.401-32-32-32zM112 368c0 26.51 21.49 48 48 48v0 64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64h64v64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64c26.51 0 48-21.49 48-48v-176h-288v176z\"><\/path>\n<path fill=\"#000\" d=\"M399.108 160.001c-4.858-43.942-29.502-81.896-64.81-104.823l16.012-32.023c3.952-7.903 0.748-17.514-7.155-21.466s-17.515-0.748-21.466 7.156l-16.071 32.143-4.175-1.658c-14.284-4.751-29.561-7.33-45.443-7.33-15.881 0-31.158 2.579-45.444 7.328l-4.174 1.658-16.071-32.141c-3.952-7.904-13.564-11.106-21.466-7.156-7.904 3.952-11.107 13.563-7.156 21.466l16.011 32.023c-35.308 22.926-59.952 60.881-64.811 104.822v16h287.111v-15.999h-0.892zM208 128c-8.837 0-16-7.164-16-16 0-8.824 7.144-15.979 15.965-15.998 0.016 0 0.031 0.001 0.047 0.001 0.009 0 0.018-0.001 0.026-0.001 8.819 0.021 15.962 7.175 15.962 15.998 0 8.836-7.163 16-16 16zM304 128c-8.837 0-16-7.164-16-16 0-8.823 7.143-15.977 15.962-15.998 0.008 0 0.017 0.001 0.025 0.001 0.016 0 0.032-0.001 0.048-0.001 8.82 0.019 15.965 7.174 15.965 15.998 0 8.836-7.163 16-16 16z\"><\/path>\n<\/svg>\n<\/div>","label":"Download","url":"https:\/\/play.google.com\/store\/apps\/details?id=com.plexapp.android&hl=en","image_markup":"<img width=\"150\" src=\"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-150x44.png\" class=\"attachment-150x0 size-150x0\" alt=\"\" decoding=\"async\" srcset=\"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-150x44.png 150w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-300x88.png 300w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-768x226.png 768w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-1024x301.png 1024w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-1800x529.png 1800w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-1440x423.png 1440w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-800x235.png 800w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-640x188.png 640w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-400x118.png 400w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge.png 2000w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>","image_src":"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/android-app-badge-150x44.png","alt":"Download"}],"id":"android"},"android-auto":{"name":"Android Auto","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Click below to get started with Plex on Android Auto.","releases":[{"icon":"<div class=\"plex-svg-holder icon-android \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-android-4\" id=\"android\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M448 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.4-32-32-32zM64 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.401-32-32-32zM112 368c0 26.51 21.49 48 48 48v0 64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64h64v64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64c26.51 0 48-21.49 48-48v-176h-288v176z\"><\/path>\n<path fill=\"#000\" d=\"M399.108 160.001c-4.858-43.942-29.502-81.896-64.81-104.823l16.012-32.023c3.952-7.903 0.748-17.514-7.155-21.466s-17.515-0.748-21.466 7.156l-16.071 32.143-4.175-1.658c-14.284-4.751-29.561-7.33-45.443-7.33-15.881 0-31.158 2.579-45.444 7.328l-4.174 1.658-16.071-32.141c-3.952-7.904-13.564-11.106-21.466-7.156-7.904 3.952-11.107 13.563-7.156 21.466l16.011 32.023c-35.308 22.926-59.952 60.881-64.811 104.822v16h287.111v-15.999h-0.892zM208 128c-8.837 0-16-7.164-16-16 0-8.824 7.144-15.979 15.965-15.998 0.016 0 0.031 0.001 0.047 0.001 0.009 0 0.018-0.001 0.026-0.001 8.819 0.021 15.962 7.175 15.962 15.998 0 8.836-7.163 16-16 16zM304 128c-8.837 0-16-7.164-16-16 0-8.823 7.143-15.977 15.962-15.998 0.008 0 0.017 0.001 0.025 0.001 0.016 0 0.032-0.001 0.048-0.001 8.82 0.019 15.965 7.174 15.965 15.998 0 8.836-7.163 16-16 16z\"><\/path>\n<\/svg>\n<\/div>","label":"Get started","url":"https:\/\/support.plex.tv\/articles\/115002453214-android-auto\/","image_markup":"","image_src":"","alt":"Get started"}],"id":"android-auto"},"ios":{"name":"iOS","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Click below to get started with Plex on iOS.","releases":[{"icon":"<div class=\"plex-svg-holder icon-apple \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-apple-14\" id=\"apple\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M395.749 272.046c-0.647-64.841 52.879-95.938 55.271-97.483-30.076-44.010-76.925-50.039-93.621-50.736-39.871-4.037-77.798 23.474-98.033 23.474-20.184 0-51.409-22.877-84.476-22.276-43.458 0.646-83.529 25.269-105.906 64.19-45.152 78.349-11.563 194.42 32.445 257.963 21.504 31.102 47.146 66.038 80.813 64.79 32.421-1.294 44.681-20.979 83.878-20.979s50.214 20.979 84.525 20.335c34.887-0.648 56.991-31.699 78.346-62.898 24.695-36.084 34.863-71.019 35.462-72.813-0.774-0.353-68.030-26.118-68.704-103.567zM331.281 81.761c17.869-21.679 29.93-51.756 26.64-81.761-25.739 1.048-56.939 17.145-75.405 38.775-16.571 19.188-31.074 49.813-27.187 79.218 28.733 2.242 58.064-14.602 75.952-36.232z\"><\/path>\n<\/svg>\n<\/div>","label":null,"url":"https:\/\/itunes.apple.com\/us\/app\/plex\/id383457673?mt=8","image_markup":"<img width=\"150\" src=\"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-150x44.png\" class=\"attachment-150x0 size-150x0\" alt=\"\" decoding=\"async\" srcset=\"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-150x44.png 150w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-300x89.png 300w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-768x228.png 768w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-1024x304.png 1024w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-1800x534.png 1800w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-1440x427.png 1440w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-800x237.png 800w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-640x190.png 640w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-400x119.png 400w, https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge.png 1963w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>","image_src":"https:\/\/www.plex.tv\/wp-content\/uploads\/2018\/01\/apple-app-badge-150x44.png","alt":null}],"id":"ios"}},"plex desktop":{"Linux":{"name":"Linux","id":"linux","version":"","release_date":0,"requirements":"Click below to get started with Plex for Linux","description":"","external_link":1,"release_type":"store","releases":[{"image_src":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/img\/downloads\/flathub.png","url":"https:\/\/flathub.org\/apps\/details\/tv.plex.PlexDesktop","alt":"Get it on Flathub"},{"image_src":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/img\/downloads\/snapstore.png","url":"https:\/\/snapcraft.io\/plex-desktop","alt":"Get it on Snapcraft"}]}},"plex htpc":{"Linux":{"name":"Linux","id":"linux","version":"","release_date":0,"requirements":"Click below to get started with Plex HTPC for Linux","external_link":1,"description":"","release_type":"store","releases":[{"image_src":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/img\/downloads\/flathub.png","url":"https:\/\/flathub.org\/apps\/details\/tv.plex.PlexHTPC","alt":"Get it on Flathub"},{"image_src":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/img\/downloads\/snapstore.png","url":"https:\/\/snapcraft.io\/plex-htpc","alt":"Get it on Snapcraft"}]}},"streaming devices":{"amazon-fire-tv":{"name":"Amazon Fire TV","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Available from the Amazon Appstore for Android.","releases":[{"icon":"<div class=\"plex-svg-holder icon-amazon \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-amazon-2\" id=\"amazon\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M302.4 144c-12.8 1.6-27.2 1.6-41.6 3.2-22.4 3.2-43.2 6.4-62.4 14.4-35.2 14.4-59.2 44.8-59.2 89.6 0 56 36.8 84.8 81.6 84.8 16 0 27.2-1.6 38.4-4.8 17.6-6.4 33.6-16 51.2-35.2 11.2 14.4 12.8 20.8 32 36.8 4.8 1.6 9.6 1.6 12.8-1.6 11.2-9.6 32-27.2 41.6-36.8 4.8-3.2 3.2-9.6 1.6-14.4-11.2-12.8-20.8-24-20.8-51.2v-83.2c0-36.8 3.2-68.8-24-94.4-22.4-20.8-56-27.2-83.2-27.2-3.2 0-8 0-11.2 0-48 3.2-99.2 24-110.4 83.2-1.6 8 4.8 11.2 8 11.2l52.8 6.4c6.4-1.6 8-6.4 9.6-11.2 4.8-20.8 22.4-32 41.6-33.6 1.6 0 1.6 0 3.2 0 11.2 0 24 4.8 30.4 14.4 8 11.2 6.4 27.2 6.4 40v9.6zM302.4 198.4c0 22.4 1.6 38.4-11.2 57.6-6.4 12.8-17.6 22.4-30.4 24-1.6 0-4.8 1.6-8 1.6-20.8 0-33.6-16-33.6-40 0-30.4 17.6-44.8 41.6-51.2 12.8-3.2 27.2-3.2 41.6-3.2v11.2zM476.8 465.6c24-19.2 33.6-56 33.6-73.6v-3.2c0-4.8-1.6-8-1.6-8-4.8-6.4-38.4-11.2-68.8-1.6-8 3.2-16 6.4-22.4 11.2-4.8 3.2-4.8 8 1.6 8 6.4-1.6 12.8-1.6 20.8-3.2 17.6-1.6 40-1.6 44.8 4.8 8 8-8 46.4-14.4 64-3.2 3.2 1.6 4.8 6.4 1.6zM3.2 392c67.2 60.8 153.6 96 252.8 96 60.8 0 131.2-17.6 185.6-49.6 8-4.8 14.4-9.6 20.8-14.4 9.6-6.4 1.6-17.6-8-12.8-4.8 1.6-8 3.2-12.8 4.8-59.2 24-121.6 33.6-179.2 33.6-94.4 1.6-182.4-24-254.4-65.6-6.4-3.2-11.2 3.2-4.8 8z\"><\/path>\n<\/svg>\n<\/div>","label":"Download","url":"http:\/\/www.amazon.com\/Plex-Inc-for-Android\/dp\/B004Y1WCDE","image_markup":"","image_src":"","alt":"Download"}],"id":"amazon-fire-tv"},"apple-tv":{"name":"Apple TV","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Available from the app store on your 4th generation Apple TV.","releases":[{"icon":"<div class=\"plex-svg-holder icon-apple-tv \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-apple-tv-5\" id=\"apple-tv\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n<title>apple-tv<\/title>\n<path d=\"M25.113 0.444h-18.225c-3.6 0-6.487 2.934-6.487 6.534v18.087c0 3.6 2.934 6.534 6.487 6.534h18.222c3.556 0 6.488-2.934 6.488-6.534v-18.087c0.003-3.6-2.931-6.534-6.484-6.534zM11.822 12.8c0.222-0.313 0.622-0.488 0.978-0.534 0.088 0.4-0.088 0.8-0.313 1.066v0c-0.222 0.266-0.622 0.488-0.978 0.488-0.088-0.353 0.091-0.753 0.313-1.019zM13.912 17.866c-0.266 0.4-0.666 0.934-1.156 0.934-0.444 0-0.534-0.266-1.113-0.266s-0.713 0.266-1.113 0.266c-0.488 0-0.844-0.488-1.113-0.887-0.756-1.156-0.844-2.534-0.356-3.287 0.356-0.534 0.887-0.8 1.378-0.8s0.844 0.266 1.244 0.266 0.666-0.266 1.244-0.266c0.444 0 0.934 0.266 1.244 0.666-1.113 0.578-0.934 2.134 0.178 2.578v0c-0.128 0.353-0.216 0.488-0.438 0.797zM18.4 14.713h-1.156v2.131c0 0.578 0.178 0.887 0.622 0.887 0.222 0 0.356-0.044 0.488-0.044v0.934c-0.178 0.087-0.488 0.134-0.887 0.134-0.444 0-0.8-0.134-1.022-0.4-0.266-0.266-0.356-0.712-0.356-1.334v-2.266h-0.713v-0.887h0.713v-1.066l1.156-0.356v1.378h1.156v0.887zM21.866 18.622h-1.2l-1.778-4.8h1.288l0.8 2.444c0.134 0.444 0.222 0.8 0.313 1.2h0.044c0.087-0.4 0.178-0.756 0.313-1.2l0.756-2.444h1.288l-1.822 4.8z\"><\/path>\n<\/svg>\n<\/div>","label":null,"url":"","image_markup":"","image_src":"","alt":null}],"id":"apple-tv"},"chromecast":{"name":"Chromecast","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Learn about Plex apps that support Chromecast.","releases":[{"icon":"<div class=\"plex-svg-holder icon-chromecast \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-chromecast-6\" id=\"chromecast\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n<title>chromecast<\/title>\n<path d=\"M8.072 13.954l-4.58-7.932c2.932-3.67 7.444-6.024 12.508-6.024 5.858 0 10.978 3.148 13.766 7.844h-13.056c-0.234-0.020-0.472-0.032-0.712-0.032-3.808 0-7.018 2.614-7.928 6.142zM21.728 10.156h9.17c0.71 1.81 1.102 3.782 1.102 5.844 0 8.776-7.066 15.9-15.818 15.998l6.544-11.334c0.922-1.324 1.462-2.932 1.462-4.664 0-2.286-0.942-4.356-2.46-5.844zM10.188 16c0-3.206 2.608-5.812 5.812-5.812s5.812 2.608 5.812 5.812c0 3.204-2.608 5.812-5.812 5.812s-5.812-2.608-5.812-5.812zM18.194 23.888l-4.58 7.934c-7.704-1.152-13.612-7.798-13.612-15.822 0-2.85 0.746-5.526 2.052-7.844l6.532 11.314c1.308 2.784 4.14 4.718 7.414 4.718 0.76 0 1.494-0.104 2.194-0.298z\"><\/path>\n<\/svg>\n<\/div>","label":"Learn More","url":"https:\/\/support.plex.tv\/articles\/categories\/chromecast","image_markup":"","image_src":"","alt":"Learn More"}],"id":"chromecast"},"android-tv":{"name":"Google TV","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Available from the Google Play Store.","releases":[{"icon":"<div class=\"plex-svg-holder icon-android \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-android-7\" id=\"android\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"512\" height=\"512\" viewBox=\"0 0 512 512\">\n<title><\/title>\n<g id=\"icomoon-ignore\">\n<\/g>\n<path fill=\"#000\" d=\"M448 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.4-32-32-32zM64 192c-17.6 0-32 14.4-32 32v128c0 17.6 14.4 32 32 32s32-14.4 32-32v-128c0-17.6-14.401-32-32-32zM112 368c0 26.51 21.49 48 48 48v0 64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64h64v64c0 17.6 14.4 32 32 32s32-14.4 32-32v-64c26.51 0 48-21.49 48-48v-176h-288v176z\"><\/path>\n<path fill=\"#000\" d=\"M399.108 160.001c-4.858-43.942-29.502-81.896-64.81-104.823l16.012-32.023c3.952-7.903 0.748-17.514-7.155-21.466s-17.515-0.748-21.466 7.156l-16.071 32.143-4.175-1.658c-14.284-4.751-29.561-7.33-45.443-7.33-15.881 0-31.158 2.579-45.444 7.328l-4.174 1.658-16.071-32.141c-3.952-7.904-13.564-11.106-21.466-7.156-7.904 3.952-11.107 13.563-7.156 21.466l16.011 32.023c-35.308 22.926-59.952 60.881-64.811 104.822v16h287.111v-15.999h-0.892zM208 128c-8.837 0-16-7.164-16-16 0-8.824 7.144-15.979 15.965-15.998 0.016 0 0.031 0.001 0.047 0.001 0.009 0 0.018-0.001 0.026-0.001 8.819 0.021 15.962 7.175 15.962 15.998 0 8.836-7.163 16-16 16zM304 128c-8.837 0-16-7.164-16-16 0-8.823 7.143-15.977 15.962-15.998 0.008 0 0.017 0.001 0.025 0.001 0.016 0 0.032-0.001 0.048-0.001 8.82 0.019 15.965 7.174 15.965 15.998 0 8.836-7.163 16-16 16z\"><\/path>\n<\/svg>\n<\/div>","label":"Download","url":"https:\/\/play.google.com\/store\/apps\/details?id=com.plexapp.android","image_markup":"","image_src":"","alt":"Download"}],"id":"android-tv"},"roku":{"name":"Roku","app":true,"version":"","release_date":0,"requirements":"","external_link":true,"description":"Available from the Roku Channel Store.","releases":[{"icon":"<div class=\"plex-svg-holder icon-roku-2 \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-roku-2-10\" id=\"roku-2\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n<title>roku-2<\/title>\n<path d=\"M10.35 14.45c-0.050 0-0.35 0-0.35 0v1.45h0.35c0.4 0.050 0.75-0.3 0.75-0.7s-0.35-0.75-0.75-0.75z\"><\/path>\n<path d=\"M14.050 15.45c-0.3 0-0.55 0.4-0.55 0.95 0 0.5 0.25 0.95 0.55 0.95s0.6-0.4 0.6-0.95c0-0.5-0.3-0.95-0.6-0.95z\"><\/path>\n<path d=\"M31.050 6.2v0c-0.6-5.4-7.050-5.65-7.050-5.65-10.55-1.5-17.85 0.45-17.85 0.45-3.1 0.35-4.55 3.050-4.55 3.050-1.55 3.7-1.4 11.9-1.4 11.9 0 6.65 1.050 10.8 1.050 10.8 0.75 3.55 4.25 4.050 4.25 4.050 6.4 2.1 17.95 0.6 17.95 0.6 7.4-0.3 7.45-5.45 7.45-5.45 1.9-9.85 0.15-19.75 0.15-19.75zM11.4 18.15l-1.050-1.45c-0.15 0-0.35 0-0.35 0v1.45h-1.15v-4.4h1.7c0.95 0 1.75 0.65 1.75 1.45 0 0.5-0.3 0.95-0.75 1.2l1.2 1.75h-1.35zM14.050 18.2c-1 0-1.8-0.8-1.8-1.8s0.8-1.8 1.8-1.8 1.8 0.8 1.8 1.8-0.8 1.8-1.8 1.8zM23.2 18.1h-0.25l-0.55-0.45c-0.2 0.25-0.65 0.55-1.15 0.55-1.050 0-1.45-0.6-1.45-1.3v-2.050l-1.5 1.5 1.8 1.8h-1.45l-1.4-1.4v1.4h-1.15v-3.45h1.15v1.35l1.35-1.35h2.45v1.9c0 0.55 0.1 0.7 0.4 0.7s0.45-0.15 0.6-0.4v-2.25h1.15v3.45z\"><\/path>\n<\/svg>\n<\/div>","label":"Add Plex to Roku","url":"https:\/\/channelstore.roku.com\/details\/13535\/plex","image_markup":"","image_src":"","alt":"Add Plex to Roku"}],"id":"roku"},"smart-tv":{"name":"Smart TVs","app":true,"version":"","release_date":0,"requirements":"","external_link":false,"description":"Click below to get started with Plex on your Smart TV.","releases":[{"icon":"<div class=\"plex-svg-holder icon-smart-tv \" ><!-- Generated by IcoMoon.io -->\n<svg class=\"plexico-icon-smart-tv-11\" id=\"smart-tv\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 32 32\">\n<title>smart-tv<\/title>\n<path d=\"M5.1 5.2l0.4-0.5c0.3 0.3 0.7 0.5 1.1 0.5s0.7-0.2 0.7-0.5v0c0-0.3-0.1-0.4-0.8-0.6-0.8-0.1-1.2-0.4-1.2-1v0c0-0.6 0.5-1 1.2-1 0.5-0.1 0.9 0.1 1.3 0.4l-0.3 0.5c-0.3-0.2-0.6-0.4-1-0.4s-0.6 0.2-0.6 0.4v0c0 0.3 0.2 0.4 0.9 0.6 0.8 0.2 1.2 0.5 1.2 1.1v0c0 0.7-0.5 1.1-1.3 1.1-0.6-0.1-1.2-0.3-1.6-0.6z\"><\/path>\n<path d=\"M9.5 2.1h0.7l1.1 1.7 1.1-1.7h0.6v3.6h-0.6v-2.6l-1.1 1.7-1.1-1.7v2.6h-0.7v-3.6z\"><\/path>\n<path d=\"M16.1 2.1h0.6l1.6 3.6h-0.7l-0.4-0.9h-1.7l-0.4 0.9h-0.6l1.6-3.6zM17 4.3l-0.6-1.4-0.6 1.4h1.2z\"><\/path>\n<path d=\"M19.7 2.1h1.6c0.5 0 0.8 0.1 1 0.4 0.2 0.2 0.3 0.5 0.3 0.8v0c0 0.6-0.4 0.9-0.9 1.1l1 1.4h-0.7l-0.9-1.3h-0.8v1.3h-0.6v-3.7zM21.2 3.9c0.5 0 0.7-0.2 0.7-0.6v0c0-0.4-0.3-0.6-0.7-0.6h-0.9v1.2h0.9z\"><\/path>\n<path d=\"M25.1 2.7h-1.1v-0.6h2.9v0.6h-1.1v3h-0.6v-3z\"><\/path>\n<path d=\"M7.5 28.8h17v1.2h-17v-1.2z\"><\/path>\n<path d=\"M30.7 6.6h-29.4c-0.6 0-1.1 0.5-1.1 1.1v19.2c0 0.6 0.5 1.1 1.1 1.1h29.5c0.6 0 1.1-0.5 1.1-1.1v-19.2c-0.1-0.6-0.6-1.1-1.2-1.1zM21.4 24.1h-1l-4.8-12.9h-4.5v12.9h-0.8v-12.9h-4.8v-0.7h10.7l4.7 12.9 4.7-12.9h0.8l-5 13.6z\"><\/path>\n<\/svg>\n<\/div>","label":"Learn More","url":"https:\/\/support.plex.tv\/articles\/204080173-which-smart-tv-models-are-supported\/","image_markup":"","image_src":"","alt":"Learn More"}],"id":"smart-tv"}}},"pms":{"other":{"docker":{"name":"Docker","id":"docker","app":true,"version":"","release_date":0,"requirements":"","description":"","releases":[{"label":"Learn More","url":"https:\/\/github.com\/plexinc\/pms-docker"}]}},"nas":{"freenas":{"name":"FreeNAS","id":"freenas","app":true,"version":"","release_date":0,"requirements":"","description":"","releases":[{"label":"Learn More","url":"https:\/\/support.plex.tv\/?p=45924"}]}}},"plexamp":"","plexphotos":"","plexdash":""},"products":{"pms":{"pms":{"id":5}},"apps":{"pmp":{"id":6,"group":"plex desktop"},"htpc":{"id":7,"group":"plex htpc"}},"plexamp":{"plexamp":{"id":"plexamp"}},"plexphotos":{"plexphotos":{"id":"plexphotos"}},"plexdash":{"plexdash":{"id":"plexdash"}}},"endpoints":{"downloads":"\/api\/downloads\/{product_id}.json"},"rest_api":{"nonce":"fd4a85135e","endpoint":{"plexamp":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/downloads\/plexamp","plexphotos":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/downloads\/plexphotos","plexdash":"https:\/\/www.plex.tv\/wp-json\/plex\/v1\/downloads\/plexdash"}},"icon_images":{"windows":"https:\/\/www.plex.tv\/wp-content\/themes\/plex\/assets\/img\/downloads\/windows.png"},"icon_mappings":{"macos":"apple","ios":"apple","synology-dsm7":"synology","terramaster-tos5":"terramaster","wd-os3":"wd"},"sort_by_arch":["windows"]};
/* ]]> */
</script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/plex.downloads.min.js?ver=4.0.0-1759750919" id="plex-downloads-manage-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/plex.navbar.min.js?ver=4.0.0-1759750919" id="plex-navbar-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/common/loading.min.js?ver=4.0.0-1759750919" id="component-common-loading-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/downloads/product-apps.min.js?ver=4.0.0-1759750919" id="component-downloads-product-apps-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/downloads/product-pms.min.js?ver=4.0.0-1759750919" id="component-downloads-product-pms-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/downloads/product-plexamp.min.js?ver=4.0.0-1759750919" id="component-downloads-product-plexamp-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/downloads/product-plexphotos.min.js?ver=4.0.0-1759750919" id="component-downloads-product-plexphotos-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/ES6/components/downloads/product-plexdash.min.js?ver=4.0.0-1759750919" id="component-downloads-product-plexdash-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/assets/js/conditional/lib/iframeResizer.min.js?ver=4.0.0-1759750919" id="iframeresizer-js"></script>
<script type="text/javascript" defer="defer" src="https://www.plex.tv/wp-content/themes/plex/dist/js/conditional/plex.fedauth.min.js?ver=4.0.0-1759750919" id="plex-fedauth-js"></script>
<div class="tooltip_templates">
<div id="tooltip_pp" class="tooltips">
<div class="plex-svg-holder icon-plex-pass " ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-plex-pass-53" id="plex-pass" version="1.1" xmlns="http://www.w3.org/2000/svg" width="826" height="512" viewBox="0 0 826 512">
<title></title>
<g id="icomoon-ignore">
</g>
<path fill="#000" d="M812.056 147.589c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-17.781c0-0.006 0-0.013 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-23.228-0.028-42.052-18.852-42.080-42.078-0-0.095-0.001-0.205-0.001-0.314 0-4.299 0.591-8.459 1.695-12.406 0.462-1.293 0.462-2.91-0.616-3.987-0.539-1.617-2.155-2.156-3.772-2.156h-709.297c-1.078 0-2.694 1.078-3.772 2.156-0.539 1.078-1.078 2.695-0.539 4.311 1.028 3.623 1.617 7.784 1.617 12.082 0 0.109-0.001 0.219-0.001 0.328-0.028 23.212-18.851 42.036-42.078 42.064-0.008 0-0.015 0-0.023 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v17.782c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v21.015c-0.001 0.042-0.002 0.090-0.002 0.139 0 2.883 2.076 5.282 4.816 5.782 4.798 0.006 8.658 3.865 8.658 8.627s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v21.113c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 23.228 0.028 42.052 18.851 42.080 42.078 0 3.236-0.539 6.469-1.078 9.702 0 1.616 0 3.233 1.078 4.311 0.901 0.995 2.197 1.618 3.639 1.618 0.047 0 0.094-0 0.141-0.002h707.673c1.616 0 3.233-1.077 3.233-2.695 0.791-0.763 1.283-1.832 1.283-3.017 0-0.462-0.075-0.908-0.213-1.324-0.53-3.204-1.069-6.437-1.069-9.67 0.028-23.229 18.851-42.053 42.078-42.080 0.009 0 0.015 0 0.023 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-0.033 0-0.072 0.001-0.112 0.001-4.699 0-8.509-3.81-8.509-8.509 0-0.040 0-0.080 0.001-0.119-0.001-0.037-0.001-0.089-0.001-0.142 0-4.781 3.849-8.665 8.618-8.72zM807.207 175.072v12.394c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.631 13.471 17.787v12.394c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.631 13.471 17.787v12.394c-7.816 2.288-13.433 9.374-13.471 17.778 0 8.627 5.389 15.632 13.471 17.787v12.394c-7.816 2.288-13.433 9.374-13.471 17.778 0 8.627 5.389 15.632 13.471 17.787v12.051c-26.452 2.694-46.919 24.844-46.931 51.779 0 1.618 0.539 3.234 0.539 5.389h-695.826c0-1.616 0.539-3.772 0-5.389-0.011-26.935-20.479-49.087-46.709-51.762l-0.221-11.873c7.816-2.288 13.433-9.374 13.472-17.778 0-8.627-5.389-15.632-13.471-17.787v-12.394c7.816-2.288 13.434-9.374 13.471-17.778 0-8.627-5.389-15.632-13.471-17.787v-12.394c7.816-2.288 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-12.394c7.816-2.287 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-12.394c7.816-2.287 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-8.622c26.451-2.694 46.919-24.844 46.93-51.779 0-2.695 0-5.928-0.539-8.623h696.364c-0.539 2.695-0.539 5.388-0.539 8.622 0.011 26.936 20.479 49.086 46.71 51.762l0.221 8.64c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.435 13.471 17.591z"></path>
<path fill="#000" d="M682.042 116.825h-538.28c-30.225 0-55.013 24.788-55.013 55.014v162.346c0 30.226 24.837 55.014 55.013 55.014h538.329c30.226 0 55.014-24.837 55.014-55.014v-162.346c0-30.177-24.837-55.013-55.063-55.013zM98.987 334.234v-162.934c0-24.788 19.938-44.236 44.775-44.236h189.339v251.896h-189.339c-0.043 0-0.095 0-0.147 0-24.648 0-44.628-19.981-44.628-44.628 0-0.034 0-0.069 0-0.103zM726.817 334.234c0 0.032 0 0.070 0 0.108 0 24.669-19.999 44.667-44.667 44.667-0.038 0-0.076 0-0.114 0h-339.236v-251.945h339.291c0.032 0 0.070 0 0.108 0 24.669 0 44.667 19.999 44.667 44.667 0 0.037 0 0.076 0 0.113v162.39z"></path>
<path fill="#000" d="M219.792 161.6h-52.858l52.858 91.167-52.858 91.166h52.858l52.858-91.166z"></path>
<path fill="#000" d="M429.607 178.305c-4.85-3.772-11.316-5.388-19.938-5.388h-22.632v71.179h15.089v-25.327h6.466c8.622 0 15.627-1.617 20.477-5.928s7.005-10.238 7.005-17.782v0c0.049-7.006-2.695-12.933-6.466-16.754zM416.674 203.681c-2.156 1.617-5.389 2.695-10.238 2.695h-5.389v-21.554h7.005c4.311 0 7.005 1.077 9.161 2.695 1.683 2.066 2.702 4.731 2.702 7.633 0 0.158-0.003 0.316-0.009 0.472q0 5.636-3.233 8.060z"></path>
<path fill="#000" d="M510.535 231.751h-29.148v-58.834h-15.089v71.228h44.236z"></path>
<path fill="#000" d="M580.637 231.751h-25.865v-18.37h24.249v-12.394h-24.249v-15.627h25.865v-12.443h-40.954v71.228h40.954z"></path>
<path fill="#000" d="M668.032 172.917h-16.166l-15.088 25.915-15.138-25.915h-16.705l22.093 34.536-23.71 36.692h16.166l16.754-26.993 16.705 26.993h17.244l-24.788-35.614z"></path>
<path fill="#000" d="M429.607 268.394c-4.85-3.772-11.316-5.389-19.938-5.389h-22.632v71.18h15.089v-25.376h6.466c8.622 0 15.627-1.616 20.477-5.928s7.005-10.238 7.005-17.782v0c0.049-7.544-2.695-12.933-6.466-16.705zM416.674 293.769c-2.156 1.616-5.389 2.695-10.238 2.695h-5.389v-21.555h7.005c4.311 0 7.005 1.077 9.161 2.695 1.683 2.066 2.702 4.731 2.702 7.633 0 0.158-0.003 0.316-0.009 0.473q0 5.635-3.233 8.060z"></path>
<path fill="#000" d="M482.465 262.466l-25.376 71.719h16.166l5.389-16.705h25.914l5.389 16.705h16.166l-25.376-71.719h-18.272zM492.214 273.783c0 1.077 0.539 2.695 1.077 4.85q0.808 2.425 8.083 25.914h-18.322c4.85-16.166 8.083-26.454 9.161-30.764z"></path>
<path fill="#000" d="M566.626 275.399c1.616-1.616 3.772-2.156 6.466-2.156s4.85 0.539 7.544 1.077c3.595 0.978 6.64 2.082 9.569 3.397l4.442-12.019c-3.772-1.616-7.544-2.695-10.778-3.772-3.772-0.539-7.005-1.077-10.778-1.077-7.544 0-13.471 1.616-17.783 5.389s-6.466 8.622-6.466 15.089c0 3.233 1.077 5.928 2.155 8.622 1.616 2.156 3.233 4.85 5.389 6.466 2.155 2.156 5.389 3.772 9.699 5.928s7.544 3.772 9.161 4.85c1.077 1.077 2.694 2.156 3.233 3.233 0.648 1.080 1.043 2.377 1.077 3.762 0 0.025 0 0.043 0 0.061 0 2.18-1.053 4.115-2.677 5.325-1.634 1.63-4.328 2.168-7.562 2.168-2.694 0-5.928 0-9.161-1.077-3.772-0.539-7.544-2.156-12.394-4.311v14.010c5.389 2.695 12.394 4.311 19.938 4.311 8.083 0 14.549-1.616 19.399-5.389s7.005-8.622 7.005-15.089v0c0-4.311-1.077-8.622-2.694-12.933-2.155-3.233-7.005-6.466-13.471-9.7q-8.083-3.233-9.7-4.85c-1.153-0.62-2.074-1.541-2.677-2.66-0.556-0.573-1.095-2.19-1.095-3.267 0-2.156 0.539-4.311 2.155-5.389z"></path>
<path fill="#000" d="M638.933 275.399c1.616-1.616 3.772-2.156 6.466-2.156s4.85 0.539 7.544 1.077c3.595 0.978 6.64 2.082 9.569 3.397l4.442-12.019c-3.772-1.616-7.544-2.695-10.778-3.772-3.772-0.539-7.005-1.077-10.778-1.077-7.544 0-13.471 1.616-17.783 5.389s-6.466 8.622-6.466 15.089c0 3.233 1.077 5.928 2.155 8.622 1.616 2.156 3.233 4.85 5.389 6.466 2.155 2.156 5.389 3.772 9.699 5.928s7.544 3.772 9.161 4.85c1.077 1.077 2.694 2.156 3.233 3.233 0.648 1.080 1.043 2.377 1.077 3.762 0 0.025 0 0.043 0 0.061 0 2.18-1.053 4.115-2.677 5.325-1.634 1.63-4.328 2.168-7.562 2.168-2.694 0-5.928 0-9.161-1.077-3.772-0.539-7.544-2.156-12.394-4.311v14.010c5.389 2.695 12.394 4.311 19.938 4.311 8.083 0 14.549-1.616 19.399-5.389s7.005-8.622 7.005-15.089v0c0-4.311-1.616-8.622-2.694-12.933-2.155-3.233-7.005-6.466-13.471-9.7q-8.083-3.233-9.7-4.85c-1.153-0.62-2.074-1.541-2.677-2.66-0.556-0.573-1.095-2.19-1.095-3.267 0-2.156 0.539-4.311 2.155-5.389z"></path>
</svg>
</div> <h3>The Best of Plex</h3>
<p>Plex Pass gives you exclusive access to awesome new features and apps.</p>
<a href="https://www.plex.tv/plex-pass/" class="button button-small" data-utm="premium-tooltip">Learn More</a>
</div>
</div>
<div class="tooltip_templates">
<div id="tooltip_pp_hero" class="tooltips">
<div class="plex-svg-holder icon-plex-pass " ><!-- Generated by IcoMoon.io -->
<svg class="plexico-icon-plex-pass-54" id="plex-pass" version="1.1" xmlns="http://www.w3.org/2000/svg" width="826" height="512" viewBox="0 0 826 512">
<title></title>
<g id="icomoon-ignore">
</g>
<path fill="#000" d="M812.056 147.589c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-17.781c0-0.006 0-0.013 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-23.228-0.028-42.052-18.852-42.080-42.078-0-0.095-0.001-0.205-0.001-0.314 0-4.299 0.591-8.459 1.695-12.406 0.462-1.293 0.462-2.91-0.616-3.987-0.539-1.617-2.155-2.156-3.772-2.156h-709.297c-1.078 0-2.694 1.078-3.772 2.156-0.539 1.078-1.078 2.695-0.539 4.311 1.028 3.623 1.617 7.784 1.617 12.082 0 0.109-0.001 0.219-0.001 0.328-0.028 23.212-18.851 42.036-42.078 42.064-0.008 0-0.015 0-0.023 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v17.782c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v21.015c-0.001 0.042-0.002 0.090-0.002 0.139 0 2.883 2.076 5.282 4.816 5.782 4.798 0.006 8.658 3.865 8.658 8.627s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.162-4.83 4.83 0 0.007 0 0.013 0 0.020v21.113c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 4.76 0 8.621 3.861 8.621 8.622s-3.861 8.622-8.622 8.622c-0.006 0-0.012 0-0.020 0-2.668 0-4.83 2.163-4.83 4.83 0 0.007 0 0.014 0 0.021v21.064c0 0.006 0 0.012 0 0.019 0 2.668 2.162 4.83 4.83 4.83 0.007 0 0.014 0 0.021 0 23.228 0.028 42.052 18.851 42.080 42.078 0 3.236-0.539 6.469-1.078 9.702 0 1.616 0 3.233 1.078 4.311 0.901 0.995 2.197 1.618 3.639 1.618 0.047 0 0.094-0 0.141-0.002h707.673c1.616 0 3.233-1.077 3.233-2.695 0.791-0.763 1.283-1.832 1.283-3.017 0-0.462-0.075-0.908-0.213-1.324-0.53-3.204-1.069-6.437-1.069-9.67 0.028-23.229 18.851-42.053 42.078-42.080 0.009 0 0.015 0 0.023 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.163 4.83-4.83 0-0.007 0-0.014 0-0.021v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-4.76 0-8.621-3.861-8.621-8.622s3.861-8.622 8.622-8.622c0.006 0 0.013 0 0.019 0 2.668 0 4.83-2.162 4.83-4.83 0-0.007 0-0.013 0-0.020v-21.015c0-0.006 0-0.012 0-0.019 0-2.668-2.163-4.83-4.83-4.83-0.007 0-0.014 0-0.020 0-0.033 0-0.072 0.001-0.112 0.001-4.699 0-8.509-3.81-8.509-8.509 0-0.040 0-0.080 0.001-0.119-0.001-0.037-0.001-0.089-0.001-0.142 0-4.781 3.849-8.665 8.618-8.72zM807.207 175.072v12.394c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.631 13.471 17.787v12.394c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.631 13.471 17.787v12.394c-7.816 2.288-13.433 9.374-13.471 17.778 0 8.627 5.389 15.632 13.471 17.787v12.394c-7.816 2.288-13.433 9.374-13.471 17.778 0 8.627 5.389 15.632 13.471 17.787v12.051c-26.452 2.694-46.919 24.844-46.931 51.779 0 1.618 0.539 3.234 0.539 5.389h-695.826c0-1.616 0.539-3.772 0-5.389-0.011-26.935-20.479-49.087-46.709-51.762l-0.221-11.873c7.816-2.288 13.433-9.374 13.472-17.778 0-8.627-5.389-15.632-13.471-17.787v-12.394c7.816-2.288 13.434-9.374 13.471-17.778 0-8.627-5.389-15.632-13.471-17.787v-12.394c7.816-2.288 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-12.394c7.816-2.287 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-12.394c7.816-2.287 13.434-9.374 13.471-17.778 0-8.626-5.389-15.631-13.471-17.787v-8.622c26.451-2.694 46.919-24.844 46.93-51.779 0-2.695 0-5.928-0.539-8.623h696.364c-0.539 2.695-0.539 5.388-0.539 8.622 0.011 26.936 20.479 49.086 46.71 51.762l0.221 8.64c-7.816 2.287-13.433 9.374-13.471 17.778 0 8.626 5.389 15.435 13.471 17.591z"></path>
<path fill="#000" d="M682.042 116.825h-538.28c-30.225 0-55.013 24.788-55.013 55.014v162.346c0 30.226 24.837 55.014 55.013 55.014h538.329c30.226 0 55.014-24.837 55.014-55.014v-162.346c0-30.177-24.837-55.013-55.063-55.013zM98.987 334.234v-162.934c0-24.788 19.938-44.236 44.775-44.236h189.339v251.896h-189.339c-0.043 0-0.095 0-0.147 0-24.648 0-44.628-19.981-44.628-44.628 0-0.034 0-0.069 0-0.103zM726.817 334.234c0 0.032 0 0.070 0 0.108 0 24.669-19.999 44.667-44.667 44.667-0.038 0-0.076 0-0.114 0h-339.236v-251.945h339.291c0.032 0 0.070 0 0.108 0 24.669 0 44.667 19.999 44.667 44.667 0 0.037 0 0.076 0 0.113v162.39z"></path>
<path fill="#000" d="M219.792 161.6h-52.858l52.858 91.167-52.858 91.166h52.858l52.858-91.166z"></path>
<path fill="#000" d="M429.607 178.305c-4.85-3.772-11.316-5.388-19.938-5.388h-22.632v71.179h15.089v-25.327h6.466c8.622 0 15.627-1.617 20.477-5.928s7.005-10.238 7.005-17.782v0c0.049-7.006-2.695-12.933-6.466-16.754zM416.674 203.681c-2.156 1.617-5.389 2.695-10.238 2.695h-5.389v-21.554h7.005c4.311 0 7.005 1.077 9.161 2.695 1.683 2.066 2.702 4.731 2.702 7.633 0 0.158-0.003 0.316-0.009 0.472q0 5.636-3.233 8.060z"></path>
<path fill="#000" d="M510.535 231.751h-29.148v-58.834h-15.089v71.228h44.236z"></path>
<path fill="#000" d="M580.637 231.751h-25.865v-18.37h24.249v-12.394h-24.249v-15.627h25.865v-12.443h-40.954v71.228h40.954z"></path>
<path fill="#000" d="M668.032 172.917h-16.166l-15.088 25.915-15.138-25.915h-16.705l22.093 34.536-23.71 36.692h16.166l16.754-26.993 16.705 26.993h17.244l-24.788-35.614z"></path>
<path fill="#000" d="M429.607 268.394c-4.85-3.772-11.316-5.389-19.938-5.389h-22.632v71.18h15.089v-25.376h6.466c8.622 0 15.627-1.616 20.477-5.928s7.005-10.238 7.005-17.782v0c0.049-7.544-2.695-12.933-6.466-16.705zM416.674 293.769c-2.156 1.616-5.389 2.695-10.238 2.695h-5.389v-21.555h7.005c4.311 0 7.005 1.077 9.161 2.695 1.683 2.066 2.702 4.731 2.702 7.633 0 0.158-0.003 0.316-0.009 0.473q0 5.635-3.233 8.060z"></path>
<path fill="#000" d="M482.465 262.466l-25.376 71.719h16.166l5.389-16.705h25.914l5.389 16.705h16.166l-25.376-71.719h-18.272zM492.214 273.783c0 1.077 0.539 2.695 1.077 4.85q0.808 2.425 8.083 25.914h-18.322c4.85-16.166 8.083-26.454 9.161-30.764z"></path>
<path fill="#000" d="M566.626 275.399c1.616-1.616 3.772-2.156 6.466-2.156s4.85 0.539 7.544 1.077c3.595 0.978 6.64 2.082 9.569 3.397l4.442-12.019c-3.772-1.616-7.544-2.695-10.778-3.772-3.772-0.539-7.005-1.077-10.778-1.077-7.544 0-13.471 1.616-17.783 5.389s-6.466 8.622-6.466 15.089c0 3.233 1.077 5.928 2.155 8.622 1.616 2.156 3.233 4.85 5.389 6.466 2.155 2.156 5.389 3.772 9.699 5.928s7.544 3.772 9.161 4.85c1.077 1.077 2.694 2.156 3.233 3.233 0.648 1.080 1.043 2.377 1.077 3.762 0 0.025 0 0.043 0 0.061 0 2.18-1.053 4.115-2.677 5.325-1.634 1.63-4.328 2.168-7.562 2.168-2.694 0-5.928 0-9.161-1.077-3.772-0.539-7.544-2.156-12.394-4.311v14.010c5.389 2.695 12.394 4.311 19.938 4.311 8.083 0 14.549-1.616 19.399-5.389s7.005-8.622 7.005-15.089v0c0-4.311-1.077-8.622-2.694-12.933-2.155-3.233-7.005-6.466-13.471-9.7q-8.083-3.233-9.7-4.85c-1.153-0.62-2.074-1.541-2.677-2.66-0.556-0.573-1.095-2.19-1.095-3.267 0-2.156 0.539-4.311 2.155-5.389z"></path>
<path fill="#000" d="M638.933 275.399c1.616-1.616 3.772-2.156 6.466-2.156s4.85 0.539 7.544 1.077c3.595 0.978 6.64 2.082 9.569 3.397l4.442-12.019c-3.772-1.616-7.544-2.695-10.778-3.772-3.772-0.539-7.005-1.077-10.778-1.077-7.544 0-13.471 1.616-17.783 5.389s-6.466 8.622-6.466 15.089c0 3.233 1.077 5.928 2.155 8.622 1.616 2.156 3.233 4.85 5.389 6.466 2.155 2.156 5.389 3.772 9.699 5.928s7.544 3.772 9.161 4.85c1.077 1.077 2.694 2.156 3.233 3.233 0.648 1.080 1.043 2.377 1.077 3.762 0 0.025 0 0.043 0 0.061 0 2.18-1.053 4.115-2.677 5.325-1.634 1.63-4.328 2.168-7.562 2.168-2.694 0-5.928 0-9.161-1.077-3.772-0.539-7.544-2.156-12.394-4.311v14.010c5.389 2.695 12.394 4.311 19.938 4.311 8.083 0 14.549-1.616 19.399-5.389s7.005-8.622 7.005-15.089v0c0-4.311-1.616-8.622-2.694-12.933-2.155-3.233-7.005-6.466-13.471-9.7q-8.083-3.233-9.7-4.85c-1.153-0.62-2.074-1.541-2.677-2.66-0.556-0.573-1.095-2.19-1.095-3.267 0-2.156 0.539-4.311 2.155-5.389z"></path>
</svg>
</div> <h3>The Best of Plex</h3>
<p>Downloads is a premium feature and requires a Plex Pass subscription.</p>
<a href="https://www.plex.tv/plex-pass/" class="button button-small" data-utm="premium-tooltip">Learn More</a>
</div>
</div>
<style>
.plex-responsive-bg-image.modal-tidal-block.js-loaded{background-image:url('https://www.plex.tv/wp-content/uploads/2018/11/hero-tidal-1800x1013.jpg')}@media screen and (max-width:1440px){.plex-responsive-bg-image.modal-tidal-block.js-loaded{background-image:url('https://www.plex.tv/wp-content/uploads/2018/11/hero-tidal-1440x810.jpg')}}@media screen and (max-width:1024px){.plex-responsive-bg-image.modal-tidal-block.js-loaded{background-image:url('https://www.plex.tv/wp-content/uploads/2018/11/hero-tidal-1024x576.jpg')}}</style>
<div class="remodal remodal-medium remodal-tidal-advert" data-remodal-id="modal-tidal">
<div class="remodal-close close-right" data-remodal-action="close">
<i class="icomoon icon-close"></i>
</div>
<div class="grid-x">
<div class="cell large-12 tidal-advert-top plex-responsive-bg-image modal-tidal-block lazy">
<div class="tidal-advert-text">
<div class="plex-svg-holder icon-tidal-icon " >
<!-- Generator: Adobe Illustrator 23.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg class="plexico-icon-tidal-icon-55" version="1.1" id="tidal-icon-2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 2500 1216" style="enable-background:new 0 0 2500 1216;" xml:space="preserve">
<style type="text/css">
#icon-tidal-icon-55 .st0{stroke:#000000;stroke-width:9.400000e-02;}
</style>
<path class="st0" d="M1026.9,0h1.4c10.5,12,22.4,22.7,33.5,34.2l76,76v1.4c-36.8,36.6-73.4,73.6-110.2,110.2
c-37-36.8-73.8-73.8-110.8-110.6c1.9-3.6,5.5-6,8.3-8.9C959,68.1,993.4,34.4,1026.9,0z M1248.8,0h1.4c1,1.5,2.1,2.9,3.4,4.3
c35.6,35.3,70.7,71,106.6,106.1c-0.9,2.1-2.8,3.4-4.3,5c-35.6,35.4-71,71-106.6,106.5c-37.2-36.6-73.6-74-110.9-110.4
C1174.5,73.8,1212.5,37.5,1248.8,0z M1470.7,0h1.4c6.9,8.3,15,15.3,22.4,23c27.9,27.9,55.6,55.6,83.4,83.4c1.4,1.5,3.6,2.9,4.1,5.2
c-37.3,36.3-73.4,74-110.9,110.2l-105.8-105.8c-1.7-1.9-4-3.3-4.8-5.7c18.7-18.2,37-37,55.6-55.4C1434.2,36.6,1452.8,18.7,1470.7,0z
M1139.9,331.1c36.3-36.3,72.8-72.6,109-109l1.5,0.7c36.5,36.6,72.9,73.3,109.7,109.6c-1.2,2.8-3.8,4.3-5.7,6.5
c-26.5,26.3-53,53-79.5,79.3c-8.6,8.3-16.9,17.5-25.6,25.3c-12.6-11.4-24.1-24.1-36.3-35.8c-24.8-24.8-49.4-49.5-74.3-74.1
C1139.2,332.8,1139.6,331.8,1139.9,331.1L1139.9,331.1z M0.5,808.2h330.9c0.2,26.5,0.2,53,0,79.3H212.2v313
c-0.2,5.2,0.3,10.3-0.7,15.5h-92c0.3-109.6,0.2-218.9,0.2-328.5H0.5V808.2z M607.4,808.2c31,0,61.9,0,92.9,0.2
c-0.2,135.9,0.3,271.8-0.3,407.6h-92.4c-0.5-36.1-0.2-72.2-0.3-108.4C607.4,1007.9,607.3,908.1,607.4,808.2z M2245,808.2
c31,0,61.9,0,92.9,0.2v325.8c53.8,0.3,107.8,0.2,161.7,0.2v81.7h-254.4C2244.6,1080.1,2245.2,944.2,2245,808.2z M1371.9,944.9
c-9.3-32-27.3-61.1-52.5-82.9c-33.2-29.4-76.5-45.4-120.1-51.1c-24.6-3.6-49.5-2.6-74.3-2.8h-109.9c-2.1,0-4.3,0.2-6.4,0.5
c0.5,134.7,0,269.3,0.3,404c-0.2,0.9-0.3,2.4-0.5,3.3h158.9c14.3-2.6,28.9-2.4,43-5.5c48.2-8.8,94.4-32.7,125.9-70.7
c23.2-27.5,37.5-62.1,42.1-97.7C1382.8,1009.6,1381.1,976.2,1371.9,944.9L1371.9,944.9z M1267.2,1080.3c-11.5,18.4-28.6,33-48.3,42
c-17.9,8.3-37.7,12-57.3,12.6c-20.6,0.2-41.3,0-61.9,0.2c-1-22.9-0.2-45.8-0.5-68.6c0-59.7,0-119.2,0.2-178.9h63.8
c32,0.7,64.5,11.7,87.7,34.4c20.8,20.1,32.5,48.5,34.4,77.2C1287.2,1027.2,1282,1056.2,1267.2,1080.3z M1958.8,1120
c-38.9-94.4-77.6-189-116.8-283.3c-3.6-9.5-7.4-19.1-11.7-28.2c-32-0.5-64-0.5-96,0c-54.7,131.6-109.4,263.2-164.1,394.6
c-1.7,4.3-3.8,8.4-4.6,12.9h98.9c9.8-27.2,20.3-54,30.1-81.2c56.1-0.9,112.3-0.2,168.6-0.3c2.9-0.9,3.8,2.2,4.5,4.3
c9.5,25.8,19.1,51.4,28.4,77.2h102C1985.6,1183.7,1971.9,1152,1958.8,1120z M1720.7,1062.4c-0.5-3.6,1.7-6.7,2.8-10
c18.7-49,38-98,56.6-147.1c0.3-0.2,1-0.3,1.4-0.3c19.4,51.6,39.2,103,58.8,154.6c0,0.7,0.2,2.1,0.2,2.8
C1800.6,1062.1,1760.7,1062.1,1720.7,1062.4z"/>
</svg>
</div> <h2>Introducing streaming music powered by TIDAL</h2>
</div>
</div>
<div class="cell large-12 tidal-advert-bottom">
<div class="tidal-advert-text">
<h2>Level up your music library with 60 million high-quality songs.</h2>
<p>TIDAL is seamlessly integrated with your existing music library — beautifully organized right in Plex.</p>
<div class="plexview-modal-tidal-cta-button"></div>
<div class="plexview-template" data-view="modal-tidal-cta-button">
<a class="button" href="https://www.plex.tv/music/" data-utm="tidal-modal">
{{#if (or hasExpiredTidalTrial hasAnyStateTidalSubsc)}}
Choose a Plan
{{else}}
Start 30-Day Free Trial{{/if}}
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|