[openload] Use real Chrome versions (closes #20902)
[youtube-dl] / youtube_dl / extractor / openload.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5 import os
6 import random
7 import re
8 import subprocess
9 import tempfile
10
11 from .common import InfoExtractor
12 from ..compat import (
13     compat_urlparse,
14     compat_kwargs,
15 )
16 from ..utils import (
17     check_executable,
18     determine_ext,
19     encodeArgument,
20     ExtractorError,
21     get_element_by_id,
22     get_exe_version,
23     is_outdated_version,
24     std_headers,
25 )
26
27
28 def cookie_to_dict(cookie):
29     cookie_dict = {
30         'name': cookie.name,
31         'value': cookie.value,
32     }
33     if cookie.port_specified:
34         cookie_dict['port'] = cookie.port
35     if cookie.domain_specified:
36         cookie_dict['domain'] = cookie.domain
37     if cookie.path_specified:
38         cookie_dict['path'] = cookie.path
39     if cookie.expires is not None:
40         cookie_dict['expires'] = cookie.expires
41     if cookie.secure is not None:
42         cookie_dict['secure'] = cookie.secure
43     if cookie.discard is not None:
44         cookie_dict['discard'] = cookie.discard
45     try:
46         if (cookie.has_nonstandard_attr('httpOnly') or
47                 cookie.has_nonstandard_attr('httponly') or
48                 cookie.has_nonstandard_attr('HttpOnly')):
49             cookie_dict['httponly'] = True
50     except TypeError:
51         pass
52     return cookie_dict
53
54
55 def cookie_jar_to_list(cookie_jar):
56     return [cookie_to_dict(cookie) for cookie in cookie_jar]
57
58
59 class PhantomJSwrapper(object):
60     """PhantomJS wrapper class
61
62     This class is experimental.
63     """
64
65     _TEMPLATE = r'''
66         phantom.onError = function(msg, trace) {{
67           var msgStack = ['PHANTOM ERROR: ' + msg];
68           if(trace && trace.length) {{
69             msgStack.push('TRACE:');
70             trace.forEach(function(t) {{
71               msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line
72                 + (t.function ? ' (in function ' + t.function +')' : ''));
73             }});
74           }}
75           console.error(msgStack.join('\n'));
76           phantom.exit(1);
77         }};
78         var page = require('webpage').create();
79         var fs = require('fs');
80         var read = {{ mode: 'r', charset: 'utf-8' }};
81         var write = {{ mode: 'w', charset: 'utf-8' }};
82         JSON.parse(fs.read("{cookies}", read)).forEach(function(x) {{
83           phantom.addCookie(x);
84         }});
85         page.settings.resourceTimeout = {timeout};
86         page.settings.userAgent = "{ua}";
87         page.onLoadStarted = function() {{
88           page.evaluate(function() {{
89             delete window._phantom;
90             delete window.callPhantom;
91           }});
92         }};
93         var saveAndExit = function() {{
94           fs.write("{html}", page.content, write);
95           fs.write("{cookies}", JSON.stringify(phantom.cookies), write);
96           phantom.exit();
97         }};
98         page.onLoadFinished = function(status) {{
99           if(page.url === "") {{
100             page.setContent(fs.read("{html}", read), "{url}");
101           }}
102           else {{
103             {jscode}
104           }}
105         }};
106         page.open("");
107     '''
108
109     _TMP_FILE_NAMES = ['script', 'html', 'cookies']
110
111     @staticmethod
112     def _version():
113         return get_exe_version('phantomjs', version_re=r'([0-9.]+)')
114
115     def __init__(self, extractor, required_version=None, timeout=10000):
116         self._TMP_FILES = {}
117
118         self.exe = check_executable('phantomjs', ['-v'])
119         if not self.exe:
120             raise ExtractorError('PhantomJS executable not found in PATH, '
121                                  'download it from http://phantomjs.org',
122                                  expected=True)
123
124         self.extractor = extractor
125
126         if required_version:
127             version = self._version()
128             if is_outdated_version(version, required_version):
129                 self.extractor._downloader.report_warning(
130                     'Your copy of PhantomJS is outdated, update it to version '
131                     '%s or newer if you encounter any errors.' % required_version)
132
133         self.options = {
134             'timeout': timeout,
135         }
136         for name in self._TMP_FILE_NAMES:
137             tmp = tempfile.NamedTemporaryFile(delete=False)
138             tmp.close()
139             self._TMP_FILES[name] = tmp
140
141     def __del__(self):
142         for name in self._TMP_FILE_NAMES:
143             try:
144                 os.remove(self._TMP_FILES[name].name)
145             except (IOError, OSError, KeyError):
146                 pass
147
148     def _save_cookies(self, url):
149         cookies = cookie_jar_to_list(self.extractor._downloader.cookiejar)
150         for cookie in cookies:
151             if 'path' not in cookie:
152                 cookie['path'] = '/'
153             if 'domain' not in cookie:
154                 cookie['domain'] = compat_urlparse.urlparse(url).netloc
155         with open(self._TMP_FILES['cookies'].name, 'wb') as f:
156             f.write(json.dumps(cookies).encode('utf-8'))
157
158     def _load_cookies(self):
159         with open(self._TMP_FILES['cookies'].name, 'rb') as f:
160             cookies = json.loads(f.read().decode('utf-8'))
161         for cookie in cookies:
162             if cookie['httponly'] is True:
163                 cookie['rest'] = {'httpOnly': None}
164             if 'expiry' in cookie:
165                 cookie['expire_time'] = cookie['expiry']
166             self.extractor._set_cookie(**compat_kwargs(cookie))
167
168     def get(self, url, html=None, video_id=None, note=None, note2='Executing JS on webpage', headers={}, jscode='saveAndExit();'):
169         """
170         Downloads webpage (if needed) and executes JS
171
172         Params:
173             url: website url
174             html: optional, html code of website
175             video_id: video id
176             note: optional, displayed when downloading webpage
177             note2: optional, displayed when executing JS
178             headers: custom http headers
179             jscode: code to be executed when page is loaded
180
181         Returns tuple with:
182             * downloaded website (after JS execution)
183             * anything you print with `console.log` (but not inside `page.execute`!)
184
185         In most cases you don't need to add any `jscode`.
186         It is executed in `page.onLoadFinished`.
187         `saveAndExit();` is mandatory, use it instead of `phantom.exit()`
188         It is possible to wait for some element on the webpage, for example:
189             var check = function() {
190               var elementFound = page.evaluate(function() {
191                 return document.querySelector('#b.done') !== null;
192               });
193               if(elementFound)
194                 saveAndExit();
195               else
196                 window.setTimeout(check, 500);
197             }
198
199             page.evaluate(function(){
200               document.querySelector('#a').click();
201             });
202             check();
203         """
204         if 'saveAndExit();' not in jscode:
205             raise ExtractorError('`saveAndExit();` not found in `jscode`')
206         if not html:
207             html = self.extractor._download_webpage(url, video_id, note=note, headers=headers)
208         with open(self._TMP_FILES['html'].name, 'wb') as f:
209             f.write(html.encode('utf-8'))
210
211         self._save_cookies(url)
212
213         replaces = self.options
214         replaces['url'] = url
215         user_agent = headers.get('User-Agent') or std_headers['User-Agent']
216         replaces['ua'] = user_agent.replace('"', '\\"')
217         replaces['jscode'] = jscode
218
219         for x in self._TMP_FILE_NAMES:
220             replaces[x] = self._TMP_FILES[x].name.replace('\\', '\\\\').replace('"', '\\"')
221
222         with open(self._TMP_FILES['script'].name, 'wb') as f:
223             f.write(self._TEMPLATE.format(**replaces).encode('utf-8'))
224
225         if video_id is None:
226             self.extractor.to_screen('%s' % (note2,))
227         else:
228             self.extractor.to_screen('%s: %s' % (video_id, note2))
229
230         p = subprocess.Popen([
231             self.exe, '--ssl-protocol=any',
232             self._TMP_FILES['script'].name
233         ], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
234         out, err = p.communicate()
235         if p.returncode != 0:
236             raise ExtractorError(
237                 'Executing JS failed\n:' + encodeArgument(err))
238         with open(self._TMP_FILES['html'].name, 'rb') as f:
239             html = f.read().decode('utf-8')
240
241         self._load_cookies()
242
243         return (html, encodeArgument(out))
244
245
246 class OpenloadIE(InfoExtractor):
247     _DOMAINS = r'(?:openload\.(?:co|io|link|pw)|oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|pw|live|space|services)|oladblock\.(?:services|xyz|me)|openloed\.co)'
248     _VALID_URL = r'''(?x)
249                     https?://
250                         (?P<host>
251                             (?:www\.)?
252                             %s
253                         )/
254                         (?:f|embed)/
255                         (?P<id>[a-zA-Z0-9-_]+)
256                     ''' % _DOMAINS
257
258     _TESTS = [{
259         'url': 'https://openload.co/f/kUEfGclsU9o',
260         'md5': 'bf1c059b004ebc7a256f89408e65c36e',
261         'info_dict': {
262             'id': 'kUEfGclsU9o',
263             'ext': 'mp4',
264             'title': 'skyrim_no-audio_1080.mp4',
265             'thumbnail': r're:^https?://.*\.jpg$',
266         },
267     }, {
268         'url': 'https://openload.co/embed/rjC09fkPLYs',
269         'info_dict': {
270             'id': 'rjC09fkPLYs',
271             'ext': 'mp4',
272             'title': 'movie.mp4',
273             'thumbnail': r're:^https?://.*\.jpg$',
274             'subtitles': {
275                 'en': [{
276                     'ext': 'vtt',
277                 }],
278             },
279         },
280         'params': {
281             'skip_download': True,  # test subtitles only
282         },
283     }, {
284         'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
285         'only_matching': True,
286     }, {
287         'url': 'https://openload.io/f/ZAn6oz-VZGE/',
288         'only_matching': True,
289     }, {
290         'url': 'https://openload.co/f/_-ztPaZtMhM/',
291         'only_matching': True,
292     }, {
293         # unavailable via https://openload.co/f/Sxz5sADo82g/, different layout
294         # for title and ext
295         'url': 'https://openload.co/embed/Sxz5sADo82g/',
296         'only_matching': True,
297     }, {
298         # unavailable via https://openload.co/embed/e-Ixz9ZR5L0/ but available
299         # via https://openload.co/f/e-Ixz9ZR5L0/
300         'url': 'https://openload.co/f/e-Ixz9ZR5L0/',
301         'only_matching': True,
302     }, {
303         'url': 'https://oload.tv/embed/KnG-kKZdcfY/',
304         'only_matching': True,
305     }, {
306         'url': 'http://www.openload.link/f/KnG-kKZdcfY',
307         'only_matching': True,
308     }, {
309         'url': 'https://oload.stream/f/KnG-kKZdcfY',
310         'only_matching': True,
311     }, {
312         'url': 'https://oload.xyz/f/WwRBpzW8Wtk',
313         'only_matching': True,
314     }, {
315         'url': 'https://oload.win/f/kUEfGclsU9o',
316         'only_matching': True,
317     }, {
318         'url': 'https://oload.download/f/kUEfGclsU9o',
319         'only_matching': True,
320     }, {
321         'url': 'https://oload.cloud/f/4ZDnBXRWiB8',
322         'only_matching': True,
323     }, {
324         # Its title has not got its extension but url has it
325         'url': 'https://oload.download/f/N4Otkw39VCw/Tomb.Raider.2018.HDRip.XviD.AC3-EVO.avi.mp4',
326         'only_matching': True,
327     }, {
328         'url': 'https://oload.cc/embed/5NEAbI2BDSk',
329         'only_matching': True,
330     }, {
331         'url': 'https://oload.icu/f/-_i4y_F_Hs8',
332         'only_matching': True,
333     }, {
334         'url': 'https://oload.fun/f/gb6G1H4sHXY',
335         'only_matching': True,
336     }, {
337         'url': 'https://oload.club/f/Nr1L-aZ2dbQ',
338         'only_matching': True,
339     }, {
340         'url': 'https://oload.info/f/5NEAbI2BDSk',
341         'only_matching': True,
342     }, {
343         'url': 'https://openload.pw/f/WyKgK8s94N0',
344         'only_matching': True,
345     }, {
346         'url': 'https://oload.pw/f/WyKgK8s94N0',
347         'only_matching': True,
348     }, {
349         'url': 'https://oload.live/f/-Z58UZ-GR4M',
350         'only_matching': True,
351     }, {
352         'url': 'https://oload.space/f/IY4eZSst3u8/',
353         'only_matching': True,
354     }, {
355         'url': 'https://oload.services/embed/bs1NWj1dCag/',
356         'only_matching': True,
357     }, {
358         'url': 'https://oladblock.services/f/b8NWEgkqNLI/',
359         'only_matching': True,
360     }, {
361         'url': 'https://oladblock.xyz/f/b8NWEgkqNLI/',
362         'only_matching': True,
363     }, {
364         'url': 'https://oladblock.me/f/b8NWEgkqNLI/',
365         'only_matching': True,
366     }, {
367         'url': 'https://openloed.co/f/b8NWEgkqNLI/',
368         'only_matching': True,
369     }]
370
371     _USER_AGENT_TPL = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/%s Safari/537.36'
372     _CHROME_VERSIONS = (
373         '74.0.3729.129',
374         '76.0.3780.3',
375         '76.0.3780.2',
376         '74.0.3729.128',
377         '76.0.3780.1',
378         '76.0.3780.0',
379         '75.0.3770.15',
380         '74.0.3729.127',
381         '74.0.3729.126',
382         '76.0.3779.1',
383         '76.0.3779.0',
384         '75.0.3770.14',
385         '74.0.3729.125',
386         '76.0.3778.1',
387         '76.0.3778.0',
388         '75.0.3770.13',
389         '74.0.3729.124',
390         '74.0.3729.123',
391         '73.0.3683.121',
392         '76.0.3777.1',
393         '76.0.3777.0',
394         '75.0.3770.12',
395         '74.0.3729.122',
396         '76.0.3776.4',
397         '75.0.3770.11',
398         '74.0.3729.121',
399         '76.0.3776.3',
400         '76.0.3776.2',
401         '73.0.3683.120',
402         '74.0.3729.120',
403         '74.0.3729.119',
404         '74.0.3729.118',
405         '76.0.3776.1',
406         '76.0.3776.0',
407         '76.0.3775.5',
408         '75.0.3770.10',
409         '74.0.3729.117',
410         '76.0.3775.4',
411         '76.0.3775.3',
412         '74.0.3729.116',
413         '75.0.3770.9',
414         '76.0.3775.2',
415         '76.0.3775.1',
416         '76.0.3775.0',
417         '75.0.3770.8',
418         '74.0.3729.115',
419         '74.0.3729.114',
420         '76.0.3774.1',
421         '76.0.3774.0',
422         '75.0.3770.7',
423         '74.0.3729.113',
424         '74.0.3729.112',
425         '74.0.3729.111',
426         '76.0.3773.1',
427         '76.0.3773.0',
428         '75.0.3770.6',
429         '74.0.3729.110',
430         '74.0.3729.109',
431         '76.0.3772.1',
432         '76.0.3772.0',
433         '75.0.3770.5',
434         '74.0.3729.108',
435         '74.0.3729.107',
436         '76.0.3771.1',
437         '76.0.3771.0',
438         '75.0.3770.4',
439         '74.0.3729.106',
440         '74.0.3729.105',
441         '75.0.3770.3',
442         '74.0.3729.104',
443         '74.0.3729.103',
444         '74.0.3729.102',
445         '75.0.3770.2',
446         '74.0.3729.101',
447         '75.0.3770.1',
448         '75.0.3770.0',
449         '74.0.3729.100',
450         '75.0.3769.5',
451         '75.0.3769.4',
452         '74.0.3729.99',
453         '75.0.3769.3',
454         '75.0.3769.2',
455         '75.0.3768.6',
456         '74.0.3729.98',
457         '75.0.3769.1',
458         '75.0.3769.0',
459         '74.0.3729.97',
460         '73.0.3683.119',
461         '73.0.3683.118',
462         '74.0.3729.96',
463         '75.0.3768.5',
464         '75.0.3768.4',
465         '75.0.3768.3',
466         '75.0.3768.2',
467         '74.0.3729.95',
468         '74.0.3729.94',
469         '75.0.3768.1',
470         '75.0.3768.0',
471         '74.0.3729.93',
472         '74.0.3729.92',
473         '73.0.3683.117',
474         '74.0.3729.91',
475         '75.0.3766.3',
476         '74.0.3729.90',
477         '75.0.3767.2',
478         '75.0.3767.1',
479         '75.0.3767.0',
480         '74.0.3729.89',
481         '73.0.3683.116',
482         '75.0.3766.2',
483         '74.0.3729.88',
484         '75.0.3766.1',
485         '75.0.3766.0',
486         '74.0.3729.87',
487         '73.0.3683.115',
488         '74.0.3729.86',
489         '75.0.3765.1',
490         '75.0.3765.0',
491         '74.0.3729.85',
492         '73.0.3683.114',
493         '74.0.3729.84',
494         '75.0.3764.1',
495         '75.0.3764.0',
496         '74.0.3729.83',
497         '73.0.3683.113',
498         '75.0.3763.2',
499         '75.0.3761.4',
500         '74.0.3729.82',
501         '75.0.3763.1',
502         '75.0.3763.0',
503         '74.0.3729.81',
504         '73.0.3683.112',
505         '75.0.3762.1',
506         '75.0.3762.0',
507         '74.0.3729.80',
508         '75.0.3761.3',
509         '74.0.3729.79',
510         '73.0.3683.111',
511         '75.0.3761.2',
512         '74.0.3729.78',
513         '74.0.3729.77',
514         '75.0.3761.1',
515         '75.0.3761.0',
516         '73.0.3683.110',
517         '74.0.3729.76',
518         '74.0.3729.75',
519         '75.0.3760.0',
520         '74.0.3729.74',
521         '75.0.3759.8',
522         '75.0.3759.7',
523         '75.0.3759.6',
524         '74.0.3729.73',
525         '75.0.3759.5',
526         '74.0.3729.72',
527         '73.0.3683.109',
528         '75.0.3759.4',
529         '75.0.3759.3',
530         '74.0.3729.71',
531         '75.0.3759.2',
532         '74.0.3729.70',
533         '73.0.3683.108',
534         '74.0.3729.69',
535         '75.0.3759.1',
536         '75.0.3759.0',
537         '74.0.3729.68',
538         '73.0.3683.107',
539         '74.0.3729.67',
540         '75.0.3758.1',
541         '75.0.3758.0',
542         '74.0.3729.66',
543         '73.0.3683.106',
544         '74.0.3729.65',
545         '75.0.3757.1',
546         '75.0.3757.0',
547         '74.0.3729.64',
548         '73.0.3683.105',
549         '74.0.3729.63',
550         '75.0.3756.1',
551         '75.0.3756.0',
552         '74.0.3729.62',
553         '73.0.3683.104',
554         '75.0.3755.3',
555         '75.0.3755.2',
556         '73.0.3683.103',
557         '75.0.3755.1',
558         '75.0.3755.0',
559         '74.0.3729.61',
560         '73.0.3683.102',
561         '74.0.3729.60',
562         '75.0.3754.2',
563         '74.0.3729.59',
564         '75.0.3753.4',
565         '74.0.3729.58',
566         '75.0.3754.1',
567         '75.0.3754.0',
568         '74.0.3729.57',
569         '73.0.3683.101',
570         '75.0.3753.3',
571         '75.0.3752.2',
572         '75.0.3753.2',
573         '74.0.3729.56',
574         '75.0.3753.1',
575         '75.0.3753.0',
576         '74.0.3729.55',
577         '73.0.3683.100',
578         '74.0.3729.54',
579         '75.0.3752.1',
580         '75.0.3752.0',
581         '74.0.3729.53',
582         '73.0.3683.99',
583         '74.0.3729.52',
584         '75.0.3751.1',
585         '75.0.3751.0',
586         '74.0.3729.51',
587         '73.0.3683.98',
588         '74.0.3729.50',
589         '75.0.3750.0',
590         '74.0.3729.49',
591         '74.0.3729.48',
592         '74.0.3729.47',
593         '75.0.3749.3',
594         '74.0.3729.46',
595         '73.0.3683.97',
596         '75.0.3749.2',
597         '74.0.3729.45',
598         '75.0.3749.1',
599         '75.0.3749.0',
600         '74.0.3729.44',
601         '73.0.3683.96',
602         '74.0.3729.43',
603         '74.0.3729.42',
604         '75.0.3748.1',
605         '75.0.3748.0',
606         '74.0.3729.41',
607         '75.0.3747.1',
608         '73.0.3683.95',
609         '75.0.3746.4',
610         '74.0.3729.40',
611         '74.0.3729.39',
612         '75.0.3747.0',
613         '75.0.3746.3',
614         '75.0.3746.2',
615         '74.0.3729.38',
616         '75.0.3746.1',
617         '75.0.3746.0',
618         '74.0.3729.37',
619         '73.0.3683.94',
620         '75.0.3745.5',
621         '75.0.3745.4',
622         '75.0.3745.3',
623         '75.0.3745.2',
624         '74.0.3729.36',
625         '75.0.3745.1',
626         '75.0.3745.0',
627         '75.0.3744.2',
628         '74.0.3729.35',
629         '73.0.3683.93',
630         '74.0.3729.34',
631         '75.0.3744.1',
632         '75.0.3744.0',
633         '74.0.3729.33',
634         '73.0.3683.92',
635         '74.0.3729.32',
636         '74.0.3729.31',
637         '73.0.3683.91',
638         '75.0.3741.2',
639         '75.0.3740.5',
640         '74.0.3729.30',
641         '75.0.3741.1',
642         '75.0.3741.0',
643         '74.0.3729.29',
644         '75.0.3740.4',
645         '73.0.3683.90',
646         '74.0.3729.28',
647         '75.0.3740.3',
648         '73.0.3683.89',
649         '75.0.3740.2',
650         '74.0.3729.27',
651         '75.0.3740.1',
652         '75.0.3740.0',
653         '74.0.3729.26',
654         '73.0.3683.88',
655         '73.0.3683.87',
656         '74.0.3729.25',
657         '75.0.3739.1',
658         '75.0.3739.0',
659         '73.0.3683.86',
660         '74.0.3729.24',
661         '73.0.3683.85',
662         '75.0.3738.4',
663         '75.0.3738.3',
664         '75.0.3738.2',
665         '75.0.3738.1',
666         '75.0.3738.0',
667         '74.0.3729.23',
668         '73.0.3683.84',
669         '74.0.3729.22',
670         '74.0.3729.21',
671         '75.0.3737.1',
672         '75.0.3737.0',
673         '74.0.3729.20',
674         '73.0.3683.83',
675         '74.0.3729.19',
676         '75.0.3736.1',
677         '75.0.3736.0',
678         '74.0.3729.18',
679         '73.0.3683.82',
680         '74.0.3729.17',
681         '75.0.3735.1',
682         '75.0.3735.0',
683         '74.0.3729.16',
684         '73.0.3683.81',
685         '75.0.3734.1',
686         '75.0.3734.0',
687         '74.0.3729.15',
688         '73.0.3683.80',
689         '74.0.3729.14',
690         '75.0.3733.1',
691         '75.0.3733.0',
692         '75.0.3732.1',
693         '74.0.3729.13',
694         '74.0.3729.12',
695         '73.0.3683.79',
696         '74.0.3729.11',
697         '75.0.3732.0',
698         '74.0.3729.10',
699         '73.0.3683.78',
700         '74.0.3729.9',
701         '74.0.3729.8',
702         '74.0.3729.7',
703         '75.0.3731.3',
704         '75.0.3731.2',
705         '75.0.3731.0',
706         '74.0.3729.6',
707         '73.0.3683.77',
708         '73.0.3683.76',
709         '75.0.3730.5',
710         '75.0.3730.4',
711         '73.0.3683.75',
712         '74.0.3729.5',
713         '73.0.3683.74',
714         '75.0.3730.3',
715         '75.0.3730.2',
716         '74.0.3729.4',
717         '73.0.3683.73',
718         '73.0.3683.72',
719         '75.0.3730.1',
720         '75.0.3730.0',
721         '74.0.3729.3',
722         '73.0.3683.71',
723         '74.0.3729.2',
724         '73.0.3683.70',
725         '74.0.3729.1',
726         '74.0.3729.0',
727         '74.0.3726.4',
728         '73.0.3683.69',
729         '74.0.3726.3',
730         '74.0.3728.0',
731         '74.0.3726.2',
732         '73.0.3683.68',
733         '74.0.3726.1',
734         '74.0.3726.0',
735         '74.0.3725.4',
736         '73.0.3683.67',
737         '73.0.3683.66',
738         '74.0.3725.3',
739         '74.0.3725.2',
740         '74.0.3725.1',
741         '74.0.3724.8',
742         '74.0.3725.0',
743         '73.0.3683.65',
744         '74.0.3724.7',
745         '74.0.3724.6',
746         '74.0.3724.5',
747         '74.0.3724.4',
748         '74.0.3724.3',
749         '74.0.3724.2',
750         '74.0.3724.1',
751         '74.0.3724.0',
752         '73.0.3683.64',
753         '74.0.3723.1',
754         '74.0.3723.0',
755         '73.0.3683.63',
756         '74.0.3722.1',
757         '74.0.3722.0',
758         '73.0.3683.62',
759         '74.0.3718.9',
760         '74.0.3702.3',
761         '74.0.3721.3',
762         '74.0.3721.2',
763         '74.0.3721.1',
764         '74.0.3721.0',
765         '74.0.3720.6',
766         '73.0.3683.61',
767         '72.0.3626.122',
768         '73.0.3683.60',
769         '74.0.3720.5',
770         '72.0.3626.121',
771         '74.0.3718.8',
772         '74.0.3720.4',
773         '74.0.3720.3',
774         '74.0.3718.7',
775         '74.0.3720.2',
776         '74.0.3720.1',
777         '74.0.3720.0',
778         '74.0.3718.6',
779         '74.0.3719.5',
780         '73.0.3683.59',
781         '74.0.3718.5',
782         '74.0.3718.4',
783         '74.0.3719.4',
784         '74.0.3719.3',
785         '74.0.3719.2',
786         '74.0.3719.1',
787         '73.0.3683.58',
788         '74.0.3719.0',
789         '73.0.3683.57',
790         '73.0.3683.56',
791         '74.0.3718.3',
792         '73.0.3683.55',
793         '74.0.3718.2',
794         '74.0.3718.1',
795         '74.0.3718.0',
796         '73.0.3683.54',
797         '74.0.3717.2',
798         '73.0.3683.53',
799         '74.0.3717.1',
800         '74.0.3717.0',
801         '73.0.3683.52',
802         '74.0.3716.1',
803         '74.0.3716.0',
804         '73.0.3683.51',
805         '74.0.3715.1',
806         '74.0.3715.0',
807         '73.0.3683.50',
808         '74.0.3711.2',
809         '74.0.3714.2',
810         '74.0.3713.3',
811         '74.0.3714.1',
812         '74.0.3714.0',
813         '73.0.3683.49',
814         '74.0.3713.1',
815         '74.0.3713.0',
816         '72.0.3626.120',
817         '73.0.3683.48',
818         '74.0.3712.2',
819         '74.0.3712.1',
820         '74.0.3712.0',
821         '73.0.3683.47',
822         '72.0.3626.119',
823         '73.0.3683.46',
824         '74.0.3710.2',
825         '72.0.3626.118',
826         '74.0.3711.1',
827         '74.0.3711.0',
828         '73.0.3683.45',
829         '72.0.3626.117',
830         '74.0.3710.1',
831         '74.0.3710.0',
832         '73.0.3683.44',
833         '72.0.3626.116',
834         '74.0.3709.1',
835         '74.0.3709.0',
836         '74.0.3704.9',
837         '73.0.3683.43',
838         '72.0.3626.115',
839         '74.0.3704.8',
840         '74.0.3704.7',
841         '74.0.3708.0',
842         '74.0.3706.7',
843         '74.0.3704.6',
844         '73.0.3683.42',
845         '72.0.3626.114',
846         '74.0.3706.6',
847         '72.0.3626.113',
848         '74.0.3704.5',
849         '74.0.3706.5',
850         '74.0.3706.4',
851         '74.0.3706.3',
852         '74.0.3706.2',
853         '74.0.3706.1',
854         '74.0.3706.0',
855         '73.0.3683.41',
856         '72.0.3626.112',
857         '74.0.3705.1',
858         '74.0.3705.0',
859         '73.0.3683.40',
860         '72.0.3626.111',
861         '73.0.3683.39',
862         '74.0.3704.4',
863         '73.0.3683.38',
864         '74.0.3704.3',
865         '74.0.3704.2',
866         '74.0.3704.1',
867         '74.0.3704.0',
868         '73.0.3683.37',
869         '72.0.3626.110',
870         '72.0.3626.109',
871         '74.0.3703.3',
872         '74.0.3703.2',
873         '73.0.3683.36',
874         '74.0.3703.1',
875         '74.0.3703.0',
876         '73.0.3683.35',
877         '72.0.3626.108',
878         '74.0.3702.2',
879         '74.0.3699.3',
880         '74.0.3702.1',
881         '74.0.3702.0',
882         '73.0.3683.34',
883         '72.0.3626.107',
884         '73.0.3683.33',
885         '74.0.3701.1',
886         '74.0.3701.0',
887         '73.0.3683.32',
888         '73.0.3683.31',
889         '72.0.3626.105',
890         '74.0.3700.1',
891         '74.0.3700.0',
892         '73.0.3683.29',
893         '72.0.3626.103',
894         '74.0.3699.2',
895         '74.0.3699.1',
896         '74.0.3699.0',
897         '73.0.3683.28',
898         '72.0.3626.102',
899         '73.0.3683.27',
900         '73.0.3683.26',
901         '74.0.3698.0',
902         '74.0.3696.2',
903         '72.0.3626.101',
904         '73.0.3683.25',
905         '74.0.3696.1',
906         '74.0.3696.0',
907         '74.0.3694.8',
908         '72.0.3626.100',
909         '74.0.3694.7',
910         '74.0.3694.6',
911         '74.0.3694.5',
912         '74.0.3694.4',
913         '72.0.3626.99',
914         '72.0.3626.98',
915         '74.0.3694.3',
916         '73.0.3683.24',
917         '72.0.3626.97',
918         '72.0.3626.96',
919         '72.0.3626.95',
920         '73.0.3683.23',
921         '72.0.3626.94',
922         '73.0.3683.22',
923         '73.0.3683.21',
924         '72.0.3626.93',
925         '74.0.3694.2',
926         '72.0.3626.92',
927         '74.0.3694.1',
928         '74.0.3694.0',
929         '74.0.3693.6',
930         '73.0.3683.20',
931         '72.0.3626.91',
932         '74.0.3693.5',
933         '74.0.3693.4',
934         '74.0.3693.3',
935         '74.0.3693.2',
936         '73.0.3683.19',
937         '74.0.3693.1',
938         '74.0.3693.0',
939         '73.0.3683.18',
940         '72.0.3626.90',
941         '74.0.3692.1',
942         '74.0.3692.0',
943         '73.0.3683.17',
944         '72.0.3626.89',
945         '74.0.3687.3',
946         '74.0.3691.1',
947         '74.0.3691.0',
948         '73.0.3683.16',
949         '72.0.3626.88',
950         '72.0.3626.87',
951         '73.0.3683.15',
952         '74.0.3690.1',
953         '74.0.3690.0',
954         '73.0.3683.14',
955         '72.0.3626.86',
956         '73.0.3683.13',
957         '73.0.3683.12',
958         '74.0.3689.1',
959         '74.0.3689.0',
960         '73.0.3683.11',
961         '72.0.3626.85',
962         '73.0.3683.10',
963         '72.0.3626.84',
964         '73.0.3683.9',
965         '74.0.3688.1',
966         '74.0.3688.0',
967         '73.0.3683.8',
968         '72.0.3626.83',
969         '74.0.3687.2',
970         '74.0.3687.1',
971         '74.0.3687.0',
972         '73.0.3683.7',
973         '72.0.3626.82',
974         '74.0.3686.4',
975         '72.0.3626.81',
976         '74.0.3686.3',
977         '74.0.3686.2',
978         '74.0.3686.1',
979         '74.0.3686.0',
980         '73.0.3683.6',
981         '72.0.3626.80',
982         '74.0.3685.1',
983         '74.0.3685.0',
984         '73.0.3683.5',
985         '72.0.3626.79',
986         '74.0.3684.1',
987         '74.0.3684.0',
988         '73.0.3683.4',
989         '72.0.3626.78',
990         '72.0.3626.77',
991         '73.0.3683.3',
992         '73.0.3683.2',
993         '72.0.3626.76',
994         '73.0.3683.1',
995         '73.0.3683.0',
996         '72.0.3626.75',
997         '71.0.3578.141',
998         '73.0.3682.1',
999         '73.0.3682.0',
1000         '72.0.3626.74',
1001         '71.0.3578.140',
1002         '73.0.3681.4',
1003         '73.0.3681.3',
1004         '73.0.3681.2',
1005         '73.0.3681.1',
1006         '73.0.3681.0',
1007         '72.0.3626.73',
1008         '71.0.3578.139',
1009         '72.0.3626.72',
1010         '72.0.3626.71',
1011         '73.0.3680.1',
1012         '73.0.3680.0',
1013         '72.0.3626.70',
1014         '71.0.3578.138',
1015         '73.0.3678.2',
1016         '73.0.3679.1',
1017         '73.0.3679.0',
1018         '72.0.3626.69',
1019         '71.0.3578.137',
1020         '73.0.3678.1',
1021         '73.0.3678.0',
1022         '71.0.3578.136',
1023         '73.0.3677.1',
1024         '73.0.3677.0',
1025         '72.0.3626.68',
1026         '72.0.3626.67',
1027         '71.0.3578.135',
1028         '73.0.3676.1',
1029         '73.0.3676.0',
1030         '73.0.3674.2',
1031         '72.0.3626.66',
1032         '71.0.3578.134',
1033         '73.0.3674.1',
1034         '73.0.3674.0',
1035         '72.0.3626.65',
1036         '71.0.3578.133',
1037         '73.0.3673.2',
1038         '73.0.3673.1',
1039         '73.0.3673.0',
1040         '72.0.3626.64',
1041         '71.0.3578.132',
1042         '72.0.3626.63',
1043         '72.0.3626.62',
1044         '72.0.3626.61',
1045         '72.0.3626.60',
1046         '73.0.3672.1',
1047         '73.0.3672.0',
1048         '72.0.3626.59',
1049         '71.0.3578.131',
1050         '73.0.3671.3',
1051         '73.0.3671.2',
1052         '73.0.3671.1',
1053         '73.0.3671.0',
1054         '72.0.3626.58',
1055         '71.0.3578.130',
1056         '73.0.3670.1',
1057         '73.0.3670.0',
1058         '72.0.3626.57',
1059         '71.0.3578.129',
1060         '73.0.3669.1',
1061         '73.0.3669.0',
1062         '72.0.3626.56',
1063         '71.0.3578.128',
1064         '73.0.3668.2',
1065         '73.0.3668.1',
1066         '73.0.3668.0',
1067         '72.0.3626.55',
1068         '71.0.3578.127',
1069         '73.0.3667.2',
1070         '73.0.3667.1',
1071         '73.0.3667.0',
1072         '72.0.3626.54',
1073         '71.0.3578.126',
1074         '73.0.3666.1',
1075         '73.0.3666.0',
1076         '72.0.3626.53',
1077         '71.0.3578.125',
1078         '73.0.3665.4',
1079         '73.0.3665.3',
1080         '72.0.3626.52',
1081         '73.0.3665.2',
1082         '73.0.3664.4',
1083         '73.0.3665.1',
1084         '73.0.3665.0',
1085         '72.0.3626.51',
1086         '71.0.3578.124',
1087         '72.0.3626.50',
1088         '73.0.3664.3',
1089         '73.0.3664.2',
1090         '73.0.3664.1',
1091         '73.0.3664.0',
1092         '73.0.3663.2',
1093         '72.0.3626.49',
1094         '71.0.3578.123',
1095         '73.0.3663.1',
1096         '73.0.3663.0',
1097         '72.0.3626.48',
1098         '71.0.3578.122',
1099         '73.0.3662.1',
1100         '73.0.3662.0',
1101         '72.0.3626.47',
1102         '71.0.3578.121',
1103         '73.0.3661.1',
1104         '72.0.3626.46',
1105         '73.0.3661.0',
1106         '72.0.3626.45',
1107         '71.0.3578.120',
1108         '73.0.3660.2',
1109         '73.0.3660.1',
1110         '73.0.3660.0',
1111         '72.0.3626.44',
1112         '71.0.3578.119',
1113         '73.0.3659.1',
1114         '73.0.3659.0',
1115         '72.0.3626.43',
1116         '71.0.3578.118',
1117         '73.0.3658.1',
1118         '73.0.3658.0',
1119         '72.0.3626.42',
1120         '71.0.3578.117',
1121         '73.0.3657.1',
1122         '73.0.3657.0',
1123         '72.0.3626.41',
1124         '71.0.3578.116',
1125         '73.0.3656.1',
1126         '73.0.3656.0',
1127         '72.0.3626.40',
1128         '71.0.3578.115',
1129         '73.0.3655.1',
1130         '73.0.3655.0',
1131         '72.0.3626.39',
1132         '71.0.3578.114',
1133         '73.0.3654.1',
1134         '73.0.3654.0',
1135         '72.0.3626.38',
1136         '71.0.3578.113',
1137         '73.0.3653.1',
1138         '73.0.3653.0',
1139         '72.0.3626.37',
1140         '71.0.3578.112',
1141         '73.0.3652.1',
1142         '73.0.3652.0',
1143         '72.0.3626.36',
1144         '71.0.3578.111',
1145         '73.0.3651.1',
1146         '73.0.3651.0',
1147         '72.0.3626.35',
1148         '71.0.3578.110',
1149         '73.0.3650.1',
1150         '73.0.3650.0',
1151         '72.0.3626.34',
1152         '71.0.3578.109',
1153         '73.0.3649.1',
1154         '73.0.3649.0',
1155         '72.0.3626.33',
1156         '71.0.3578.108',
1157         '73.0.3648.2',
1158         '73.0.3648.1',
1159         '73.0.3648.0',
1160         '72.0.3626.32',
1161         '71.0.3578.107',
1162         '73.0.3647.2',
1163         '73.0.3647.1',
1164         '73.0.3647.0',
1165         '72.0.3626.31',
1166         '71.0.3578.106',
1167         '73.0.3635.3',
1168         '73.0.3646.2',
1169         '73.0.3646.1',
1170         '73.0.3646.0',
1171         '72.0.3626.30',
1172         '71.0.3578.105',
1173         '72.0.3626.29',
1174         '73.0.3645.2',
1175         '73.0.3645.1',
1176         '73.0.3645.0',
1177         '72.0.3626.28',
1178         '71.0.3578.104',
1179         '72.0.3626.27',
1180         '72.0.3626.26',
1181         '72.0.3626.25',
1182         '72.0.3626.24',
1183         '73.0.3644.0',
1184         '73.0.3643.2',
1185         '72.0.3626.23',
1186         '71.0.3578.103',
1187         '73.0.3643.1',
1188         '73.0.3643.0',
1189         '72.0.3626.22',
1190         '71.0.3578.102',
1191         '73.0.3642.1',
1192         '73.0.3642.0',
1193         '72.0.3626.21',
1194         '71.0.3578.101',
1195         '73.0.3641.1',
1196         '73.0.3641.0',
1197         '72.0.3626.20',
1198         '71.0.3578.100',
1199         '72.0.3626.19',
1200         '73.0.3640.1',
1201         '73.0.3640.0',
1202         '72.0.3626.18',
1203         '73.0.3639.1',
1204         '71.0.3578.99',
1205         '73.0.3639.0',
1206         '72.0.3626.17',
1207         '73.0.3638.2',
1208         '72.0.3626.16',
1209         '73.0.3638.1',
1210         '73.0.3638.0',
1211         '72.0.3626.15',
1212         '71.0.3578.98',
1213         '73.0.3635.2',
1214         '71.0.3578.97',
1215         '73.0.3637.1',
1216         '73.0.3637.0',
1217         '72.0.3626.14',
1218         '71.0.3578.96',
1219         '71.0.3578.95',
1220         '72.0.3626.13',
1221         '71.0.3578.94',
1222         '73.0.3636.2',
1223         '71.0.3578.93',
1224         '73.0.3636.1',
1225         '73.0.3636.0',
1226         '72.0.3626.12',
1227         '71.0.3578.92',
1228         '73.0.3635.1',
1229         '73.0.3635.0',
1230         '72.0.3626.11',
1231         '71.0.3578.91',
1232         '73.0.3634.2',
1233         '73.0.3634.1',
1234         '73.0.3634.0',
1235         '72.0.3626.10',
1236         '71.0.3578.90',
1237         '71.0.3578.89',
1238         '73.0.3633.2',
1239         '73.0.3633.1',
1240         '73.0.3633.0',
1241         '72.0.3610.4',
1242         '72.0.3626.9',
1243         '71.0.3578.88',
1244         '73.0.3632.5',
1245         '73.0.3632.4',
1246         '73.0.3632.3',
1247         '73.0.3632.2',
1248         '73.0.3632.1',
1249         '73.0.3632.0',
1250         '72.0.3626.8',
1251         '71.0.3578.87',
1252         '73.0.3631.2',
1253         '73.0.3631.1',
1254         '73.0.3631.0',
1255         '72.0.3626.7',
1256         '71.0.3578.86',
1257         '72.0.3626.6',
1258         '73.0.3630.1',
1259         '73.0.3630.0',
1260         '72.0.3626.5',
1261         '71.0.3578.85',
1262         '72.0.3626.4',
1263         '73.0.3628.3',
1264         '73.0.3628.2',
1265         '73.0.3629.1',
1266         '73.0.3629.0',
1267         '72.0.3626.3',
1268         '71.0.3578.84',
1269         '73.0.3628.1',
1270         '73.0.3628.0',
1271         '71.0.3578.83',
1272         '73.0.3627.1',
1273         '73.0.3627.0',
1274         '72.0.3626.2',
1275         '71.0.3578.82',
1276         '71.0.3578.81',
1277         '71.0.3578.80',
1278         '72.0.3626.1',
1279         '72.0.3626.0',
1280         '71.0.3578.79',
1281         '70.0.3538.124',
1282         '71.0.3578.78',
1283         '72.0.3623.4',
1284         '72.0.3625.2',
1285         '72.0.3625.1',
1286         '72.0.3625.0',
1287         '71.0.3578.77',
1288         '70.0.3538.123',
1289         '72.0.3624.4',
1290         '72.0.3624.3',
1291         '72.0.3624.2',
1292         '71.0.3578.76',
1293         '72.0.3624.1',
1294         '72.0.3624.0',
1295         '72.0.3623.3',
1296         '71.0.3578.75',
1297         '70.0.3538.122',
1298         '71.0.3578.74',
1299         '72.0.3623.2',
1300         '72.0.3610.3',
1301         '72.0.3623.1',
1302         '72.0.3623.0',
1303         '72.0.3622.3',
1304         '72.0.3622.2',
1305         '71.0.3578.73',
1306         '70.0.3538.121',
1307         '72.0.3622.1',
1308         '72.0.3622.0',
1309         '71.0.3578.72',
1310         '70.0.3538.120',
1311         '72.0.3621.1',
1312         '72.0.3621.0',
1313         '71.0.3578.71',
1314         '70.0.3538.119',
1315         '72.0.3620.1',
1316         '72.0.3620.0',
1317         '71.0.3578.70',
1318         '70.0.3538.118',
1319         '71.0.3578.69',
1320         '72.0.3619.1',
1321         '72.0.3619.0',
1322         '71.0.3578.68',
1323         '70.0.3538.117',
1324         '71.0.3578.67',
1325         '72.0.3618.1',
1326         '72.0.3618.0',
1327         '71.0.3578.66',
1328         '70.0.3538.116',
1329         '72.0.3617.1',
1330         '72.0.3617.0',
1331         '71.0.3578.65',
1332         '70.0.3538.115',
1333         '72.0.3602.3',
1334         '71.0.3578.64',
1335         '72.0.3616.1',
1336         '72.0.3616.0',
1337         '71.0.3578.63',
1338         '70.0.3538.114',
1339         '71.0.3578.62',
1340         '72.0.3615.1',
1341         '72.0.3615.0',
1342         '71.0.3578.61',
1343         '70.0.3538.113',
1344         '72.0.3614.1',
1345         '72.0.3614.0',
1346         '71.0.3578.60',
1347         '70.0.3538.112',
1348         '72.0.3613.1',
1349         '72.0.3613.0',
1350         '71.0.3578.59',
1351         '70.0.3538.111',
1352         '72.0.3612.2',
1353         '72.0.3612.1',
1354         '72.0.3612.0',
1355         '70.0.3538.110',
1356         '71.0.3578.58',
1357         '70.0.3538.109',
1358         '72.0.3611.2',
1359         '72.0.3611.1',
1360         '72.0.3611.0',
1361         '71.0.3578.57',
1362         '70.0.3538.108',
1363         '72.0.3610.2',
1364         '71.0.3578.56',
1365         '71.0.3578.55',
1366         '72.0.3610.1',
1367         '72.0.3610.0',
1368         '71.0.3578.54',
1369         '70.0.3538.107',
1370         '71.0.3578.53',
1371         '72.0.3609.3',
1372         '71.0.3578.52',
1373         '72.0.3609.2',
1374         '71.0.3578.51',
1375         '72.0.3608.5',
1376         '72.0.3609.1',
1377         '72.0.3609.0',
1378         '71.0.3578.50',
1379         '70.0.3538.106',
1380         '72.0.3608.4',
1381         '72.0.3608.3',
1382         '72.0.3608.2',
1383         '71.0.3578.49',
1384         '72.0.3608.1',
1385         '72.0.3608.0',
1386         '70.0.3538.105',
1387         '71.0.3578.48',
1388         '72.0.3607.1',
1389         '72.0.3607.0',
1390         '71.0.3578.47',
1391         '70.0.3538.104',
1392         '72.0.3606.2',
1393         '72.0.3606.1',
1394         '72.0.3606.0',
1395         '71.0.3578.46',
1396         '70.0.3538.103',
1397         '70.0.3538.102',
1398         '72.0.3605.3',
1399         '72.0.3605.2',
1400         '72.0.3605.1',
1401         '72.0.3605.0',
1402         '71.0.3578.45',
1403         '70.0.3538.101',
1404         '71.0.3578.44',
1405         '71.0.3578.43',
1406         '70.0.3538.100',
1407         '70.0.3538.99',
1408         '71.0.3578.42',
1409         '72.0.3604.1',
1410         '72.0.3604.0',
1411         '71.0.3578.41',
1412         '70.0.3538.98',
1413         '71.0.3578.40',
1414         '72.0.3603.2',
1415         '72.0.3603.1',
1416         '72.0.3603.0',
1417         '71.0.3578.39',
1418         '70.0.3538.97',
1419         '72.0.3602.2',
1420         '71.0.3578.38',
1421         '71.0.3578.37',
1422         '72.0.3602.1',
1423         '72.0.3602.0',
1424         '71.0.3578.36',
1425         '70.0.3538.96',
1426         '72.0.3601.1',
1427         '72.0.3601.0',
1428         '71.0.3578.35',
1429         '70.0.3538.95',
1430         '72.0.3600.1',
1431         '72.0.3600.0',
1432         '71.0.3578.34',
1433         '70.0.3538.94',
1434         '72.0.3599.3',
1435         '72.0.3599.2',
1436         '72.0.3599.1',
1437         '72.0.3599.0',
1438         '71.0.3578.33',
1439         '70.0.3538.93',
1440         '72.0.3598.1',
1441         '72.0.3598.0',
1442         '71.0.3578.32',
1443         '70.0.3538.87',
1444         '72.0.3597.1',
1445         '72.0.3597.0',
1446         '72.0.3596.2',
1447         '71.0.3578.31',
1448         '70.0.3538.86',
1449         '71.0.3578.30',
1450         '71.0.3578.29',
1451         '72.0.3596.1',
1452         '72.0.3596.0',
1453         '71.0.3578.28',
1454         '70.0.3538.85',
1455         '72.0.3595.2',
1456         '72.0.3591.3',
1457         '72.0.3595.1',
1458         '72.0.3595.0',
1459         '71.0.3578.27',
1460         '70.0.3538.84',
1461         '72.0.3594.1',
1462         '72.0.3594.0',
1463         '71.0.3578.26',
1464         '70.0.3538.83',
1465         '72.0.3593.2',
1466         '72.0.3593.1',
1467         '72.0.3593.0',
1468         '71.0.3578.25',
1469         '70.0.3538.82',
1470         '72.0.3589.3',
1471         '72.0.3592.2',
1472         '72.0.3592.1',
1473         '72.0.3592.0',
1474         '71.0.3578.24',
1475         '72.0.3589.2',
1476         '70.0.3538.81',
1477         '70.0.3538.80',
1478         '72.0.3591.2',
1479         '72.0.3591.1',
1480         '72.0.3591.0',
1481         '71.0.3578.23',
1482         '70.0.3538.79',
1483         '71.0.3578.22',
1484         '72.0.3590.1',
1485         '72.0.3590.0',
1486         '71.0.3578.21',
1487         '70.0.3538.78',
1488         '70.0.3538.77',
1489         '72.0.3589.1',
1490         '72.0.3589.0',
1491         '71.0.3578.20',
1492         '70.0.3538.76',
1493         '71.0.3578.19',
1494         '70.0.3538.75',
1495         '72.0.3588.1',
1496         '72.0.3588.0',
1497         '71.0.3578.18',
1498         '70.0.3538.74',
1499         '72.0.3586.2',
1500         '72.0.3587.0',
1501         '71.0.3578.17',
1502         '70.0.3538.73',
1503         '72.0.3586.1',
1504         '72.0.3586.0',
1505         '71.0.3578.16',
1506         '70.0.3538.72',
1507         '72.0.3585.1',
1508         '72.0.3585.0',
1509         '71.0.3578.15',
1510         '70.0.3538.71',
1511         '71.0.3578.14',
1512         '72.0.3584.1',
1513         '72.0.3584.0',
1514         '71.0.3578.13',
1515         '70.0.3538.70',
1516         '72.0.3583.2',
1517         '71.0.3578.12',
1518         '72.0.3583.1',
1519         '72.0.3583.0',
1520         '71.0.3578.11',
1521         '70.0.3538.69',
1522         '71.0.3578.10',
1523         '72.0.3582.0',
1524         '72.0.3581.4',
1525         '71.0.3578.9',
1526         '70.0.3538.67',
1527         '72.0.3581.3',
1528         '72.0.3581.2',
1529         '72.0.3581.1',
1530         '72.0.3581.0',
1531         '71.0.3578.8',
1532         '70.0.3538.66',
1533         '72.0.3580.1',
1534         '72.0.3580.0',
1535         '71.0.3578.7',
1536         '70.0.3538.65',
1537         '71.0.3578.6',
1538         '72.0.3579.1',
1539         '72.0.3579.0',
1540         '71.0.3578.5',
1541         '70.0.3538.64',
1542         '71.0.3578.4',
1543         '71.0.3578.3',
1544         '71.0.3578.2',
1545         '71.0.3578.1',
1546         '71.0.3578.0',
1547         '70.0.3538.63',
1548         '69.0.3497.128',
1549         '70.0.3538.62',
1550         '70.0.3538.61',
1551         '70.0.3538.60',
1552         '70.0.3538.59',
1553         '71.0.3577.1',
1554         '71.0.3577.0',
1555         '70.0.3538.58',
1556         '69.0.3497.127',
1557         '71.0.3576.2',
1558         '71.0.3576.1',
1559         '71.0.3576.0',
1560         '70.0.3538.57',
1561         '70.0.3538.56',
1562         '71.0.3575.2',
1563         '70.0.3538.55',
1564         '69.0.3497.126',
1565         '70.0.3538.54',
1566         '71.0.3575.1',
1567         '71.0.3575.0',
1568         '71.0.3574.1',
1569         '71.0.3574.0',
1570         '70.0.3538.53',
1571         '69.0.3497.125',
1572         '70.0.3538.52',
1573         '71.0.3573.1',
1574         '71.0.3573.0',
1575         '70.0.3538.51',
1576         '69.0.3497.124',
1577         '71.0.3572.1',
1578         '71.0.3572.0',
1579         '70.0.3538.50',
1580         '69.0.3497.123',
1581         '71.0.3571.2',
1582         '70.0.3538.49',
1583         '69.0.3497.122',
1584         '71.0.3571.1',
1585         '71.0.3571.0',
1586         '70.0.3538.48',
1587         '69.0.3497.121',
1588         '71.0.3570.1',
1589         '71.0.3570.0',
1590         '70.0.3538.47',
1591         '69.0.3497.120',
1592         '71.0.3568.2',
1593         '71.0.3569.1',
1594         '71.0.3569.0',
1595         '70.0.3538.46',
1596         '69.0.3497.119',
1597         '70.0.3538.45',
1598         '71.0.3568.1',
1599         '71.0.3568.0',
1600         '70.0.3538.44',
1601         '69.0.3497.118',
1602         '70.0.3538.43',
1603         '70.0.3538.42',
1604         '71.0.3567.1',
1605         '71.0.3567.0',
1606         '70.0.3538.41',
1607         '69.0.3497.117',
1608         '71.0.3566.1',
1609         '71.0.3566.0',
1610         '70.0.3538.40',
1611         '69.0.3497.116',
1612         '71.0.3565.1',
1613         '71.0.3565.0',
1614         '70.0.3538.39',
1615         '69.0.3497.115',
1616         '71.0.3564.1',
1617         '71.0.3564.0',
1618         '70.0.3538.38',
1619         '69.0.3497.114',
1620         '71.0.3563.0',
1621         '71.0.3562.2',
1622         '70.0.3538.37',
1623         '69.0.3497.113',
1624         '70.0.3538.36',
1625         '70.0.3538.35',
1626         '71.0.3562.1',
1627         '71.0.3562.0',
1628         '70.0.3538.34',
1629         '69.0.3497.112',
1630         '70.0.3538.33',
1631         '71.0.3561.1',
1632         '71.0.3561.0',
1633         '70.0.3538.32',
1634         '69.0.3497.111',
1635         '71.0.3559.6',
1636         '71.0.3560.1',
1637         '71.0.3560.0',
1638         '71.0.3559.5',
1639         '71.0.3559.4',
1640         '70.0.3538.31',
1641         '69.0.3497.110',
1642         '71.0.3559.3',
1643         '70.0.3538.30',
1644         '69.0.3497.109',
1645         '71.0.3559.2',
1646         '71.0.3559.1',
1647         '71.0.3559.0',
1648         '70.0.3538.29',
1649         '69.0.3497.108',
1650         '71.0.3558.2',
1651         '71.0.3558.1',
1652         '71.0.3558.0',
1653         '70.0.3538.28',
1654         '69.0.3497.107',
1655         '71.0.3557.2',
1656         '71.0.3557.1',
1657         '71.0.3557.0',
1658         '70.0.3538.27',
1659         '69.0.3497.106',
1660         '71.0.3554.4',
1661         '70.0.3538.26',
1662         '71.0.3556.1',
1663         '71.0.3556.0',
1664         '70.0.3538.25',
1665         '71.0.3554.3',
1666         '69.0.3497.105',
1667         '71.0.3554.2',
1668         '70.0.3538.24',
1669         '69.0.3497.104',
1670         '71.0.3555.2',
1671         '70.0.3538.23',
1672         '71.0.3555.1',
1673         '71.0.3555.0',
1674         '70.0.3538.22',
1675         '69.0.3497.103',
1676         '71.0.3554.1',
1677         '71.0.3554.0',
1678         '70.0.3538.21',
1679         '69.0.3497.102',
1680         '71.0.3553.3',
1681         '70.0.3538.20',
1682         '69.0.3497.101',
1683         '71.0.3553.2',
1684         '69.0.3497.100',
1685         '71.0.3553.1',
1686         '71.0.3553.0',
1687         '70.0.3538.19',
1688         '69.0.3497.99',
1689         '69.0.3497.98',
1690         '69.0.3497.97',
1691         '71.0.3552.6',
1692         '71.0.3552.5',
1693         '71.0.3552.4',
1694         '71.0.3552.3',
1695         '71.0.3552.2',
1696         '71.0.3552.1',
1697         '71.0.3552.0',
1698         '70.0.3538.18',
1699         '69.0.3497.96',
1700         '71.0.3551.3',
1701         '71.0.3551.2',
1702         '71.0.3551.1',
1703         '71.0.3551.0',
1704         '70.0.3538.17',
1705         '69.0.3497.95',
1706         '71.0.3550.3',
1707         '71.0.3550.2',
1708         '71.0.3550.1',
1709         '71.0.3550.0',
1710         '70.0.3538.16',
1711         '69.0.3497.94',
1712         '71.0.3549.1',
1713         '71.0.3549.0',
1714         '70.0.3538.15',
1715         '69.0.3497.93',
1716         '69.0.3497.92',
1717         '71.0.3548.1',
1718         '71.0.3548.0',
1719         '70.0.3538.14',
1720         '69.0.3497.91',
1721         '71.0.3547.1',
1722         '71.0.3547.0',
1723         '70.0.3538.13',
1724         '69.0.3497.90',
1725         '71.0.3546.2',
1726         '69.0.3497.89',
1727         '71.0.3546.1',
1728         '71.0.3546.0',
1729         '70.0.3538.12',
1730         '69.0.3497.88',
1731         '71.0.3545.4',
1732         '71.0.3545.3',
1733         '71.0.3545.2',
1734         '71.0.3545.1',
1735         '71.0.3545.0',
1736         '70.0.3538.11',
1737         '69.0.3497.87',
1738         '71.0.3544.5',
1739         '71.0.3544.4',
1740         '71.0.3544.3',
1741         '71.0.3544.2',
1742         '71.0.3544.1',
1743         '71.0.3544.0',
1744         '69.0.3497.86',
1745         '70.0.3538.10',
1746         '69.0.3497.85',
1747         '70.0.3538.9',
1748         '69.0.3497.84',
1749         '71.0.3543.4',
1750         '70.0.3538.8',
1751         '71.0.3543.3',
1752         '71.0.3543.2',
1753         '71.0.3543.1',
1754         '71.0.3543.0',
1755         '70.0.3538.7',
1756         '69.0.3497.83',
1757         '71.0.3542.2',
1758         '71.0.3542.1',
1759         '71.0.3542.0',
1760         '70.0.3538.6',
1761         '69.0.3497.82',
1762         '69.0.3497.81',
1763         '71.0.3541.1',
1764         '71.0.3541.0',
1765         '70.0.3538.5',
1766         '69.0.3497.80',
1767         '71.0.3540.1',
1768         '71.0.3540.0',
1769         '70.0.3538.4',
1770         '69.0.3497.79',
1771         '70.0.3538.3',
1772         '71.0.3539.1',
1773         '71.0.3539.0',
1774         '69.0.3497.78',
1775         '68.0.3440.134',
1776         '69.0.3497.77',
1777         '70.0.3538.2',
1778         '70.0.3538.1',
1779         '70.0.3538.0',
1780         '69.0.3497.76',
1781         '68.0.3440.133',
1782         '69.0.3497.75',
1783         '70.0.3537.2',
1784         '70.0.3537.1',
1785         '70.0.3537.0',
1786         '69.0.3497.74',
1787         '68.0.3440.132',
1788         '70.0.3536.0',
1789         '70.0.3535.5',
1790         '70.0.3535.4',
1791         '70.0.3535.3',
1792         '69.0.3497.73',
1793         '68.0.3440.131',
1794         '70.0.3532.8',
1795         '70.0.3532.7',
1796         '69.0.3497.72',
1797         '69.0.3497.71',
1798         '70.0.3535.2',
1799         '70.0.3535.1',
1800         '70.0.3535.0',
1801         '69.0.3497.70',
1802         '68.0.3440.130',
1803         '69.0.3497.69',
1804         '68.0.3440.129',
1805         '70.0.3534.4',
1806         '70.0.3534.3',
1807         '70.0.3534.2',
1808         '70.0.3534.1',
1809         '70.0.3534.0',
1810         '69.0.3497.68',
1811         '68.0.3440.128',
1812         '70.0.3533.2',
1813         '70.0.3533.1',
1814         '70.0.3533.0',
1815         '69.0.3497.67',
1816         '68.0.3440.127',
1817         '70.0.3532.6',
1818         '70.0.3532.5',
1819         '70.0.3532.4',
1820         '69.0.3497.66',
1821         '68.0.3440.126',
1822         '70.0.3532.3',
1823         '70.0.3532.2',
1824         '70.0.3532.1',
1825         '69.0.3497.60',
1826         '69.0.3497.65',
1827         '69.0.3497.64',
1828         '70.0.3532.0',
1829         '70.0.3531.0',
1830         '70.0.3530.4',
1831         '70.0.3530.3',
1832         '70.0.3530.2',
1833         '69.0.3497.58',
1834         '68.0.3440.125',
1835         '69.0.3497.57',
1836         '69.0.3497.56',
1837         '69.0.3497.55',
1838         '69.0.3497.54',
1839         '70.0.3530.1',
1840         '70.0.3530.0',
1841         '69.0.3497.53',
1842         '68.0.3440.124',
1843         '69.0.3497.52',
1844         '70.0.3529.3',
1845         '70.0.3529.2',
1846         '70.0.3529.1',
1847         '70.0.3529.0',
1848         '69.0.3497.51',
1849         '70.0.3528.4',
1850         '68.0.3440.123',
1851         '70.0.3528.3',
1852         '70.0.3528.2',
1853         '70.0.3528.1',
1854         '70.0.3528.0',
1855         '69.0.3497.50',
1856         '68.0.3440.122',
1857         '70.0.3527.1',
1858         '70.0.3527.0',
1859         '69.0.3497.49',
1860         '68.0.3440.121',
1861         '70.0.3526.1',
1862         '70.0.3526.0',
1863         '68.0.3440.120',
1864         '69.0.3497.48',
1865         '69.0.3497.47',
1866         '68.0.3440.119',
1867         '68.0.3440.118',
1868         '70.0.3525.5',
1869         '70.0.3525.4',
1870         '70.0.3525.3',
1871         '68.0.3440.117',
1872         '69.0.3497.46',
1873         '70.0.3525.2',
1874         '70.0.3525.1',
1875         '70.0.3525.0',
1876         '69.0.3497.45',
1877         '68.0.3440.116',
1878         '70.0.3524.4',
1879         '70.0.3524.3',
1880         '69.0.3497.44',
1881         '70.0.3524.2',
1882         '70.0.3524.1',
1883         '70.0.3524.0',
1884         '70.0.3523.2',
1885         '69.0.3497.43',
1886         '68.0.3440.115',
1887         '70.0.3505.9',
1888         '69.0.3497.42',
1889         '70.0.3505.8',
1890         '70.0.3523.1',
1891         '70.0.3523.0',
1892         '69.0.3497.41',
1893         '68.0.3440.114',
1894         '70.0.3505.7',
1895         '69.0.3497.40',
1896         '70.0.3522.1',
1897         '70.0.3522.0',
1898         '70.0.3521.2',
1899         '69.0.3497.39',
1900         '68.0.3440.113',
1901         '70.0.3505.6',
1902         '70.0.3521.1',
1903         '70.0.3521.0',
1904         '69.0.3497.38',
1905         '68.0.3440.112',
1906         '70.0.3520.1',
1907         '70.0.3520.0',
1908         '69.0.3497.37',
1909         '68.0.3440.111',
1910         '70.0.3519.3',
1911         '70.0.3519.2',
1912         '70.0.3519.1',
1913         '70.0.3519.0',
1914         '69.0.3497.36',
1915         '68.0.3440.110',
1916         '70.0.3518.1',
1917         '70.0.3518.0',
1918         '69.0.3497.35',
1919         '69.0.3497.34',
1920         '68.0.3440.109',
1921         '70.0.3517.1',
1922         '70.0.3517.0',
1923         '69.0.3497.33',
1924         '68.0.3440.108',
1925         '69.0.3497.32',
1926         '70.0.3516.3',
1927         '70.0.3516.2',
1928         '70.0.3516.1',
1929         '70.0.3516.0',
1930         '69.0.3497.31',
1931         '68.0.3440.107',
1932         '70.0.3515.4',
1933         '68.0.3440.106',
1934         '70.0.3515.3',
1935         '70.0.3515.2',
1936         '70.0.3515.1',
1937         '70.0.3515.0',
1938         '69.0.3497.30',
1939         '68.0.3440.105',
1940         '68.0.3440.104',
1941         '70.0.3514.2',
1942         '70.0.3514.1',
1943         '70.0.3514.0',
1944         '69.0.3497.29',
1945         '68.0.3440.103',
1946         '70.0.3513.1',
1947         '70.0.3513.0',
1948         '69.0.3497.28',
1949     )
1950
1951     @staticmethod
1952     def _extract_urls(webpage):
1953         return re.findall(
1954             r'<iframe[^>]+src=["\']((?:https?://)?%s/embed/[a-zA-Z0-9-_]+)'
1955             % OpenloadIE._DOMAINS, webpage)
1956
1957     def _real_extract(self, url):
1958         mobj = re.match(self._VALID_URL, url)
1959         host = mobj.group('host')
1960         video_id = mobj.group('id')
1961
1962         url_pattern = 'https://%s/%%s/%s/' % (host, video_id)
1963         headers = {
1964             'User-Agent': self._USER_AGENT_TPL % random.choice(self._CHROME_VERSIONS),
1965         }
1966
1967         for path in ('embed', 'f'):
1968             page_url = url_pattern % path
1969             last = path == 'f'
1970             webpage = self._download_webpage(
1971                 page_url, video_id, 'Downloading %s webpage' % path,
1972                 headers=headers, fatal=last)
1973             if not webpage:
1974                 continue
1975             if 'File not found' in webpage or 'deleted by the owner' in webpage:
1976                 if not last:
1977                     continue
1978                 raise ExtractorError('File not found', expected=True, video_id=video_id)
1979             break
1980
1981         phantom = PhantomJSwrapper(self, required_version='2.0')
1982         webpage, _ = phantom.get(page_url, html=webpage, video_id=video_id, headers=headers)
1983
1984         decoded_id = (get_element_by_id('streamurl', webpage) or
1985                       get_element_by_id('streamuri', webpage) or
1986                       get_element_by_id('streamurj', webpage) or
1987                       self._search_regex(
1988                           (r'>\s*([\w-]+~\d{10,}~\d+\.\d+\.0\.0~[\w-]+)\s*<',
1989                            r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)',
1990                            r'>\s*([\w-]+~\d{10,}~(?:[a-f\d]+:){2}:~[\w-]+)\s*<',
1991                            r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)\s*<',
1992                            r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)'), webpage,
1993                           'stream URL'))
1994
1995         video_url = 'https://%s/stream/%s?mime=true' % (host, decoded_id)
1996
1997         title = self._og_search_title(webpage, default=None) or self._search_regex(
1998             r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,
1999             'title', default=None) or self._html_search_meta(
2000             'description', webpage, 'title', fatal=True)
2001
2002         entries = self._parse_html5_media_entries(page_url, webpage, video_id)
2003         entry = entries[0] if entries else {}
2004         subtitles = entry.get('subtitles')
2005
2006         return {
2007             'id': video_id,
2008             'title': title,
2009             'thumbnail': entry.get('thumbnail') or self._og_search_thumbnail(webpage, default=None),
2010             'url': video_url,
2011             'ext': determine_ext(title, None) or determine_ext(url, 'mp4'),
2012             'subtitles': subtitles,
2013             'http_headers': headers,
2014         }