diff --git a/app/Console/Command/UserShell.php b/app/Console/Command/UserShell.php index f55c40446..d65a0409f 100644 --- a/app/Console/Command/UserShell.php +++ b/app/Console/Command/UserShell.php @@ -3,10 +3,11 @@ /** * @property User $User * @property Log $Log + * @property UserLoginProfile $UserLoginProfile */ class UserShell extends AppShell { - public $uses = ['User', 'Log']; + public $uses = ['User', 'Log', 'UserLoginProfile']; public function getOptionParser() { @@ -29,7 +30,7 @@ class UserShell extends AppShell 'help' => __('Get information about given authkey.'), 'parser' => [ 'arguments' => [ - 'authkey' => ['help' => __('Authentication key. If not provide, it will be read from STDIN.')], + 'authkey' => ['help' => __('Authentication key. If not provided, it will be read from STDIN.')], ], ] ]); @@ -112,6 +113,14 @@ class UserShell extends AppShell ], ], ]); + $parser->addSubcommand('ip_country', [ + 'help' => __('Get country for given IP address'), + 'parser' => [ + 'arguments' => [ + 'ip' => ['help' => __('IPv4 or IPv6 address.'), 'required' => true], + ] + ], + ]); $parser->addSubcommand('require_password_change_for_old_passwords', [ 'help' => __('Trigger forced password change on next login for users with an old (older than x days) password.'), 'parser' => [ @@ -188,11 +197,7 @@ class UserShell extends AppShell public function authkey() { - if (isset($this->args[0])) { - $authkey = $this->args[0]; - } else { - $authkey = fgets(STDIN); // read line from STDIN - } + $authkey = $this->args[0] ?? fgets(STDIN); $authkey = trim($authkey); if (strlen($authkey) !== 40) { $this->error('Authkey has not valid format.'); @@ -353,7 +358,7 @@ class UserShell extends AppShell $conditions = ['User.disabled' => false]; // fetch just not disabled users - $userId = isset($this->args[0]) ? $this->args[0] : null; + $userId = $this->args[0] ?? null; if ($userId) { $conditions['OR'] = [ 'User.id' => $userId, @@ -412,7 +417,7 @@ class UserShell extends AppShell } $user = $this->getUser($userId); - # validate new authentication key if provided + // validate new authentication key if provided if (!empty($newkey) && (strlen($newkey) != 40 || !ctype_alnum($newkey))) { $this->error('The new auth key needs to be 40 characters long and only alphanumeric.'); } @@ -447,7 +452,7 @@ class UserShell extends AppShell $this->out('Storing user IP addresses is disabled.'); } - $ips = $this->User->setupRedisWithException()->smembers('misp:user_ip:' . $user['id']); + $ips = RedisTool::init()->smembers('misp:user_ip:' . $user['id']); if ($this->params['json']) { $this->out($this->json($ips)); @@ -470,36 +475,50 @@ class UserShell extends AppShell $this->out('Storing user IP addresses is disabled.'); } - $userId = $this->User->setupRedisWithException()->get('misp:ip_user:' . $ip); + $userId = RedisTool::init()->get('misp:ip_user:' . $ip); if (empty($userId)) { $this->out('No hits.'); $this->_stop(); } - $user = $this->User->find('first', array( + $user = $this->User->find('first', [ 'recursive' => -1, - 'conditions' => array('User.id' => $userId), + 'conditions' => ['User.id' => $userId], 'fields' => ['id', 'email'], - )); + ]); if (empty($user)) { $this->error("User with ID $userId doesn't exists anymore."); } + $ipCountry = $this->UserLoginProfile->countryByIp($ip); + if ($this->params['json']) { $this->out($this->json([ 'ip' => $ip, 'id' => $user['User']['id'], 'email' => $user['User']['email'], + 'country' => $ipCountry, ])); } else { - $this->out(sprintf( - '%s==============================%sIP: %s%s==============================%sUser #%s: %s%s==============================%s', - PHP_EOL, PHP_EOL, $ip, PHP_EOL, PHP_EOL, $user['User']['id'], $user['User']['email'], PHP_EOL, PHP_EOL - )); + $this->hr(); + $this->out("IP: $ip (country $ipCountry)"); + $this->hr(); + $this->out("User #{$user['User']['id']}: {$user['User']['email']}"); + $this->hr(); } } + public function ip_country() + { + list($ip) = $this->args; + if (!filter_var($ip, FILTER_VALIDATE_IP)) { + $this->error("IP `$ip` is not valid IPv4 or IPv6 address"); + } + + $this->out($this->UserLoginProfile->countryByIp($ip)); + } + public function require_password_change_for_old_passwords() { list($days) = $this->args; diff --git a/app/Lib/Tools/ApcuCacheTool.php b/app/Lib/Tools/ApcuCacheTool.php index 16b884e26..625639eb9 100644 --- a/app/Lib/Tools/ApcuCacheTool.php +++ b/app/Lib/Tools/ApcuCacheTool.php @@ -14,9 +14,19 @@ class ApcuCacheTool implements \Psr\SimpleCache\CacheInterface $this->prefix = $prefix; } + /** + * Fetches a value from the cache. + * + * @param string $key The unique key of this item in the cache. + * @param mixed $default Default value to return if the key does not exist. + * + * @return mixed The value of the item from the cache, or $default in case of cache miss. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if the $key string is not a legal value. + */ public function get($key, $default = null) { - $success = false; $value = \apcu_fetch("$this->prefix:$key", $success); if ($success) { return $value; @@ -24,48 +34,165 @@ class ApcuCacheTool implements \Psr\SimpleCache\CacheInterface return $default; } + /** + * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time. + * + * @param string $key The key of the item to store. + * @param mixed $value The value of the item to store, must be serializable. + * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and + * the driver supports TTL then the library may set a default value + * for it or let the driver take care of that. + * + * @return bool True on success and false on failure. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if the $key string is not a legal value. + */ public function set($key, $value, $ttl = null) { - return \apcu_store("$this->prefix:$key", $value, $ttl === null ? 0 : $ttl); + return \apcu_store("$this->prefix:$key", $value, $this->tllToInt($ttl)); } + /** + * Delete an item from the cache by its unique key. + * + * @param string $key The unique cache key of the item to delete. + * + * @return bool True if the item was successfully removed. False if there was an error. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if the $key string is not a legal value. + */ public function delete($key) { return \apcu_delete("$this->prefix:$key"); } + /** + * Wipes clean the entire cache's keys. + * + * @return bool True on success and false on failure. + */ public function clear() { - foreach (new APCUIterator("/^$this->prefix:/") as $item) { - \apcu_delete($item['key']); - } + $iterator = new APCUIterator( + '/^' . preg_quote($this->prefix . ':', '/') . '/', + APC_ITER_NONE + ); + return \apcu_delete($iterator); } + /** + * Obtains multiple cache items by their unique keys. + * + * @param iterable $keys A list of keys that can obtained in a single operation. + * @param mixed $default Default value to return for keys that do not exist. + * + * @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if $keys is neither an array nor a Traversable, + * or if any of the $keys are not a legal value. + */ public function getMultiple($keys, $default = null) { - foreach ($keys as $key) { - yield $key => $this->get($key, $default); + $keysToFetch = $this->keysToFetch($keys); + $values = \apcu_fetch($keysToFetch); + foreach ($keysToFetch as $keyToFetch) { + if (!isset($values[$keyToFetch])) { + $values[$keyToFetch] = $default; + } } + return $values; } + /** + * Persists a set of key => value pairs in the cache, with an optional TTL. + * + * @param iterable $values A list of key => value pairs for a multiple-set operation. + * @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and + * the driver supports TTL then the library may set a default value + * for it or let the driver take care of that. + * + * @return bool True on success and false on failure. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if $values is neither an array nor a Traversable, + * or if any of the $values are not a legal value. + */ public function setMultiple($values, $ttl = null) { + $dataToSave = []; foreach ($values as $key => $value) { - $this->set($key, $value, $ttl); + $dataToSave["$this->prefix:$key"] = $value; } - return true; + return \apcu_store($dataToSave, null, $this->tllToInt($ttl)); } + /** + * Deletes multiple cache items in a single operation. + * + * @param iterable $keys A list of string-based keys to be deleted. + * + * @return bool True if the items were successfully removed. False if there was an error. + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if $keys is neither an array nor a Traversable, + * or if any of the $keys are not a legal value. + */ public function deleteMultiple($keys) { - foreach ($keys as $key) { - $this->delete($key); - } - return true; + $keysToDelete = $this->keysToFetch($keys); + return \apcu_delete($keysToDelete); } + /** + * Determines whether an item is present in the cache. + * + * NOTE: It is recommended that has() is only to be used for cache warming type purposes + * and not to be used within your live applications operations for get/set, as this method + * is subject to a race condition where your has() will return true and immediately after, + * another script can remove it making the state of your app out of date. + * + * @param string $key The cache item key. + * + * @return bool + * + * @throws \Psr\SimpleCache\InvalidArgumentException + * MUST be thrown if the $key string is not a legal value. + */ public function has($key) { return \apcu_exists("$this->prefix:$key"); } + + /** + * @param iterable $keys + * @return array + */ + private function keysToFetch(iterable $keys): array + { + $keysToFetch = []; + foreach ($keys as $key) { + $keysToFetch[] = "$this->prefix:$key"; + } + return $keysToFetch; + } + + /** + * @param null|int|\DateInterval $ttl + * @return int + */ + private function tllToInt($ttl = null): int + { + if ($ttl === null) { + return 0; + } elseif (is_int($ttl)) { + return $ttl; + } elseif ($ttl instanceof \DateInterval) { + return $ttl->days * 86400 + $ttl->h * 3600 + $ttl->i * 60 + $ttl->s; + } else { + throw new \Psr\SimpleCache\InvalidArgumentException("Invalid ttl value '$ttl' provided."); + } + } } \ No newline at end of file diff --git a/app/Model/UserLoginProfile.php b/app/Model/UserLoginProfile.php index fda6f9cf4..85b434681 100644 --- a/app/Model/UserLoginProfile.php +++ b/app/Model/UserLoginProfile.php @@ -36,7 +36,7 @@ class UserLoginProfile extends AppModel ]; const BROWSER_CACHE_DIR = APP . DS . 'tmp' . DS . 'browscap'; - const BROWSER_INI_FILE = APP . DS . 'files' . DS . 'browscap'. DS . 'browscap.ini'; // Browscap file managed by MISP - https://browscap.org/stream?q=Lite_PHP_BrowsCapINI + const BROWSER_INI_FILE = APP . DS . 'files' . DS . 'browscap'. DS . 'browscap.ini.gz'; // Browscap file managed by MISP - https://browscap.org/stream?q=Lite_PHP_BrowsCapINI const GEOIP_DB_FILE = APP . DS . 'files' . DS . 'geo-open' . DS . 'GeoOpen-Country.mmdb'; // GeoIP file managed by MISP - https://data.public.lu/en/datasets/geo-open-ip-address-geolocation-per-country-in-mmdb-format/ private $userProfile; @@ -61,13 +61,32 @@ class UserLoginProfile extends AppModel } catch (\BrowscapPHP\Exception $e) { $this->log("Browscap - building new cache from browscap.ini file.", LOG_INFO); $bcUpdater = new \BrowscapPHP\BrowscapUpdater($cache, $logger); - $bcUpdater->convertFile(UserLoginProfile::BROWSER_INI_FILE); + $bcUpdater->convertString(FileAccessTool::readCompressedFile(UserLoginProfile::BROWSER_INI_FILE)); } $bc = new \BrowscapPHP\Browscap($cache, $logger); return $bc->getBrowser(); } + /** + * @param string $ip + * @return string|null + */ + public function countryByIp($ip) + { + if (class_exists('GeoIp2\Database\Reader')) { + $geoDbReader = new GeoIp2\Database\Reader(UserLoginProfile::GEOIP_DB_FILE); + try { + $record = $geoDbReader->country($ip); + return $record->country->isoCode; + } catch (InvalidArgumentException $e) { + $this->logException("Could not get country code for IP address", $e, LOG_NOTICE); + return null; + } + } + return null; + } + public function beforeSave($options = []) { $this->data['UserLoginProfile']['hash'] = $this->hash($this->data['UserLoginProfile']); @@ -105,18 +124,7 @@ class UserLoginProfile extends AppModel $browser->browser = "browser"; } $ip = $this->_remoteIp(); - if (class_exists('GeoIp2\Database\Reader')) { - try { - $geoDbReader = new GeoIp2\Database\Reader(UserLoginProfile::GEOIP_DB_FILE); - $record = $geoDbReader->country($ip); - $country = $record->country->isoCode; - } catch (InvalidArgumentException $e) { - $this->logException("Could not get country code for IP address", $e); - $country = 'None'; - } - } else { - $country = 'None'; - } + $country = $this->countryByIp($ip) ?? 'None'; $this->userProfile = [ 'user_agent' => $_SERVER['HTTP_USER_AGENT'] ?? null, 'ip' => $ip, diff --git a/app/files/browscap/browscap.ini b/app/files/browscap/browscap.ini deleted file mode 100644 index c73e6680b..000000000 --- a/app/files/browscap/browscap.ini +++ /dev/null @@ -1,35702 +0,0 @@ -;;; Provided courtesy of http://browscap.org/ -;;; Created on Thursday, January 19, 2023 at 08:12 AM GMT+0000 -;;; Keep up with the latest goings-on with the project: -;;; Follow us on Twitter , or... -;;; Like us on Facebook , or... -;;; Collaborate on GitHub . - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version - -[GJK_Browscap_Version] -Version=6001003 -Released=Thu, 19 Jan 2023 08:12:56 +0000 -Format=php -Type=LITE - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties - -[DefaultProperties] -Comment="DefaultProperties" -Browser="DefaultProperties" -Version="0.0" -Platform="unknown" -isMobileDevice="false" -isTablet="false" -Device_Type="unknown" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 112.0 - -[Chromium 112.0] -Parent="DefaultProperties" -Comment="Chromium 112.0" -Browser="Chromium" -Version="112.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/112.*Chrome/*Safari/*] -Parent="Chromium 112.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/112.*Chrome/*Safari/*] -Parent="Chromium 112.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/112.*Safari/*] -Parent="Chromium 112.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 111.0 - -[Chromium 111.0] -Parent="DefaultProperties" -Comment="Chromium 111.0" -Browser="Chromium" -Version="111.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/111.*Chrome/*Safari/*] -Parent="Chromium 111.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/111.*Chrome/*Safari/*] -Parent="Chromium 111.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/111.*Safari/*] -Parent="Chromium 111.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 110.0 - -[Chromium 110.0] -Parent="DefaultProperties" -Comment="Chromium 110.0" -Browser="Chromium" -Version="110.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/110.*Chrome/*Safari/*] -Parent="Chromium 110.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/110.*Chrome/*Safari/*] -Parent="Chromium 110.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/110.*Safari/*] -Parent="Chromium 110.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 109.0 - -[Chromium 109.0] -Parent="DefaultProperties" -Comment="Chromium 109.0" -Browser="Chromium" -Version="109.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/109.*Chrome/*Safari/*] -Parent="Chromium 109.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/109.*Chrome/*Safari/*] -Parent="Chromium 109.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/109.*Safari/*] -Parent="Chromium 109.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 108.0 - -[Chromium 108.0] -Parent="DefaultProperties" -Comment="Chromium 108.0" -Browser="Chromium" -Version="108.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/108.*Chrome/*Safari/*] -Parent="Chromium 108.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/108.*Chrome/*Safari/*] -Parent="Chromium 108.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/108.*Safari/*] -Parent="Chromium 108.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 107.0 - -[Chromium 107.0] -Parent="DefaultProperties" -Comment="Chromium 107.0" -Browser="Chromium" -Version="107.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/107.*Chrome/*Safari/*] -Parent="Chromium 107.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/107.*Chrome/*Safari/*] -Parent="Chromium 107.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/107.*Safari/*] -Parent="Chromium 107.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 106.0 - -[Chromium 106.0] -Parent="DefaultProperties" -Comment="Chromium 106.0" -Browser="Chromium" -Version="106.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/106.*Chrome/*Safari/*] -Parent="Chromium 106.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/106.*Chrome/*Safari/*] -Parent="Chromium 106.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/106.*Safari/*] -Parent="Chromium 106.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 105.0 - -[Chromium 105.0] -Parent="DefaultProperties" -Comment="Chromium 105.0" -Browser="Chromium" -Version="105.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/105.*Chrome/*Safari/*] -Parent="Chromium 105.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/105.*Chrome/*Safari/*] -Parent="Chromium 105.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/105.*Safari/*] -Parent="Chromium 105.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 104.0 - -[Chromium 104.0] -Parent="DefaultProperties" -Comment="Chromium 104.0" -Browser="Chromium" -Version="104.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/104.*Chrome/*Safari/*] -Parent="Chromium 104.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/104.*Chrome/*Safari/*] -Parent="Chromium 104.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/104.*Safari/*] -Parent="Chromium 104.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 103.0 - -[Chromium 103.0] -Parent="DefaultProperties" -Comment="Chromium 103.0" -Browser="Chromium" -Version="103.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/103.*Chrome/*Safari/*] -Parent="Chromium 103.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/103.*Chrome/*Safari/*] -Parent="Chromium 103.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/103.*Safari/*] -Parent="Chromium 103.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 102.0 - -[Chromium 102.0] -Parent="DefaultProperties" -Comment="Chromium 102.0" -Browser="Chromium" -Version="102.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/102.*Chrome/*Safari/*] -Parent="Chromium 102.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/102.*Chrome/*Safari/*] -Parent="Chromium 102.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/102.*Safari/*] -Parent="Chromium 102.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 101.0 - -[Chromium 101.0] -Parent="DefaultProperties" -Comment="Chromium 101.0" -Browser="Chromium" -Version="101.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/101.*Chrome/*Safari/*] -Parent="Chromium 101.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/101.*Chrome/*Safari/*] -Parent="Chromium 101.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/101.*Safari/*] -Parent="Chromium 101.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 100.0 - -[Chromium 100.0] -Parent="DefaultProperties" -Comment="Chromium 100.0" -Browser="Chromium" -Version="100.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/100.*Chrome/*Safari/*] -Parent="Chromium 100.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/100.*Chrome/*Safari/*] -Parent="Chromium 100.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/100.*Safari/*] -Parent="Chromium 100.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 99.0 - -[Chromium 99.0] -Parent="DefaultProperties" -Comment="Chromium 99.0" -Browser="Chromium" -Version="99.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/99.*Chrome/*Safari/*] -Parent="Chromium 99.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/99.*Chrome/*Safari/*] -Parent="Chromium 99.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/99.*Safari/*] -Parent="Chromium 99.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 98.0 - -[Chromium 98.0] -Parent="DefaultProperties" -Comment="Chromium 98.0" -Browser="Chromium" -Version="98.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/98.*Chrome/*Safari/*] -Parent="Chromium 98.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/98.*Chrome/*Safari/*] -Parent="Chromium 98.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/98.*Safari/*] -Parent="Chromium 98.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 97.0 - -[Chromium 97.0] -Parent="DefaultProperties" -Comment="Chromium 97.0" -Browser="Chromium" -Version="97.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/97.*Chrome/*Safari/*] -Parent="Chromium 97.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/97.*Chrome/*Safari/*] -Parent="Chromium 97.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/97.*Safari/*] -Parent="Chromium 97.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 96.0 - -[Chromium 96.0] -Parent="DefaultProperties" -Comment="Chromium 96.0" -Browser="Chromium" -Version="96.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/96.*Chrome/*Safari/*] -Parent="Chromium 96.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/96.*Chrome/*Safari/*] -Parent="Chromium 96.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/96.*Safari/*] -Parent="Chromium 96.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 95.0 - -[Chromium 95.0] -Parent="DefaultProperties" -Comment="Chromium 95.0" -Browser="Chromium" -Version="95.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/95.*Chrome/*Safari/*] -Parent="Chromium 95.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/95.*Chrome/*Safari/*] -Parent="Chromium 95.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/95.*Safari/*] -Parent="Chromium 95.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 94.0 - -[Chromium 94.0] -Parent="DefaultProperties" -Comment="Chromium 94.0" -Browser="Chromium" -Version="94.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/94.*Chrome/*Safari/*] -Parent="Chromium 94.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/94.*Chrome/*Safari/*] -Parent="Chromium 94.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/94.*Safari/*] -Parent="Chromium 94.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 93.0 - -[Chromium 93.0] -Parent="DefaultProperties" -Comment="Chromium 93.0" -Browser="Chromium" -Version="93.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/93.*Chrome/*Safari/*] -Parent="Chromium 93.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/93.*Chrome/*Safari/*] -Parent="Chromium 93.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/93.*Safari/*] -Parent="Chromium 93.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 92.0 - -[Chromium 92.0] -Parent="DefaultProperties" -Comment="Chromium 92.0" -Browser="Chromium" -Version="92.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/92.*Chrome/*Safari/*] -Parent="Chromium 92.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/92.*Chrome/*Safari/*] -Parent="Chromium 92.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/92.*Safari/*] -Parent="Chromium 92.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 91.0 - -[Chromium 91.0] -Parent="DefaultProperties" -Comment="Chromium 91.0" -Browser="Chromium" -Version="91.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/91.*Chrome/*Safari/*] -Parent="Chromium 91.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/91.*Chrome/*Safari/*] -Parent="Chromium 91.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/91.*Safari/*] -Parent="Chromium 91.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 90.0 - -[Chromium 90.0] -Parent="DefaultProperties" -Comment="Chromium 90.0" -Browser="Chromium" -Version="90.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/90.*Chrome/*Safari/*] -Parent="Chromium 90.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/90.*Chrome/*Safari/*] -Parent="Chromium 90.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/90.*Safari/*] -Parent="Chromium 90.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 89.0 - -[Chromium 89.0] -Parent="DefaultProperties" -Comment="Chromium 89.0" -Browser="Chromium" -Version="89.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/89.*Chrome/*Safari/*] -Parent="Chromium 89.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/89.*Chrome/*Safari/*] -Parent="Chromium 89.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/89.*Safari/*] -Parent="Chromium 89.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 88.0 - -[Chromium 88.0] -Parent="DefaultProperties" -Comment="Chromium 88.0" -Browser="Chromium" -Version="88.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/88.*Chrome/*Safari/*] -Parent="Chromium 88.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/88.*Chrome/*Safari/*] -Parent="Chromium 88.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/88.*Safari/*] -Parent="Chromium 88.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 87.0 - -[Chromium 87.0] -Parent="DefaultProperties" -Comment="Chromium 87.0" -Browser="Chromium" -Version="87.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/87.*Chrome/*Safari/*] -Parent="Chromium 87.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/87.*Chrome/*Safari/*] -Parent="Chromium 87.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/87.*Safari/*] -Parent="Chromium 87.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 86.0 - -[Chromium 86.0] -Parent="DefaultProperties" -Comment="Chromium 86.0" -Browser="Chromium" -Version="86.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/86.*Chrome/*Safari/*] -Parent="Chromium 86.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/86.*Chrome/*Safari/*] -Parent="Chromium 86.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/86.*Safari/*] -Parent="Chromium 86.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 85.0 - -[Chromium 85.0] -Parent="DefaultProperties" -Comment="Chromium 85.0" -Browser="Chromium" -Version="85.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/85.*Chrome/*Safari/*] -Parent="Chromium 85.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/85.*Chrome/*Safari/*] -Parent="Chromium 85.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/85.*Safari/*] -Parent="Chromium 85.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 84.0 - -[Chromium 84.0] -Parent="DefaultProperties" -Comment="Chromium 84.0" -Browser="Chromium" -Version="84.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/84.*Chrome/*Safari/*] -Parent="Chromium 84.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/84.*Chrome/*Safari/*] -Parent="Chromium 84.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/84.*Safari/*] -Parent="Chromium 84.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 83.0 - -[Chromium 83.0] -Parent="DefaultProperties" -Comment="Chromium 83.0" -Browser="Chromium" -Version="83.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/83.*Chrome/*Safari/*] -Parent="Chromium 83.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/83.*Chrome/*Safari/*] -Parent="Chromium 83.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/83.*Safari/*] -Parent="Chromium 83.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 82.0 - -[Chromium 82.0] -Parent="DefaultProperties" -Comment="Chromium 82.0" -Browser="Chromium" -Version="82.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/82.*Chrome/*Safari/*] -Parent="Chromium 82.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/82.*Chrome/*Safari/*] -Parent="Chromium 82.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/82.*Safari/*] -Parent="Chromium 82.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 81.0 - -[Chromium 81.0] -Parent="DefaultProperties" -Comment="Chromium 81.0" -Browser="Chromium" -Version="81.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/81.*Chrome/*Safari/*] -Parent="Chromium 81.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/81.*Chrome/*Safari/*] -Parent="Chromium 81.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/81.*Safari/*] -Parent="Chromium 81.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 80.0 - -[Chromium 80.0] -Parent="DefaultProperties" -Comment="Chromium 80.0" -Browser="Chromium" -Version="80.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/80.*Chrome/*Safari/*] -Parent="Chromium 80.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/80.*Chrome/*Safari/*] -Parent="Chromium 80.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/80.*Safari/*] -Parent="Chromium 80.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 79.0 - -[Chromium 79.0] -Parent="DefaultProperties" -Comment="Chromium 79.0" -Browser="Chromium" -Version="79.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/79.*Chrome/*Safari/*] -Parent="Chromium 79.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/79.*Chrome/*Safari/*] -Parent="Chromium 79.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/79.*Safari/*] -Parent="Chromium 79.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 78.0 - -[Chromium 78.0] -Parent="DefaultProperties" -Comment="Chromium 78.0" -Browser="Chromium" -Version="78.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/78.*Chrome/*Safari/*] -Parent="Chromium 78.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/78.*Chrome/*Safari/*] -Parent="Chromium 78.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/78.*Safari/*] -Parent="Chromium 78.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 77.0 - -[Chromium 77.0] -Parent="DefaultProperties" -Comment="Chromium 77.0" -Browser="Chromium" -Version="77.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/77.*Chrome/*Safari/*] -Parent="Chromium 77.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/77.*Chrome/*Safari/*] -Parent="Chromium 77.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/77.*Safari/*] -Parent="Chromium 77.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 76.0 - -[Chromium 76.0] -Parent="DefaultProperties" -Comment="Chromium 76.0" -Browser="Chromium" -Version="76.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/76.*Chrome/*Safari/*] -Parent="Chromium 76.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/76.*Chrome/*Safari/*] -Parent="Chromium 76.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/76.*Safari/*] -Parent="Chromium 76.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 75.0 - -[Chromium 75.0] -Parent="DefaultProperties" -Comment="Chromium 75.0" -Browser="Chromium" -Version="75.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/75.*Chrome/*Safari/*] -Parent="Chromium 75.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/75.*Chrome/*Safari/*] -Parent="Chromium 75.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/75.*Safari/*] -Parent="Chromium 75.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 74.0 - -[Chromium 74.0] -Parent="DefaultProperties" -Comment="Chromium 74.0" -Browser="Chromium" -Version="74.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/74.*Chrome/*Safari/*] -Parent="Chromium 74.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/74.*Chrome/*Safari/*] -Parent="Chromium 74.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/74.*Safari/*] -Parent="Chromium 74.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 73.0 - -[Chromium 73.0] -Parent="DefaultProperties" -Comment="Chromium 73.0" -Browser="Chromium" -Version="73.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/73.*Chrome/*Safari/*] -Parent="Chromium 73.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/73.*Chrome/*Safari/*] -Parent="Chromium 73.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/73.*Safari/*] -Parent="Chromium 73.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 72.0 - -[Chromium 72.0] -Parent="DefaultProperties" -Comment="Chromium 72.0" -Browser="Chromium" -Version="72.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/72.*Chrome/*Safari/*] -Parent="Chromium 72.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/72.*Chrome/*Safari/*] -Parent="Chromium 72.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/72.*Safari/*] -Parent="Chromium 72.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 71.0 - -[Chromium 71.0] -Parent="DefaultProperties" -Comment="Chromium 71.0" -Browser="Chromium" -Version="71.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/71.*Chrome/*Safari/*] -Parent="Chromium 71.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/71.*Chrome/*Safari/*] -Parent="Chromium 71.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/71.*Safari/*] -Parent="Chromium 71.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 70.0 - -[Chromium 70.0] -Parent="DefaultProperties" -Comment="Chromium 70.0" -Browser="Chromium" -Version="70.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/70.*Chrome/*Safari/*] -Parent="Chromium 70.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/70.*Chrome/*Safari/*] -Parent="Chromium 70.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/70.*Safari/*] -Parent="Chromium 70.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 69.0 - -[Chromium 69.0] -Parent="DefaultProperties" -Comment="Chromium 69.0" -Browser="Chromium" -Version="69.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/69.*Chrome/*Safari/*] -Parent="Chromium 69.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/69.*Chrome/*Safari/*] -Parent="Chromium 69.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/69.*Safari/*] -Parent="Chromium 69.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 68.0 - -[Chromium 68.0] -Parent="DefaultProperties" -Comment="Chromium 68.0" -Browser="Chromium" -Version="68.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/68.*Chrome/*Safari/*] -Parent="Chromium 68.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/68.*Chrome/*Safari/*] -Parent="Chromium 68.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/68.*Safari/*] -Parent="Chromium 68.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 67.0 - -[Chromium 67.0] -Parent="DefaultProperties" -Comment="Chromium 67.0" -Browser="Chromium" -Version="67.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/67.*Chrome/*Safari/*] -Parent="Chromium 67.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/67.*Chrome/*Safari/*] -Parent="Chromium 67.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/67.*Safari/*] -Parent="Chromium 67.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 66.0 - -[Chromium 66.0] -Parent="DefaultProperties" -Comment="Chromium 66.0" -Browser="Chromium" -Version="66.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/66.*Chrome/*Safari/*] -Parent="Chromium 66.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/66.*Chrome/*Safari/*] -Parent="Chromium 66.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/66.*Safari/*] -Parent="Chromium 66.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 65.0 - -[Chromium 65.0] -Parent="DefaultProperties" -Comment="Chromium 65.0" -Browser="Chromium" -Version="65.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/65.*Chrome/*Safari/*] -Parent="Chromium 65.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/65.*Chrome/*Safari/*] -Parent="Chromium 65.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/65.*Safari/*] -Parent="Chromium 65.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 64.0 - -[Chromium 64.0] -Parent="DefaultProperties" -Comment="Chromium 64.0" -Browser="Chromium" -Version="64.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/64.*Chrome/*Safari/*] -Parent="Chromium 64.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/64.*Chrome/*Safari/*] -Parent="Chromium 64.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/64.*Safari/*] -Parent="Chromium 64.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 63.0 - -[Chromium 63.0] -Parent="DefaultProperties" -Comment="Chromium 63.0" -Browser="Chromium" -Version="63.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/63.*Chrome/*Safari/*] -Parent="Chromium 63.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/63.*Chrome/*Safari/*] -Parent="Chromium 63.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/63.*Safari/*] -Parent="Chromium 63.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 62.0 - -[Chromium 62.0] -Parent="DefaultProperties" -Comment="Chromium 62.0" -Browser="Chromium" -Version="62.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/62.*Chrome/*Safari/*] -Parent="Chromium 62.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/62.*Chrome/*Safari/*] -Parent="Chromium 62.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/62.*Safari/*] -Parent="Chromium 62.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 61.0 - -[Chromium 61.0] -Parent="DefaultProperties" -Comment="Chromium 61.0" -Browser="Chromium" -Version="61.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/61.*Chrome/*Safari/*] -Parent="Chromium 61.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/61.*Chrome/*Safari/*] -Parent="Chromium 61.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/61.*Safari/*] -Parent="Chromium 61.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 60.0 - -[Chromium 60.0] -Parent="DefaultProperties" -Comment="Chromium 60.0" -Browser="Chromium" -Version="60.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/60.*Chrome/*Safari/*] -Parent="Chromium 60.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/60.*Chrome/*Safari/*] -Parent="Chromium 60.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/60.*Safari/*] -Parent="Chromium 60.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 59.0 - -[Chromium 59.0] -Parent="DefaultProperties" -Comment="Chromium 59.0" -Browser="Chromium" -Version="59.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/59.*Chrome/*Safari/*] -Parent="Chromium 59.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/59.*Chrome/*Safari/*] -Parent="Chromium 59.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/59.*Safari/*] -Parent="Chromium 59.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 58.0 - -[Chromium 58.0] -Parent="DefaultProperties" -Comment="Chromium 58.0" -Browser="Chromium" -Version="58.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/58.*Chrome/*Safari/*] -Parent="Chromium 58.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/58.*Chrome/*Safari/*] -Parent="Chromium 58.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/58.*Safari/*] -Parent="Chromium 58.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 57.0 - -[Chromium 57.0] -Parent="DefaultProperties" -Comment="Chromium 57.0" -Browser="Chromium" -Version="57.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/57.*Chrome/*Safari/*] -Parent="Chromium 57.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/57.*Chrome/*Safari/*] -Parent="Chromium 57.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/57.*Safari/*] -Parent="Chromium 57.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 56.0 - -[Chromium 56.0] -Parent="DefaultProperties" -Comment="Chromium 56.0" -Browser="Chromium" -Version="56.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/56.*Chrome/*Safari/*] -Parent="Chromium 56.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/56.*Chrome/*Safari/*] -Parent="Chromium 56.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/56.*Safari/*] -Parent="Chromium 56.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 55.0 - -[Chromium 55.0] -Parent="DefaultProperties" -Comment="Chromium 55.0" -Browser="Chromium" -Version="55.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/55.*Chrome/*Safari/*] -Parent="Chromium 55.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/55.*Chrome/*Safari/*] -Parent="Chromium 55.0" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/55.*Safari/*] -Parent="Chromium 55.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 54.0 - -[Chromium 54.0] -Parent="DefaultProperties" -Comment="Chromium 54.0" -Browser="Chromium" -Version="54.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/54.*Chrome/*Safari/*] -Parent="Chromium 54.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/54.*Chrome/*Safari/*] -Parent="Chromium 54.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 53.0 - -[Chromium 53.0] -Parent="DefaultProperties" -Comment="Chromium 53.0" -Browser="Chromium" -Version="53.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/53.*Chrome/*Safari/*] -Parent="Chromium 53.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/53.*Chrome/*Safari/*] -Parent="Chromium 53.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 52.0 - -[Chromium 52.0] -Parent="DefaultProperties" -Comment="Chromium 52.0" -Browser="Chromium" -Version="52.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/52.*Chrome/*Safari/*] -Parent="Chromium 52.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/52.*Chrome/*Safari/*] -Parent="Chromium 52.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 51.0 - -[Chromium 51.0] -Parent="DefaultProperties" -Comment="Chromium 51.0" -Browser="Chromium" -Version="51.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/51.*Chrome/*Safari/*] -Parent="Chromium 51.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/51.*Chrome/*Safari/*] -Parent="Chromium 51.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 50.0 - -[Chromium 50.0] -Parent="DefaultProperties" -Comment="Chromium 50.0" -Browser="Chromium" -Version="50.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/50.*Chrome/*Safari/*] -Parent="Chromium 50.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/50.*Chrome/*Safari/*] -Parent="Chromium 50.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 49.0 - -[Chromium 49.0] -Parent="DefaultProperties" -Comment="Chromium 49.0" -Browser="Chromium" -Version="49.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/49.*Chrome/*Safari/*] -Parent="Chromium 49.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/49.*Chrome/*Safari/*] -Parent="Chromium 49.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 48.0 - -[Chromium 48.0] -Parent="DefaultProperties" -Comment="Chromium 48.0" -Browser="Chromium" -Version="48.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/48.*Chrome/*Safari/*] -Parent="Chromium 48.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/48.*Chrome/*Safari/*] -Parent="Chromium 48.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 47.0 - -[Chromium 47.0] -Parent="DefaultProperties" -Comment="Chromium 47.0" -Browser="Chromium" -Version="47.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/47.*Chrome/*Safari/*] -Parent="Chromium 47.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/47.*Chrome/*Safari/*] -Parent="Chromium 47.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 46.0 - -[Chromium 46.0] -Parent="DefaultProperties" -Comment="Chromium 46.0" -Browser="Chromium" -Version="46.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/46.*Chrome/*Safari/*] -Parent="Chromium 46.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/46.*Chrome/*Safari/*] -Parent="Chromium 46.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 45.0 - -[Chromium 45.0] -Parent="DefaultProperties" -Comment="Chromium 45.0" -Browser="Chromium" -Version="45.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (SMART-TV*Linux*) applewebkit* (*khtml*like*gecko*) Chromium/45.*Chrome/*Safari/*] -Parent="Chromium 45.0" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chromium/45.*Chrome/*Safari/*] -Parent="Chromium 45.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 71.0 - -[Android WebView 71.0] -Parent="DefaultProperties" -Comment="Android WebView 71.0" -Browser="Android WebView" -Version="71.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/71.0*Mobile*Safari*] -Parent="Android WebView 71.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/71.0*Safari*] -Parent="Android WebView 71.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 70.0 - -[Android WebView 70.0] -Parent="DefaultProperties" -Comment="Android WebView 70.0" -Browser="Android WebView" -Version="70.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/70.0*Mobile*Safari*] -Parent="Android WebView 70.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/70.0*Safari*] -Parent="Android WebView 70.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 69.0 - -[Android WebView 69.0] -Parent="DefaultProperties" -Comment="Android WebView 69.0" -Browser="Android WebView" -Version="69.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/69.0*Mobile*Safari*] -Parent="Android WebView 69.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/69.0*Safari*] -Parent="Android WebView 69.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 68.0 - -[Android WebView 68.0] -Parent="DefaultProperties" -Comment="Android WebView 68.0" -Browser="Android WebView" -Version="68.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/68.0*Mobile*Safari*] -Parent="Android WebView 68.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/68.0*Safari*] -Parent="Android WebView 68.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 67.0 - -[Android WebView 67.0] -Parent="DefaultProperties" -Comment="Android WebView 67.0" -Browser="Android WebView" -Version="67.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/67.0*Mobile*Safari*] -Parent="Android WebView 67.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/67.0*Safari*] -Parent="Android WebView 67.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 66.0 - -[Android WebView 66.0] -Parent="DefaultProperties" -Comment="Android WebView 66.0" -Browser="Android WebView" -Version="66.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/66.0*Mobile*Safari*] -Parent="Android WebView 66.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/66.0*Safari*] -Parent="Android WebView 66.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 65.0 - -[Android WebView 65.0] -Parent="DefaultProperties" -Comment="Android WebView 65.0" -Browser="Android WebView" -Version="65.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/65.0*Mobile*Safari*] -Parent="Android WebView 65.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/65.0*Safari*] -Parent="Android WebView 65.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 64.0 - -[Android WebView 64.0] -Parent="DefaultProperties" -Comment="Android WebView 64.0" -Browser="Android WebView" -Version="64.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/64.0*Mobile*Safari*] -Parent="Android WebView 64.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/64.0*Safari*] -Parent="Android WebView 64.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 63.0 - -[Android WebView 63.0] -Parent="DefaultProperties" -Comment="Android WebView 63.0" -Browser="Android WebView" -Version="63.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/63.0*Mobile*Safari*] -Parent="Android WebView 63.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/63.0*Safari*] -Parent="Android WebView 63.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 62.0 - -[Android WebView 62.0] -Parent="DefaultProperties" -Comment="Android WebView 62.0" -Browser="Android WebView" -Version="62.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/62.0*Mobile*Safari*] -Parent="Android WebView 62.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/62.0*Safari*] -Parent="Android WebView 62.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 61.0 - -[Android WebView 61.0] -Parent="DefaultProperties" -Comment="Android WebView 61.0" -Browser="Android WebView" -Version="61.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/61.0*Mobile*Safari*] -Parent="Android WebView 61.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/61.0*Safari*] -Parent="Android WebView 61.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 60.0 - -[Android WebView 60.0] -Parent="DefaultProperties" -Comment="Android WebView 60.0" -Browser="Android WebView" -Version="60.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/60.0*Mobile*Safari*] -Parent="Android WebView 60.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/60.0*Safari*] -Parent="Android WebView 60.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 59.0 - -[Android WebView 59.0] -Parent="DefaultProperties" -Comment="Android WebView 59.0" -Browser="Android WebView" -Version="59.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/59.0*Mobile*Safari*] -Parent="Android WebView 59.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/59.0*Safari*] -Parent="Android WebView 59.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 58.0 - -[Android WebView 58.0] -Parent="DefaultProperties" -Comment="Android WebView 58.0" -Browser="Android WebView" -Version="58.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/58.0*Mobile*Safari*] -Parent="Android WebView 58.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/58.0*Safari*] -Parent="Android WebView 58.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 57.0 - -[Android WebView 57.0] -Parent="DefaultProperties" -Comment="Android WebView 57.0" -Browser="Android WebView" -Version="57.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/57.0*Mobile*Safari*] -Parent="Android WebView 57.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/57.0*Safari*] -Parent="Android WebView 57.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 56.0 - -[Android WebView 56.0] -Parent="DefaultProperties" -Comment="Android WebView 56.0" -Browser="Android WebView" -Version="56.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/56.0*Mobile*Safari*] -Parent="Android WebView 56.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/56.0*Safari*] -Parent="Android WebView 56.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 55.0 - -[Android WebView 55.0] -Parent="DefaultProperties" -Comment="Android WebView 55.0" -Browser="Android WebView" -Version="55.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/55.0*Mobile*Safari*] -Parent="Android WebView 55.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/55.0*Safari*] -Parent="Android WebView 55.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 54.0 - -[Android WebView 54.0] -Parent="DefaultProperties" -Comment="Android WebView 54.0" -Browser="Android WebView" -Version="54.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/54.0*Mobile*Safari*] -Parent="Android WebView 54.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/54.0*Safari*] -Parent="Android WebView 54.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 53.0 - -[Android WebView 53.0] -Parent="DefaultProperties" -Comment="Android WebView 53.0" -Browser="Android WebView" -Version="53.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/53.0*Mobile*Safari*] -Parent="Android WebView 53.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/53.0*Safari*] -Parent="Android WebView 53.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 52.0 - -[Android WebView 52.0] -Parent="DefaultProperties" -Comment="Android WebView 52.0" -Browser="Android WebView" -Version="52.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/52.0*Mobile*Safari*] -Parent="Android WebView 52.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/52.0*Safari*] -Parent="Android WebView 52.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 51.0 - -[Android WebView 51.0] -Parent="DefaultProperties" -Comment="Android WebView 51.0" -Browser="Android WebView" -Version="51.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/51.0*Mobile*Safari*] -Parent="Android WebView 51.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/51.0*Safari*] -Parent="Android WebView 51.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 50.0 - -[Android WebView 50.0] -Parent="DefaultProperties" -Comment="Android WebView 50.0" -Browser="Android WebView" -Version="50.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/50.0*Mobile*Safari*] -Parent="Android WebView 50.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/50.0*Safari*] -Parent="Android WebView 50.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 49.0 - -[Android WebView 49.0] -Parent="DefaultProperties" -Comment="Android WebView 49.0" -Browser="Android WebView" -Version="49.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/49.0*Mobile*Safari*] -Parent="Android WebView 49.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/49.0*Safari*] -Parent="Android WebView 49.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 48.0 - -[Android WebView 48.0] -Parent="DefaultProperties" -Comment="Android WebView 48.0" -Browser="Android WebView" -Version="48.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/48.0*Mobile*Safari*] -Parent="Android WebView 48.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/48.0*Safari*] -Parent="Android WebView 48.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 47.0 - -[Android WebView 47.0] -Parent="DefaultProperties" -Comment="Android WebView 47.0" -Browser="Android WebView" -Version="47.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/47.0*Mobile*Safari*] -Parent="Android WebView 47.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/47.0*Safari*] -Parent="Android WebView 47.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 46.0 - -[Android WebView 46.0] -Parent="DefaultProperties" -Comment="Android WebView 46.0" -Browser="Android WebView" -Version="46.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/46.0*Mobile*Safari*] -Parent="Android WebView 46.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/46.0*Safari*] -Parent="Android WebView 46.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 45.0 - -[Android WebView 45.0] -Parent="DefaultProperties" -Comment="Android WebView 45.0" -Browser="Android WebView" -Version="45.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/45.0*Mobile*Safari*] -Parent="Android WebView 45.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/45.0*Safari*] -Parent="Android WebView 45.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 44.0 - -[Android WebView 44.0] -Parent="DefaultProperties" -Comment="Android WebView 44.0" -Browser="Android WebView" -Version="44.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/44.0*Mobile*Safari*] -Parent="Android WebView 44.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/44.0*Safari*] -Parent="Android WebView 44.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 43.0 - -[Android WebView 43.0] -Parent="DefaultProperties" -Comment="Android WebView 43.0" -Browser="Android WebView" -Version="43.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/43.0*Mobile*Safari*] -Parent="Android WebView 43.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/43.0*Safari*] -Parent="Android WebView 43.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 82.0 - -[Android WebView 82.0] -Parent="DefaultProperties" -Comment="Android WebView 82.0" -Browser="Android WebView" -Version="82.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/82.0*Mobile*Safari*] -Parent="Android WebView 82.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/82.0*Safari*] -Parent="Android WebView 82.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 81.0 - -[Android WebView 81.0] -Parent="DefaultProperties" -Comment="Android WebView 81.0" -Browser="Android WebView" -Version="81.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/81.0*Mobile*Safari*] -Parent="Android WebView 81.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/81.0*Safari*] -Parent="Android WebView 81.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 80.0 - -[Android WebView 80.0] -Parent="DefaultProperties" -Comment="Android WebView 80.0" -Browser="Android WebView" -Version="80.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/80.0*Mobile*Safari*] -Parent="Android WebView 80.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/80.0*Safari*] -Parent="Android WebView 80.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 79.0 - -[Android WebView 79.0] -Parent="DefaultProperties" -Comment="Android WebView 79.0" -Browser="Android WebView" -Version="79.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/79.0*Mobile*Safari*] -Parent="Android WebView 79.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/79.0*Safari*] -Parent="Android WebView 79.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 78.0 - -[Android WebView 78.0] -Parent="DefaultProperties" -Comment="Android WebView 78.0" -Browser="Android WebView" -Version="78.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/78.0*Mobile*Safari*] -Parent="Android WebView 78.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/78.0*Safari*] -Parent="Android WebView 78.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 77.0 - -[Android WebView 77.0] -Parent="DefaultProperties" -Comment="Android WebView 77.0" -Browser="Android WebView" -Version="77.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/77.0*Mobile*Safari*] -Parent="Android WebView 77.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/77.0*Safari*] -Parent="Android WebView 77.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 76.0 - -[Android WebView 76.0] -Parent="DefaultProperties" -Comment="Android WebView 76.0" -Browser="Android WebView" -Version="76.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/76.0*Mobile*Safari*] -Parent="Android WebView 76.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/76.0*Safari*] -Parent="Android WebView 76.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 75.0 - -[Android WebView 75.0] -Parent="DefaultProperties" -Comment="Android WebView 75.0" -Browser="Android WebView" -Version="75.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/75.0*Mobile*Safari*] -Parent="Android WebView 75.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/75.0*Safari*] -Parent="Android WebView 75.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 74.0 - -[Android WebView 74.0] -Parent="DefaultProperties" -Comment="Android WebView 74.0" -Browser="Android WebView" -Version="74.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/74.0*Mobile*Safari*] -Parent="Android WebView 74.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/74.0*Safari*] -Parent="Android WebView 74.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 73.0 - -[Android WebView 73.0] -Parent="DefaultProperties" -Comment="Android WebView 73.0" -Browser="Android WebView" -Version="73.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/73.0*Mobile*Safari*] -Parent="Android WebView 73.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/73.0*Safari*] -Parent="Android WebView 73.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 72.0 - -[Android WebView 72.0] -Parent="DefaultProperties" -Comment="Android WebView 72.0" -Browser="Android WebView" -Version="72.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/72.0*Mobile*Safari*] -Parent="Android WebView 72.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/72.0*Safari*] -Parent="Android WebView 72.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 112.0 - -[Android WebView 112.0] -Parent="DefaultProperties" -Comment="Android WebView 112.0" -Browser="Android WebView" -Version="112.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/112.0*Mobile*Safari*] -Parent="Android WebView 112.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/112.0*Safari*] -Parent="Android WebView 112.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 111.0 - -[Android WebView 111.0] -Parent="DefaultProperties" -Comment="Android WebView 111.0" -Browser="Android WebView" -Version="111.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/111.0*Mobile*Safari*] -Parent="Android WebView 111.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/111.0*Safari*] -Parent="Android WebView 111.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 110.0 - -[Android WebView 110.0] -Parent="DefaultProperties" -Comment="Android WebView 110.0" -Browser="Android WebView" -Version="110.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/110.0*Mobile*Safari*] -Parent="Android WebView 110.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/110.0*Safari*] -Parent="Android WebView 110.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 109.0 - -[Android WebView 109.0] -Parent="DefaultProperties" -Comment="Android WebView 109.0" -Browser="Android WebView" -Version="109.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/109.0*Mobile*Safari*] -Parent="Android WebView 109.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/109.0*Safari*] -Parent="Android WebView 109.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 108.0 - -[Android WebView 108.0] -Parent="DefaultProperties" -Comment="Android WebView 108.0" -Browser="Android WebView" -Version="108.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/108.0*Mobile*Safari*] -Parent="Android WebView 108.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/108.0*Safari*] -Parent="Android WebView 108.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 107.0 - -[Android WebView 107.0] -Parent="DefaultProperties" -Comment="Android WebView 107.0" -Browser="Android WebView" -Version="107.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/107.0*Mobile*Safari*] -Parent="Android WebView 107.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/107.0*Safari*] -Parent="Android WebView 107.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 106.0 - -[Android WebView 106.0] -Parent="DefaultProperties" -Comment="Android WebView 106.0" -Browser="Android WebView" -Version="106.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/106.0*Mobile*Safari*] -Parent="Android WebView 106.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/106.0*Safari*] -Parent="Android WebView 106.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 105.0 - -[Android WebView 105.0] -Parent="DefaultProperties" -Comment="Android WebView 105.0" -Browser="Android WebView" -Version="105.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/105.0*Mobile*Safari*] -Parent="Android WebView 105.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/105.0*Safari*] -Parent="Android WebView 105.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 104.0 - -[Android WebView 104.0] -Parent="DefaultProperties" -Comment="Android WebView 104.0" -Browser="Android WebView" -Version="104.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/104.0*Mobile*Safari*] -Parent="Android WebView 104.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/104.0*Safari*] -Parent="Android WebView 104.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 103.0 - -[Android WebView 103.0] -Parent="DefaultProperties" -Comment="Android WebView 103.0" -Browser="Android WebView" -Version="103.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/103.0*Mobile*Safari*] -Parent="Android WebView 103.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/103.0*Safari*] -Parent="Android WebView 103.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 102.0 - -[Android WebView 102.0] -Parent="DefaultProperties" -Comment="Android WebView 102.0" -Browser="Android WebView" -Version="102.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/102.0*Mobile*Safari*] -Parent="Android WebView 102.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/102.0*Safari*] -Parent="Android WebView 102.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 101.0 - -[Android WebView 101.0] -Parent="DefaultProperties" -Comment="Android WebView 101.0" -Browser="Android WebView" -Version="101.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/101.0*Mobile*Safari*] -Parent="Android WebView 101.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/101.0*Safari*] -Parent="Android WebView 101.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 100.0 - -[Android WebView 100.0] -Parent="DefaultProperties" -Comment="Android WebView 100.0" -Browser="Android WebView" -Version="100.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/100.0*Mobile*Safari*] -Parent="Android WebView 100.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/100.0*Safari*] -Parent="Android WebView 100.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 99.0 - -[Android WebView 99.0] -Parent="DefaultProperties" -Comment="Android WebView 99.0" -Browser="Android WebView" -Version="99.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/99.0*Mobile*Safari*] -Parent="Android WebView 99.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/99.0*Safari*] -Parent="Android WebView 99.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 98.0 - -[Android WebView 98.0] -Parent="DefaultProperties" -Comment="Android WebView 98.0" -Browser="Android WebView" -Version="98.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/98.0*Mobile*Safari*] -Parent="Android WebView 98.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/98.0*Safari*] -Parent="Android WebView 98.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 97.0 - -[Android WebView 97.0] -Parent="DefaultProperties" -Comment="Android WebView 97.0" -Browser="Android WebView" -Version="97.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/97.0*Mobile*Safari*] -Parent="Android WebView 97.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/97.0*Safari*] -Parent="Android WebView 97.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 96.0 - -[Android WebView 96.0] -Parent="DefaultProperties" -Comment="Android WebView 96.0" -Browser="Android WebView" -Version="96.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/96.0*Mobile*Safari*] -Parent="Android WebView 96.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/96.0*Safari*] -Parent="Android WebView 96.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 95.0 - -[Android WebView 95.0] -Parent="DefaultProperties" -Comment="Android WebView 95.0" -Browser="Android WebView" -Version="95.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/95.0*Mobile*Safari*] -Parent="Android WebView 95.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/95.0*Safari*] -Parent="Android WebView 95.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 94.0 - -[Android WebView 94.0] -Parent="DefaultProperties" -Comment="Android WebView 94.0" -Browser="Android WebView" -Version="94.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/94.0*Mobile*Safari*] -Parent="Android WebView 94.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/94.0*Safari*] -Parent="Android WebView 94.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 93.0 - -[Android WebView 93.0] -Parent="DefaultProperties" -Comment="Android WebView 93.0" -Browser="Android WebView" -Version="93.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/93.0*Mobile*Safari*] -Parent="Android WebView 93.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/93.0*Safari*] -Parent="Android WebView 93.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 92.0 - -[Android WebView 92.0] -Parent="DefaultProperties" -Comment="Android WebView 92.0" -Browser="Android WebView" -Version="92.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/92.0*Mobile*Safari*] -Parent="Android WebView 92.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/92.0*Safari*] -Parent="Android WebView 92.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 91.0 - -[Android WebView 91.0] -Parent="DefaultProperties" -Comment="Android WebView 91.0" -Browser="Android WebView" -Version="91.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/91.0*Mobile*Safari*] -Parent="Android WebView 91.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/91.0*Safari*] -Parent="Android WebView 91.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 90.0 - -[Android WebView 90.0] -Parent="DefaultProperties" -Comment="Android WebView 90.0" -Browser="Android WebView" -Version="90.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/90.0*Mobile*Safari*] -Parent="Android WebView 90.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/90.0*Safari*] -Parent="Android WebView 90.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 89.0 - -[Android WebView 89.0] -Parent="DefaultProperties" -Comment="Android WebView 89.0" -Browser="Android WebView" -Version="89.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/89.0*Mobile*Safari*] -Parent="Android WebView 89.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/89.0*Safari*] -Parent="Android WebView 89.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 88.0 - -[Android WebView 88.0] -Parent="DefaultProperties" -Comment="Android WebView 88.0" -Browser="Android WebView" -Version="88.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/88.0*Mobile*Safari*] -Parent="Android WebView 88.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/88.0*Safari*] -Parent="Android WebView 88.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 87.0 - -[Android WebView 87.0] -Parent="DefaultProperties" -Comment="Android WebView 87.0" -Browser="Android WebView" -Version="87.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/87.0*Mobile*Safari*] -Parent="Android WebView 87.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/87.0*Safari*] -Parent="Android WebView 87.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 86.0 - -[Android WebView 86.0] -Parent="DefaultProperties" -Comment="Android WebView 86.0" -Browser="Android WebView" -Version="86.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/86.0*Mobile*Safari*] -Parent="Android WebView 86.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/86.0*Safari*] -Parent="Android WebView 86.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 85.0 - -[Android WebView 85.0] -Parent="DefaultProperties" -Comment="Android WebView 85.0" -Browser="Android WebView" -Version="85.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/85.0*Mobile*Safari*] -Parent="Android WebView 85.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/85.0*Safari*] -Parent="Android WebView 85.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 84.0 - -[Android WebView 84.0] -Parent="DefaultProperties" -Comment="Android WebView 84.0" -Browser="Android WebView" -Version="84.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/84.0*Mobile*Safari*] -Parent="Android WebView 84.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/84.0*Safari*] -Parent="Android WebView 84.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 83.0 - -[Android WebView 83.0] -Parent="DefaultProperties" -Comment="Android WebView 83.0" -Browser="Android WebView" -Version="83.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/83.0*Mobile*Safari*] -Parent="Android WebView 83.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome/83.0*Safari*] -Parent="Android WebView 83.0" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.9 - -[Seraphic Sraf 3.9] -Parent="DefaultProperties" -Comment="Seraphic Sraf 3.9" -Browser="Sraf" -Version="3.9" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.9* (+TRICKMODE; NEXUS; Nexus_AN01*] -Parent="Seraphic Sraf 3.9" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.9*] -Parent="Seraphic Sraf 3.9" - -[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.9*] -Parent="Seraphic Sraf 3.9" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.5 - -[Seraphic Sraf 3.5] -Parent="DefaultProperties" -Comment="Seraphic Sraf 3.5" -Browser="Sraf" -Version="3.5" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.5* (+TRICKMODE; NEXUS; Nexus_AN01*] -Parent="Seraphic Sraf 3.5" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.5*] -Parent="Seraphic Sraf 3.5" - -[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.5*] -Parent="Seraphic Sraf 3.5" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Seraphic Sraf 3.0 - -[Seraphic Sraf 3.0] -Parent="DefaultProperties" -Comment="Seraphic Sraf 3.0" -Browser="Sraf" -Version="3.0" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.0* (+TRICKMODE; NEXUS; Nexus_AN01*] -Parent="Seraphic Sraf 3.0" - -[Mozilla/5.0 (Linux; Linux mips) applewebkit* (*khtml*like*gecko*)*Chromium/* Safari/*) SRAF/3.0*] -Parent="Seraphic Sraf 3.0" - -[Mozilla/5.0 (Linux;*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* SRAF/3.0*] -Parent="Seraphic Sraf 3.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YOLO Browser 1.0 - -[YOLO Browser 1.0] -Parent="DefaultProperties" -Comment="YOLO Browser 1.0" -Browser="YOLO Browser" -Version="1.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*)*YoloBrowser/1.0*Safari*] -Parent="YOLO Browser 1.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView Generic - -[Android WebView Generic] -Parent="DefaultProperties" -Comment="Android WebView Generic" -Browser="Android WebView" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[*Mozilla/5.0 (*Linux*Android*) applewebkit*khtml*like*gecko*) Version/*Chrome*Safari*] -Parent="Android WebView Generic" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Chrome*Safari*] -Parent="Android WebView Generic" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari*Chrome*] -Parent="Android WebView Generic" - -[Mozilla/5.0 (*Linux*Android*) applewebkit*(*kthml*like*gecko*)*Version/*Chrome*Safari*] -Parent="Android WebView Generic" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khmtl*like*gecko*)*Version/*Chrome*Safari*] -Parent="Android WebView Generic" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 83 - -[Opera 83] -Parent="DefaultProperties" -Comment="Opera 83" -Browser="Opera" -Version=83 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*OMI/*] -Parent="Opera 83" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*HbbTV/*] -Parent="Opera 83" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/83*] -Parent="Opera 83" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 82 - -[Opera 82] -Parent="DefaultProperties" -Comment="Opera 82" -Browser="Opera" -Version=82 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*OMI/*] -Parent="Opera 82" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*HbbTV/*] -Parent="Opera 82" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/82*] -Parent="Opera 82" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 81 - -[Opera 81] -Parent="DefaultProperties" -Comment="Opera 81" -Browser="Opera" -Version=81 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*OMI/*] -Parent="Opera 81" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*HbbTV/*] -Parent="Opera 81" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/81*] -Parent="Opera 81" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 80 - -[Opera 80] -Parent="DefaultProperties" -Comment="Opera 80" -Browser="Opera" -Version=80 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*OMI/*] -Parent="Opera 80" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*HbbTV/*] -Parent="Opera 80" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/80*] -Parent="Opera 80" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 79 - -[Opera 79] -Parent="DefaultProperties" -Comment="Opera 79" -Browser="Opera" -Version=79 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*OMI/*] -Parent="Opera 79" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*HbbTV/*] -Parent="Opera 79" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/79*] -Parent="Opera 79" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 78 - -[Opera 78] -Parent="DefaultProperties" -Comment="Opera 78" -Browser="Opera" -Version=78 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*OMI/*] -Parent="Opera 78" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*HbbTV/*] -Parent="Opera 78" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/78*] -Parent="Opera 78" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 77 - -[Opera 77] -Parent="DefaultProperties" -Comment="Opera 77" -Browser="Opera" -Version=77 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*OMI/*] -Parent="Opera 77" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*HbbTV/*] -Parent="Opera 77" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/77*] -Parent="Opera 77" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 76 - -[Opera 76] -Parent="DefaultProperties" -Comment="Opera 76" -Browser="Opera" -Version=76 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*OMI/*] -Parent="Opera 76" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*HbbTV/*] -Parent="Opera 76" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/76*] -Parent="Opera 76" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 75 - -[Opera 75] -Parent="DefaultProperties" -Comment="Opera 75" -Browser="Opera" -Version=75 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*OMI/*] -Parent="Opera 75" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*HbbTV/*] -Parent="Opera 75" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/75*] -Parent="Opera 75" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 74 - -[Opera 74] -Parent="DefaultProperties" -Comment="Opera 74" -Browser="Opera" -Version=74 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*OMI/*] -Parent="Opera 74" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*HbbTV/*] -Parent="Opera 74" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/74*] -Parent="Opera 74" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 73 - -[Opera 73] -Parent="DefaultProperties" -Comment="Opera 73" -Browser="Opera" -Version=73 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*OMI/*] -Parent="Opera 73" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*HbbTV/*] -Parent="Opera 73" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/73*] -Parent="Opera 73" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 72 - -[Opera 72] -Parent="DefaultProperties" -Comment="Opera 72" -Browser="Opera" -Version=72 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*OMI/*] -Parent="Opera 72" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*HbbTV/*] -Parent="Opera 72" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/72*] -Parent="Opera 72" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 71 - -[Opera 71] -Parent="DefaultProperties" -Comment="Opera 71" -Browser="Opera" -Version=71 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*OMI/*] -Parent="Opera 71" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*HbbTV/*] -Parent="Opera 71" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/71*] -Parent="Opera 71" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 70 - -[Opera 70] -Parent="DefaultProperties" -Comment="Opera 70" -Browser="Opera" -Version=70 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*OMI/*] -Parent="Opera 70" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*HbbTV/*] -Parent="Opera 70" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/70*] -Parent="Opera 70" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 69 - -[Opera 69] -Parent="DefaultProperties" -Comment="Opera 69" -Browser="Opera" -Version=69 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*OMI/*] -Parent="Opera 69" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*HbbTV/*] -Parent="Opera 69" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/69*] -Parent="Opera 69" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 68 - -[Opera 68] -Parent="DefaultProperties" -Comment="Opera 68" -Browser="Opera" -Version=68 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*OMI/*] -Parent="Opera 68" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*HbbTV/*] -Parent="Opera 68" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/68*] -Parent="Opera 68" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 67 - -[Opera 67] -Parent="DefaultProperties" -Comment="Opera 67" -Browser="Opera" -Version=67 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*OMI/*] -Parent="Opera 67" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*HbbTV/*] -Parent="Opera 67" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/67*] -Parent="Opera 67" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 66 - -[Opera 66] -Parent="DefaultProperties" -Comment="Opera 66" -Browser="Opera" -Version=66 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*OMI/*] -Parent="Opera 66" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*HbbTV/*] -Parent="Opera 66" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/66*] -Parent="Opera 66" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 65 - -[Opera 65] -Parent="DefaultProperties" -Comment="Opera 65" -Browser="Opera" -Version=65 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*OMI/*] -Parent="Opera 65" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*HbbTV/*] -Parent="Opera 65" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/65*] -Parent="Opera 65" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 64 - -[Opera 64] -Parent="DefaultProperties" -Comment="Opera 64" -Browser="Opera" -Version=64 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*OMI/*] -Parent="Opera 64" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*HbbTV/*] -Parent="Opera 64" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/64*] -Parent="Opera 64" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 63 - -[Opera 63] -Parent="DefaultProperties" -Comment="Opera 63" -Browser="Opera" -Version=63 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*OMI/*] -Parent="Opera 63" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*HbbTV/*] -Parent="Opera 63" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/63*] -Parent="Opera 63" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 62 - -[Opera 62] -Parent="DefaultProperties" -Comment="Opera 62" -Browser="Opera" -Version=62 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*OMI/*] -Parent="Opera 62" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*HbbTV/*] -Parent="Opera 62" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/62*] -Parent="Opera 62" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 61 - -[Opera 61] -Parent="DefaultProperties" -Comment="Opera 61" -Browser="Opera" -Version=61 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*OMI/*] -Parent="Opera 61" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*HbbTV/*] -Parent="Opera 61" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/61*] -Parent="Opera 61" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 60 - -[Opera 60] -Parent="DefaultProperties" -Comment="Opera 60" -Browser="Opera" -Version=60 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*OMI/*] -Parent="Opera 60" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*HbbTV/*] -Parent="Opera 60" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/60*] -Parent="Opera 60" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 59 - -[Opera 59] -Parent="DefaultProperties" -Comment="Opera 59" -Browser="Opera" -Version=59 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*OMI/*] -Parent="Opera 59" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*HbbTV/*] -Parent="Opera 59" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/59*] -Parent="Opera 59" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 58 - -[Opera 58] -Parent="DefaultProperties" -Comment="Opera 58" -Browser="Opera" -Version=58 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*OMI/*] -Parent="Opera 58" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*HbbTV/*] -Parent="Opera 58" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/58*] -Parent="Opera 58" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 57 - -[Opera 57] -Parent="DefaultProperties" -Comment="Opera 57" -Browser="Opera" -Version=57 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*OMI/*] -Parent="Opera 57" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*HbbTV/*] -Parent="Opera 57" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/57*] -Parent="Opera 57" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 56 - -[Opera 56] -Parent="DefaultProperties" -Comment="Opera 56" -Browser="Opera" -Version=56 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*OMI/*] -Parent="Opera 56" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*HbbTV/*] -Parent="Opera 56" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/56*] -Parent="Opera 56" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 55 - -[Opera 55] -Parent="DefaultProperties" -Comment="Opera 55" -Browser="Opera" -Version=55 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*OMI/*] -Parent="Opera 55" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*HbbTV/*] -Parent="Opera 55" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/55*] -Parent="Opera 55" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 54 - -[Opera 54] -Parent="DefaultProperties" -Comment="Opera 54" -Browser="Opera" -Version=54 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*OMI/*] -Parent="Opera 54" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*HbbTV/*] -Parent="Opera 54" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/54*] -Parent="Opera 54" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 53 - -[Opera 53] -Parent="DefaultProperties" -Comment="Opera 53" -Browser="Opera" -Version=53 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*OMI/*] -Parent="Opera 53" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*HbbTV/*] -Parent="Opera 53" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/53*] -Parent="Opera 53" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 52 - -[Opera 52] -Parent="DefaultProperties" -Comment="Opera 52" -Browser="Opera" -Version=52 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*OMI/*] -Parent="Opera 52" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*HbbTV/*] -Parent="Opera 52" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/52*] -Parent="Opera 52" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 51 - -[Opera 51] -Parent="DefaultProperties" -Comment="Opera 51" -Browser="Opera" -Version=51 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*OMI/*] -Parent="Opera 51" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*HbbTV/*] -Parent="Opera 51" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/51*] -Parent="Opera 51" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 50 - -[Opera 50] -Parent="DefaultProperties" -Comment="Opera 50" -Browser="Opera" -Version=50 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*OMI/*] -Parent="Opera 50" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*HbbTV/*] -Parent="Opera 50" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/50*] -Parent="Opera 50" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 49 - -[Opera 49] -Parent="DefaultProperties" -Comment="Opera 49" -Browser="Opera" -Version=49 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*OMI/*] -Parent="Opera 49" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*HbbTV/*] -Parent="Opera 49" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/49*] -Parent="Opera 49" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 48 - -[Opera 48] -Parent="DefaultProperties" -Comment="Opera 48" -Browser="Opera" -Version=48 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*OMI/*] -Parent="Opera 48" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*HbbTV/*] -Parent="Opera 48" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/48*] -Parent="Opera 48" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 47 - -[Opera 47] -Parent="DefaultProperties" -Comment="Opera 47" -Browser="Opera" -Version=47 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*OMI/*] -Parent="Opera 47" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*HbbTV/*] -Parent="Opera 47" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/47*] -Parent="Opera 47" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 46 - -[Opera 46] -Parent="DefaultProperties" -Comment="Opera 46" -Browser="Opera" -Version=46 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*OMI/*] -Parent="Opera 46" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*HbbTV/*] -Parent="Opera 46" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/46*] -Parent="Opera 46" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 45 - -[Opera 45] -Parent="DefaultProperties" -Comment="Opera 45" -Browser="Opera" -Version=45 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*OMI/*] -Parent="Opera 45" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*HbbTV/*] -Parent="Opera 45" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/45*] -Parent="Opera 45" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 44 - -[Opera 44] -Parent="DefaultProperties" -Comment="Opera 44" -Browser="Opera" -Version=44 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*OMI/*] -Parent="Opera 44" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*HbbTV/*] -Parent="Opera 44" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/44*] -Parent="Opera 44" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 43 - -[Opera 43] -Parent="DefaultProperties" -Comment="Opera 43" -Browser="Opera" -Version=43 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*OMI/*] -Parent="Opera 43" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*HbbTV/*] -Parent="Opera 43" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/43*] -Parent="Opera 43" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 42 - -[Opera 42] -Parent="DefaultProperties" -Comment="Opera 42" -Browser="Opera" -Version=42 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*OMI/*] -Parent="Opera 42" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*HbbTV/*] -Parent="Opera 42" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/42*] -Parent="Opera 42" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 41 - -[Opera 41] -Parent="DefaultProperties" -Comment="Opera 41" -Browser="Opera" -Version=41 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*OMI/*] -Parent="Opera 41" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*HbbTV/*] -Parent="Opera 41" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/41*] -Parent="Opera 41" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 40 - -[Opera 40] -Parent="DefaultProperties" -Comment="Opera 40" -Browser="Opera" -Version=40 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*OMI/*] -Parent="Opera 40" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*HbbTV/*] -Parent="Opera 40" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/40*] -Parent="Opera 40" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 39 - -[Opera 39] -Parent="DefaultProperties" -Comment="Opera 39" -Browser="Opera" -Version=39 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*OMI/*] -Parent="Opera 39" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*HbbTV/*] -Parent="Opera 39" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/39*] -Parent="Opera 39" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 38 - -[Opera 38] -Parent="DefaultProperties" -Comment="Opera 38" -Browser="Opera" -Version=38 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*OMI/*] -Parent="Opera 38" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*HbbTV/*] -Parent="Opera 38" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/38*] -Parent="Opera 38" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 37 - -[Opera 37] -Parent="DefaultProperties" -Comment="Opera 37" -Browser="Opera" -Version=37 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*OMI/*] -Parent="Opera 37" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*HbbTV/*] -Parent="Opera 37" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/37*] -Parent="Opera 37" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 36 - -[Opera 36] -Parent="DefaultProperties" -Comment="Opera 36" -Browser="Opera" -Version=36 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*OMI/*] -Parent="Opera 36" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*HbbTV/*] -Parent="Opera 36" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/36*] -Parent="Opera 36" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 35 - -[Opera 35] -Parent="DefaultProperties" -Comment="Opera 35" -Browser="Opera" -Version=35 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*OMI/*] -Parent="Opera 35" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*HbbTV/*] -Parent="Opera 35" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/35*] -Parent="Opera 35" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 34 - -[Opera 34] -Parent="DefaultProperties" -Comment="Opera 34" -Browser="Opera" -Version=34 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*OMI/*] -Parent="Opera 34" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*HbbTV/*] -Parent="Opera 34" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/34*] -Parent="Opera 34" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 33 - -[Opera 33] -Parent="DefaultProperties" -Comment="Opera 33" -Browser="Opera" -Version=33 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*OMI/*] -Parent="Opera 33" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*HbbTV/*] -Parent="Opera 33" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/33*] -Parent="Opera 33" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 32 - -[Opera 32] -Parent="DefaultProperties" -Comment="Opera 32" -Browser="Opera" -Version=32 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*OMI/*] -Parent="Opera 32" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*HbbTV/*] -Parent="Opera 32" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/32*] -Parent="Opera 32" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 31 - -[Opera 31] -Parent="DefaultProperties" -Comment="Opera 31" -Browser="Opera" -Version=31 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*OMI/*] -Parent="Opera 31" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/31*] -Parent="Opera 31" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 30 - -[Opera 30] -Parent="DefaultProperties" -Comment="Opera 30" -Browser="Opera" -Version=30 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*OMI/*] -Parent="Opera 30" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/30*] -Parent="Opera 30" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 29 - -[Opera 29] -Parent="DefaultProperties" -Comment="Opera 29" -Browser="Opera" -Version=29 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*OMI/*] -Parent="Opera 29" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/29*] -Parent="Opera 29" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 28 - -[Opera 28] -Parent="DefaultProperties" -Comment="Opera 28" -Browser="Opera" -Version=28 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*OMI/*] -Parent="Opera 28" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/28*] -Parent="Opera 28" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 27 - -[Opera 27] -Parent="DefaultProperties" -Comment="Opera 27" -Browser="Opera" -Version=27 -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Linux" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*OMI/*] -Parent="Opera 27" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*)*Chrome/*Safari/*OPR/27*] -Parent="Opera 27" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 112.0 - -[Edge 112.0] -Parent="DefaultProperties" -Comment="Edge 112.0" -Browser="Edge" -Version="112.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/112.*] -Parent="Edge 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/112.*] -Parent="Edge 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/112.*] -Parent="Edge 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/112.*] -Parent="Edge 112.0" -Platform="Win7" - -[Edge 111.0] -Parent="DefaultProperties" -Comment="Edge 111.0" -Browser="Edge" -Version="111.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/111.*] -Parent="Edge 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/111.*] -Parent="Edge 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/111.*] -Parent="Edge 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/111.*] -Parent="Edge 111.0" -Platform="Win7" - -[Edge 110.0] -Parent="DefaultProperties" -Comment="Edge 110.0" -Browser="Edge" -Version="110.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/110.*] -Parent="Edge 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/110.*] -Parent="Edge 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/110.*] -Parent="Edge 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/110.*] -Parent="Edge 110.0" -Platform="Win7" - -[Edge 109.0] -Parent="DefaultProperties" -Comment="Edge 109.0" -Browser="Edge" -Version="109.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/109.*] -Parent="Edge 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/109.*] -Parent="Edge 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/109.*] -Parent="Edge 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/109.*] -Parent="Edge 109.0" -Platform="Win7" - -[Edge 108.0] -Parent="DefaultProperties" -Comment="Edge 108.0" -Browser="Edge" -Version="108.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/108.*] -Parent="Edge 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/108.*] -Parent="Edge 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/108.*] -Parent="Edge 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/108.*] -Parent="Edge 108.0" -Platform="Win7" - -[Edge 107.0] -Parent="DefaultProperties" -Comment="Edge 107.0" -Browser="Edge" -Version="107.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/107.*] -Parent="Edge 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/107.*] -Parent="Edge 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/107.*] -Parent="Edge 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/107.*] -Parent="Edge 107.0" -Platform="Win7" - -[Edge 106.0] -Parent="DefaultProperties" -Comment="Edge 106.0" -Browser="Edge" -Version="106.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/106.*] -Parent="Edge 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/106.*] -Parent="Edge 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/106.*] -Parent="Edge 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/106.*] -Parent="Edge 106.0" -Platform="Win7" - -[Edge 105.0] -Parent="DefaultProperties" -Comment="Edge 105.0" -Browser="Edge" -Version="105.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/105.*] -Parent="Edge 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/105.*] -Parent="Edge 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/105.*] -Parent="Edge 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/105.*] -Parent="Edge 105.0" -Platform="Win7" - -[Edge 104.0] -Parent="DefaultProperties" -Comment="Edge 104.0" -Browser="Edge" -Version="104.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/104.*] -Parent="Edge 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/104.*] -Parent="Edge 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/104.*] -Parent="Edge 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/104.*] -Parent="Edge 104.0" -Platform="Win7" - -[Edge 103.0] -Parent="DefaultProperties" -Comment="Edge 103.0" -Browser="Edge" -Version="103.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/103.*] -Parent="Edge 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/103.*] -Parent="Edge 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/103.*] -Parent="Edge 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/103.*] -Parent="Edge 103.0" -Platform="Win7" - -[Edge 102.0] -Parent="DefaultProperties" -Comment="Edge 102.0" -Browser="Edge" -Version="102.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/102.*] -Parent="Edge 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/102.*] -Parent="Edge 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/102.*] -Parent="Edge 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/102.*] -Parent="Edge 102.0" -Platform="Win7" - -[Edge 101.0] -Parent="DefaultProperties" -Comment="Edge 101.0" -Browser="Edge" -Version="101.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/101.*] -Parent="Edge 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/101.*] -Parent="Edge 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/101.*] -Parent="Edge 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/101.*] -Parent="Edge 101.0" -Platform="Win7" - -[Edge 100.0] -Parent="DefaultProperties" -Comment="Edge 100.0" -Browser="Edge" -Version="100.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/100.*] -Parent="Edge 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/100.*] -Parent="Edge 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/100.*] -Parent="Edge 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/100.*] -Parent="Edge 100.0" -Platform="Win7" - -[Edge 99.0] -Parent="DefaultProperties" -Comment="Edge 99.0" -Browser="Edge" -Version="99.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] -Parent="Edge 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] -Parent="Edge 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] -Parent="Edge 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/99.*] -Parent="Edge 99.0" -Platform="Win7" - -[Edge 98.0] -Parent="DefaultProperties" -Comment="Edge 98.0" -Browser="Edge" -Version="98.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] -Parent="Edge 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] -Parent="Edge 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] -Parent="Edge 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/98.*] -Parent="Edge 98.0" -Platform="Win7" - -[Edge 97.0] -Parent="DefaultProperties" -Comment="Edge 97.0" -Browser="Edge" -Version="97.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] -Parent="Edge 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] -Parent="Edge 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] -Parent="Edge 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/97.*] -Parent="Edge 97.0" -Platform="Win7" - -[Edge 96.0] -Parent="DefaultProperties" -Comment="Edge 96.0" -Browser="Edge" -Version="96.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] -Parent="Edge 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] -Parent="Edge 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] -Parent="Edge 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/96.*] -Parent="Edge 96.0" -Platform="Win7" - -[Edge 95.0] -Parent="DefaultProperties" -Comment="Edge 95.0" -Browser="Edge" -Version="95.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] -Parent="Edge 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] -Parent="Edge 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] -Parent="Edge 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/95.*] -Parent="Edge 95.0" -Platform="Win7" - -[Edge 94.0] -Parent="DefaultProperties" -Comment="Edge 94.0" -Browser="Edge" -Version="94.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] -Parent="Edge 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] -Parent="Edge 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] -Parent="Edge 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/94.*] -Parent="Edge 94.0" -Platform="Win7" - -[Edge 93.0] -Parent="DefaultProperties" -Comment="Edge 93.0" -Browser="Edge" -Version="93.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] -Parent="Edge 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] -Parent="Edge 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] -Parent="Edge 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/93.*] -Parent="Edge 93.0" -Platform="Win7" - -[Edge 92.0] -Parent="DefaultProperties" -Comment="Edge 92.0" -Browser="Edge" -Version="92.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] -Parent="Edge 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] -Parent="Edge 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] -Parent="Edge 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/92.*] -Parent="Edge 92.0" -Platform="Win7" - -[Edge 91.0] -Parent="DefaultProperties" -Comment="Edge 91.0" -Browser="Edge" -Version="91.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] -Parent="Edge 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] -Parent="Edge 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] -Parent="Edge 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/91.*] -Parent="Edge 91.0" -Platform="Win7" - -[Edge 90.0] -Parent="DefaultProperties" -Comment="Edge 90.0" -Browser="Edge" -Version="90.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] -Parent="Edge 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] -Parent="Edge 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] -Parent="Edge 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/90.*] -Parent="Edge 90.0" -Platform="Win7" - -[Edge 89.0] -Parent="DefaultProperties" -Comment="Edge 89.0" -Browser="Edge" -Version="89.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] -Parent="Edge 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] -Parent="Edge 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] -Parent="Edge 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/89.*] -Parent="Edge 89.0" -Platform="Win7" - -[Edge 88.0] -Parent="DefaultProperties" -Comment="Edge 88.0" -Browser="Edge" -Version="88.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] -Parent="Edge 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] -Parent="Edge 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] -Parent="Edge 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/88.*] -Parent="Edge 88.0" -Platform="Win7" - -[Edge 87.0] -Parent="DefaultProperties" -Comment="Edge 87.0" -Browser="Edge" -Version="87.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] -Parent="Edge 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] -Parent="Edge 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] -Parent="Edge 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/87.*] -Parent="Edge 87.0" -Platform="Win7" - -[Edge 86.0] -Parent="DefaultProperties" -Comment="Edge 86.0" -Browser="Edge" -Version="86.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] -Parent="Edge 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] -Parent="Edge 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] -Parent="Edge 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/86.*] -Parent="Edge 86.0" -Platform="Win7" - -[Edge 85.0] -Parent="DefaultProperties" -Comment="Edge 85.0" -Browser="Edge" -Version="85.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] -Parent="Edge 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] -Parent="Edge 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] -Parent="Edge 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/85.*] -Parent="Edge 85.0" -Platform="Win7" - -[Edge 84.0] -Parent="DefaultProperties" -Comment="Edge 84.0" -Browser="Edge" -Version="84.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] -Parent="Edge 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] -Parent="Edge 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] -Parent="Edge 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/84.*] -Parent="Edge 84.0" -Platform="Win7" - -[Edge 83.0] -Parent="DefaultProperties" -Comment="Edge 83.0" -Browser="Edge" -Version="83.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] -Parent="Edge 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] -Parent="Edge 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] -Parent="Edge 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/83.*] -Parent="Edge 83.0" -Platform="Win7" - -[Edge 82.0] -Parent="DefaultProperties" -Comment="Edge 82.0" -Browser="Edge" -Version="82.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] -Parent="Edge 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] -Parent="Edge 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] -Parent="Edge 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/82.*] -Parent="Edge 82.0" -Platform="Win7" - -[Edge 81.0] -Parent="DefaultProperties" -Comment="Edge 81.0" -Browser="Edge" -Version="81.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] -Parent="Edge 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] -Parent="Edge 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] -Parent="Edge 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/81.*] -Parent="Edge 81.0" -Platform="Win7" - -[Edge 80.0] -Parent="DefaultProperties" -Comment="Edge 80.0" -Browser="Edge" -Version="80.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] -Parent="Edge 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] -Parent="Edge 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] -Parent="Edge 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/80.*] -Parent="Edge 80.0" -Platform="Win7" - -[Edge 79.0] -Parent="DefaultProperties" -Comment="Edge 79.0" -Browser="Edge" -Version="79.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] -Parent="Edge 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] -Parent="Edge 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] -Parent="Edge 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/79.*] -Parent="Edge 79.0" -Platform="Win7" - -[Edge 78.0] -Parent="DefaultProperties" -Comment="Edge 78.0" -Browser="Edge" -Version="78.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] -Parent="Edge 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] -Parent="Edge 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] -Parent="Edge 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/78.*] -Parent="Edge 78.0" -Platform="Win7" - -[Edge 77.0] -Parent="DefaultProperties" -Comment="Edge 77.0" -Browser="Edge" -Version="77.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] -Parent="Edge 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] -Parent="Edge 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] -Parent="Edge 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/77.*] -Parent="Edge 77.0" -Platform="Win7" - -[Edge 76.0] -Parent="DefaultProperties" -Comment="Edge 76.0" -Browser="Edge" -Version="76.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] -Parent="Edge 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] -Parent="Edge 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] -Parent="Edge 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/76.*] -Parent="Edge 76.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 75.0 - -[Edge 75.0] -Parent="DefaultProperties" -Comment="Edge 75.0" -Browser="Edge" -Version="75.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/75.*] -Parent="Edge 75.0" -Platform="Win10" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 74.0 - -[Edge 74.0] -Parent="DefaultProperties" -Comment="Edge 74.0" -Browser="Edge" -Version="74.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/74.*] -Parent="Edge 74.0" -Platform="Win10" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 107.0 for iOS - -[Edge 107.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 107.0" -Browser="Edge" -Version="107.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/107.* Mobile/* Safari/*] -Parent="Edge 107.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/107.* Mobile/* Safari/*] -Parent="Edge 107.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 106.0 for iOS - -[Edge 106.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 106.0" -Browser="Edge" -Version="106.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/106.* Mobile/* Safari/*] -Parent="Edge 106.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/106.* Mobile/* Safari/*] -Parent="Edge 106.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 105.0 for iOS - -[Edge 105.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 105.0" -Browser="Edge" -Version="105.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/105.* Mobile/* Safari/*] -Parent="Edge 105.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/105.* Mobile/* Safari/*] -Parent="Edge 105.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 104.0 for iOS - -[Edge 104.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 104.0" -Browser="Edge" -Version="104.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/104.* Mobile/* Safari/*] -Parent="Edge 104.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/104.* Mobile/* Safari/*] -Parent="Edge 104.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 103.0 for iOS - -[Edge 103.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 103.0" -Browser="Edge" -Version="103.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/103.* Mobile/* Safari/*] -Parent="Edge 103.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/103.* Mobile/* Safari/*] -Parent="Edge 103.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 102.0 for iOS - -[Edge 102.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 102.0" -Browser="Edge" -Version="102.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/102.* Mobile/* Safari/*] -Parent="Edge 102.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/102.* Mobile/* Safari/*] -Parent="Edge 102.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 101.0 for iOS - -[Edge 101.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 101.0" -Browser="Edge" -Version="101.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/101.* Mobile/* Safari/*] -Parent="Edge 101.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/101.* Mobile/* Safari/*] -Parent="Edge 101.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 100.0 for iOS - -[Edge 100.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 100.0" -Browser="Edge" -Version="100.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/100.* Mobile/* Safari/*] -Parent="Edge 100.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/100.* Mobile/* Safari/*] -Parent="Edge 100.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 99.0 for iOS - -[Edge 99.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 99.0" -Browser="Edge" -Version="99.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/99.* Mobile/* Safari/*] -Parent="Edge 99.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/99.* Mobile/* Safari/*] -Parent="Edge 99.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 98.0 for iOS - -[Edge 98.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 98.0" -Browser="Edge" -Version="98.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/98.* Mobile/* Safari/*] -Parent="Edge 98.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/98.* Mobile/* Safari/*] -Parent="Edge 98.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 97.0 for iOS - -[Edge 97.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 97.0" -Browser="Edge" -Version="97.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/97.* Mobile/* Safari/*] -Parent="Edge 97.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/97.* Mobile/* Safari/*] -Parent="Edge 97.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 96.0 for iOS - -[Edge 96.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 96.0" -Browser="Edge" -Version="96.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/96.* Mobile/* Safari/*] -Parent="Edge 96.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/96.* Mobile/* Safari/*] -Parent="Edge 96.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 95.0 for iOS - -[Edge 95.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 95.0" -Browser="Edge" -Version="95.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/95.* Mobile/* Safari/*] -Parent="Edge 95.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/95.* Mobile/* Safari/*] -Parent="Edge 95.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 94.0 for iOS - -[Edge 94.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 94.0" -Browser="Edge" -Version="94.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/94.* Mobile/* Safari/*] -Parent="Edge 94.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/94.* Mobile/* Safari/*] -Parent="Edge 94.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 93.0 for iOS - -[Edge 93.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 93.0" -Browser="Edge" -Version="93.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/93.* Mobile/* Safari/*] -Parent="Edge 93.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/93.* Mobile/* Safari/*] -Parent="Edge 93.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 92.0 for iOS - -[Edge 92.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 92.0" -Browser="Edge" -Version="92.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/92.* Mobile/* Safari/*] -Parent="Edge 92.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/92.* Mobile/* Safari/*] -Parent="Edge 92.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 91.0 for iOS - -[Edge 91.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 91.0" -Browser="Edge" -Version="91.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/91.* Mobile/* Safari/*] -Parent="Edge 91.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/91.* Mobile/* Safari/*] -Parent="Edge 91.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 90.0 for iOS - -[Edge 90.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 90.0" -Browser="Edge" -Version="90.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/90.* Mobile/* Safari/*] -Parent="Edge 90.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/90.* Mobile/* Safari/*] -Parent="Edge 90.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 89.0 for iOS - -[Edge 89.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 89.0" -Browser="Edge" -Version="89.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/89.* Mobile/* Safari/*] -Parent="Edge 89.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/89.* Mobile/* Safari/*] -Parent="Edge 89.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 88.0 for iOS - -[Edge 88.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 88.0" -Browser="Edge" -Version="88.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/88.* Mobile/* Safari/*] -Parent="Edge 88.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/88.* Mobile/* Safari/*] -Parent="Edge 88.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 87.0 for iOS - -[Edge 87.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 87.0" -Browser="Edge" -Version="87.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/87.* Mobile/* Safari/*] -Parent="Edge 87.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/87.* Mobile/* Safari/*] -Parent="Edge 87.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 86.0 for iOS - -[Edge 86.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 86.0" -Browser="Edge" -Version="86.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/86.* Mobile/* Safari/*] -Parent="Edge 86.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/86.* Mobile/* Safari/*] -Parent="Edge 86.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 85.0 for iOS - -[Edge 85.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 85.0" -Browser="Edge" -Version="85.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/85.* Mobile/* Safari/*] -Parent="Edge 85.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/85.* Mobile/* Safari/*] -Parent="Edge 85.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 84.0 for iOS - -[Edge 84.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 84.0" -Browser="Edge" -Version="84.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/84.* Mobile/* Safari/*] -Parent="Edge 84.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/84.* Mobile/* Safari/*] -Parent="Edge 84.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 83.0 for iOS - -[Edge 83.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 83.0" -Browser="Edge" -Version="83.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/83.* Mobile/* Safari/*] -Parent="Edge 83.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/83.* Mobile/* Safari/*] -Parent="Edge 83.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 82.0 for iOS - -[Edge 82.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 82.0" -Browser="Edge" -Version="82.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/82.* Mobile/* Safari/*] -Parent="Edge 82.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/82.* Mobile/* Safari/*] -Parent="Edge 82.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 81.0 for iOS - -[Edge 81.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 81.0" -Browser="Edge" -Version="81.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/81.* Mobile/* Safari/*] -Parent="Edge 81.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/81.* Mobile/* Safari/*] -Parent="Edge 81.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 80.0 for iOS - -[Edge 80.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 80.0" -Browser="Edge" -Version="80.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/80.* Mobile/* Safari/*] -Parent="Edge 80.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/80.* Mobile/* Safari/*] -Parent="Edge 80.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 79.0 for iOS - -[Edge 79.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 79.0" -Browser="Edge" -Version="79.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/79.* Mobile/* Safari/*] -Parent="Edge 79.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/79.* Mobile/* Safari/*] -Parent="Edge 79.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 78.0 for iOS - -[Edge 78.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 78.0" -Browser="Edge" -Version="78.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/78.* Mobile/* Safari/*] -Parent="Edge 78.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/78.* Mobile/* Safari/*] -Parent="Edge 78.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 77.0 for iOS - -[Edge 77.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 77.0" -Browser="Edge" -Version="77.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/77.* Mobile/* Safari/*] -Parent="Edge 77.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/77.* Mobile/* Safari/*] -Parent="Edge 77.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 76.0 for iOS - -[Edge 76.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 76.0" -Browser="Edge" -Version="76.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/76.* Mobile/* Safari/*] -Parent="Edge 76.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/76.* Mobile/* Safari/*] -Parent="Edge 76.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 75.0 for iOS - -[Edge 75.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 75.0" -Browser="Edge" -Version="75.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/75.* Mobile/* Safari/*] -Parent="Edge 75.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/75.* Mobile/* Safari/*] -Parent="Edge 75.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 45.0 for iOS - -[Edge 45.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 45.0" -Browser="Edge" -Version="45.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/45.* Mobile/* Safari/*] -Parent="Edge 45.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/45.* Mobile/* Safari/*] -Parent="Edge 45.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 44.0 for iOS - -[Edge 44.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 44.0" -Browser="Edge" -Version="44.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/44.* Mobile/* Safari/*] -Parent="Edge 44.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/44.* Mobile/* Safari/*] -Parent="Edge 44.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 43.0 for iOS - -[Edge 43.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 43.0" -Browser="Edge" -Version="43.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/43.* Mobile/* Safari/*] -Parent="Edge 43.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/43.* Mobile/* Safari/*] -Parent="Edge 43.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 42.0 for iOS - -[Edge 42.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 42.0" -Browser="Edge" -Version="42.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/42.* Mobile/* Safari/*] -Parent="Edge 42.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/42.* Mobile/* Safari/*] -Parent="Edge 42.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 41.0 for iOS - -[Edge 41.0 for iOS] -Parent="DefaultProperties" -Comment="Edge 41.0" -Browser="Edge" -Version="41.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/41.* Mobile/* Safari/*] -Parent="Edge 41.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/41.* Mobile/* Safari/*] -Parent="Edge 41.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 112.0 for Android - -[Edge 112.0 for Android] -Parent="DefaultProperties" -Comment="Edge 112.0" -Browser="Edge" -Version="112.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/112.*] -Parent="Edge 112.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 111.0 for Android - -[Edge 111.0 for Android] -Parent="DefaultProperties" -Comment="Edge 111.0" -Browser="Edge" -Version="111.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/111.*] -Parent="Edge 111.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 110.0 for Android - -[Edge 110.0 for Android] -Parent="DefaultProperties" -Comment="Edge 110.0" -Browser="Edge" -Version="110.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/110.*] -Parent="Edge 110.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 109.0 for Android - -[Edge 109.0 for Android] -Parent="DefaultProperties" -Comment="Edge 109.0" -Browser="Edge" -Version="109.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/109.*] -Parent="Edge 109.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 108.0 for Android - -[Edge 108.0 for Android] -Parent="DefaultProperties" -Comment="Edge 108.0" -Browser="Edge" -Version="108.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/108.*] -Parent="Edge 108.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 107.0 for Android - -[Edge 107.0 for Android] -Parent="DefaultProperties" -Comment="Edge 107.0" -Browser="Edge" -Version="107.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/107.*] -Parent="Edge 107.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 106.0 for Android - -[Edge 106.0 for Android] -Parent="DefaultProperties" -Comment="Edge 106.0" -Browser="Edge" -Version="106.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/106.*] -Parent="Edge 106.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 105.0 for Android - -[Edge 105.0 for Android] -Parent="DefaultProperties" -Comment="Edge 105.0" -Browser="Edge" -Version="105.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/105.*] -Parent="Edge 105.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 104.0 for Android - -[Edge 104.0 for Android] -Parent="DefaultProperties" -Comment="Edge 104.0" -Browser="Edge" -Version="104.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/104.*] -Parent="Edge 104.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 103.0 for Android - -[Edge 103.0 for Android] -Parent="DefaultProperties" -Comment="Edge 103.0" -Browser="Edge" -Version="103.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/103.*] -Parent="Edge 103.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 102.0 for Android - -[Edge 102.0 for Android] -Parent="DefaultProperties" -Comment="Edge 102.0" -Browser="Edge" -Version="102.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/102.*] -Parent="Edge 102.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 101.0 for Android - -[Edge 101.0 for Android] -Parent="DefaultProperties" -Comment="Edge 101.0" -Browser="Edge" -Version="101.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/101.*] -Parent="Edge 101.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 100.0 for Android - -[Edge 100.0 for Android] -Parent="DefaultProperties" -Comment="Edge 100.0" -Browser="Edge" -Version="100.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/100.*] -Parent="Edge 100.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 99.0 for Android - -[Edge 99.0 for Android] -Parent="DefaultProperties" -Comment="Edge 99.0" -Browser="Edge" -Version="99.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/99.*] -Parent="Edge 99.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 98.0 for Android - -[Edge 98.0 for Android] -Parent="DefaultProperties" -Comment="Edge 98.0" -Browser="Edge" -Version="98.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/98.*] -Parent="Edge 98.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 97.0 for Android - -[Edge 97.0 for Android] -Parent="DefaultProperties" -Comment="Edge 97.0" -Browser="Edge" -Version="97.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/97.*] -Parent="Edge 97.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 96.0 for Android - -[Edge 96.0 for Android] -Parent="DefaultProperties" -Comment="Edge 96.0" -Browser="Edge" -Version="96.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/96.*] -Parent="Edge 96.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 95.0 for Android - -[Edge 95.0 for Android] -Parent="DefaultProperties" -Comment="Edge 95.0" -Browser="Edge" -Version="95.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/95.*] -Parent="Edge 95.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 94.0 for Android - -[Edge 94.0 for Android] -Parent="DefaultProperties" -Comment="Edge 94.0" -Browser="Edge" -Version="94.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/94.*] -Parent="Edge 94.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 93.0 for Android - -[Edge 93.0 for Android] -Parent="DefaultProperties" -Comment="Edge 93.0" -Browser="Edge" -Version="93.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/93.*] -Parent="Edge 93.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 45.0 for Android - -[Edge 45.0 for Android] -Parent="DefaultProperties" -Comment="Edge 45.0" -Browser="Edge" -Version="45.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/45.*] -Parent="Edge 45.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 44.0 for Android - -[Edge 44.0 for Android] -Parent="DefaultProperties" -Comment="Edge 44.0" -Browser="Edge" -Version="44.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/44.*] -Parent="Edge 44.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 43.0 for Android - -[Edge 43.0 for Android] -Parent="DefaultProperties" -Comment="Edge 43.0" -Browser="Edge" -Version="43.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/43.*] -Parent="Edge 43.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 42.0 for Android - -[Edge 42.0 for Android] -Parent="DefaultProperties" -Comment="Edge 42.0" -Browser="Edge" -Version="42.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/42.*] -Parent="Edge 42.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 41.0 for Android - -[Edge 41.0 for Android] -Parent="DefaultProperties" -Comment="Edge 41.0" -Browser="Edge" -Version="41.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/41.*] -Parent="Edge 41.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 92.0 - -[Headless Edge 92.0] -Parent="DefaultProperties" -Comment="Headless Edge 92.0" -Browser="Headless Edge" -Version="92.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] -Parent="Headless Edge 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] -Parent="Headless Edge 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] -Parent="Headless Edge 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/92.*] -Parent="Headless Edge 92.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 91.0 - -[Headless Edge 91.0] -Parent="DefaultProperties" -Comment="Headless Edge 91.0" -Browser="Headless Edge" -Version="91.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] -Parent="Headless Edge 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] -Parent="Headless Edge 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] -Parent="Headless Edge 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/91.*] -Parent="Headless Edge 91.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 90.0 - -[Headless Edge 90.0] -Parent="DefaultProperties" -Comment="Headless Edge 90.0" -Browser="Headless Edge" -Version="90.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] -Parent="Headless Edge 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] -Parent="Headless Edge 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] -Parent="Headless Edge 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/90.*] -Parent="Headless Edge 90.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 89.0 - -[Headless Edge 89.0] -Parent="DefaultProperties" -Comment="Headless Edge 89.0" -Browser="Headless Edge" -Version="89.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] -Parent="Headless Edge 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] -Parent="Headless Edge 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] -Parent="Headless Edge 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/89.*] -Parent="Headless Edge 89.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 88.0 - -[Headless Edge 88.0] -Parent="DefaultProperties" -Comment="Headless Edge 88.0" -Browser="Headless Edge" -Version="88.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] -Parent="Headless Edge 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] -Parent="Headless Edge 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] -Parent="Headless Edge 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/88.*] -Parent="Headless Edge 88.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 87.0 - -[Headless Edge 87.0] -Parent="DefaultProperties" -Comment="Headless Edge 87.0" -Browser="Headless Edge" -Version="87.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] -Parent="Headless Edge 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] -Parent="Headless Edge 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] -Parent="Headless Edge 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/87.*] -Parent="Headless Edge 87.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 86.0 - -[Headless Edge 86.0] -Parent="DefaultProperties" -Comment="Headless Edge 86.0" -Browser="Headless Edge" -Version="86.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] -Parent="Headless Edge 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] -Parent="Headless Edge 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] -Parent="Headless Edge 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/86.*] -Parent="Headless Edge 86.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 85.0 - -[Headless Edge 85.0] -Parent="DefaultProperties" -Comment="Headless Edge 85.0" -Browser="Headless Edge" -Version="85.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] -Parent="Headless Edge 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] -Parent="Headless Edge 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] -Parent="Headless Edge 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/85.*] -Parent="Headless Edge 85.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 84.0 - -[Headless Edge 84.0] -Parent="DefaultProperties" -Comment="Headless Edge 84.0" -Browser="Headless Edge" -Version="84.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] -Parent="Headless Edge 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] -Parent="Headless Edge 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] -Parent="Headless Edge 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/84.*] -Parent="Headless Edge 84.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 83.0 - -[Headless Edge 83.0] -Parent="DefaultProperties" -Comment="Headless Edge 83.0" -Browser="Headless Edge" -Version="83.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] -Parent="Headless Edge 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] -Parent="Headless Edge 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] -Parent="Headless Edge 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/83.*] -Parent="Headless Edge 83.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 82.0 - -[Headless Edge 82.0] -Parent="DefaultProperties" -Comment="Headless Edge 82.0" -Browser="Headless Edge" -Version="82.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] -Parent="Headless Edge 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] -Parent="Headless Edge 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] -Parent="Headless Edge 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/82.*] -Parent="Headless Edge 82.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 81.0 - -[Headless Edge 81.0] -Parent="DefaultProperties" -Comment="Headless Edge 81.0" -Browser="Headless Edge" -Version="81.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] -Parent="Headless Edge 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] -Parent="Headless Edge 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] -Parent="Headless Edge 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/81.*] -Parent="Headless Edge 81.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 80.0 - -[Headless Edge 80.0] -Parent="DefaultProperties" -Comment="Headless Edge 80.0" -Browser="Headless Edge" -Version="80.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] -Parent="Headless Edge 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] -Parent="Headless Edge 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] -Parent="Headless Edge 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/80.*] -Parent="Headless Edge 80.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 79.0 - -[Headless Edge 79.0] -Parent="DefaultProperties" -Comment="Headless Edge 79.0" -Browser="Headless Edge" -Version="79.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] -Parent="Headless Edge 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] -Parent="Headless Edge 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] -Parent="Headless Edge 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/79.*] -Parent="Headless Edge 79.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 78.0 - -[Headless Edge 78.0] -Parent="DefaultProperties" -Comment="Headless Edge 78.0" -Browser="Headless Edge" -Version="78.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] -Parent="Headless Edge 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] -Parent="Headless Edge 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] -Parent="Headless Edge 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/78.*] -Parent="Headless Edge 78.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 77.0 - -[Headless Edge 77.0] -Parent="DefaultProperties" -Comment="Headless Edge 77.0" -Browser="Headless Edge" -Version="77.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] -Parent="Headless Edge 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] -Parent="Headless Edge 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] -Parent="Headless Edge 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/77.*] -Parent="Headless Edge 77.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge 76.0 - -[Headless Edge 76.0] -Parent="DefaultProperties" -Comment="Headless Edge 76.0" -Browser="Headless Edge" -Version="76.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] -Parent="Headless Edge 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] -Parent="Headless Edge 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] -Parent="Headless Edge 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/76.*] -Parent="Headless Edge 76.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 18.0 - -[Edge 18.0] -Parent="DefaultProperties" -Comment="Edge 18.0" -Browser="Edge" -Version="18.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge 18.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge 18.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge 18.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/18.*] -Parent="Edge 18.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/18.*] -Parent="Edge 18.0" -Platform="Win10" - -[Edge Mobile 18.0] -Parent="DefaultProperties" -Comment="Edge Mobile 18.0" -Browser="Edge Mobile" -Version="18.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge Mobile 18.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge Mobile 18.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge Mobile 18.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge Mobile 18.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/18.*] -Parent="Edge Mobile 18.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 17.0 - -[Edge 17.0] -Parent="DefaultProperties" -Comment="Edge 17.0" -Browser="Edge" -Version="17.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge 17.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge 17.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge 17.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/17.*] -Parent="Edge 17.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/17.*] -Parent="Edge 17.0" -Platform="Win10" - -[Edge Mobile 17.0] -Parent="DefaultProperties" -Comment="Edge Mobile 17.0" -Browser="Edge Mobile" -Version="17.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge Mobile 17.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge Mobile 17.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge Mobile 17.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge Mobile 17.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/17.*] -Parent="Edge Mobile 17.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 16.0 - -[Edge 16.0] -Parent="DefaultProperties" -Comment="Edge 16.0" -Browser="Edge" -Version="16.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge 16.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge 16.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge 16.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/16.*] -Parent="Edge 16.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/16.*] -Parent="Edge 16.0" -Platform="Win10" - -[Edge Mobile 16.0] -Parent="DefaultProperties" -Comment="Edge Mobile 16.0" -Browser="Edge Mobile" -Version="16.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge Mobile 16.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge Mobile 16.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge Mobile 16.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge Mobile 16.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/16.*] -Parent="Edge Mobile 16.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 15.0 - -[Edge 15.0] -Parent="DefaultProperties" -Comment="Edge 15.0" -Browser="Edge" -Version="15.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge 15.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge 15.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge 15.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/15.*] -Parent="Edge 15.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/15.*] -Parent="Edge 15.0" -Platform="Win10" - -[Edge Mobile 15.0] -Parent="DefaultProperties" -Comment="Edge Mobile 15.0" -Browser="Edge Mobile" -Version="15.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge Mobile 15.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge Mobile 15.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge Mobile 15.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge Mobile 15.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/15.*] -Parent="Edge Mobile 15.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 14.0 - -[Edge 14.0] -Parent="DefaultProperties" -Comment="Edge 14.0" -Browser="Edge" -Version="14.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge 14.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge 14.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge 14.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/14.*] -Parent="Edge 14.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/14.*] -Parent="Edge 14.0" -Platform="Win10" - -[Edge Mobile 14.0] -Parent="DefaultProperties" -Comment="Edge Mobile 14.0" -Browser="Edge Mobile" -Version="14.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge Mobile 14.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge Mobile 14.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge Mobile 14.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge Mobile 14.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/14.*] -Parent="Edge Mobile 14.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 13.0 - -[Edge 13.0] -Parent="DefaultProperties" -Comment="Edge 13.0" -Browser="Edge" -Version="13.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge 13.0" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge 13.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge 13.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/13.*] -Parent="Edge 13.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Safari/* Edge/13.*] -Parent="Edge 13.0" -Platform="Win10" - -[Edge Mobile 13.0] -Parent="DefaultProperties" -Comment="Edge Mobile 13.0" -Browser="Edge Mobile" -Version="13.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 550) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge Mobile 13.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge Mobile 13.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1010) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge Mobile 13.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge Mobile 13.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/13.*] -Parent="Edge Mobile 13.0" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ecosia - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge Generic - -[Edge Generic] -Parent="DefaultProperties" -Comment="Edge Generic" -Browser="Edge" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Win64? x64* Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Generic" -Platform="Xbox OS 10" -Device_Type="TV Device" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows* Anonymisiert durch AlMiSoft Browser-*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Generic" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] -Parent="Edge Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] -Parent="Edge Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] -Parent="Edge Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edg/*] -Parent="Edge Generic" -Platform="Win7" - -[Edge Mobile Generic] -Parent="DefaultProperties" -Comment="Edge Mobile Generic" -Browser="Edge Mobile" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Mobile Generic" - -[Mozilla/5.0 (*Windows Phone 10.0*Xbox; Xbox One) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/*] -Parent="Edge Mobile Generic" -Platform="Xbox OS 10 (Mobile View)" -isMobileDevice="false" -Device_Type="TV Device" - -[Edge Generic for Android] -Parent="DefaultProperties" -Comment="Edge Generic for Android" -Browser="Edge" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/* Mobile Safari/* EdgA/*] -Parent="Edge Generic for Android" - -[Edge Generic for iOS] -Parent="DefaultProperties" -Comment="Edge Generic for iOS" -Browser="Edge" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/* Mobile/* Safari/*] -Parent="Edge Generic for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Version/* EdgiOS/* Mobile/* Safari/*] -Parent="Edge Generic for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Edge 12.0 - -[Edge 12.0] -Parent="DefaultProperties" -Comment="Edge 12.0" -Browser="Edge" -Version="12.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge 12.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge 12.0" -Platform="Win10" - -[Edge Mobile 12.0] -Parent="DefaultProperties" -Comment="Edge Mobile 12.0" -Browser="Edge Mobile" -Version="12.0" -Platform="WinPhone10" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Windows Phone 10.0*id336*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge Mobile 12.0" - -[Mozilla/5.0 (*Windows Phone 10.0*RM-1104*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge Mobile 12.0" - -[Mozilla/5.0 (*Windows Phone 10.0*Lumia 930) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge Mobile 12.0" - -[Mozilla/5.0 (*Windows Phone 10.0*) applewebkit*(*khtml*like*gecko*) Chrome/* Safari/* Edge/12*] -Parent="Edge Mobile 12.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Edge Generic - -[Headless Edge Generic] -Parent="DefaultProperties" -Comment="Headless Edge Generic" -Browser="Headless Edge" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] -Parent="Headless Edge Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] -Parent="Headless Edge Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] -Parent="Headless Edge Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/* Safari/* Edg/*] -Parent="Headless Edge Generic" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 71.0 for Android - -[Chrome 71.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 71.0" -Browser="Chrome" -Version="71.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Mobile Safari/*] -Parent="Chrome 71.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 70.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 70.0" -Browser="Chrome" -Version="70.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Mobile Safari/*] -Parent="Chrome 70.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 69.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 69.0" -Browser="Chrome" -Version="69.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Mobile Safari/*] -Parent="Chrome 69.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 68.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 68.0" -Browser="Chrome" -Version="68.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Mobile Safari/*] -Parent="Chrome 68.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 67.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 67.0" -Browser="Chrome" -Version="67.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Mobile Safari/*] -Parent="Chrome 67.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 66.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 66.0" -Browser="Chrome" -Version="66.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Mobile Safari/*] -Parent="Chrome 66.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 65.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 65.0" -Browser="Chrome" -Version="65.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Mobile Safari/*] -Parent="Chrome 65.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 64.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 64.0" -Browser="Chrome" -Version="64.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Mobile Safari/*] -Parent="Chrome 64.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 63.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 63.0" -Browser="Chrome" -Version="63.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Mobile Safari/*] -Parent="Chrome 63.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 62.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 62.0" -Browser="Chrome" -Version="62.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Mobile Safari/*] -Parent="Chrome 62.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 61.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 61.0" -Browser="Chrome" -Version="61.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Mobile Safari/*] -Parent="Chrome 61.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 60.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 60.0" -Browser="Chrome" -Version="60.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Mobile Safari/*] -Parent="Chrome 60.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 59.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 59.0" -Browser="Chrome" -Version="59.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Mobile Safari/*] -Parent="Chrome 59.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 58.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 58.0" -Browser="Chrome" -Version="58.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Mobile Safari/*] -Parent="Chrome 58.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 57.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 57.0" -Browser="Chrome" -Version="57.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Mobile Safari/*] -Parent="Chrome 57.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 56.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 56.0" -Browser="Chrome" -Version="56.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Mobile Safari/*] -Parent="Chrome 56.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 55.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 55.0" -Browser="Chrome" -Version="55.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Mobile Safari/*] -Parent="Chrome 55.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 54.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 54.0" -Browser="Chrome" -Version="54.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Mobile Safari/*] -Parent="Chrome 54.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 53.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 53.0" -Browser="Chrome" -Version="53.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Mobile Safari/*] -Parent="Chrome 53.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 52.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 52.0" -Browser="Chrome" -Version="52.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Mobile Safari/*] -Parent="Chrome 52.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 51.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 51.0" -Browser="Chrome" -Version="51.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Mobile Safari/*] -Parent="Chrome 51.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 50.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 50.0" -Browser="Chrome" -Version="50.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Mobile Safari/*] -Parent="Chrome 50.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 49.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 49.0" -Browser="Chrome" -Version="49.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/49.0*Mobile Safari/*] -Parent="Chrome 49.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/49.0*Safari/*] -Parent="Chrome 49.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 48.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 48.0" -Browser="Chrome" -Version="48.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/48.0*Mobile Safari/*] -Parent="Chrome 48.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/48.0*Safari/*] -Parent="Chrome 48.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 47.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 47.0" -Browser="Chrome" -Version="47.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/47.0*Mobile Safari/*] -Parent="Chrome 47.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/47.0*Safari/*] -Parent="Chrome 47.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 46.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 46.0" -Browser="Chrome" -Version="46.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/46.0*Mobile Safari/*] -Parent="Chrome 46.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/46.0*Safari/*] -Parent="Chrome 46.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 45.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 45.0" -Browser="Chrome" -Version="45.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/45.0*Mobile Safari/*] -Parent="Chrome 45.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/45.0*Safari/*] -Parent="Chrome 45.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 44.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 44.0" -Browser="Chrome" -Version="44.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/44.0*Mobile Safari/*] -Parent="Chrome 44.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/44.0*Safari/*] -Parent="Chrome 44.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 43.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 43.0" -Browser="Chrome" -Version="43.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/43.0*Mobile Safari/*] -Parent="Chrome 43.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/43.0*Safari/*] -Parent="Chrome 43.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 112.0 - -[Chrome 112.0] -Parent="DefaultProperties" -Comment="Chrome 112.0" -Browser="Chrome" -Version="112.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/112.0* anonymized by*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/112.0* anonymized by*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/112.0* anonymized by*] -Parent="Chrome 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/112.0* anonymized by*] -Parent="Chrome 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/112.0* anonymized by*] -Parent="Chrome 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Anonymisiert durch*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Anonymisiert durch*] -Parent="Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Anonymisiert durch*] -Parent="Chrome 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Anonymisiert durch*] -Parent="Chrome 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Anonymisiert durch*] -Parent="Chrome 112.0" -Platform="Win7" - -[Chrome 111.0] -Parent="DefaultProperties" -Comment="Chrome 111.0" -Browser="Chrome" -Version="111.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/111.0* anonymized by*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/111.0* anonymized by*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/111.0* anonymized by*] -Parent="Chrome 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/111.0* anonymized by*] -Parent="Chrome 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/111.0* anonymized by*] -Parent="Chrome 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Anonymisiert durch*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Anonymisiert durch*] -Parent="Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Anonymisiert durch*] -Parent="Chrome 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Anonymisiert durch*] -Parent="Chrome 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Anonymisiert durch*] -Parent="Chrome 111.0" -Platform="Win7" - -[Chrome 110.0] -Parent="DefaultProperties" -Comment="Chrome 110.0" -Browser="Chrome" -Version="110.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/110.0* anonymized by*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/110.0* anonymized by*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/110.0* anonymized by*] -Parent="Chrome 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/110.0* anonymized by*] -Parent="Chrome 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/110.0* anonymized by*] -Parent="Chrome 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Anonymisiert durch*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Anonymisiert durch*] -Parent="Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Anonymisiert durch*] -Parent="Chrome 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Anonymisiert durch*] -Parent="Chrome 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Anonymisiert durch*] -Parent="Chrome 110.0" -Platform="Win7" - -[Chrome 109.0] -Parent="DefaultProperties" -Comment="Chrome 109.0" -Browser="Chrome" -Version="109.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/109.0* anonymized by*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/109.0* anonymized by*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/109.0* anonymized by*] -Parent="Chrome 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/109.0* anonymized by*] -Parent="Chrome 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/109.0* anonymized by*] -Parent="Chrome 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Anonymisiert durch*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Anonymisiert durch*] -Parent="Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Anonymisiert durch*] -Parent="Chrome 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Anonymisiert durch*] -Parent="Chrome 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Anonymisiert durch*] -Parent="Chrome 109.0" -Platform="Win7" - -[Chrome 108.0] -Parent="DefaultProperties" -Comment="Chrome 108.0" -Browser="Chrome" -Version="108.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/108.0* anonymized by*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/108.0* anonymized by*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/108.0* anonymized by*] -Parent="Chrome 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/108.0* anonymized by*] -Parent="Chrome 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/108.0* anonymized by*] -Parent="Chrome 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Anonymisiert durch*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Anonymisiert durch*] -Parent="Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Anonymisiert durch*] -Parent="Chrome 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Anonymisiert durch*] -Parent="Chrome 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Anonymisiert durch*] -Parent="Chrome 108.0" -Platform="Win7" - -[Chrome 107.0] -Parent="DefaultProperties" -Comment="Chrome 107.0" -Browser="Chrome" -Version="107.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/107.0* anonymized by*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/107.0* anonymized by*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/107.0* anonymized by*] -Parent="Chrome 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/107.0* anonymized by*] -Parent="Chrome 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/107.0* anonymized by*] -Parent="Chrome 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Anonymisiert durch*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Anonymisiert durch*] -Parent="Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Anonymisiert durch*] -Parent="Chrome 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Anonymisiert durch*] -Parent="Chrome 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Anonymisiert durch*] -Parent="Chrome 107.0" -Platform="Win7" - -[Chrome 106.0] -Parent="DefaultProperties" -Comment="Chrome 106.0" -Browser="Chrome" -Version="106.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/106.0* anonymized by*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/106.0* anonymized by*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/106.0* anonymized by*] -Parent="Chrome 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/106.0* anonymized by*] -Parent="Chrome 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/106.0* anonymized by*] -Parent="Chrome 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Anonymisiert durch*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Anonymisiert durch*] -Parent="Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Anonymisiert durch*] -Parent="Chrome 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Anonymisiert durch*] -Parent="Chrome 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Anonymisiert durch*] -Parent="Chrome 106.0" -Platform="Win7" - -[Chrome 105.0] -Parent="DefaultProperties" -Comment="Chrome 105.0" -Browser="Chrome" -Version="105.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/105.0* anonymized by*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/105.0* anonymized by*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/105.0* anonymized by*] -Parent="Chrome 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/105.0* anonymized by*] -Parent="Chrome 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/105.0* anonymized by*] -Parent="Chrome 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Anonymisiert durch*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Anonymisiert durch*] -Parent="Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Anonymisiert durch*] -Parent="Chrome 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Anonymisiert durch*] -Parent="Chrome 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Anonymisiert durch*] -Parent="Chrome 105.0" -Platform="Win7" - -[Chrome 104.0] -Parent="DefaultProperties" -Comment="Chrome 104.0" -Browser="Chrome" -Version="104.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/104.0* anonymized by*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/104.0* anonymized by*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/104.0* anonymized by*] -Parent="Chrome 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/104.0* anonymized by*] -Parent="Chrome 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/104.0* anonymized by*] -Parent="Chrome 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Anonymisiert durch*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Anonymisiert durch*] -Parent="Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Anonymisiert durch*] -Parent="Chrome 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Anonymisiert durch*] -Parent="Chrome 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Anonymisiert durch*] -Parent="Chrome 104.0" -Platform="Win7" - -[Chrome 103.0] -Parent="DefaultProperties" -Comment="Chrome 103.0" -Browser="Chrome" -Version="103.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/103.0* anonymized by*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/103.0* anonymized by*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/103.0* anonymized by*] -Parent="Chrome 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/103.0* anonymized by*] -Parent="Chrome 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/103.0* anonymized by*] -Parent="Chrome 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Anonymisiert durch*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Anonymisiert durch*] -Parent="Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Anonymisiert durch*] -Parent="Chrome 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Anonymisiert durch*] -Parent="Chrome 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Anonymisiert durch*] -Parent="Chrome 103.0" -Platform="Win7" - -[Chrome 102.0] -Parent="DefaultProperties" -Comment="Chrome 102.0" -Browser="Chrome" -Version="102.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/102.0* anonymized by*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/102.0* anonymized by*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/102.0* anonymized by*] -Parent="Chrome 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/102.0* anonymized by*] -Parent="Chrome 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/102.0* anonymized by*] -Parent="Chrome 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Anonymisiert durch*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Anonymisiert durch*] -Parent="Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Anonymisiert durch*] -Parent="Chrome 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Anonymisiert durch*] -Parent="Chrome 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Anonymisiert durch*] -Parent="Chrome 102.0" -Platform="Win7" - -[Chrome 101.0] -Parent="DefaultProperties" -Comment="Chrome 101.0" -Browser="Chrome" -Version="101.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/101.0* anonymized by*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/101.0* anonymized by*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/101.0* anonymized by*] -Parent="Chrome 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/101.0* anonymized by*] -Parent="Chrome 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/101.0* anonymized by*] -Parent="Chrome 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Anonymisiert durch*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Anonymisiert durch*] -Parent="Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Anonymisiert durch*] -Parent="Chrome 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Anonymisiert durch*] -Parent="Chrome 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Anonymisiert durch*] -Parent="Chrome 101.0" -Platform="Win7" - -[Chrome 100.0] -Parent="DefaultProperties" -Comment="Chrome 100.0" -Browser="Chrome" -Version="100.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/100.0* anonymized by*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/100.0* anonymized by*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/100.0* anonymized by*] -Parent="Chrome 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/100.0* anonymized by*] -Parent="Chrome 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/100.0* anonymized by*] -Parent="Chrome 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Anonymisiert durch*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Anonymisiert durch*] -Parent="Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Anonymisiert durch*] -Parent="Chrome 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Anonymisiert durch*] -Parent="Chrome 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Anonymisiert durch*] -Parent="Chrome 100.0" -Platform="Win7" - -[Chrome 99.0] -Parent="DefaultProperties" -Comment="Chrome 99.0" -Browser="Chrome" -Version="99.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] -Parent="Chrome 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] -Parent="Chrome 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0* anonymized by*] -Parent="Chrome 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] -Parent="Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] -Parent="Chrome 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] -Parent="Chrome 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Anonymisiert durch*] -Parent="Chrome 99.0" -Platform="Win7" - -[Chrome 98.0] -Parent="DefaultProperties" -Comment="Chrome 98.0" -Browser="Chrome" -Version="98.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] -Parent="Chrome 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] -Parent="Chrome 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0* anonymized by*] -Parent="Chrome 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] -Parent="Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] -Parent="Chrome 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] -Parent="Chrome 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Anonymisiert durch*] -Parent="Chrome 98.0" -Platform="Win7" - -[Chrome 97.0] -Parent="DefaultProperties" -Comment="Chrome 97.0" -Browser="Chrome" -Version="97.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] -Parent="Chrome 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] -Parent="Chrome 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0* anonymized by*] -Parent="Chrome 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] -Parent="Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] -Parent="Chrome 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] -Parent="Chrome 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Anonymisiert durch*] -Parent="Chrome 97.0" -Platform="Win7" - -[Chrome 96.0] -Parent="DefaultProperties" -Comment="Chrome 96.0" -Browser="Chrome" -Version="96.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] -Parent="Chrome 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] -Parent="Chrome 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0* anonymized by*] -Parent="Chrome 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] -Parent="Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] -Parent="Chrome 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] -Parent="Chrome 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Anonymisiert durch*] -Parent="Chrome 96.0" -Platform="Win7" - -[Chrome 95.0] -Parent="DefaultProperties" -Comment="Chrome 95.0" -Browser="Chrome" -Version="95.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] -Parent="Chrome 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] -Parent="Chrome 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0* anonymized by*] -Parent="Chrome 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] -Parent="Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] -Parent="Chrome 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] -Parent="Chrome 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Anonymisiert durch*] -Parent="Chrome 95.0" -Platform="Win7" - -[Chrome 94.0] -Parent="DefaultProperties" -Comment="Chrome 94.0" -Browser="Chrome" -Version="94.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] -Parent="Chrome 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] -Parent="Chrome 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0* anonymized by*] -Parent="Chrome 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] -Parent="Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] -Parent="Chrome 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] -Parent="Chrome 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Anonymisiert durch*] -Parent="Chrome 94.0" -Platform="Win7" - -[Chrome 93.0] -Parent="DefaultProperties" -Comment="Chrome 93.0" -Browser="Chrome" -Version="93.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] -Parent="Chrome 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] -Parent="Chrome 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0* anonymized by*] -Parent="Chrome 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] -Parent="Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] -Parent="Chrome 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] -Parent="Chrome 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Anonymisiert durch*] -Parent="Chrome 93.0" -Platform="Win7" - -[Chrome 92.0] -Parent="DefaultProperties" -Comment="Chrome 92.0" -Browser="Chrome" -Version="92.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] -Parent="Chrome 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] -Parent="Chrome 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0* anonymized by*] -Parent="Chrome 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] -Parent="Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] -Parent="Chrome 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] -Parent="Chrome 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Anonymisiert durch*] -Parent="Chrome 92.0" -Platform="Win7" - -[Chrome 91.0] -Parent="DefaultProperties" -Comment="Chrome 91.0" -Browser="Chrome" -Version="91.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] -Parent="Chrome 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] -Parent="Chrome 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0* anonymized by*] -Parent="Chrome 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] -Parent="Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] -Parent="Chrome 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] -Parent="Chrome 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Anonymisiert durch*] -Parent="Chrome 91.0" -Platform="Win7" - -[Chrome 90.0] -Parent="DefaultProperties" -Comment="Chrome 90.0" -Browser="Chrome" -Version="90.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] -Parent="Chrome 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] -Parent="Chrome 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0* anonymized by*] -Parent="Chrome 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] -Parent="Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] -Parent="Chrome 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] -Parent="Chrome 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Anonymisiert durch*] -Parent="Chrome 90.0" -Platform="Win7" - -[Chrome 89.0] -Parent="DefaultProperties" -Comment="Chrome 89.0" -Browser="Chrome" -Version="89.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] -Parent="Chrome 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] -Parent="Chrome 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0* anonymized by*] -Parent="Chrome 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] -Parent="Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] -Parent="Chrome 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] -Parent="Chrome 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Anonymisiert durch*] -Parent="Chrome 89.0" -Platform="Win7" - -[Chrome 88.0] -Parent="DefaultProperties" -Comment="Chrome 88.0" -Browser="Chrome" -Version="88.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] -Parent="Chrome 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] -Parent="Chrome 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0* anonymized by*] -Parent="Chrome 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] -Parent="Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] -Parent="Chrome 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] -Parent="Chrome 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Anonymisiert durch*] -Parent="Chrome 88.0" -Platform="Win7" - -[Chrome 87.0] -Parent="DefaultProperties" -Comment="Chrome 87.0" -Browser="Chrome" -Version="87.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] -Parent="Chrome 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] -Parent="Chrome 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0* anonymized by*] -Parent="Chrome 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] -Parent="Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] -Parent="Chrome 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] -Parent="Chrome 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Anonymisiert durch*] -Parent="Chrome 87.0" -Platform="Win7" - -[Chrome 86.0] -Parent="DefaultProperties" -Comment="Chrome 86.0" -Browser="Chrome" -Version="86.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] -Parent="Chrome 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] -Parent="Chrome 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0* anonymized by*] -Parent="Chrome 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] -Parent="Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] -Parent="Chrome 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] -Parent="Chrome 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Anonymisiert durch*] -Parent="Chrome 86.0" -Platform="Win7" - -[Chrome 85.0] -Parent="DefaultProperties" -Comment="Chrome 85.0" -Browser="Chrome" -Version="85.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] -Parent="Chrome 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] -Parent="Chrome 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0* anonymized by*] -Parent="Chrome 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] -Parent="Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] -Parent="Chrome 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] -Parent="Chrome 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Anonymisiert durch*] -Parent="Chrome 85.0" -Platform="Win7" - -[Chrome 84.0] -Parent="DefaultProperties" -Comment="Chrome 84.0" -Browser="Chrome" -Version="84.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] -Parent="Chrome 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] -Parent="Chrome 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0* anonymized by*] -Parent="Chrome 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] -Parent="Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] -Parent="Chrome 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] -Parent="Chrome 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Anonymisiert durch*] -Parent="Chrome 84.0" -Platform="Win7" - -[Chrome 83.0] -Parent="DefaultProperties" -Comment="Chrome 83.0" -Browser="Chrome" -Version="83.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] -Parent="Chrome 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] -Parent="Chrome 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0* anonymized by*] -Parent="Chrome 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] -Parent="Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] -Parent="Chrome 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] -Parent="Chrome 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Anonymisiert durch*] -Parent="Chrome 83.0" -Platform="Win7" - -[Chrome 82.0] -Parent="DefaultProperties" -Comment="Chrome 82.0" -Browser="Chrome" -Version="82.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] -Parent="Chrome 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] -Parent="Chrome 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0* anonymized by*] -Parent="Chrome 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] -Parent="Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] -Parent="Chrome 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] -Parent="Chrome 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Anonymisiert durch*] -Parent="Chrome 82.0" -Platform="Win7" - -[Chrome 81.0] -Parent="DefaultProperties" -Comment="Chrome 81.0" -Browser="Chrome" -Version="81.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] -Parent="Chrome 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] -Parent="Chrome 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0* anonymized by*] -Parent="Chrome 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] -Parent="Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] -Parent="Chrome 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] -Parent="Chrome 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Anonymisiert durch*] -Parent="Chrome 81.0" -Platform="Win7" - -[Chrome 80.0] -Parent="DefaultProperties" -Comment="Chrome 80.0" -Browser="Chrome" -Version="80.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] -Parent="Chrome 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] -Parent="Chrome 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0* anonymized by*] -Parent="Chrome 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] -Parent="Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] -Parent="Chrome 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] -Parent="Chrome 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Anonymisiert durch*] -Parent="Chrome 80.0" -Platform="Win7" - -[Chrome 79.0] -Parent="DefaultProperties" -Comment="Chrome 79.0" -Browser="Chrome" -Version="79.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] -Parent="Chrome 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] -Parent="Chrome 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0* anonymized by*] -Parent="Chrome 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] -Parent="Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] -Parent="Chrome 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] -Parent="Chrome 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Anonymisiert durch*] -Parent="Chrome 79.0" -Platform="Win7" - -[Chrome 78.0] -Parent="DefaultProperties" -Comment="Chrome 78.0" -Browser="Chrome" -Version="78.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] -Parent="Chrome 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] -Parent="Chrome 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0* anonymized by*] -Parent="Chrome 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] -Parent="Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] -Parent="Chrome 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] -Parent="Chrome 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Anonymisiert durch*] -Parent="Chrome 78.0" -Platform="Win7" - -[Chrome 77.0] -Parent="DefaultProperties" -Comment="Chrome 77.0" -Browser="Chrome" -Version="77.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] -Parent="Chrome 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] -Parent="Chrome 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0* anonymized by*] -Parent="Chrome 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] -Parent="Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] -Parent="Chrome 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] -Parent="Chrome 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Anonymisiert durch*] -Parent="Chrome 77.0" -Platform="Win7" - -[Chrome 76.0] -Parent="DefaultProperties" -Comment="Chrome 76.0" -Browser="Chrome" -Version="76.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] -Parent="Chrome 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] -Parent="Chrome 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0* anonymized by*] -Parent="Chrome 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] -Parent="Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] -Parent="Chrome 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] -Parent="Chrome 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Anonymisiert durch*] -Parent="Chrome 76.0" -Platform="Win7" - -[Chrome 75.0] -Parent="DefaultProperties" -Comment="Chrome 75.0" -Browser="Chrome" -Version="75.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] -Parent="Chrome 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] -Parent="Chrome 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0* anonymized by*] -Parent="Chrome 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] -Parent="Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] -Parent="Chrome 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] -Parent="Chrome 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Anonymisiert durch*] -Parent="Chrome 75.0" -Platform="Win7" - -[Chrome 74.0] -Parent="DefaultProperties" -Comment="Chrome 74.0" -Browser="Chrome" -Version="74.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] -Parent="Chrome 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] -Parent="Chrome 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0* anonymized by*] -Parent="Chrome 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] -Parent="Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] -Parent="Chrome 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] -Parent="Chrome 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Anonymisiert durch*] -Parent="Chrome 74.0" -Platform="Win7" - -[Chrome 73.0] -Parent="DefaultProperties" -Comment="Chrome 73.0" -Browser="Chrome" -Version="73.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] -Parent="Chrome 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] -Parent="Chrome 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0* anonymized by*] -Parent="Chrome 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] -Parent="Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] -Parent="Chrome 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] -Parent="Chrome 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Anonymisiert durch*] -Parent="Chrome 73.0" -Platform="Win7" - -[Chrome 72.0] -Parent="DefaultProperties" -Comment="Chrome 72.0" -Browser="Chrome" -Version="72.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] -Parent="Chrome 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] -Parent="Chrome 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0* anonymized by*] -Parent="Chrome 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] -Parent="Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] -Parent="Chrome 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] -Parent="Chrome 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Anonymisiert durch*] -Parent="Chrome 72.0" -Platform="Win7" - -[Chrome 71.0] -Parent="DefaultProperties" -Comment="Chrome 71.0" -Browser="Chrome" -Version="71.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Safari/*] -Parent="Chrome 71.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] -Parent="Chrome 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] -Parent="Chrome 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0* anonymized by*] -Parent="Chrome 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] -Parent="Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] -Parent="Chrome 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] -Parent="Chrome 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/71.0*Anonymisiert durch*] -Parent="Chrome 71.0" -Platform="Win7" - -[Chrome 70.0] -Parent="DefaultProperties" -Comment="Chrome 70.0" -Browser="Chrome" -Version="70.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Safari/*] -Parent="Chrome 70.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] -Parent="Chrome 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] -Parent="Chrome 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0* anonymized by*] -Parent="Chrome 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] -Parent="Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] -Parent="Chrome 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] -Parent="Chrome 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/70.0*Anonymisiert durch*] -Parent="Chrome 70.0" -Platform="Win7" - -[Chrome 69.0] -Parent="DefaultProperties" -Comment="Chrome 69.0" -Browser="Chrome" -Version="69.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Safari/*] -Parent="Chrome 69.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] -Parent="Chrome 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] -Parent="Chrome 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0* anonymized by*] -Parent="Chrome 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] -Parent="Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] -Parent="Chrome 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] -Parent="Chrome 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/69.0*Anonymisiert durch*] -Parent="Chrome 69.0" -Platform="Win7" - -[Chrome 68.0] -Parent="DefaultProperties" -Comment="Chrome 68.0" -Browser="Chrome" -Version="68.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Safari/*] -Parent="Chrome 68.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] -Parent="Chrome 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] -Parent="Chrome 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0* anonymized by*] -Parent="Chrome 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] -Parent="Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] -Parent="Chrome 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] -Parent="Chrome 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/68.0*Anonymisiert durch*] -Parent="Chrome 68.0" -Platform="Win7" - -[Chrome 67.0] -Parent="DefaultProperties" -Comment="Chrome 67.0" -Browser="Chrome" -Version="67.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Safari/*] -Parent="Chrome 67.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] -Parent="Chrome 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] -Parent="Chrome 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0* anonymized by*] -Parent="Chrome 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] -Parent="Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] -Parent="Chrome 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] -Parent="Chrome 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/67.0*Anonymisiert durch*] -Parent="Chrome 67.0" -Platform="Win7" - -[Chrome 66.0] -Parent="DefaultProperties" -Comment="Chrome 66.0" -Browser="Chrome" -Version="66.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Safari/*] -Parent="Chrome 66.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] -Parent="Chrome 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] -Parent="Chrome 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0* anonymized by*] -Parent="Chrome 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] -Parent="Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] -Parent="Chrome 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] -Parent="Chrome 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/66.0*Anonymisiert durch*] -Parent="Chrome 66.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 82.0 for Android - -[Chrome 82.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 82.0" -Browser="Chrome" -Version="82.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Mobile Safari/*] -Parent="Chrome 82.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/82.0*Safari/*] -Parent="Chrome 82.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 81.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 81.0" -Browser="Chrome" -Version="81.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Mobile Safari/*] -Parent="Chrome 81.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/81.0*Safari/*] -Parent="Chrome 81.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 80.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 80.0" -Browser="Chrome" -Version="80.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Mobile Safari/*] -Parent="Chrome 80.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/80.0*Safari/*] -Parent="Chrome 80.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 79.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 79.0" -Browser="Chrome" -Version="79.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Mobile Safari/*] -Parent="Chrome 79.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/79.0*Safari/*] -Parent="Chrome 79.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 78.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 78.0" -Browser="Chrome" -Version="78.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Mobile Safari/*] -Parent="Chrome 78.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/78.0*Safari/*] -Parent="Chrome 78.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 77.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 77.0" -Browser="Chrome" -Version="77.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Mobile Safari/*] -Parent="Chrome 77.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/77.0*Safari/*] -Parent="Chrome 77.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 76.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 76.0" -Browser="Chrome" -Version="76.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Mobile Safari/*] -Parent="Chrome 76.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/76.0*Safari/*] -Parent="Chrome 76.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 75.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 75.0" -Browser="Chrome" -Version="75.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Mobile Safari/*] -Parent="Chrome 75.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/75.0*Safari/*] -Parent="Chrome 75.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 74.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 74.0" -Browser="Chrome" -Version="74.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Mobile Safari/*] -Parent="Chrome 74.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/74.0*Safari/*] -Parent="Chrome 74.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 73.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 73.0" -Browser="Chrome" -Version="73.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Mobile Safari/*] -Parent="Chrome 73.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/73.0*Safari/*] -Parent="Chrome 73.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 72.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 72.0" -Browser="Chrome" -Version="72.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Mobile Safari/*] -Parent="Chrome 72.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/72.0*Safari/*] -Parent="Chrome 72.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 112.0 for Android - -[Chrome 112.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 112.0" -Browser="Chrome" -Version="112.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Mobile Safari/*] -Parent="Chrome 112.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/112.0*Safari/*] -Parent="Chrome 112.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 111.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 111.0" -Browser="Chrome" -Version="111.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Mobile Safari/*] -Parent="Chrome 111.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/111.0*Safari/*] -Parent="Chrome 111.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 110.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 110.0" -Browser="Chrome" -Version="110.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Mobile Safari/*] -Parent="Chrome 110.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/110.0*Safari/*] -Parent="Chrome 110.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 109.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 109.0" -Browser="Chrome" -Version="109.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Mobile Safari/*] -Parent="Chrome 109.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/109.0*Safari/*] -Parent="Chrome 109.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 108.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 108.0" -Browser="Chrome" -Version="108.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Mobile Safari/*] -Parent="Chrome 108.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/108.0*Safari/*] -Parent="Chrome 108.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 107.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 107.0" -Browser="Chrome" -Version="107.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Mobile Safari/*] -Parent="Chrome 107.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/107.0*Safari/*] -Parent="Chrome 107.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 106.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 106.0" -Browser="Chrome" -Version="106.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Mobile Safari/*] -Parent="Chrome 106.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/106.0*Safari/*] -Parent="Chrome 106.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 105.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 105.0" -Browser="Chrome" -Version="105.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Mobile Safari/*] -Parent="Chrome 105.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/105.0*Safari/*] -Parent="Chrome 105.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 104.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 104.0" -Browser="Chrome" -Version="104.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Mobile Safari/*] -Parent="Chrome 104.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/104.0*Safari/*] -Parent="Chrome 104.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 103.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 103.0" -Browser="Chrome" -Version="103.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Mobile Safari/*] -Parent="Chrome 103.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/103.0*Safari/*] -Parent="Chrome 103.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 102.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 102.0" -Browser="Chrome" -Version="102.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Mobile Safari/*] -Parent="Chrome 102.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/102.0*Safari/*] -Parent="Chrome 102.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 101.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 101.0" -Browser="Chrome" -Version="101.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Mobile Safari/*] -Parent="Chrome 101.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/101.0*Safari/*] -Parent="Chrome 101.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 100.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 100.0" -Browser="Chrome" -Version="100.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Mobile Safari/*] -Parent="Chrome 100.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/100.0*Safari/*] -Parent="Chrome 100.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 99.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 99.0" -Browser="Chrome" -Version="99.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Mobile Safari/*] -Parent="Chrome 99.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/99.0*Safari/*] -Parent="Chrome 99.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 98.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 98.0" -Browser="Chrome" -Version="98.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Mobile Safari/*] -Parent="Chrome 98.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/98.0*Safari/*] -Parent="Chrome 98.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 97.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 97.0" -Browser="Chrome" -Version="97.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Mobile Safari/*] -Parent="Chrome 97.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/97.0*Safari/*] -Parent="Chrome 97.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 96.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 96.0" -Browser="Chrome" -Version="96.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Mobile Safari/*] -Parent="Chrome 96.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/96.0*Safari/*] -Parent="Chrome 96.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 95.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 95.0" -Browser="Chrome" -Version="95.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Mobile Safari/*] -Parent="Chrome 95.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/95.0*Safari/*] -Parent="Chrome 95.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 94.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 94.0" -Browser="Chrome" -Version="94.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Mobile Safari/*] -Parent="Chrome 94.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/94.0*Safari/*] -Parent="Chrome 94.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 93.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 93.0" -Browser="Chrome" -Version="93.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Mobile Safari/*] -Parent="Chrome 93.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/93.0*Safari/*] -Parent="Chrome 93.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 92.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 92.0" -Browser="Chrome" -Version="92.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Mobile Safari/*] -Parent="Chrome 92.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/92.0*Safari/*] -Parent="Chrome 92.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 91.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 91.0" -Browser="Chrome" -Version="91.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Mobile Safari/*] -Parent="Chrome 91.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/91.0*Safari/*] -Parent="Chrome 91.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 90.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 90.0" -Browser="Chrome" -Version="90.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Mobile Safari/*] -Parent="Chrome 90.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/90.0*Safari/*] -Parent="Chrome 90.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 89.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 89.0" -Browser="Chrome" -Version="89.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Mobile Safari/*] -Parent="Chrome 89.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/89.0*Safari/*] -Parent="Chrome 89.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 88.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 88.0" -Browser="Chrome" -Version="88.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Mobile Safari/*] -Parent="Chrome 88.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/88.0*Safari/*] -Parent="Chrome 88.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 87.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 87.0" -Browser="Chrome" -Version="87.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Mobile Safari/*] -Parent="Chrome 87.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/87.0*Safari/*] -Parent="Chrome 87.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 86.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 86.0" -Browser="Chrome" -Version="86.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Mobile Safari/*] -Parent="Chrome 86.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/86.0*Safari/*] -Parent="Chrome 86.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 85.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 85.0" -Browser="Chrome" -Version="85.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Mobile Safari/*] -Parent="Chrome 85.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/85.0*Safari/*] -Parent="Chrome 85.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 84.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 84.0" -Browser="Chrome" -Version="84.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Mobile Safari/*] -Parent="Chrome 84.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/84.0*Safari/*] -Parent="Chrome 84.0 for Android" -isTablet="true" -Device_Type="Tablet" - -[Chrome 83.0 for Android] -Parent="DefaultProperties" -Comment="Chrome 83.0" -Browser="Chrome" -Version="83.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Mobile Safari/*] -Parent="Chrome 83.0 for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Chrome/83.0*Safari/*] -Parent="Chrome 83.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 65.0 - -[Chrome 65.0] -Parent="DefaultProperties" -Comment="Chrome 65.0" -Browser="Chrome" -Version="65.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Safari/*] -Parent="Chrome 65.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] -Parent="Chrome 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] -Parent="Chrome 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0* anonymized by*] -Parent="Chrome 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] -Parent="Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] -Parent="Chrome 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] -Parent="Chrome 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/65.0*Anonymisiert durch*] -Parent="Chrome 65.0" -Platform="Win7" - -[Chrome 64.0] -Parent="DefaultProperties" -Comment="Chrome 64.0" -Browser="Chrome" -Version="64.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Safari/*] -Parent="Chrome 64.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] -Parent="Chrome 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] -Parent="Chrome 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0* anonymized by*] -Parent="Chrome 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] -Parent="Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] -Parent="Chrome 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] -Parent="Chrome 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/64.0*Anonymisiert durch*] -Parent="Chrome 64.0" -Platform="Win7" - -[Chrome 63.0] -Parent="DefaultProperties" -Comment="Chrome 63.0" -Browser="Chrome" -Version="63.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Safari/*] -Parent="Chrome 63.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] -Parent="Chrome 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] -Parent="Chrome 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0* anonymized by*] -Parent="Chrome 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] -Parent="Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] -Parent="Chrome 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] -Parent="Chrome 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/63.0*Anonymisiert durch*] -Parent="Chrome 63.0" -Platform="Win7" - -[Chrome 62.0] -Parent="DefaultProperties" -Comment="Chrome 62.0" -Browser="Chrome" -Version="62.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Safari/*] -Parent="Chrome 62.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] -Parent="Chrome 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] -Parent="Chrome 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0* anonymized by*] -Parent="Chrome 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] -Parent="Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] -Parent="Chrome 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] -Parent="Chrome 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/62.0*Anonymisiert durch*] -Parent="Chrome 62.0" -Platform="Win7" - -[Chrome 61.0] -Parent="DefaultProperties" -Comment="Chrome 61.0" -Browser="Chrome" -Version="61.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Safari/*] -Parent="Chrome 61.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] -Parent="Chrome 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] -Parent="Chrome 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0* anonymized by*] -Parent="Chrome 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] -Parent="Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] -Parent="Chrome 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] -Parent="Chrome 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/61.0*Anonymisiert durch*] -Parent="Chrome 61.0" -Platform="Win7" - -[Chrome 60.0] -Parent="DefaultProperties" -Comment="Chrome 60.0" -Browser="Chrome" -Version="60.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Safari/*] -Parent="Chrome 60.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] -Parent="Chrome 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] -Parent="Chrome 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0* anonymized by*] -Parent="Chrome 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] -Parent="Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] -Parent="Chrome 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] -Parent="Chrome 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/60.0*Anonymisiert durch*] -Parent="Chrome 60.0" -Platform="Win7" - -[Chrome 59.0] -Parent="DefaultProperties" -Comment="Chrome 59.0" -Browser="Chrome" -Version="59.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Safari/*] -Parent="Chrome 59.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] -Parent="Chrome 59.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] -Parent="Chrome 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0* anonymized by*] -Parent="Chrome 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] -Parent="Chrome 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] -Parent="Chrome 59.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] -Parent="Chrome 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/59.0*Anonymisiert durch*] -Parent="Chrome 59.0" -Platform="Win7" - -[Chrome 58.0] -Parent="DefaultProperties" -Comment="Chrome 58.0" -Browser="Chrome" -Version="58.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Safari/*] -Parent="Chrome 58.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] -Parent="Chrome 58.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] -Parent="Chrome 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0* anonymized by*] -Parent="Chrome 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] -Parent="Chrome 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] -Parent="Chrome 58.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] -Parent="Chrome 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/58.0*Anonymisiert durch*] -Parent="Chrome 58.0" -Platform="Win7" - -[Chrome 57.0] -Parent="DefaultProperties" -Comment="Chrome 57.0" -Browser="Chrome" -Version="57.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Safari/*] -Parent="Chrome 57.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] -Parent="Chrome 57.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] -Parent="Chrome 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0* anonymized by*] -Parent="Chrome 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] -Parent="Chrome 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] -Parent="Chrome 57.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] -Parent="Chrome 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/57.0*Anonymisiert durch*] -Parent="Chrome 57.0" -Platform="Win7" - -[Chrome 56.0] -Parent="DefaultProperties" -Comment="Chrome 56.0" -Browser="Chrome" -Version="56.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Safari/*] -Parent="Chrome 56.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] -Parent="Chrome 56.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] -Parent="Chrome 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0* anonymized by*] -Parent="Chrome 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] -Parent="Chrome 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] -Parent="Chrome 56.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] -Parent="Chrome 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/56.0*Anonymisiert durch*] -Parent="Chrome 56.0" -Platform="Win7" - -[Chrome 55.0] -Parent="DefaultProperties" -Comment="Chrome 55.0" -Browser="Chrome" -Version="55.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Safari/*] -Parent="Chrome 55.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] -Parent="Chrome 55.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] -Parent="Chrome 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0* anonymized by*] -Parent="Chrome 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] -Parent="Chrome 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] -Parent="Chrome 55.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] -Parent="Chrome 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/55.0*Anonymisiert durch*] -Parent="Chrome 55.0" -Platform="Win7" - -[Chrome 54.0] -Parent="DefaultProperties" -Comment="Chrome 54.0" -Browser="Chrome" -Version="54.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Safari/*] -Parent="Chrome 54.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] -Parent="Chrome 54.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] -Parent="Chrome 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0* anonymized by*] -Parent="Chrome 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] -Parent="Chrome 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] -Parent="Chrome 54.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] -Parent="Chrome 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/54.0*Anonymisiert durch*] -Parent="Chrome 54.0" -Platform="Win7" - -[Chrome 53.0] -Parent="DefaultProperties" -Comment="Chrome 53.0" -Browser="Chrome" -Version="53.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Safari/*] -Parent="Chrome 53.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] -Parent="Chrome 53.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] -Parent="Chrome 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0* anonymized by*] -Parent="Chrome 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] -Parent="Chrome 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] -Parent="Chrome 53.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] -Parent="Chrome 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/53.0*Anonymisiert durch*] -Parent="Chrome 53.0" -Platform="Win7" - -[Chrome 52.0] -Parent="DefaultProperties" -Comment="Chrome 52.0" -Browser="Chrome" -Version="52.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Safari/*] -Parent="Chrome 52.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] -Parent="Chrome 52.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] -Parent="Chrome 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0* anonymized by*] -Parent="Chrome 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] -Parent="Chrome 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] -Parent="Chrome 52.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] -Parent="Chrome 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/52.0*Anonymisiert durch*] -Parent="Chrome 52.0" -Platform="Win7" - -[Chrome 51.0] -Parent="DefaultProperties" -Comment="Chrome 51.0" -Browser="Chrome" -Version="51.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Safari/*] -Parent="Chrome 51.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] -Parent="Chrome 51.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] -Parent="Chrome 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0* anonymized by*] -Parent="Chrome 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] -Parent="Chrome 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] -Parent="Chrome 51.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] -Parent="Chrome 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/51.0*Anonymisiert durch*] -Parent="Chrome 51.0" -Platform="Win7" - -[Chrome 50.0] -Parent="DefaultProperties" -Comment="Chrome 50.0" -Browser="Chrome" -Version="50.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Safari/*] -Parent="Chrome 50.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] -Parent="Chrome 50.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] -Parent="Chrome 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0* anonymized by*] -Parent="Chrome 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] -Parent="Chrome 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] -Parent="Chrome 50.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] -Parent="Chrome 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) Chrome/50.0*Anonymisiert durch*] -Parent="Chrome 50.0" -Platform="Win7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 63.0 for iOS - -[Chrome 63.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 63.0" -Browser="Chrome" -Version="63.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] -Parent="Chrome 63.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] -Parent="Chrome 63.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/63.0*Safari/*] -Parent="Chrome 63.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/63.0*Safari/*] -Parent="Chrome 63.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/63.0*Safari/*] -Parent="Chrome 63.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 62.0 for iOS - -[Chrome 62.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 62.0" -Browser="Chrome" -Version="62.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] -Parent="Chrome 62.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] -Parent="Chrome 62.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/62.0*Safari/*] -Parent="Chrome 62.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/62.0*Safari/*] -Parent="Chrome 62.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/62.0*Safari/*] -Parent="Chrome 62.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 61.0 for iOS - -[Chrome 61.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 61.0" -Browser="Chrome" -Version="61.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] -Parent="Chrome 61.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] -Parent="Chrome 61.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/61.0*Safari/*] -Parent="Chrome 61.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/61.0*Safari/*] -Parent="Chrome 61.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/61.0*Safari/*] -Parent="Chrome 61.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 60.0 for iOS - -[Chrome 60.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 60.0" -Browser="Chrome" -Version="60.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] -Parent="Chrome 60.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] -Parent="Chrome 60.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/60.0*Safari/*] -Parent="Chrome 60.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/60.0*Safari/*] -Parent="Chrome 60.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/60.0*Safari/*] -Parent="Chrome 60.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 59.0 for iOS - -[Chrome 59.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 59.0" -Browser="Chrome" -Version="59.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] -Parent="Chrome 59.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] -Parent="Chrome 59.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/59.0*Safari/*] -Parent="Chrome 59.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/59.0*Safari/*] -Parent="Chrome 59.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/59.0*Safari/*] -Parent="Chrome 59.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 58.0 for iOS - -[Chrome 58.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 58.0" -Browser="Chrome" -Version="58.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] -Parent="Chrome 58.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] -Parent="Chrome 58.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/58.0*Safari/*] -Parent="Chrome 58.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/58.0*Safari/*] -Parent="Chrome 58.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/58.0*Safari/*] -Parent="Chrome 58.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 57.0 for iOS - -[Chrome 57.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 57.0" -Browser="Chrome" -Version="57.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] -Parent="Chrome 57.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] -Parent="Chrome 57.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/57.0*Safari/*] -Parent="Chrome 57.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/57.0*Safari/*] -Parent="Chrome 57.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/57.0*Safari/*] -Parent="Chrome 57.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 56.0 for iOS - -[Chrome 56.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 56.0" -Browser="Chrome" -Version="56.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] -Parent="Chrome 56.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] -Parent="Chrome 56.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/56.0*Safari/*] -Parent="Chrome 56.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/56.0*Safari/*] -Parent="Chrome 56.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/56.0*Safari/*] -Parent="Chrome 56.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 55.0 for iOS - -[Chrome 55.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 55.0" -Browser="Chrome" -Version="55.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] -Parent="Chrome 55.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] -Parent="Chrome 55.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/55.0*Safari/*] -Parent="Chrome 55.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/55.0*Safari/*] -Parent="Chrome 55.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/55.0*Safari/*] -Parent="Chrome 55.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 112.0 for iOS - -[Chrome 112.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 112.0" -Browser="Chrome" -Version="112.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/112.0*Safari/*] -Parent="Chrome 112.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/112.0*Safari/*] -Parent="Chrome 112.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/112.0*Safari/*] -Parent="Chrome 112.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/112.0*Safari/*] -Parent="Chrome 112.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/112.0*Safari/*] -Parent="Chrome 112.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 111.0 for iOS - -[Chrome 111.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 111.0" -Browser="Chrome" -Version="111.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/111.0*Safari/*] -Parent="Chrome 111.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/111.0*Safari/*] -Parent="Chrome 111.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/111.0*Safari/*] -Parent="Chrome 111.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/111.0*Safari/*] -Parent="Chrome 111.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/111.0*Safari/*] -Parent="Chrome 111.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 110.0 for iOS - -[Chrome 110.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 110.0" -Browser="Chrome" -Version="110.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/110.0*Safari/*] -Parent="Chrome 110.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/110.0*Safari/*] -Parent="Chrome 110.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/110.0*Safari/*] -Parent="Chrome 110.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/110.0*Safari/*] -Parent="Chrome 110.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/110.0*Safari/*] -Parent="Chrome 110.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 109.0 for iOS - -[Chrome 109.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 109.0" -Browser="Chrome" -Version="109.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/109.0*Safari/*] -Parent="Chrome 109.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/109.0*Safari/*] -Parent="Chrome 109.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/109.0*Safari/*] -Parent="Chrome 109.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/109.0*Safari/*] -Parent="Chrome 109.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/109.0*Safari/*] -Parent="Chrome 109.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 108.0 for iOS - -[Chrome 108.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 108.0" -Browser="Chrome" -Version="108.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/108.0*Safari/*] -Parent="Chrome 108.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/108.0*Safari/*] -Parent="Chrome 108.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/108.0*Safari/*] -Parent="Chrome 108.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/108.0*Safari/*] -Parent="Chrome 108.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/108.0*Safari/*] -Parent="Chrome 108.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 107.0 for iOS - -[Chrome 107.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 107.0" -Browser="Chrome" -Version="107.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/107.0*Safari/*] -Parent="Chrome 107.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/107.0*Safari/*] -Parent="Chrome 107.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/107.0*Safari/*] -Parent="Chrome 107.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/107.0*Safari/*] -Parent="Chrome 107.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/107.0*Safari/*] -Parent="Chrome 107.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 106.0 for iOS - -[Chrome 106.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 106.0" -Browser="Chrome" -Version="106.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/106.0*Safari/*] -Parent="Chrome 106.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/106.0*Safari/*] -Parent="Chrome 106.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/106.0*Safari/*] -Parent="Chrome 106.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/106.0*Safari/*] -Parent="Chrome 106.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/106.0*Safari/*] -Parent="Chrome 106.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 105.0 for iOS - -[Chrome 105.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 105.0" -Browser="Chrome" -Version="105.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/105.0*Safari/*] -Parent="Chrome 105.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/105.0*Safari/*] -Parent="Chrome 105.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/105.0*Safari/*] -Parent="Chrome 105.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/105.0*Safari/*] -Parent="Chrome 105.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/105.0*Safari/*] -Parent="Chrome 105.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 104.0 for iOS - -[Chrome 104.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 104.0" -Browser="Chrome" -Version="104.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/104.0*Safari/*] -Parent="Chrome 104.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/104.0*Safari/*] -Parent="Chrome 104.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/104.0*Safari/*] -Parent="Chrome 104.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/104.0*Safari/*] -Parent="Chrome 104.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/104.0*Safari/*] -Parent="Chrome 104.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 103.0 for iOS - -[Chrome 103.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 103.0" -Browser="Chrome" -Version="103.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/103.0*Safari/*] -Parent="Chrome 103.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/103.0*Safari/*] -Parent="Chrome 103.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/103.0*Safari/*] -Parent="Chrome 103.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/103.0*Safari/*] -Parent="Chrome 103.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/103.0*Safari/*] -Parent="Chrome 103.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 102.0 for iOS - -[Chrome 102.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 102.0" -Browser="Chrome" -Version="102.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/102.0*Safari/*] -Parent="Chrome 102.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/102.0*Safari/*] -Parent="Chrome 102.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/102.0*Safari/*] -Parent="Chrome 102.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/102.0*Safari/*] -Parent="Chrome 102.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/102.0*Safari/*] -Parent="Chrome 102.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 101.0 for iOS - -[Chrome 101.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 101.0" -Browser="Chrome" -Version="101.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/101.0*Safari/*] -Parent="Chrome 101.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/101.0*Safari/*] -Parent="Chrome 101.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/101.0*Safari/*] -Parent="Chrome 101.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/101.0*Safari/*] -Parent="Chrome 101.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/101.0*Safari/*] -Parent="Chrome 101.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 100.0 for iOS - -[Chrome 100.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 100.0" -Browser="Chrome" -Version="100.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/100.0*Safari/*] -Parent="Chrome 100.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/100.0*Safari/*] -Parent="Chrome 100.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/100.0*Safari/*] -Parent="Chrome 100.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/100.0*Safari/*] -Parent="Chrome 100.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/100.0*Safari/*] -Parent="Chrome 100.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 99.0 for iOS - -[Chrome 99.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 99.0" -Browser="Chrome" -Version="99.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] -Parent="Chrome 99.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] -Parent="Chrome 99.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/99.0*Safari/*] -Parent="Chrome 99.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/99.0*Safari/*] -Parent="Chrome 99.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/99.0*Safari/*] -Parent="Chrome 99.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 98.0 for iOS - -[Chrome 98.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 98.0" -Browser="Chrome" -Version="98.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] -Parent="Chrome 98.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] -Parent="Chrome 98.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/98.0*Safari/*] -Parent="Chrome 98.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/98.0*Safari/*] -Parent="Chrome 98.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/98.0*Safari/*] -Parent="Chrome 98.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 97.0 for iOS - -[Chrome 97.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 97.0" -Browser="Chrome" -Version="97.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] -Parent="Chrome 97.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] -Parent="Chrome 97.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/97.0*Safari/*] -Parent="Chrome 97.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/97.0*Safari/*] -Parent="Chrome 97.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/97.0*Safari/*] -Parent="Chrome 97.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 96.0 for iOS - -[Chrome 96.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 96.0" -Browser="Chrome" -Version="96.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] -Parent="Chrome 96.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] -Parent="Chrome 96.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/96.0*Safari/*] -Parent="Chrome 96.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/96.0*Safari/*] -Parent="Chrome 96.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/96.0*Safari/*] -Parent="Chrome 96.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 95.0 for iOS - -[Chrome 95.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 95.0" -Browser="Chrome" -Version="95.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] -Parent="Chrome 95.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] -Parent="Chrome 95.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/95.0*Safari/*] -Parent="Chrome 95.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/95.0*Safari/*] -Parent="Chrome 95.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/95.0*Safari/*] -Parent="Chrome 95.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 94.0 for iOS - -[Chrome 94.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 94.0" -Browser="Chrome" -Version="94.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] -Parent="Chrome 94.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] -Parent="Chrome 94.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/94.0*Safari/*] -Parent="Chrome 94.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/94.0*Safari/*] -Parent="Chrome 94.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/94.0*Safari/*] -Parent="Chrome 94.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 93.0 for iOS - -[Chrome 93.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 93.0" -Browser="Chrome" -Version="93.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] -Parent="Chrome 93.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] -Parent="Chrome 93.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/93.0*Safari/*] -Parent="Chrome 93.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/93.0*Safari/*] -Parent="Chrome 93.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/93.0*Safari/*] -Parent="Chrome 93.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 92.0 for iOS - -[Chrome 92.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 92.0" -Browser="Chrome" -Version="92.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] -Parent="Chrome 92.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] -Parent="Chrome 92.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/92.0*Safari/*] -Parent="Chrome 92.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/92.0*Safari/*] -Parent="Chrome 92.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/92.0*Safari/*] -Parent="Chrome 92.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 91.0 for iOS - -[Chrome 91.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 91.0" -Browser="Chrome" -Version="91.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] -Parent="Chrome 91.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] -Parent="Chrome 91.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/91.0*Safari/*] -Parent="Chrome 91.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/91.0*Safari/*] -Parent="Chrome 91.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/91.0*Safari/*] -Parent="Chrome 91.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 90.0 for iOS - -[Chrome 90.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 90.0" -Browser="Chrome" -Version="90.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] -Parent="Chrome 90.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] -Parent="Chrome 90.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/90.0*Safari/*] -Parent="Chrome 90.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/90.0*Safari/*] -Parent="Chrome 90.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/90.0*Safari/*] -Parent="Chrome 90.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 89.0 for iOS - -[Chrome 89.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 89.0" -Browser="Chrome" -Version="89.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] -Parent="Chrome 89.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] -Parent="Chrome 89.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/89.0*Safari/*] -Parent="Chrome 89.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/89.0*Safari/*] -Parent="Chrome 89.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/89.0*Safari/*] -Parent="Chrome 89.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 88.0 for iOS - -[Chrome 88.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 88.0" -Browser="Chrome" -Version="88.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] -Parent="Chrome 88.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] -Parent="Chrome 88.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/88.0*Safari/*] -Parent="Chrome 88.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/88.0*Safari/*] -Parent="Chrome 88.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/88.0*Safari/*] -Parent="Chrome 88.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 87.0 for iOS - -[Chrome 87.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 87.0" -Browser="Chrome" -Version="87.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] -Parent="Chrome 87.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] -Parent="Chrome 87.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/87.0*Safari/*] -Parent="Chrome 87.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/87.0*Safari/*] -Parent="Chrome 87.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/87.0*Safari/*] -Parent="Chrome 87.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 86.0 for iOS - -[Chrome 86.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 86.0" -Browser="Chrome" -Version="86.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] -Parent="Chrome 86.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] -Parent="Chrome 86.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/86.0*Safari/*] -Parent="Chrome 86.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/86.0*Safari/*] -Parent="Chrome 86.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/86.0*Safari/*] -Parent="Chrome 86.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 85.0 for iOS - -[Chrome 85.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 85.0" -Browser="Chrome" -Version="85.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] -Parent="Chrome 85.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] -Parent="Chrome 85.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/85.0*Safari/*] -Parent="Chrome 85.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/85.0*Safari/*] -Parent="Chrome 85.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/85.0*Safari/*] -Parent="Chrome 85.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 84.0 for iOS - -[Chrome 84.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 84.0" -Browser="Chrome" -Version="84.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] -Parent="Chrome 84.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] -Parent="Chrome 84.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/84.0*Safari/*] -Parent="Chrome 84.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/84.0*Safari/*] -Parent="Chrome 84.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/84.0*Safari/*] -Parent="Chrome 84.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 83.0 for iOS - -[Chrome 83.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 83.0" -Browser="Chrome" -Version="83.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] -Parent="Chrome 83.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] -Parent="Chrome 83.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/83.0*Safari/*] -Parent="Chrome 83.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/83.0*Safari/*] -Parent="Chrome 83.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/83.0*Safari/*] -Parent="Chrome 83.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 82.0 for iOS - -[Chrome 82.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 82.0" -Browser="Chrome" -Version="82.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] -Parent="Chrome 82.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] -Parent="Chrome 82.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/82.0*Safari/*] -Parent="Chrome 82.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/82.0*Safari/*] -Parent="Chrome 82.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/82.0*Safari/*] -Parent="Chrome 82.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 81.0 for iOS - -[Chrome 81.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 81.0" -Browser="Chrome" -Version="81.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] -Parent="Chrome 81.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] -Parent="Chrome 81.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/81.0*Safari/*] -Parent="Chrome 81.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/81.0*Safari/*] -Parent="Chrome 81.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/81.0*Safari/*] -Parent="Chrome 81.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 80.0 for iOS - -[Chrome 80.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 80.0" -Browser="Chrome" -Version="80.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] -Parent="Chrome 80.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] -Parent="Chrome 80.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/80.0*Safari/*] -Parent="Chrome 80.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/80.0*Safari/*] -Parent="Chrome 80.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/80.0*Safari/*] -Parent="Chrome 80.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 79.0 for iOS - -[Chrome 79.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 79.0" -Browser="Chrome" -Version="79.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] -Parent="Chrome 79.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] -Parent="Chrome 79.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/79.0*Safari/*] -Parent="Chrome 79.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/79.0*Safari/*] -Parent="Chrome 79.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/79.0*Safari/*] -Parent="Chrome 79.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 78.0 for iOS - -[Chrome 78.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 78.0" -Browser="Chrome" -Version="78.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] -Parent="Chrome 78.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] -Parent="Chrome 78.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/78.0*Safari/*] -Parent="Chrome 78.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/78.0*Safari/*] -Parent="Chrome 78.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/78.0*Safari/*] -Parent="Chrome 78.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 77.0 for iOS - -[Chrome 77.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 77.0" -Browser="Chrome" -Version="77.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] -Parent="Chrome 77.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] -Parent="Chrome 77.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/77.0*Safari/*] -Parent="Chrome 77.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/77.0*Safari/*] -Parent="Chrome 77.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/77.0*Safari/*] -Parent="Chrome 77.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 76.0 for iOS - -[Chrome 76.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 76.0" -Browser="Chrome" -Version="76.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] -Parent="Chrome 76.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] -Parent="Chrome 76.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/76.0*Safari/*] -Parent="Chrome 76.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/76.0*Safari/*] -Parent="Chrome 76.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/76.0*Safari/*] -Parent="Chrome 76.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 75.0 for iOS - -[Chrome 75.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 75.0" -Browser="Chrome" -Version="75.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] -Parent="Chrome 75.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] -Parent="Chrome 75.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/75.0*Safari/*] -Parent="Chrome 75.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/75.0*Safari/*] -Parent="Chrome 75.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/75.0*Safari/*] -Parent="Chrome 75.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 74.0 for iOS - -[Chrome 74.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 74.0" -Browser="Chrome" -Version="74.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] -Parent="Chrome 74.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] -Parent="Chrome 74.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/74.0*Safari/*] -Parent="Chrome 74.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/74.0*Safari/*] -Parent="Chrome 74.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/74.0*Safari/*] -Parent="Chrome 74.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 73.0 for iOS - -[Chrome 73.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 73.0" -Browser="Chrome" -Version="73.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] -Parent="Chrome 73.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] -Parent="Chrome 73.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/73.0*Safari/*] -Parent="Chrome 73.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/73.0*Safari/*] -Parent="Chrome 73.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/73.0*Safari/*] -Parent="Chrome 73.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 72.0 for iOS - -[Chrome 72.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 72.0" -Browser="Chrome" -Version="72.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] -Parent="Chrome 72.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] -Parent="Chrome 72.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/72.0*Safari/*] -Parent="Chrome 72.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/72.0*Safari/*] -Parent="Chrome 72.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/72.0*Safari/*] -Parent="Chrome 72.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 71.0 for iOS - -[Chrome 71.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 71.0" -Browser="Chrome" -Version="71.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] -Parent="Chrome 71.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] -Parent="Chrome 71.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/71.0*Safari/*] -Parent="Chrome 71.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/71.0*Safari/*] -Parent="Chrome 71.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/71.0*Safari/*] -Parent="Chrome 71.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 70.0 for iOS - -[Chrome 70.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 70.0" -Browser="Chrome" -Version="70.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] -Parent="Chrome 70.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] -Parent="Chrome 70.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/70.0*Safari/*] -Parent="Chrome 70.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/70.0*Safari/*] -Parent="Chrome 70.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/70.0*Safari/*] -Parent="Chrome 70.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 69.0 for iOS - -[Chrome 69.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 69.0" -Browser="Chrome" -Version="69.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] -Parent="Chrome 69.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] -Parent="Chrome 69.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/69.0*Safari/*] -Parent="Chrome 69.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/69.0*Safari/*] -Parent="Chrome 69.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/69.0*Safari/*] -Parent="Chrome 69.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 68.0 for iOS - -[Chrome 68.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 68.0" -Browser="Chrome" -Version="68.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] -Parent="Chrome 68.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] -Parent="Chrome 68.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/68.0*Safari/*] -Parent="Chrome 68.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/68.0*Safari/*] -Parent="Chrome 68.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/68.0*Safari/*] -Parent="Chrome 68.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 67.0 for iOS - -[Chrome 67.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 67.0" -Browser="Chrome" -Version="67.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] -Parent="Chrome 67.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] -Parent="Chrome 67.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/67.0*Safari/*] -Parent="Chrome 67.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/67.0*Safari/*] -Parent="Chrome 67.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/67.0*Safari/*] -Parent="Chrome 67.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 66.0 for iOS - -[Chrome 66.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 66.0" -Browser="Chrome" -Version="66.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] -Parent="Chrome 66.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] -Parent="Chrome 66.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/66.0*Safari/*] -Parent="Chrome 66.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/66.0*Safari/*] -Parent="Chrome 66.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/66.0*Safari/*] -Parent="Chrome 66.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 65.0 for iOS - -[Chrome 65.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 65.0" -Browser="Chrome" -Version="65.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] -Parent="Chrome 65.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] -Parent="Chrome 65.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/65.0*Safari/*] -Parent="Chrome 65.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/65.0*Safari/*] -Parent="Chrome 65.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/65.0*Safari/*] -Parent="Chrome 65.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 64.0 for iOS - -[Chrome 64.0 for iOS] -Parent="DefaultProperties" -Comment="Chrome 64.0" -Browser="Chrome" -Version="64.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] -Parent="Chrome 64.0 for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] -Parent="Chrome 64.0 for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*CriOS/64.0*Safari/*] -Parent="Chrome 64.0 for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/64.0*Safari/*] -Parent="Chrome 64.0 for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/64.0*Safari/*] -Parent="Chrome 64.0 for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic for Android - -[Chrome Generic for Android] -Parent="DefaultProperties" -Comment="Chrome Generic" -Browser="Chrome" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) applewebkit*(*khtml*like*gecko*) *Chrome/*Mobile Safari/*] -Parent="Chrome Generic for Android" - -[Mozilla/5.0 (*Linux*Android*) applewebkit*(*khtml*like*gecko*) *Chrome/*Safari/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*)*CrMo/*] -Parent="Chrome Generic for Android" - -[DINO762 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[ELEMENT10 1 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[Tablet-PC-4 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[TBD1083 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[TBDB863 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[TBDC1093 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[TBDG773 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[TERRA_101 Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" -isTablet="true" -Device_Type="Tablet" - -[* Mozilla/5.0 (X11; Linux x86_64) applewebkit* (*khtml*like*gecko*) Chrome/*] -Parent="Chrome Generic for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic for iOS - -[Chrome Generic for iOS] -Parent="DefaultProperties" -Comment="Chrome Generic" -Browser="Chrome" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] -Parent="Chrome Generic for iOS" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] -Parent="Chrome Generic for iOS" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] -Parent="Chrome Generic for iOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] -Parent="Chrome Generic for iOS" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) *CriOS/*Safari/*] -Parent="Chrome Generic for iOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 112.0 - -[Headless Chrome 112.0] -Parent="DefaultProperties" -Comment="Headless Chrome 112.0" -Browser="Headless Chrome" -Version="112.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/112.0* Safari/*] -Parent="Headless Chrome 112.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 111.0 - -[Headless Chrome 111.0] -Parent="DefaultProperties" -Comment="Headless Chrome 111.0" -Browser="Headless Chrome" -Version="111.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/111.0* Safari/*] -Parent="Headless Chrome 111.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 110.0 - -[Headless Chrome 110.0] -Parent="DefaultProperties" -Comment="Headless Chrome 110.0" -Browser="Headless Chrome" -Version="110.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/110.0* Safari/*] -Parent="Headless Chrome 110.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 109.0 - -[Headless Chrome 109.0] -Parent="DefaultProperties" -Comment="Headless Chrome 109.0" -Browser="Headless Chrome" -Version="109.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/109.0* Safari/*] -Parent="Headless Chrome 109.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 108.0 - -[Headless Chrome 108.0] -Parent="DefaultProperties" -Comment="Headless Chrome 108.0" -Browser="Headless Chrome" -Version="108.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/108.0* Safari/*] -Parent="Headless Chrome 108.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 107.0 - -[Headless Chrome 107.0] -Parent="DefaultProperties" -Comment="Headless Chrome 107.0" -Browser="Headless Chrome" -Version="107.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/107.0* Safari/*] -Parent="Headless Chrome 107.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 106.0 - -[Headless Chrome 106.0] -Parent="DefaultProperties" -Comment="Headless Chrome 106.0" -Browser="Headless Chrome" -Version="106.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/106.0* Safari/*] -Parent="Headless Chrome 106.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 105.0 - -[Headless Chrome 105.0] -Parent="DefaultProperties" -Comment="Headless Chrome 105.0" -Browser="Headless Chrome" -Version="105.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/105.0* Safari/*] -Parent="Headless Chrome 105.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 104.0 - -[Headless Chrome 104.0] -Parent="DefaultProperties" -Comment="Headless Chrome 104.0" -Browser="Headless Chrome" -Version="104.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/104.0* Safari/*] -Parent="Headless Chrome 104.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 103.0 - -[Headless Chrome 103.0] -Parent="DefaultProperties" -Comment="Headless Chrome 103.0" -Browser="Headless Chrome" -Version="103.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/103.0* Safari/*] -Parent="Headless Chrome 103.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 102.0 - -[Headless Chrome 102.0] -Parent="DefaultProperties" -Comment="Headless Chrome 102.0" -Browser="Headless Chrome" -Version="102.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/102.0* Safari/*] -Parent="Headless Chrome 102.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 101.0 - -[Headless Chrome 101.0] -Parent="DefaultProperties" -Comment="Headless Chrome 101.0" -Browser="Headless Chrome" -Version="101.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/101.0* Safari/*] -Parent="Headless Chrome 101.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 100.0 - -[Headless Chrome 100.0] -Parent="DefaultProperties" -Comment="Headless Chrome 100.0" -Browser="Headless Chrome" -Version="100.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/100.0* Safari/*] -Parent="Headless Chrome 100.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 99.0 - -[Headless Chrome 99.0] -Parent="DefaultProperties" -Comment="Headless Chrome 99.0" -Browser="Headless Chrome" -Version="99.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/99.0* Safari/*] -Parent="Headless Chrome 99.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 98.0 - -[Headless Chrome 98.0] -Parent="DefaultProperties" -Comment="Headless Chrome 98.0" -Browser="Headless Chrome" -Version="98.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/98.0* Safari/*] -Parent="Headless Chrome 98.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 97.0 - -[Headless Chrome 97.0] -Parent="DefaultProperties" -Comment="Headless Chrome 97.0" -Browser="Headless Chrome" -Version="97.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/97.0* Safari/*] -Parent="Headless Chrome 97.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 96.0 - -[Headless Chrome 96.0] -Parent="DefaultProperties" -Comment="Headless Chrome 96.0" -Browser="Headless Chrome" -Version="96.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/96.0* Safari/*] -Parent="Headless Chrome 96.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 95.0 - -[Headless Chrome 95.0] -Parent="DefaultProperties" -Comment="Headless Chrome 95.0" -Browser="Headless Chrome" -Version="95.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/95.0* Safari/*] -Parent="Headless Chrome 95.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 94.0 - -[Headless Chrome 94.0] -Parent="DefaultProperties" -Comment="Headless Chrome 94.0" -Browser="Headless Chrome" -Version="94.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/94.0* Safari/*] -Parent="Headless Chrome 94.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 93.0 - -[Headless Chrome 93.0] -Parent="DefaultProperties" -Comment="Headless Chrome 93.0" -Browser="Headless Chrome" -Version="93.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/93.0* Safari/*] -Parent="Headless Chrome 93.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 92.0 - -[Headless Chrome 92.0] -Parent="DefaultProperties" -Comment="Headless Chrome 92.0" -Browser="Headless Chrome" -Version="92.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/92.0* Safari/*] -Parent="Headless Chrome 92.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 91.0 - -[Headless Chrome 91.0] -Parent="DefaultProperties" -Comment="Headless Chrome 91.0" -Browser="Headless Chrome" -Version="91.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/91.0* Safari/*] -Parent="Headless Chrome 91.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 90.0 - -[Headless Chrome 90.0] -Parent="DefaultProperties" -Comment="Headless Chrome 90.0" -Browser="Headless Chrome" -Version="90.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/90.0* Safari/*] -Parent="Headless Chrome 90.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 89.0 - -[Headless Chrome 89.0] -Parent="DefaultProperties" -Comment="Headless Chrome 89.0" -Browser="Headless Chrome" -Version="89.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/89.0* Safari/*] -Parent="Headless Chrome 89.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 88.0 - -[Headless Chrome 88.0] -Parent="DefaultProperties" -Comment="Headless Chrome 88.0" -Browser="Headless Chrome" -Version="88.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/88.0* Safari/*] -Parent="Headless Chrome 88.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 87.0 - -[Headless Chrome 87.0] -Parent="DefaultProperties" -Comment="Headless Chrome 87.0" -Browser="Headless Chrome" -Version="87.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/87.0* Safari/*] -Parent="Headless Chrome 87.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 86.0 - -[Headless Chrome 86.0] -Parent="DefaultProperties" -Comment="Headless Chrome 86.0" -Browser="Headless Chrome" -Version="86.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/86.0* Safari/*] -Parent="Headless Chrome 86.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 85.0 - -[Headless Chrome 85.0] -Parent="DefaultProperties" -Comment="Headless Chrome 85.0" -Browser="Headless Chrome" -Version="85.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/85.0* Safari/*] -Parent="Headless Chrome 85.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 84.0 - -[Headless Chrome 84.0] -Parent="DefaultProperties" -Comment="Headless Chrome 84.0" -Browser="Headless Chrome" -Version="84.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/84.0* Safari/*] -Parent="Headless Chrome 84.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 83.0 - -[Headless Chrome 83.0] -Parent="DefaultProperties" -Comment="Headless Chrome 83.0" -Browser="Headless Chrome" -Version="83.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/83.0* Safari/*] -Parent="Headless Chrome 83.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 82.0 - -[Headless Chrome 82.0] -Parent="DefaultProperties" -Comment="Headless Chrome 82.0" -Browser="Headless Chrome" -Version="82.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/82.0* Safari/*] -Parent="Headless Chrome 82.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 81.0 - -[Headless Chrome 81.0] -Parent="DefaultProperties" -Comment="Headless Chrome 81.0" -Browser="Headless Chrome" -Version="81.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/81.0* Safari/*] -Parent="Headless Chrome 81.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 80.0 - -[Headless Chrome 80.0] -Parent="DefaultProperties" -Comment="Headless Chrome 80.0" -Browser="Headless Chrome" -Version="80.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/80.0* Safari/*] -Parent="Headless Chrome 80.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 79.0 - -[Headless Chrome 79.0] -Parent="DefaultProperties" -Comment="Headless Chrome 79.0" -Browser="Headless Chrome" -Version="79.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/79.0* Safari/*] -Parent="Headless Chrome 79.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 78.0 - -[Headless Chrome 78.0] -Parent="DefaultProperties" -Comment="Headless Chrome 78.0" -Browser="Headless Chrome" -Version="78.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/78.0* Safari/*] -Parent="Headless Chrome 78.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 77.0 - -[Headless Chrome 77.0] -Parent="DefaultProperties" -Comment="Headless Chrome 77.0" -Browser="Headless Chrome" -Version="77.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/77.0* Safari/*] -Parent="Headless Chrome 77.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 76.0 - -[Headless Chrome 76.0] -Parent="DefaultProperties" -Comment="Headless Chrome 76.0" -Browser="Headless Chrome" -Version="76.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/76.0* Safari/*] -Parent="Headless Chrome 76.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 75.0 - -[Headless Chrome 75.0] -Parent="DefaultProperties" -Comment="Headless Chrome 75.0" -Browser="Headless Chrome" -Version="75.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/75.0* Safari/*] -Parent="Headless Chrome 75.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 74.0 - -[Headless Chrome 74.0] -Parent="DefaultProperties" -Comment="Headless Chrome 74.0" -Browser="Headless Chrome" -Version="74.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/74.0* Safari/*] -Parent="Headless Chrome 74.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 73.0 - -[Headless Chrome 73.0] -Parent="DefaultProperties" -Comment="Headless Chrome 73.0" -Browser="Headless Chrome" -Version="73.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/73.0* Safari/*] -Parent="Headless Chrome 73.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 72.0 - -[Headless Chrome 72.0] -Parent="DefaultProperties" -Comment="Headless Chrome 72.0" -Browser="Headless Chrome" -Version="72.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/72.0* Safari/*] -Parent="Headless Chrome 72.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 71.0 - -[Headless Chrome 71.0] -Parent="DefaultProperties" -Comment="Headless Chrome 71.0" -Browser="Headless Chrome" -Version="71.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/71.0* Safari/*] -Parent="Headless Chrome 71.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 70.0 - -[Headless Chrome 70.0] -Parent="DefaultProperties" -Comment="Headless Chrome 70.0" -Browser="Headless Chrome" -Version="70.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/70.0* Safari/*] -Parent="Headless Chrome 70.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 69.0 - -[Headless Chrome 69.0] -Parent="DefaultProperties" -Comment="Headless Chrome 69.0" -Browser="Headless Chrome" -Version="69.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/69.0* Safari/*] -Parent="Headless Chrome 69.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 68.0 - -[Headless Chrome 68.0] -Parent="DefaultProperties" -Comment="Headless Chrome 68.0" -Browser="Headless Chrome" -Version="68.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/68.0* Safari/*] -Parent="Headless Chrome 68.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 67.0 - -[Headless Chrome 67.0] -Parent="DefaultProperties" -Comment="Headless Chrome 67.0" -Browser="Headless Chrome" -Version="67.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/67.0* Safari/*] -Parent="Headless Chrome 67.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 66.0 - -[Headless Chrome 66.0] -Parent="DefaultProperties" -Comment="Headless Chrome 66.0" -Browser="Headless Chrome" -Version="66.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/66.0* Safari/*] -Parent="Headless Chrome 66.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 65.0 - -[Headless Chrome 65.0] -Parent="DefaultProperties" -Comment="Headless Chrome 65.0" -Browser="Headless Chrome" -Version="65.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/65.0* Safari/*] -Parent="Headless Chrome 65.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 64.0 - -[Headless Chrome 64.0] -Parent="DefaultProperties" -Comment="Headless Chrome 64.0" -Browser="Headless Chrome" -Version="64.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/64.0* Safari/*] -Parent="Headless Chrome 64.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 63.0 - -[Headless Chrome 63.0] -Parent="DefaultProperties" -Comment="Headless Chrome 63.0" -Browser="Headless Chrome" -Version="63.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/63.0* Safari/*] -Parent="Headless Chrome 63.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 62.0 - -[Headless Chrome 62.0] -Parent="DefaultProperties" -Comment="Headless Chrome 62.0" -Browser="Headless Chrome" -Version="62.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/62.0* Safari/*] -Parent="Headless Chrome 62.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 61.0 - -[Headless Chrome 61.0] -Parent="DefaultProperties" -Comment="Headless Chrome 61.0" -Browser="Headless Chrome" -Version="61.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/61.0* Safari/*] -Parent="Headless Chrome 61.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome 60.0 - -[Headless Chrome 60.0] -Parent="DefaultProperties" -Comment="Headless Chrome 60.0" -Browser="Headless Chrome" -Version="60.0" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome/60.0* Safari/*] -Parent="Headless Chrome 60.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Headless Chrome - -[Headless Chrome] -Parent="DefaultProperties" -Comment="Headless Chrome" -Browser="Headless Chrome" -Platform="Linux" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" - -[Mozilla/5.0 (*Windows NT 10.0*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) HeadlessChrome* Safari/*] -Parent="Headless Chrome" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic - -[Chrome Generic] -Parent="DefaultProperties" -Comment="Chrome Generic" -Browser="Chrome" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*)*applewebkit* (*khtml*like*gecko*)*Chrome/* Large Screen Safari/* GoogleTV/*] -Parent="Chrome Generic" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win32" - -[Mozilla/5.0 (*Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="MacOSX" - -[Mozilla/5.0 (*Linux*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="Win32" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Chrome/* Safari/*] -Parent="Chrome Generic" -Platform="MacOSX" - -[Mozilla/4.0 (*Windows*)*applewebkit*(*khtml*like*gecko*)*Chrome/*] -Parent="Chrome Generic" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*)*applewebkit* (*khtml*like*gecko*) Chrome/* anonymized by*] -Parent="Chrome Generic" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 10.0*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*)*applewebkit* (*khtml*like*gecko*) Chrome/*Anonymisiert durch*] -Parent="Chrome Generic" -Platform="Win32" - -[Mozilla/5.0 (*Linux*)*applewebkit* (*khtml*like*gecko*) Sabayon Chrome/*] -Parent="Chrome Generic" -Platform="Linux" - -[Mozilla/5.0 (X11; ) applewebkit* (*khtml*like*gecko*) Chrome/*Safari/*] -Parent="Chrome Generic" -Platform="Linux" - -[Mozilla/5.0 ArchLinux (*Linux*) applewebkit* (*khtml*like*gecko*) *Chrome/*] -Parent="Chrome Generic" -Platform="Linux" - -[Mozilla/5.0 Slackware* (*Linux*) applewebkit* (*khtml*like*gecko*) *Chrome/*] -Parent="Chrome Generic" -Platform="Linux" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 11.0 - -[IEMobile 11.0] -Parent="DefaultProperties" -Comment="IEMobile 11.0" -Browser="IEMobile" -Version="11.0" -Platform="WinPhone8.1" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0) like Android *; compatible) like iPhone OS * Mac OS X WebKit/537.36 (*khtml*like*gecko*) Chrome*Safari*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1031*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1074*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1089*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1090*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft; RM-1113*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; Microsoft;Lumia 535 Dual SIM*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; 909*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 530*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 620*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 625*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 630*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 635*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 730*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 820*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 920*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 925*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 928*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; Lumia 930*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0; NOKIA; RM-994*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile?11.0*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; 909*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 1320*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 1520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 625*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 630*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 635*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 720*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 820*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 920*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 925*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; *] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0) like Android *; compatible) like iPhone OS * Mac OS X WebKit/537.36 (*khtml*like*gecko*) Chrome*Safari*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; Microsoft; Lumia 950 XL Dual SIM*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; 909*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 530*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 620*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 625*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 630*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 635*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 730*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 820*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 920*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 925*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 928*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; NOKIA; Lumia 930*] -Parent="IEMobile 11.0" - -[Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0*] -Parent="IEMobile 11.0" - -[*Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0; Microsoft; Lumia 950 XL Dual SIM*] -Parent="IEMobile 11.0" - -[*Mozilla/5.0*(*Windows Phone 8.1*Trident/8.0*rv:11*IEMobile?11.0*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; 909*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 1320*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 1520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 520*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 625*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 630*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 635*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 720*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 820*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 920*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; NOKIA; Lumia 925*] -Parent="IEMobile 11.0" - -[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/8.0*rv:11.0; WPDesktop; *] -Parent="IEMobile 11.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 5.1 - -[Android Browser 5.1] -Parent="DefaultProperties" -Comment="Android Browser 5.1" -Browser="Android" -Version="5.1" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android* Build/* applewebkit* (*khtml*like*gecko*) Version/5.1* Mobile Safari*] -Parent="Android Browser 5.1" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.1*Safari*] -Parent="Android Browser 5.1" - -[Mozilla/5.2 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.2*Safari*] -Parent="Android Browser 5.1" -Version="5.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 5.0 - -[Android Browser 5.0] -Parent="DefaultProperties" -Comment="Android Browser 5.0" -Browser="Android" -Version="5.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/Sensation/*) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_DesireHD_A9191; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P510e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P512; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_IncredibleS_S710e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Runnymede; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation_Z710e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_SensationXL_Beats_X315e; *) applewebkit* (*khtml*like*gecko*) Version/5.0*Safari*] -Parent="Android Browser 5.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.4 - -[Android Browser 4.4] -Parent="DefaultProperties" -Comment="Android Browser 4.4" -Browser="Android" -Version="4.4" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.4*Safari*] -Parent="Android Browser 4.4" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser Generic - -[Android Browser Generic] -Parent="DefaultProperties" -Comment="Android Browser Generic" -Browser="Android" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari*] -Parent="Android Browser Generic" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.3 - -[Android Browser 4.3] -Parent="DefaultProperties" -Comment="Android Browser 4.3" -Browser="Android" -Version="4.3" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.3*Safari*] -Parent="Android Browser 4.3" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.2 - -[Android Browser 4.2] -Parent="DefaultProperties" -Comment="Android Browser 4.2" -Browser="Android" -Version="4.2" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.2*Safari*] -Parent="Android Browser 4.2" - -[*Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.2*Safari*] -Parent="Android Browser 4.2" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.2*Safari*] -Parent="Android Browser 4.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.1 - -[Android Browser 4.1] -Parent="DefaultProperties" -Comment="Android Browser 4.1" -Browser="Android" -Version="4.1" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[*Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.1*Safari*] -Parent="Android Browser 4.1" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.1*Safari*] -Parent="Android Browser 4.1" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khtml*like*gecko*) Version/4.1*Safari*] -Parent="Android Browser 4.1" - -[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*) *Version/4.1*Safari/*] -Parent="Android Browser 4.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.0 - -[Android Browser 4.0] -Parent="DefaultProperties" -Comment="Android Browser 4.0" -Browser="Android" -Version="4.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*Mobile*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*Safari*] -Parent="Android Browser 4.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/DesireHD/*) applewebkit* (*khtml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/DesireS/*) applewebkit* (*khtml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/WildfireS/*) applewebkit* (*khtml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P510e Build/*) applewebkit* (*khtml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (Linux*; Android Eclair*Build/*) applewebkit* (*khtml*like*gecko*) Version/*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0(*Linux*Android*) applewebkit*(*khtml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (*Linux*Android*)*applewebkit*(*khtml*like*gecko*)*Version/4.0*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (*Linux*Android*) applewebkit*(*kthml*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Linux*Android*) applewebkit* (*khmtl*like*gecko*) Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0(*Linux*Android*)applewebkit*(*khtml*like*gecko*)Version/4.0*Safari*] -Parent="Android Browser 4.0" - -[Mozilla/5.0 (*Linux*Velocitymicro/T408*) applewebkit*(*khtml*like*gecko*) *Version/4.0*Safari/*] -Parent="Android Browser 4.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*) *Version/4.0*Safari/*] -Parent="Android Browser 4.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.04 - -[Coast 5.04] -Parent="DefaultProperties" -Comment="Coast 5.04" -Browser="Coast" -Version="5.04" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] -Parent="Coast 5.04" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] -Parent="Coast 5.04" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] -Parent="Coast 5.04" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] -Parent="Coast 5.04" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.04* Mobile/* Safari/*] -Parent="Coast 5.04" - -[Opera%20Coast/5.04* CFNetwork/*] -Parent="Coast 5.04" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.03 - -[Coast 5.03] -Parent="DefaultProperties" -Comment="Coast 5.03" -Browser="Coast" -Version="5.03" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] -Parent="Coast 5.03" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] -Parent="Coast 5.03" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] -Parent="Coast 5.03" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] -Parent="Coast 5.03" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.03* Mobile/* Safari/*] -Parent="Coast 5.03" - -[Opera%20Coast/5.03* CFNetwork/*] -Parent="Coast 5.03" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.02 - -[Coast 5.02] -Parent="DefaultProperties" -Comment="Coast 5.02" -Browser="Coast" -Version="5.02" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] -Parent="Coast 5.02" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] -Parent="Coast 5.02" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] -Parent="Coast 5.02" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] -Parent="Coast 5.02" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.02* Mobile/* Safari/*] -Parent="Coast 5.02" - -[Opera%20Coast/5.02* CFNetwork/*] -Parent="Coast 5.02" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 5.01 - -[Coast 5.01] -Parent="DefaultProperties" -Comment="Coast 5.01" -Browser="Coast" -Version="5.01" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] -Parent="Coast 5.01" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] -Parent="Coast 5.01" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] -Parent="Coast 5.01" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] -Parent="Coast 5.01" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/5.01* Mobile/* Safari/*] -Parent="Coast 5.01" - -[Opera%20Coast/5.01* CFNetwork/*] -Parent="Coast 5.01" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.51 - -[Coast 4.51] -Parent="DefaultProperties" -Comment="Coast 4.51" -Browser="Coast" -Version="4.51" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] -Parent="Coast 4.51" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] -Parent="Coast 4.51" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] -Parent="Coast 4.51" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] -Parent="Coast 4.51" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.51* Mobile/* Safari/*] -Parent="Coast 4.51" - -[Opera%20Coast/4.51* CFNetwork/*] -Parent="Coast 4.51" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.31 - -[Coast 4.31] -Parent="DefaultProperties" -Comment="Coast 4.31" -Browser="Coast" -Version="4.31" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] -Parent="Coast 4.31" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] -Parent="Coast 4.31" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] -Parent="Coast 4.31" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] -Parent="Coast 4.31" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.31* Mobile/* Safari/*] -Parent="Coast 4.31" - -[Opera%20Coast/4.31* CFNetwork/*] -Parent="Coast 4.31" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.30 - -[Coast 4.30] -Parent="DefaultProperties" -Comment="Coast 4.30" -Browser="Coast" -Version="4.30" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] -Parent="Coast 4.30" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] -Parent="Coast 4.30" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] -Parent="Coast 4.30" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] -Parent="Coast 4.30" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.30* Mobile/* Safari/*] -Parent="Coast 4.30" - -[Opera%20Coast/4.30* CFNetwork/*] -Parent="Coast 4.30" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.21 - -[Coast 4.21] -Parent="DefaultProperties" -Comment="Coast 4.21" -Browser="Coast" -Version="4.21" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] -Parent="Coast 4.21" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] -Parent="Coast 4.21" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] -Parent="Coast 4.21" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] -Parent="Coast 4.21" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.21* Mobile/* Safari/*] -Parent="Coast 4.21" - -[Opera%20Coast/4.21* CFNetwork/*] -Parent="Coast 4.21" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.5 - -[Coast 4.5] -Parent="DefaultProperties" -Comment="Coast 4.5" -Browser="Coast" -Version="4.5" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] -Parent="Coast 4.5" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] -Parent="Coast 4.5" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] -Parent="Coast 4.5" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] -Parent="Coast 4.5" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.5* Mobile/* Safari/*] -Parent="Coast 4.5" - -[Opera%20Coast/4.5* CFNetwork/*] -Parent="Coast 4.5" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.4 - -[Coast 4.4] -Parent="DefaultProperties" -Comment="Coast 4.4" -Browser="Coast" -Version="4.4" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] -Parent="Coast 4.4" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] -Parent="Coast 4.4" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] -Parent="Coast 4.4" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] -Parent="Coast 4.4" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.4* Mobile/* Safari/*] -Parent="Coast 4.4" - -[Opera%20Coast/4.4* CFNetwork/*] -Parent="Coast 4.4" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.03 - -[Coast 4.03] -Parent="DefaultProperties" -Comment="Coast 4.03" -Browser="Coast" -Version="4.03" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] -Parent="Coast 4.03" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] -Parent="Coast 4.03" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] -Parent="Coast 4.03" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] -Parent="Coast 4.03" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.03* Mobile/* Safari/*] -Parent="Coast 4.03" - -[Opera%20Coast/4.03* CFNetwork/*] -Parent="Coast 4.03" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.02 - -[Coast 4.02] -Parent="DefaultProperties" -Comment="Coast 4.02" -Browser="Coast" -Version="4.02" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] -Parent="Coast 4.02" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] -Parent="Coast 4.02" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] -Parent="Coast 4.02" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] -Parent="Coast 4.02" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.02* Mobile/* Safari/*] -Parent="Coast 4.02" - -[Opera%20Coast/4.02* CFNetwork/*] -Parent="Coast 4.02" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.1 - -[Coast 4.1] -Parent="DefaultProperties" -Comment="Coast 4.1" -Browser="Coast" -Version="4.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] -Parent="Coast 4.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] -Parent="Coast 4.1" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] -Parent="Coast 4.1" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] -Parent="Coast 4.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.1* Mobile/* Safari/*] -Parent="Coast 4.1" - -[Opera%20Coast/4.1* CFNetwork/*] -Parent="Coast 4.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.01 - -[Coast 4.01] -Parent="DefaultProperties" -Comment="Coast 4.01" -Browser="Coast" -Version="4.01" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] -Parent="Coast 4.01" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] -Parent="Coast 4.01" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] -Parent="Coast 4.01" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] -Parent="Coast 4.01" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.01* Mobile/* Safari/*] -Parent="Coast 4.01" - -[Opera%20Coast/4.01* CFNetwork/*] -Parent="Coast 4.01" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 4.0 - -[Coast 4.0] -Parent="DefaultProperties" -Comment="Coast 4.0" -Browser="Coast" -Version="4.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] -Parent="Coast 4.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] -Parent="Coast 4.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] -Parent="Coast 4.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] -Parent="Coast 4.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/4.0* Mobile/* Safari/*] -Parent="Coast 4.0" - -[Opera%20Coast/4.0* CFNetwork/*] -Parent="Coast 4.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.21 - -[Coast 3.21] -Parent="DefaultProperties" -Comment="Coast 3.21" -Browser="Coast" -Version="3.21" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] -Parent="Coast 3.21" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] -Parent="Coast 3.21" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] -Parent="Coast 3.21" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] -Parent="Coast 3.21" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.21* Mobile/* Safari/*] -Parent="Coast 3.21" - -[Opera%20Coast/3.21* CFNetwork/*] -Parent="Coast 3.21" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.02 - -[Coast 3.02] -Parent="DefaultProperties" -Comment="Coast 3.02" -Browser="Coast" -Version="3.02" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] -Parent="Coast 3.02" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] -Parent="Coast 3.02" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] -Parent="Coast 3.02" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] -Parent="Coast 3.02" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.02* Mobile/* Safari/*] -Parent="Coast 3.02" - -[Opera%20Coast/3.02* CFNetwork/*] -Parent="Coast 3.02" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.1 - -[Coast 3.1] -Parent="DefaultProperties" -Comment="Coast 3.1" -Browser="Coast" -Version="3.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] -Parent="Coast 3.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] -Parent="Coast 3.1" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] -Parent="Coast 3.1" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] -Parent="Coast 3.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.1* Mobile/* Safari/*] -Parent="Coast 3.1" - -[Opera%20Coast/3.1* CFNetwork/*] -Parent="Coast 3.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.01 - -[Coast 3.01] -Parent="DefaultProperties" -Comment="Coast 3.01" -Browser="Coast" -Version="3.01" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] -Parent="Coast 3.01" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] -Parent="Coast 3.01" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] -Parent="Coast 3.01" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] -Parent="Coast 3.01" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.01* Mobile/* Safari/*] -Parent="Coast 3.01" - -[Opera%20Coast/3.01* CFNetwork/*] -Parent="Coast 3.01" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast 3.0 - -[Coast 3.0] -Parent="DefaultProperties" -Comment="Coast 3.0" -Browser="Coast" -Version="3.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] -Parent="Coast 3.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] -Parent="Coast 3.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] -Parent="Coast 3.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] -Parent="Coast 3.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/3.0* Mobile/* Safari/*] -Parent="Coast 3.0" - -[Opera%20Coast/3.0* CFNetwork/*] -Parent="Coast 3.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Coast - -[Coast] -Parent="DefaultProperties" -Comment="Coast" -Browser="Coast" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] -Parent="Coast" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] -Parent="Coast" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] -Parent="Coast" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] -Parent="Coast" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*) applewebkit* (*khtml*like*gecko*) Coast/* Mobile/* Safari/*] -Parent="Coast" - -[Opera%20Coast/* CFNetwork/*] -Parent="Coast" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.6 - -[Mobile Safari 14.6] -Parent="DefaultProperties" -Comment="Mobile Safari 14.6" -Browser="Safari" -Version="14.6" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" -Comment="Mobile Safari 14.6 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.6*Safari/*] -Parent="Mobile Safari 14.6" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.5 - -[Mobile Safari 14.5] -Parent="DefaultProperties" -Comment="Mobile Safari 14.5" -Browser="Safari" -Version="14.5" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" -Comment="Mobile Safari 14.5 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.5*Safari/*] -Parent="Mobile Safari 14.5" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.4 - -[Mobile Safari 14.4] -Parent="DefaultProperties" -Comment="Mobile Safari 14.4" -Browser="Safari" -Version="14.4" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" -Comment="Mobile Safari 14.4 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.4*Safari/*] -Parent="Mobile Safari 14.4" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.3 - -[Mobile Safari 14.3] -Parent="DefaultProperties" -Comment="Mobile Safari 14.3" -Browser="Safari" -Version="14.3" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" -Comment="Mobile Safari 14.3 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.3*Safari/*] -Parent="Mobile Safari 14.3" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.2 - -[Mobile Safari 14.2] -Parent="DefaultProperties" -Comment="Mobile Safari 14.2" -Browser="Safari" -Version="14.2" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" -Comment="Mobile Safari 14.2 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.2*Safari/*] -Parent="Mobile Safari 14.2" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.1 - -[Mobile Safari 14.1] -Parent="DefaultProperties" -Comment="Mobile Safari 14.1" -Browser="Safari" -Version="14.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" -Comment="Mobile Safari 14.1 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.1*Safari/*] -Parent="Mobile Safari 14.1" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 14.0 - -[Mobile Safari 14.0] -Parent="DefaultProperties" -Comment="Mobile Safari 14.0" -Browser="Safari" -Version="14.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" -Comment="Mobile Safari 14.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/14.0*Safari/*] -Parent="Mobile Safari 14.0" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 13.1 - -[Mobile Safari 13.1] -Parent="DefaultProperties" -Comment="Mobile Safari 13.1" -Browser="Safari" -Version="13.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" -Comment="Mobile Safari 13.1 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.1*Safari/*] -Parent="Mobile Safari 13.1" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 13.0 - -[Mobile Safari 13.0] -Parent="DefaultProperties" -Comment="Mobile Safari 13.0" -Browser="Safari" -Version="13.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" -Comment="Mobile Safari 13.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/13.0*Safari/*] -Parent="Mobile Safari 13.0" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.4 - -[Mobile Safari 12.4] -Parent="DefaultProperties" -Comment="Mobile Safari 12.4" -Browser="Safari" -Version="12.4" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" -Comment="Mobile Safari 12.4 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.4*Safari/*] -Parent="Mobile Safari 12.4" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.3 - -[Mobile Safari 12.3] -Parent="DefaultProperties" -Comment="Mobile Safari 12.3" -Browser="Safari" -Version="12.3" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" -Comment="Mobile Safari 12.3 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.3*Safari/*] -Parent="Mobile Safari 12.3" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.2 - -[Mobile Safari 12.2] -Parent="DefaultProperties" -Comment="Mobile Safari 12.2" -Browser="Safari" -Version="12.2" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" -Comment="Mobile Safari 12.2 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.2*Safari/*] -Parent="Mobile Safari 12.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.1 - -[Mobile Safari 12.1] -Parent="DefaultProperties" -Comment="Mobile Safari 12.1" -Browser="Safari" -Version="12.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" -Comment="Mobile Safari 12.1 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.1*Safari/*] -Parent="Mobile Safari 12.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 12.0 - -[Mobile Safari 12.0] -Parent="DefaultProperties" -Comment="Mobile Safari 12.0" -Browser="Safari" -Version="12.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" -Comment="Mobile Safari 12.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/12.0*Safari/*] -Parent="Mobile Safari 12.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.6 - -[Mobile Safari 15.6] -Parent="DefaultProperties" -Comment="Mobile Safari 15.6" -Browser="Safari" -Version="15.6" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" -Comment="Mobile Safari 15.6 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.6*Safari/*] -Parent="Mobile Safari 15.6" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.5 - -[Mobile Safari 15.5] -Parent="DefaultProperties" -Comment="Mobile Safari 15.5" -Browser="Safari" -Version="15.5" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" -Comment="Mobile Safari 15.5 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.5*Safari/*] -Parent="Mobile Safari 15.5" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.4 - -[Mobile Safari 15.4] -Parent="DefaultProperties" -Comment="Mobile Safari 15.4" -Browser="Safari" -Version="15.4" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" -Comment="Mobile Safari 15.4 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.4*Safari/*] -Parent="Mobile Safari 15.4" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.3 - -[Mobile Safari 15.3] -Parent="DefaultProperties" -Comment="Mobile Safari 15.3" -Browser="Safari" -Version="15.3" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" -Comment="Mobile Safari 15.3 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.3*Safari/*] -Parent="Mobile Safari 15.3" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.2 - -[Mobile Safari 15.2] -Parent="DefaultProperties" -Comment="Mobile Safari 15.2" -Browser="Safari" -Version="15.2" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" -Comment="Mobile Safari 15.2 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.2*Safari/*] -Parent="Mobile Safari 15.2" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.1 - -[Mobile Safari 15.1] -Parent="DefaultProperties" -Comment="Mobile Safari 15.1" -Browser="Safari" -Version="15.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" -Comment="Mobile Safari 15.1 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.1*Safari/*] -Parent="Mobile Safari 15.1" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 15.0 - -[Mobile Safari 15.0] -Parent="DefaultProperties" -Comment="Mobile Safari 15.0" -Browser="Safari" -Version="15.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" -Comment="Mobile Safari 15.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/15.0*Safari/*] -Parent="Mobile Safari 15.0" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 16.2 - -[Mobile Safari 16.2] -Parent="DefaultProperties" -Comment="Mobile Safari 16.2" -Browser="Safari" -Version="16.2" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" -Comment="Mobile Safari 16.2 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.2*Safari/*] -Parent="Mobile Safari 16.2" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 16.1 - -[Mobile Safari 16.1] -Parent="DefaultProperties" -Comment="Mobile Safari 16.1" -Browser="Safari" -Version="16.1" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" -Comment="Mobile Safari 16.1 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.1*Safari/*] -Parent="Mobile Safari 16.1" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 16.0 - -[Mobile Safari 16.0] -Parent="DefaultProperties" -Comment="Mobile Safari 16.0" -Browser="Safari" -Version="16.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" -Comment="Mobile Safari 16.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" -Platform="ipadOS" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/16.0*Safari/*] -Parent="Mobile Safari 16.0" -Platform="ipadOS" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 11.0 - -[Mobile Safari 11.0] -Parent="DefaultProperties" -Comment="Mobile Safari 11.0" -Browser="Safari" -Version="11.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" -Comment="Mobile Safari 11.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/11.0*Safari/*] -Parent="Mobile Safari 11.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 10.0 - -[Mobile Safari 10.0] -Parent="DefaultProperties" -Comment="Mobile Safari 10.0" -Browser="Safari" -Version="10.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] -Parent="Mobile Safari 10.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] -Parent="Mobile Safari 10.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] -Parent="Mobile Safari 10.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] -Parent="Mobile Safari 10.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/10.0*Safari/*] -Parent="Mobile Safari 10.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 9.0 - -[Mobile Safari 9.0] -Parent="DefaultProperties" -Comment="Mobile Safari 9.0" -Browser="Safari" -Version="9.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] -Parent="Mobile Safari 9.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] -Parent="Mobile Safari 9.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] -Parent="Mobile Safari 9.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] -Parent="Mobile Safari 9.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/9.0*Safari/*] -Parent="Mobile Safari 9.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 8.0 - -[Mobile Safari 8.0] -Parent="DefaultProperties" -Comment="Mobile Safari 8.0" -Browser="Safari" -Version="8.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] -Parent="Mobile Safari 8.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] -Parent="Mobile Safari 8.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] -Parent="Mobile Safari 8.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] -Parent="Mobile Safari 8.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/8.0*Safari/*] -Parent="Mobile Safari 8.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 7.0 - -[Mobile Safari 7.0] -Parent="DefaultProperties" -Comment="Mobile Safari 7.0" -Browser="Safari" -Version="7.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] -Parent="Mobile Safari 7.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] -Parent="Mobile Safari 7.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] -Parent="Mobile Safari 7.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] -Parent="Mobile Safari 7.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/7.0*Safari/*] -Parent="Mobile Safari 7.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari 6.0 - -[Mobile Safari 6.0] -Parent="DefaultProperties" -Comment="Mobile Safari 6.0" -Browser="Safari" -Version="6.0" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] -Parent="Mobile Safari 6.0" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] -Parent="Mobile Safari 6.0" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] -Parent="Mobile Safari 6.0" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] -Parent="Mobile Safari 6.0" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/6.0*Safari/*] -Parent="Mobile Safari 6.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 13.1 - -[Safari 13.1] -Parent="DefaultProperties" -Comment="Safari 13.1" -Browser="Safari" -Version="13.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/13.1* Safari/*] -Parent="Safari 13.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 13.0 - -[Safari 13.0] -Parent="DefaultProperties" -Comment="Safari 13.0" -Browser="Safari" -Version="13.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/13.0* Safari/*] -Parent="Safari 13.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 12.1 - -[Safari 12.1] -Parent="DefaultProperties" -Comment="Safari 12.1" -Browser="Safari" -Version="12.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/12.1* Safari/*] -Parent="Safari 12.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 12.0 - -[Safari 12.0] -Parent="DefaultProperties" -Comment="Safari 12.0" -Browser="Safari" -Version="12.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/12.0* Safari/*] -Parent="Safari 12.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 14.2 - -[Safari 14.2] -Parent="DefaultProperties" -Comment="Safari 14.2" -Browser="Safari" -Version="14.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/14.2* Safari/*] -Parent="Safari 14.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 14.1 - -[Safari 14.1] -Parent="DefaultProperties" -Comment="Safari 14.1" -Browser="Safari" -Version="14.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/14.1* Safari/*] -Parent="Safari 14.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 14.0 - -[Safari 14.0] -Parent="DefaultProperties" -Comment="Safari 14.0" -Browser="Safari" -Version="14.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/14.0* Safari/*] -Parent="Safari 14.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 11.1 - -[Safari 11.1] -Parent="DefaultProperties" -Comment="Safari 11.1" -Browser="Safari" -Version="11.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.1* Safari/*] -Parent="Safari 11.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.7 - -[Safari 15.7] -Parent="DefaultProperties" -Comment="Safari 15.7" -Browser="Safari" -Version="15.7" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.7* Safari/*] -Parent="Safari 15.7" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.6.2 - -[Safari 15.6.2] -Parent="DefaultProperties" -Comment="Safari 15.6.2" -Browser="Safari" -Version="15.6.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.6.2* Safari/*] -Parent="Safari 15.6.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.6.1 - -[Safari 15.6.1] -Parent="DefaultProperties" -Comment="Safari 15.6.1" -Browser="Safari" -Version="15.6.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.6.1* Safari/*] -Parent="Safari 15.6.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.6 - -[Safari 15.6] -Parent="DefaultProperties" -Comment="Safari 15.6" -Browser="Safari" -Version="15.6" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.6* Safari/*] -Parent="Safari 15.6" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.5 - -[Safari 15.5] -Parent="DefaultProperties" -Comment="Safari 15.5" -Browser="Safari" -Version="15.5" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.5* Safari/*] -Parent="Safari 15.5" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.4 - -[Safari 15.4] -Parent="DefaultProperties" -Comment="Safari 15.4" -Browser="Safari" -Version="15.4" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.4* Safari/*] -Parent="Safari 15.4" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.3 - -[Safari 15.3] -Parent="DefaultProperties" -Comment="Safari 15.3" -Browser="Safari" -Version="15.3" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.3* Safari/*] -Parent="Safari 15.3" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.2 - -[Safari 15.2] -Parent="DefaultProperties" -Comment="Safari 15.2" -Browser="Safari" -Version="15.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.2* Safari/*] -Parent="Safari 15.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.1 - -[Safari 15.1] -Parent="DefaultProperties" -Comment="Safari 15.1" -Browser="Safari" -Version="15.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.1* Safari/*] -Parent="Safari 15.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 15.0 - -[Safari 15.0] -Parent="DefaultProperties" -Comment="Safari 15.0" -Browser="Safari" -Version="15.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/15.0* Safari/*] -Parent="Safari 15.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 16.2 - -[Safari 16.2] -Parent="DefaultProperties" -Comment="Safari 16.2" -Browser="Safari" -Version="16.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/16.2* Safari/*] -Parent="Safari 16.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 16.1 - -[Safari 16.1] -Parent="DefaultProperties" -Comment="Safari 16.1" -Browser="Safari" -Version="16.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/16.1* Safari/*] -Parent="Safari 16.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 16.0 - -[Safari 16.0] -Parent="DefaultProperties" -Comment="Safari 16.0" -Browser="Safari" -Version="16.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/16.0* Safari/*] -Parent="Safari 16.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 11.0 - -[Safari 11.0] -Parent="DefaultProperties" -Comment="Safari 11.0" -Browser="Safari" -Version="11.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.0* Safari/*] -Parent="Safari 11.0" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/11.0*] -Parent="Safari 11.0" - -[Safari 11.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 11.0" -Browser="Safari" -Version="11.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/136??.* CFNetwork/*] -Parent="Safari 11.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.2 - -[Safari 10.2] -Parent="DefaultProperties" -Comment="Safari 10.2" -Browser="Safari" -Version="10.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.2* Safari/*] -Parent="Safari 10.2" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.2*] -Parent="Safari 10.2" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.1 - -[Safari 10.1] -Parent="DefaultProperties" -Comment="Safari 10.1" -Browser="Safari" -Version="10.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.1* Safari/*] -Parent="Safari 10.1" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.1*] -Parent="Safari 10.1" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 10.0 - -[Safari 10.0] -Parent="DefaultProperties" -Comment="Safari 10.0" -Browser="Safari" -Version="10.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.0* Safari/*] -Parent="Safari 10.0" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/10.0*] -Parent="Safari 10.0" - -[Safari 10.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 10.0" -Browser="Safari" -Version="10.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/126??.* CFNetwork/*] -Parent="Safari 10.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari UIWebView - -[Mobile Safari UIWebView] -Parent="DefaultProperties" -Comment="Mobile Safari UIWebView" -Browser="Mobile Safari UIWebView" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] -Parent="Mobile Safari UIWebView" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] -Parent="Mobile Safari UIWebView" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Mobile*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*] -Parent="Mobile Safari UIWebView" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPad*CPU*OS* like Mac OS X*)*] -Parent="Mobile Safari UIWebView" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*)*] -Parent="Mobile Safari UIWebView" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPhone*CPU*OS* like Mac OS X*)*] -Parent="Mobile Safari UIWebView" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*)*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0 (iPod*CPU*OS* like Mac OS X*)*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*)*] -Parent="Mobile Safari UIWebView" - -[Mozilla/5.0 (*CPU*OS* like Mac OS X*)*] -Parent="Mobile Safari UIWebView" - -[*iPad*] -Parent="Mobile Safari UIWebView" -isTablet="true" -Device_Type="Tablet" - -[*iPhone*] -Parent="Mobile Safari UIWebView" -Device_Type="Mobile Phone" - -[*iPod*] -Parent="Mobile Safari UIWebView" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 9.0 - -[Safari 9.0] -Parent="DefaultProperties" -Comment="Safari 9.0" -Browser="Safari" -Version="9.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.0* Safari/*] -Parent="Safari 9.0" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.0*] -Parent="Safari 9.0" - -[Safari 9.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 9.0" -Browser="Safari" -Version="9.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/106??.* CFNetwork/*] -Parent="Safari 9.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 9.1 - -[Safari 9.1] -Parent="DefaultProperties" -Comment="Safari 9.1" -Browser="Safari" -Version="9.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.1* Safari/*] -Parent="Safari 9.1" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/9.1*] -Parent="Safari 9.1" - -[Safari 9.1 for Darwin] -Parent="DefaultProperties" -Comment="Safari 9.1" -Browser="Safari" -Version="9.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/116??.* CFNetwork/*] -Parent="Safari 9.1 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 8.0 - -[Safari 8.0] -Parent="DefaultProperties" -Comment="Safari 8.0" -Browser="Safari" -Version="8.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/8.0* Safari/*] -Parent="Safari 8.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/8.0*] -Parent="Safari 8.0" -Platform="MacOSX" - -[Safari 8.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 8.0" -Browser="Safari" -Version="8.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/10600.* CFNetwork/*] -Parent="Safari 8.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 7.1 - -[Safari 7.1] -Parent="DefaultProperties" -Comment="Safari 7.1" -Browser="Safari" -Version="7.1" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.1* Safari/*] -Parent="Safari 7.1" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.1*] -Parent="Safari 7.1" -Platform="MacOSX" - -[Safari 7.1 for SymbianOS] -Parent="DefaultProperties" -Comment="Safari 7.1" -Browser="Safari" -Version="7.1" -isMobileDevice="true" -Device_Type="Mobile Phone" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 7.0 - -[Safari 7.0] -Parent="DefaultProperties" -Comment="Safari 7.0" -Browser="Safari" -Version="7.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.0* Safari/*] -Parent="Safari 7.0" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/7.0*] -Parent="Safari 7.0" - -[Safari 7.0 for SymbianOS] -Parent="DefaultProperties" -Comment="Safari 7.0" -Browser="Safari" -Version="7.0" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Safari 7.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 7.0" -Browser="Safari" -Version="7.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/95??.* CFNetwork/*] -Parent="Safari 7.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.2 - -[Safari 6.2] -Parent="DefaultProperties" -Comment="Safari 6.2" -Browser="Safari" -Version="6.2" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.2* Safari/*] -Parent="Safari 6.2" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.2*] -Parent="Safari 6.2" - -[Safari 6.2 for SymbianOS] -Parent="DefaultProperties" -Comment="Safari 6.2" -Browser="Safari" -Version="6.2" -isMobileDevice="true" -Device_Type="Mobile Phone" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.1 - -[Safari 6.1] -Parent="DefaultProperties" -Comment="Safari 6.1" -Browser="Safari" -Version="6.1" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.1* Safari/*] -Parent="Safari 6.1" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.1*] -Parent="Safari 6.1" - -[Safari 6.1 for SymbianOS] -Parent="DefaultProperties" -Comment="Safari 6.1" -Browser="Safari" -Version="6.1" -isMobileDevice="true" -Device_Type="Mobile Phone" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari 6.0 - -[Safari 6.0] -Parent="DefaultProperties" -Comment="Safari 6.0" -Browser="Safari" -Version="6.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.0* Safari/*] -Parent="Safari 6.0" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) *Version/6.0*] -Parent="Safari 6.0" - -[Safari 6.0 for Darwin] -Parent="DefaultProperties" -Comment="Safari 6.0" -Browser="Safari" -Version="6.0" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/85??.* CFNetwork/*] -Parent="Safari 6.0 for Darwin" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Safari Generic - -[Safari Generic] -Parent="DefaultProperties" -Comment="Safari Generic" -Browser="Safari" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 6.3*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Safari Generic" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Safari*] -Parent="Safari Generic" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit*(*khtml*like*gecko*)*Version/*] -Parent="Safari Generic" -Platform="MacOSX" - -[Safari Generic for Darwin] -Parent="DefaultProperties" -Comment="Safari Generic" -Browser="Safari" -Platform="MacOSX" -Device_Type="Desktop" - -[Safari/* CFNetwork/*] -Parent="Safari Generic for Darwin" - -[Mozilla/5.0 (*Linux*) applewebkit*THOMSON; Thomson THS845*] -Parent="Safari Generic for Darwin" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) *ASTON;XenaHd Twin Connect*] -Parent="Safari Generic for Darwin" -Platform="Linux" -Device_Type="TV Device" - -[Mozilla/5.0 (*Linux*) applewebkit* (*khtml*like*gecko*) HbbTV*] -Parent="Safari Generic for Darwin" -Platform="Linux" -Device_Type="TV Device" - -[Safari Generic Older] -Parent="DefaultProperties" -Comment="Safari" -Browser="Safari" -Device_Type="Desktop" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/419*] -Parent="Safari Generic Older" -Comment="Safari 2.0" -Version="2.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/417*] -Parent="Safari Generic Older" -Comment="Safari 2.0" -Version="2.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/412*] -Parent="Safari Generic Older" -Comment="Safari 2.0" -Version="2.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/312*] -Parent="Safari Generic Older" -Comment="Safari 1.3" -Version="1.3" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/162*] -Parent="Safari Generic Older" -Comment="Safari 1.3" -Version="1.3" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/158*] -Parent="Safari Generic Older" -Comment="Safari 1.3" -Version="1.3" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/146*] -Parent="Safari Generic Older" -Comment="Safari 1.3" -Version="1.3" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/125*] -Parent="Safari Generic Older" -Comment="Safari 1.2" -Version="1.2" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/100*] -Parent="Safari Generic Older" -Comment="Safari 1.1" -Version="1.1" -Platform="MacOSX" - -[Mozilla/5.0 (*Mac OS X*) applewebkit* (*khtml*like*gecko*) Safari/85*] -Parent="Safari Generic Older" -Comment="Safari 1.0" -Version="1.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mobile Safari Generic - -[Mobile Safari Generic] -Parent="DefaultProperties" -Comment="Mobile Safari Generic" -Browser="Safari" -Platform="iOS" -isMobileDevice="true" -Device_Type="Mobile Device" - -[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" -Device_Type="Mobile Phone" - -[Mozilla/5.0*(iPhone*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" -Device_Type="Mobile Phone" - -[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(iPod*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" -Comment="Mobile Safari 0.0 in Developer Tools" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0*(iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Version/*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] -Parent="Mobile Safari Generic" -Device_Type="Mobile Phone" - -[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(iPad*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] -Parent="Mobile Safari Generic" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] -Parent="Mobile Safari Generic" - -[Mozilla/5.0*(*CPU*OS* like Mac OS X*)*applewebkit*(*khtml*like*gecko*)*Safari/*] -Parent="Mobile Safari Generic" - -[MobileSafari/* CFNetwork/*] -Parent="Mobile Safari Generic" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 11.0 - -[IE 11.0 for Win RT] -Parent="DefaultProperties" -Comment="IE 11.0" -Browser="IE" -Version="11.0" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[IE 11.0 for Tablet] -Parent="DefaultProperties" -Comment="IE 11.0" -Browser="IE" -Version="11.0" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Windows NT 10.0*Trident/7.0*Touch*rv:11.0*)*] -Parent="IE 11.0 for Tablet" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*Trident/7.0*Touch*rv:11.0*)*] -Parent="IE 11.0 for Tablet" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0*Touch*rv:11.0*)*] -Parent="IE 11.0 for Tablet" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows*Trident/7.0*Touch*rv:11.0*)*] -Parent="IE 11.0 for Tablet" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/7.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/8.0*Touch*)*] -Parent="IE 11.0 for Tablet" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win32" - -[IE 11.0 for Desktop] -Parent="DefaultProperties" -Comment="IE 11.0" -Browser="IE" -Version="11.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Windows NT 10.0*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.1*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (*Windows*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.1*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/7.0*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.3*; Trident/7.0*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.1*; Trident/7.0*] -Parent="IE 11.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (*Windows*; Trident/7.0*] -Parent="IE 11.0 for Desktop" -Platform="Win32" - -[Mozilla/5.0 (Windows 95; Anonymisiert*; Trident/7.0*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0; TOB* (*Windows NT 10.0*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0; TOB* (*Windows NT 6.4*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0; TOB* (*Windows NT 6.3*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0; TOB* (*Windows NT 6.1*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0; TOB* (*Windows*Trident/7.0*rv:11.0*] -Parent="IE 11.0 for Desktop" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 10.0*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.1*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] -Parent="IE 11.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (*Windows*Trident/8.0; rv:550) applewebkit* (*khtml*like*gecko*) Version/7.0 Safari/*] -Parent="IE 11.0 for Desktop" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 10.0*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.4*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win10" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.3*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win8.1" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows NT 6.1*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*x64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*WOW64*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 10.0;*Windows*Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Comment="IE 11.0 in IE 10.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 10.0*; Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*; Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*; Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.1*; Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (*Windows*; Trident/8.0*)*] -Parent="IE 11.0 for Desktop" -Platform="Win32" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 10.0 - -[IE 10.0 for Win RT] -Parent="DefaultProperties" -Comment="IE 10.0" -Browser="IE" -Version="10.0" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[IE 10.0 for Desktop] -Parent="DefaultProperties" -Comment="IE 10.0" -Browser="IE" -Version="10.0" -Device_Type="Desktop" - -[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.2*Trident/6.0*Xbox; Xbox One*)*] -Parent="IE 10.0 for Desktop" -Platform="Xbox OS" -Device_Type="TV Device" - -[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 10.0*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 10.0*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 9.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 9.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 9.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.2*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Comment="IE 10.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0; Windows 95; Anonymisiert*Trident/6.0*)*] -Parent="IE 10.0 for Desktop" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 10.0*;Trident/6.0; *Windows NT 6.1*] -Parent="IE 10.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 10.0*;Trident/6.0; *Windows*] -Parent="IE 10.0 for Desktop" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows NT 6.2*] -Parent="IE 10.0 for Desktop" -Platform="Win8" - -[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows NT 6.1*] -Parent="IE 10.0 for Desktop" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 10.0*;*Windows*] -Parent="IE 10.0 for Desktop" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows NT 6.2*] -Parent="IE 10.0 for Desktop" -Platform="Win8" - -[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows NT 6.1*] -Parent="IE 10.0 for Desktop" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 10.0*;*Windows*] -Parent="IE 10.0 for Desktop" -Platform="Win32" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 9.0 - -[IE 9.0] -Parent="DefaultProperties" -Comment="IE 9.0" -Browser="IE" -Version="9.0" -Device_Type="Desktop" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0; Xbox*] -Parent="IE 9.0" -Platform="Xbox 360" -Device_Type="TV Device" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0*] -Parent="IE 9.0" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.0*Trident/5.0*] -Parent="IE 9.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows*Trident/5.0*] -Parent="IE 9.0" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*Trident/5.0*] -Parent="IE 9.0" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.0*Trident/5.0*] -Parent="IE 9.0" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows*Trident/5.0*] -Parent="IE 9.0" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows NT 6.0*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*x64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 8.0;*Windows*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.1*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows NT 6.0*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*x64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*WOW64*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 8.0;*Windows*Trident/5.0*)*] -Parent="IE 9.0" -Comment="IE 9.0 in IE 8.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (*MSIE 9.0*;*Windows NT 6.1*Trident/5.0*)*] -Parent="IE 9.0" -Platform="Win7" - -[Mozilla/5.0 (*MSIE 9.0*;*Windows NT 6.0*Trident/5.0*)*] -Parent="IE 9.0" -Platform="WinVista" - -[Mozilla/5.0 (*MSIE 9.0*;*Windows*Trident/5.0*)*] -Parent="IE 9.0" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.1*] -Parent="IE 9.0" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows NT 6.0*] -Parent="IE 9.0" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 9.0*;*Windows*] -Parent="IE 9.0" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.1*] -Parent="IE 9.0" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows NT 6.0*] -Parent="IE 9.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 9.0*;*Windows*] -Parent="IE 9.0" -Platform="Win32" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 8.0 - -[IE 8.0] -Parent="DefaultProperties" -Comment="IE 8.0" -Browser="IE" -Version="8.0" -Device_Type="Desktop" - -[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows NT 6.1*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows NT 6.0*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*x64*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*WOW64*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible*; MSIE 7.0;*Windows*Trident/4.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.1*] -Parent="IE 8.0" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.0*] -Parent="IE 8.0" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows*] -Parent="IE 8.0" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.1*Trident/4.0*] -Parent="IE 8.0" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.0*Trident/4.0*] -Parent="IE 8.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows*Trident/4.0*] -Parent="IE 8.0" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.1*Trident/4.0*] -Parent="IE 8.0" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows NT 6.0*Trident/4.0*] -Parent="IE 8.0" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 8.0*;*Windows*Trident/4.0*] -Parent="IE 8.0" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*x64*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/4.0 (compatible; MSIE 7.0;*Windows*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.1*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win7" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows NT 6.0*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*x64*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*WOW64*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win64" - -[Mozilla/5.0 (compatible; MSIE 7.0;*Windows*Trident/4.0*] -Parent="IE 8.0" -Comment="IE 8.0 in IE 7.0 Compatibility Mode" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.1*] -Parent="IE 8.0" -Platform="Win7" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows NT 6.0*] -Parent="IE 8.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible; MSIE 8.0*;*Windows*] -Parent="IE 8.0" -Platform="Win32" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0b - -[IE 7.0b] -Parent="DefaultProperties" -Comment="IE 7.0b" -Browser="IE" -Version="7.0b" -Device_Type="Desktop" - -[Mozilla/4.0 (compatible*; MSIE 7.0b*;*Windows NT 6.0*] -Parent="IE 7.0b" -Platform="WinVista" - -[Mozilla/4.0 (compatible*; MSIE 7.0b*;*Windows*] -Parent="IE 7.0b" -Platform="Win32" - -[Mozilla/4.0 (*MSIE 7.0b*] -Parent="IE 7.0b" - -[Mozilla/5.0 (*MSIE 7.0b*] -Parent="IE 7.0b" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 7.0 - -[IE 7.0] -Parent="DefaultProperties" -Comment="IE 7.0" -Browser="IE" -Version="7.0" -Device_Type="Desktop" - -[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows NT 6.0*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 7.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows*Mozilla/4.0 (compatible*; MSIE 6.0*] -Parent="IE 7.0" -Platform="Win32" - -[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows NT 6.0*] -Parent="IE 7.0" -Platform="WinVista" - -[Mozilla/4.0 (compatible*; MSIE 7.0*;*Windows*] -Parent="IE 7.0" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 7.0*;*Windows NT 6.0*] -Parent="IE 7.0" -Platform="WinVista" - -[Mozilla/5.0 (compatible; MSIE 7.0*;*Windows*] -Parent="IE 7.0" -Platform="Win32" - -[Mozilla/4.0 (compatible; MSIE 7.0*;*Windows NT 6.1*Trident/3.1; Xbox*] -Parent="IE 7.0" -Platform="Xbox 360" -Device_Type="TV Device" - -[Mozilla/4.0 (compatible; MSIE 7.0*;*Windows NT 6.2*Trident/3.1; Xbox; Xbox One*] -Parent="IE 7.0" -Platform="Xbox OS" -Device_Type="TV Device" - -[Mozilla/4.0 (*MSIE 7.0*] -Parent="IE 7.0" - -[Mozilla/5.0 (*MSIE 7.0*] -Parent="IE 7.0" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 6.0 - -[IE 6.0 for Mobile] -Parent="DefaultProperties" -Comment="IE 6.0" -Browser="IE" -Version="6.0" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[IE 6.0 for Desktop] -Parent="DefaultProperties" -Comment="IE 6.0" -Browser="IE" -Version="6.0" -Device_Type="Desktop" - -[Mozilla/4.0 (compatible; MSIE 6.0*;*Windows*] -Parent="IE 6.0 for Desktop" -Platform="Win32" - -[Mozilla/5.0 (compatible; MSIE 6.0*;*Windows*] -Parent="IE 6.0 for Desktop" -Platform="Win32" - -[Mozilla/4.0 (*MSIE 6.0*)*] -Parent="IE 6.0 for Desktop" - -[Mozilla/5.0 (*MSIE 6.0*)*] -Parent="IE 6.0 for Desktop" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 112.0 - -[Firefox 112.0] -Parent="DefaultProperties" -Comment="Firefox 112.0" -Browser="Firefox" -Version="112.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:112*) Gecko* Firefox/112*anonymized by *] -Parent="Firefox 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:112*) Gecko* Firefox/112*anonymized by *] -Parent="Firefox 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:112*) Gecko* Firefox/112*anonymized by *] -Parent="Firefox 112.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:112*) Gecko* Firefox/112*anonymized by *] -Parent="Firefox 112.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:112*) Gecko* Firefox anonymized by *] -Parent="Firefox 112.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/112.0* Anonymisiert*] -Parent="Firefox 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/112.0* Anonymisiert*] -Parent="Firefox 112.0" -Platform="Win32" - -[Firefox/112.0*anonymized by Abelssoft*] -Parent="Firefox 112.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/112.0*] -Parent="Firefox 112.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 111.0 - -[Firefox 111.0] -Parent="DefaultProperties" -Comment="Firefox 111.0" -Browser="Firefox" -Version="111.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:111*) Gecko* Firefox/111*anonymized by *] -Parent="Firefox 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:111*) Gecko* Firefox/111*anonymized by *] -Parent="Firefox 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:111*) Gecko* Firefox/111*anonymized by *] -Parent="Firefox 111.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:111*) Gecko* Firefox/111*anonymized by *] -Parent="Firefox 111.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:111*) Gecko* Firefox anonymized by *] -Parent="Firefox 111.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/111.0* Anonymisiert*] -Parent="Firefox 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/111.0* Anonymisiert*] -Parent="Firefox 111.0" -Platform="Win32" - -[Firefox/111.0*anonymized by Abelssoft*] -Parent="Firefox 111.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/111.0*] -Parent="Firefox 111.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 110.0 - -[Firefox 110.0] -Parent="DefaultProperties" -Comment="Firefox 110.0" -Browser="Firefox" -Version="110.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:110*) Gecko* Firefox/110*anonymized by *] -Parent="Firefox 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:110*) Gecko* Firefox/110*anonymized by *] -Parent="Firefox 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:110*) Gecko* Firefox/110*anonymized by *] -Parent="Firefox 110.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:110*) Gecko* Firefox/110*anonymized by *] -Parent="Firefox 110.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:110*) Gecko* Firefox anonymized by *] -Parent="Firefox 110.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/110.0* Anonymisiert*] -Parent="Firefox 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/110.0* Anonymisiert*] -Parent="Firefox 110.0" -Platform="Win32" - -[Firefox/110.0*anonymized by Abelssoft*] -Parent="Firefox 110.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/110.0*] -Parent="Firefox 110.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 109.0 - -[Firefox 109.0] -Parent="DefaultProperties" -Comment="Firefox 109.0" -Browser="Firefox" -Version="109.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:109*) Gecko* Firefox/109*anonymized by *] -Parent="Firefox 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:109*) Gecko* Firefox/109*anonymized by *] -Parent="Firefox 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:109*) Gecko* Firefox/109*anonymized by *] -Parent="Firefox 109.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:109*) Gecko* Firefox/109*anonymized by *] -Parent="Firefox 109.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:109*) Gecko* Firefox anonymized by *] -Parent="Firefox 109.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/109.0* Anonymisiert*] -Parent="Firefox 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/109.0* Anonymisiert*] -Parent="Firefox 109.0" -Platform="Win32" - -[Firefox/109.0*anonymized by Abelssoft*] -Parent="Firefox 109.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/109.0*] -Parent="Firefox 109.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 108.0 - -[Firefox 108.0] -Parent="DefaultProperties" -Comment="Firefox 108.0" -Browser="Firefox" -Version="108.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:108*) Gecko* Firefox/108*anonymized by *] -Parent="Firefox 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:108*) Gecko* Firefox/108*anonymized by *] -Parent="Firefox 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:108*) Gecko* Firefox/108*anonymized by *] -Parent="Firefox 108.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:108*) Gecko* Firefox/108*anonymized by *] -Parent="Firefox 108.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:108*) Gecko* Firefox anonymized by *] -Parent="Firefox 108.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/108.0* Anonymisiert*] -Parent="Firefox 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/108.0* Anonymisiert*] -Parent="Firefox 108.0" -Platform="Win32" - -[Firefox/108.0*anonymized by Abelssoft*] -Parent="Firefox 108.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/108.0*] -Parent="Firefox 108.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 107.0 - -[Firefox 107.0] -Parent="DefaultProperties" -Comment="Firefox 107.0" -Browser="Firefox" -Version="107.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:107*) Gecko* Firefox/107*anonymized by *] -Parent="Firefox 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:107*) Gecko* Firefox/107*anonymized by *] -Parent="Firefox 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:107*) Gecko* Firefox/107*anonymized by *] -Parent="Firefox 107.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:107*) Gecko* Firefox/107*anonymized by *] -Parent="Firefox 107.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:107*) Gecko* Firefox anonymized by *] -Parent="Firefox 107.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/107.0* Anonymisiert*] -Parent="Firefox 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/107.0* Anonymisiert*] -Parent="Firefox 107.0" -Platform="Win32" - -[Firefox/107.0*anonymized by Abelssoft*] -Parent="Firefox 107.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/107.0*] -Parent="Firefox 107.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 106.0 - -[Firefox 106.0] -Parent="DefaultProperties" -Comment="Firefox 106.0" -Browser="Firefox" -Version="106.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:106*) Gecko* Firefox/106*anonymized by *] -Parent="Firefox 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:106*) Gecko* Firefox/106*anonymized by *] -Parent="Firefox 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:106*) Gecko* Firefox/106*anonymized by *] -Parent="Firefox 106.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:106*) Gecko* Firefox/106*anonymized by *] -Parent="Firefox 106.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:106*) Gecko* Firefox anonymized by *] -Parent="Firefox 106.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/106.0* Anonymisiert*] -Parent="Firefox 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/106.0* Anonymisiert*] -Parent="Firefox 106.0" -Platform="Win32" - -[Firefox/106.0*anonymized by Abelssoft*] -Parent="Firefox 106.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/106.0*] -Parent="Firefox 106.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 105.0 - -[Firefox 105.0] -Parent="DefaultProperties" -Comment="Firefox 105.0" -Browser="Firefox" -Version="105.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:105*) Gecko* Firefox/105*anonymized by *] -Parent="Firefox 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:105*) Gecko* Firefox/105*anonymized by *] -Parent="Firefox 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:105*) Gecko* Firefox/105*anonymized by *] -Parent="Firefox 105.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:105*) Gecko* Firefox/105*anonymized by *] -Parent="Firefox 105.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:105*) Gecko* Firefox anonymized by *] -Parent="Firefox 105.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/105.0* Anonymisiert*] -Parent="Firefox 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/105.0* Anonymisiert*] -Parent="Firefox 105.0" -Platform="Win32" - -[Firefox/105.0*anonymized by Abelssoft*] -Parent="Firefox 105.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/105.0*] -Parent="Firefox 105.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 104.0 - -[Firefox 104.0] -Parent="DefaultProperties" -Comment="Firefox 104.0" -Browser="Firefox" -Version="104.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:104*) Gecko* Firefox/104*anonymized by *] -Parent="Firefox 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:104*) Gecko* Firefox/104*anonymized by *] -Parent="Firefox 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:104*) Gecko* Firefox/104*anonymized by *] -Parent="Firefox 104.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:104*) Gecko* Firefox/104*anonymized by *] -Parent="Firefox 104.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:104*) Gecko* Firefox anonymized by *] -Parent="Firefox 104.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/104.0* Anonymisiert*] -Parent="Firefox 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/104.0* Anonymisiert*] -Parent="Firefox 104.0" -Platform="Win32" - -[Firefox/104.0*anonymized by Abelssoft*] -Parent="Firefox 104.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/104.0*] -Parent="Firefox 104.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 103.0 - -[Firefox 103.0] -Parent="DefaultProperties" -Comment="Firefox 103.0" -Browser="Firefox" -Version="103.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:103*) Gecko* Firefox/103*anonymized by *] -Parent="Firefox 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:103*) Gecko* Firefox/103*anonymized by *] -Parent="Firefox 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:103*) Gecko* Firefox/103*anonymized by *] -Parent="Firefox 103.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:103*) Gecko* Firefox/103*anonymized by *] -Parent="Firefox 103.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:103*) Gecko* Firefox anonymized by *] -Parent="Firefox 103.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/103.0* Anonymisiert*] -Parent="Firefox 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/103.0* Anonymisiert*] -Parent="Firefox 103.0" -Platform="Win32" - -[Firefox/103.0*anonymized by Abelssoft*] -Parent="Firefox 103.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/103.0*] -Parent="Firefox 103.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 102.0 - -[Firefox 102.0] -Parent="DefaultProperties" -Comment="Firefox 102.0" -Browser="Firefox" -Version="102.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:102*) Gecko* Firefox/102*anonymized by *] -Parent="Firefox 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:102*) Gecko* Firefox/102*anonymized by *] -Parent="Firefox 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:102*) Gecko* Firefox/102*anonymized by *] -Parent="Firefox 102.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:102*) Gecko* Firefox/102*anonymized by *] -Parent="Firefox 102.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:102*) Gecko* Firefox anonymized by *] -Parent="Firefox 102.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/102.0* Anonymisiert*] -Parent="Firefox 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/102.0* Anonymisiert*] -Parent="Firefox 102.0" -Platform="Win32" - -[Firefox/102.0*anonymized by Abelssoft*] -Parent="Firefox 102.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/102.0*] -Parent="Firefox 102.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 101.0 - -[Firefox 101.0] -Parent="DefaultProperties" -Comment="Firefox 101.0" -Browser="Firefox" -Version="101.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:101*) Gecko* Firefox/101*anonymized by *] -Parent="Firefox 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:101*) Gecko* Firefox/101*anonymized by *] -Parent="Firefox 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:101*) Gecko* Firefox/101*anonymized by *] -Parent="Firefox 101.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:101*) Gecko* Firefox/101*anonymized by *] -Parent="Firefox 101.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:101*) Gecko* Firefox anonymized by *] -Parent="Firefox 101.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/101.0* Anonymisiert*] -Parent="Firefox 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/101.0* Anonymisiert*] -Parent="Firefox 101.0" -Platform="Win32" - -[Firefox/101.0*anonymized by Abelssoft*] -Parent="Firefox 101.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/101.0*] -Parent="Firefox 101.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 100.0 - -[Firefox 100.0] -Parent="DefaultProperties" -Comment="Firefox 100.0" -Browser="Firefox" -Version="100.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:100*) Gecko* Firefox/100*anonymized by *] -Parent="Firefox 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:100*) Gecko* Firefox/100*anonymized by *] -Parent="Firefox 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:100*) Gecko* Firefox/100*anonymized by *] -Parent="Firefox 100.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:100*) Gecko* Firefox/100*anonymized by *] -Parent="Firefox 100.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:100*) Gecko* Firefox anonymized by *] -Parent="Firefox 100.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/100.0* Anonymisiert*] -Parent="Firefox 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/100.0* Anonymisiert*] -Parent="Firefox 100.0" -Platform="Win32" - -[Firefox/100.0*anonymized by Abelssoft*] -Parent="Firefox 100.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/100.0*] -Parent="Firefox 100.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 99.0 - -[Firefox 99.0] -Parent="DefaultProperties" -Comment="Firefox 99.0" -Browser="Firefox" -Version="99.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:99*) Gecko* Firefox/99*anonymized by *] -Parent="Firefox 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:99*) Gecko* Firefox/99*anonymized by *] -Parent="Firefox 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:99*) Gecko* Firefox/99*anonymized by *] -Parent="Firefox 99.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:99*) Gecko* Firefox/99*anonymized by *] -Parent="Firefox 99.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:99*) Gecko* Firefox anonymized by *] -Parent="Firefox 99.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/99.0* Anonymisiert*] -Parent="Firefox 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/99.0* Anonymisiert*] -Parent="Firefox 99.0" -Platform="Win32" - -[Firefox/99.0*anonymized by Abelssoft*] -Parent="Firefox 99.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/99.0*] -Parent="Firefox 99.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 98.0 - -[Firefox 98.0] -Parent="DefaultProperties" -Comment="Firefox 98.0" -Browser="Firefox" -Version="98.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:98*) Gecko* Firefox/98*anonymized by *] -Parent="Firefox 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:98*) Gecko* Firefox/98*anonymized by *] -Parent="Firefox 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:98*) Gecko* Firefox/98*anonymized by *] -Parent="Firefox 98.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:98*) Gecko* Firefox/98*anonymized by *] -Parent="Firefox 98.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:98*) Gecko* Firefox anonymized by *] -Parent="Firefox 98.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/98.0* Anonymisiert*] -Parent="Firefox 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/98.0* Anonymisiert*] -Parent="Firefox 98.0" -Platform="Win32" - -[Firefox/98.0*anonymized by Abelssoft*] -Parent="Firefox 98.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/98.0*] -Parent="Firefox 98.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 97.0 - -[Firefox 97.0] -Parent="DefaultProperties" -Comment="Firefox 97.0" -Browser="Firefox" -Version="97.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:97*) Gecko* Firefox/97*anonymized by *] -Parent="Firefox 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:97*) Gecko* Firefox/97*anonymized by *] -Parent="Firefox 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:97*) Gecko* Firefox/97*anonymized by *] -Parent="Firefox 97.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:97*) Gecko* Firefox/97*anonymized by *] -Parent="Firefox 97.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:97*) Gecko* Firefox anonymized by *] -Parent="Firefox 97.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/97.0* Anonymisiert*] -Parent="Firefox 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/97.0* Anonymisiert*] -Parent="Firefox 97.0" -Platform="Win32" - -[Firefox/97.0*anonymized by Abelssoft*] -Parent="Firefox 97.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/97.0*] -Parent="Firefox 97.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 96.0 - -[Firefox 96.0] -Parent="DefaultProperties" -Comment="Firefox 96.0" -Browser="Firefox" -Version="96.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:96*) Gecko* Firefox/96*anonymized by *] -Parent="Firefox 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:96*) Gecko* Firefox/96*anonymized by *] -Parent="Firefox 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:96*) Gecko* Firefox/96*anonymized by *] -Parent="Firefox 96.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:96*) Gecko* Firefox/96*anonymized by *] -Parent="Firefox 96.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:96*) Gecko* Firefox anonymized by *] -Parent="Firefox 96.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/96.0* Anonymisiert*] -Parent="Firefox 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/96.0* Anonymisiert*] -Parent="Firefox 96.0" -Platform="Win32" - -[Firefox/96.0*anonymized by Abelssoft*] -Parent="Firefox 96.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/96.0*] -Parent="Firefox 96.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 95.0 - -[Firefox 95.0] -Parent="DefaultProperties" -Comment="Firefox 95.0" -Browser="Firefox" -Version="95.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:95*) Gecko* Firefox/95*anonymized by *] -Parent="Firefox 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:95*) Gecko* Firefox/95*anonymized by *] -Parent="Firefox 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:95*) Gecko* Firefox/95*anonymized by *] -Parent="Firefox 95.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:95*) Gecko* Firefox/95*anonymized by *] -Parent="Firefox 95.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:95*) Gecko* Firefox anonymized by *] -Parent="Firefox 95.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/95.0* Anonymisiert*] -Parent="Firefox 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/95.0* Anonymisiert*] -Parent="Firefox 95.0" -Platform="Win32" - -[Firefox/95.0*anonymized by Abelssoft*] -Parent="Firefox 95.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/95.0*] -Parent="Firefox 95.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 94.0 - -[Firefox 94.0] -Parent="DefaultProperties" -Comment="Firefox 94.0" -Browser="Firefox" -Version="94.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:94*) Gecko* Firefox/94*anonymized by *] -Parent="Firefox 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:94*) Gecko* Firefox/94*anonymized by *] -Parent="Firefox 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:94*) Gecko* Firefox/94*anonymized by *] -Parent="Firefox 94.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:94*) Gecko* Firefox/94*anonymized by *] -Parent="Firefox 94.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:94*) Gecko* Firefox anonymized by *] -Parent="Firefox 94.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/94.0* Anonymisiert*] -Parent="Firefox 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/94.0* Anonymisiert*] -Parent="Firefox 94.0" -Platform="Win32" - -[Firefox/94.0*anonymized by Abelssoft*] -Parent="Firefox 94.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/94.0*] -Parent="Firefox 94.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 93.0 - -[Firefox 93.0] -Parent="DefaultProperties" -Comment="Firefox 93.0" -Browser="Firefox" -Version="93.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:93*) Gecko* Firefox/93*anonymized by *] -Parent="Firefox 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:93*) Gecko* Firefox/93*anonymized by *] -Parent="Firefox 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:93*) Gecko* Firefox/93*anonymized by *] -Parent="Firefox 93.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:93*) Gecko* Firefox/93*anonymized by *] -Parent="Firefox 93.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:93*) Gecko* Firefox anonymized by *] -Parent="Firefox 93.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/93.0* Anonymisiert*] -Parent="Firefox 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/93.0* Anonymisiert*] -Parent="Firefox 93.0" -Platform="Win32" - -[Firefox/93.0*anonymized by Abelssoft*] -Parent="Firefox 93.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/93.0*] -Parent="Firefox 93.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 92.0 - -[Firefox 92.0] -Parent="DefaultProperties" -Comment="Firefox 92.0" -Browser="Firefox" -Version="92.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:92*) Gecko* Firefox/92*anonymized by *] -Parent="Firefox 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:92*) Gecko* Firefox/92*anonymized by *] -Parent="Firefox 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:92*) Gecko* Firefox/92*anonymized by *] -Parent="Firefox 92.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:92*) Gecko* Firefox/92*anonymized by *] -Parent="Firefox 92.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:92*) Gecko* Firefox anonymized by *] -Parent="Firefox 92.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/92.0* Anonymisiert*] -Parent="Firefox 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/92.0* Anonymisiert*] -Parent="Firefox 92.0" -Platform="Win32" - -[Firefox/92.0*anonymized by Abelssoft*] -Parent="Firefox 92.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/92.0*] -Parent="Firefox 92.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 91.0 - -[Firefox 91.0] -Parent="DefaultProperties" -Comment="Firefox 91.0" -Browser="Firefox" -Version="91.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:91*) Gecko* Firefox/91*anonymized by *] -Parent="Firefox 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:91*) Gecko* Firefox/91*anonymized by *] -Parent="Firefox 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:91*) Gecko* Firefox/91*anonymized by *] -Parent="Firefox 91.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:91*) Gecko* Firefox/91*anonymized by *] -Parent="Firefox 91.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:91*) Gecko* Firefox anonymized by *] -Parent="Firefox 91.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/91.0* Anonymisiert*] -Parent="Firefox 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/91.0* Anonymisiert*] -Parent="Firefox 91.0" -Platform="Win32" - -[Firefox/91.0*anonymized by Abelssoft*] -Parent="Firefox 91.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/91.0*] -Parent="Firefox 91.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 90.0 - -[Firefox 90.0] -Parent="DefaultProperties" -Comment="Firefox 90.0" -Browser="Firefox" -Version="90.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:90*) Gecko* Firefox/90*anonymized by *] -Parent="Firefox 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:90*) Gecko* Firefox/90*anonymized by *] -Parent="Firefox 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:90*) Gecko* Firefox/90*anonymized by *] -Parent="Firefox 90.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:90*) Gecko* Firefox/90*anonymized by *] -Parent="Firefox 90.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:90*) Gecko* Firefox anonymized by *] -Parent="Firefox 90.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/90.0* Anonymisiert*] -Parent="Firefox 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/90.0* Anonymisiert*] -Parent="Firefox 90.0" -Platform="Win32" - -[Firefox/90.0*anonymized by Abelssoft*] -Parent="Firefox 90.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/90.0*] -Parent="Firefox 90.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 89.0 - -[Firefox 89.0] -Parent="DefaultProperties" -Comment="Firefox 89.0" -Browser="Firefox" -Version="89.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:89*) Gecko* Firefox/89*anonymized by *] -Parent="Firefox 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:89*) Gecko* Firefox/89*anonymized by *] -Parent="Firefox 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:89*) Gecko* Firefox/89*anonymized by *] -Parent="Firefox 89.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:89*) Gecko* Firefox/89*anonymized by *] -Parent="Firefox 89.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:89*) Gecko* Firefox anonymized by *] -Parent="Firefox 89.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/89.0* Anonymisiert*] -Parent="Firefox 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/89.0* Anonymisiert*] -Parent="Firefox 89.0" -Platform="Win32" - -[Firefox/89.0*anonymized by Abelssoft*] -Parent="Firefox 89.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/89.0*] -Parent="Firefox 89.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 88.0 - -[Firefox 88.0] -Parent="DefaultProperties" -Comment="Firefox 88.0" -Browser="Firefox" -Version="88.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:88*) Gecko* Firefox/88*anonymized by *] -Parent="Firefox 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:88*) Gecko* Firefox/88*anonymized by *] -Parent="Firefox 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:88*) Gecko* Firefox/88*anonymized by *] -Parent="Firefox 88.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:88*) Gecko* Firefox/88*anonymized by *] -Parent="Firefox 88.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:88*) Gecko* Firefox anonymized by *] -Parent="Firefox 88.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/88.0* Anonymisiert*] -Parent="Firefox 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/88.0* Anonymisiert*] -Parent="Firefox 88.0" -Platform="Win32" - -[Firefox/88.0*anonymized by Abelssoft*] -Parent="Firefox 88.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/88.0*] -Parent="Firefox 88.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 87.0 - -[Firefox 87.0] -Parent="DefaultProperties" -Comment="Firefox 87.0" -Browser="Firefox" -Version="87.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:87*) Gecko* Firefox/87*anonymized by *] -Parent="Firefox 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:87*) Gecko* Firefox/87*anonymized by *] -Parent="Firefox 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:87*) Gecko* Firefox/87*anonymized by *] -Parent="Firefox 87.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:87*) Gecko* Firefox/87*anonymized by *] -Parent="Firefox 87.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:87*) Gecko* Firefox anonymized by *] -Parent="Firefox 87.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/87.0* Anonymisiert*] -Parent="Firefox 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/87.0* Anonymisiert*] -Parent="Firefox 87.0" -Platform="Win32" - -[Firefox/87.0*anonymized by Abelssoft*] -Parent="Firefox 87.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/87.0*] -Parent="Firefox 87.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 86.0 - -[Firefox 86.0] -Parent="DefaultProperties" -Comment="Firefox 86.0" -Browser="Firefox" -Version="86.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:86*) Gecko* Firefox/86*anonymized by *] -Parent="Firefox 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:86*) Gecko* Firefox/86*anonymized by *] -Parent="Firefox 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:86*) Gecko* Firefox/86*anonymized by *] -Parent="Firefox 86.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:86*) Gecko* Firefox/86*anonymized by *] -Parent="Firefox 86.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:86*) Gecko* Firefox anonymized by *] -Parent="Firefox 86.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/86.0* Anonymisiert*] -Parent="Firefox 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/86.0* Anonymisiert*] -Parent="Firefox 86.0" -Platform="Win32" - -[Firefox/86.0*anonymized by Abelssoft*] -Parent="Firefox 86.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/86.0*] -Parent="Firefox 86.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 85.0 - -[Firefox 85.0] -Parent="DefaultProperties" -Comment="Firefox 85.0" -Browser="Firefox" -Version="85.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:85*) Gecko* Firefox/85*anonymized by *] -Parent="Firefox 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:85*) Gecko* Firefox/85*anonymized by *] -Parent="Firefox 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:85*) Gecko* Firefox/85*anonymized by *] -Parent="Firefox 85.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:85*) Gecko* Firefox/85*anonymized by *] -Parent="Firefox 85.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:85*) Gecko* Firefox anonymized by *] -Parent="Firefox 85.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/85.0* Anonymisiert*] -Parent="Firefox 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/85.0* Anonymisiert*] -Parent="Firefox 85.0" -Platform="Win32" - -[Firefox/85.0*anonymized by Abelssoft*] -Parent="Firefox 85.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/85.0*] -Parent="Firefox 85.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 84.0 - -[Firefox 84.0] -Parent="DefaultProperties" -Comment="Firefox 84.0" -Browser="Firefox" -Version="84.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:84*) Gecko* Firefox/84*anonymized by *] -Parent="Firefox 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:84*) Gecko* Firefox/84*anonymized by *] -Parent="Firefox 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:84*) Gecko* Firefox/84*anonymized by *] -Parent="Firefox 84.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:84*) Gecko* Firefox/84*anonymized by *] -Parent="Firefox 84.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:84*) Gecko* Firefox anonymized by *] -Parent="Firefox 84.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/84.0* Anonymisiert*] -Parent="Firefox 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/84.0* Anonymisiert*] -Parent="Firefox 84.0" -Platform="Win32" - -[Firefox/84.0*anonymized by Abelssoft*] -Parent="Firefox 84.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/84.0*] -Parent="Firefox 84.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 83.0 - -[Firefox 83.0] -Parent="DefaultProperties" -Comment="Firefox 83.0" -Browser="Firefox" -Version="83.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:83*) Gecko* Firefox/83*anonymized by *] -Parent="Firefox 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:83*) Gecko* Firefox/83*anonymized by *] -Parent="Firefox 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:83*) Gecko* Firefox/83*anonymized by *] -Parent="Firefox 83.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:83*) Gecko* Firefox/83*anonymized by *] -Parent="Firefox 83.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:83*) Gecko* Firefox anonymized by *] -Parent="Firefox 83.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/83.0* Anonymisiert*] -Parent="Firefox 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/83.0* Anonymisiert*] -Parent="Firefox 83.0" -Platform="Win32" - -[Firefox/83.0*anonymized by Abelssoft*] -Parent="Firefox 83.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/83.0*] -Parent="Firefox 83.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 82.0 - -[Firefox 82.0] -Parent="DefaultProperties" -Comment="Firefox 82.0" -Browser="Firefox" -Version="82.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:82*) Gecko* Firefox/82*anonymized by *] -Parent="Firefox 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:82*) Gecko* Firefox/82*anonymized by *] -Parent="Firefox 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:82*) Gecko* Firefox/82*anonymized by *] -Parent="Firefox 82.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:82*) Gecko* Firefox/82*anonymized by *] -Parent="Firefox 82.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:82*) Gecko* Firefox anonymized by *] -Parent="Firefox 82.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/82.0* Anonymisiert*] -Parent="Firefox 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/82.0* Anonymisiert*] -Parent="Firefox 82.0" -Platform="Win32" - -[Firefox/82.0*anonymized by Abelssoft*] -Parent="Firefox 82.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/82.0*] -Parent="Firefox 82.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 81.0 - -[Firefox 81.0] -Parent="DefaultProperties" -Comment="Firefox 81.0" -Browser="Firefox" -Version="81.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:81*) Gecko* Firefox/81*anonymized by *] -Parent="Firefox 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:81*) Gecko* Firefox/81*anonymized by *] -Parent="Firefox 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:81*) Gecko* Firefox/81*anonymized by *] -Parent="Firefox 81.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:81*) Gecko* Firefox/81*anonymized by *] -Parent="Firefox 81.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:81*) Gecko* Firefox anonymized by *] -Parent="Firefox 81.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/81.0* Anonymisiert*] -Parent="Firefox 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/81.0* Anonymisiert*] -Parent="Firefox 81.0" -Platform="Win32" - -[Firefox/81.0*anonymized by Abelssoft*] -Parent="Firefox 81.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/81.0*] -Parent="Firefox 81.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 80.0 - -[Firefox 80.0] -Parent="DefaultProperties" -Comment="Firefox 80.0" -Browser="Firefox" -Version="80.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:80*) Gecko* Firefox/80*anonymized by *] -Parent="Firefox 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:80*) Gecko* Firefox/80*anonymized by *] -Parent="Firefox 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:80*) Gecko* Firefox/80*anonymized by *] -Parent="Firefox 80.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:80*) Gecko* Firefox/80*anonymized by *] -Parent="Firefox 80.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:80*) Gecko* Firefox anonymized by *] -Parent="Firefox 80.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/80.0* Anonymisiert*] -Parent="Firefox 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/80.0* Anonymisiert*] -Parent="Firefox 80.0" -Platform="Win32" - -[Firefox/80.0*anonymized by Abelssoft*] -Parent="Firefox 80.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/80.0*] -Parent="Firefox 80.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 79.0 - -[Firefox 79.0] -Parent="DefaultProperties" -Comment="Firefox 79.0" -Browser="Firefox" -Version="79.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:79*) Gecko* Firefox/79*anonymized by *] -Parent="Firefox 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:79*) Gecko* Firefox/79*anonymized by *] -Parent="Firefox 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:79*) Gecko* Firefox/79*anonymized by *] -Parent="Firefox 79.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:79*) Gecko* Firefox/79*anonymized by *] -Parent="Firefox 79.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:79*) Gecko* Firefox anonymized by *] -Parent="Firefox 79.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/79.0* Anonymisiert*] -Parent="Firefox 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/79.0* Anonymisiert*] -Parent="Firefox 79.0" -Platform="Win32" - -[Firefox/79.0*anonymized by Abelssoft*] -Parent="Firefox 79.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/79.0*] -Parent="Firefox 79.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 78.0 - -[Firefox 78.0] -Parent="DefaultProperties" -Comment="Firefox 78.0" -Browser="Firefox" -Version="78.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:78*) Gecko* Firefox/78*anonymized by *] -Parent="Firefox 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:78*) Gecko* Firefox/78*anonymized by *] -Parent="Firefox 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:78*) Gecko* Firefox/78*anonymized by *] -Parent="Firefox 78.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:78*) Gecko* Firefox/78*anonymized by *] -Parent="Firefox 78.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:78*) Gecko* Firefox anonymized by *] -Parent="Firefox 78.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/78.0* Anonymisiert*] -Parent="Firefox 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/78.0* Anonymisiert*] -Parent="Firefox 78.0" -Platform="Win32" - -[Firefox/78.0*anonymized by Abelssoft*] -Parent="Firefox 78.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/78.0*] -Parent="Firefox 78.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 77.0 - -[Firefox 77.0] -Parent="DefaultProperties" -Comment="Firefox 77.0" -Browser="Firefox" -Version="77.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:77*) Gecko* Firefox/77*anonymized by *] -Parent="Firefox 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:77*) Gecko* Firefox/77*anonymized by *] -Parent="Firefox 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:77*) Gecko* Firefox/77*anonymized by *] -Parent="Firefox 77.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:77*) Gecko* Firefox/77*anonymized by *] -Parent="Firefox 77.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:77*) Gecko* Firefox anonymized by *] -Parent="Firefox 77.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/77.0* Anonymisiert*] -Parent="Firefox 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/77.0* Anonymisiert*] -Parent="Firefox 77.0" -Platform="Win32" - -[Firefox/77.0*anonymized by Abelssoft*] -Parent="Firefox 77.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/77.0*] -Parent="Firefox 77.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 76.0 - -[Firefox 76.0] -Parent="DefaultProperties" -Comment="Firefox 76.0" -Browser="Firefox" -Version="76.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:76*) Gecko* Firefox/76*anonymized by *] -Parent="Firefox 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:76*) Gecko* Firefox/76*anonymized by *] -Parent="Firefox 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:76*) Gecko* Firefox/76*anonymized by *] -Parent="Firefox 76.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:76*) Gecko* Firefox/76*anonymized by *] -Parent="Firefox 76.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:76*) Gecko* Firefox anonymized by *] -Parent="Firefox 76.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/76.0* Anonymisiert*] -Parent="Firefox 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/76.0* Anonymisiert*] -Parent="Firefox 76.0" -Platform="Win32" - -[Firefox/76.0*anonymized by Abelssoft*] -Parent="Firefox 76.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/76.0*] -Parent="Firefox 76.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 75.0 - -[Firefox 75.0] -Parent="DefaultProperties" -Comment="Firefox 75.0" -Browser="Firefox" -Version="75.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:75*) Gecko* Firefox/75*anonymized by *] -Parent="Firefox 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:75*) Gecko* Firefox/75*anonymized by *] -Parent="Firefox 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:75*) Gecko* Firefox/75*anonymized by *] -Parent="Firefox 75.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:75*) Gecko* Firefox/75*anonymized by *] -Parent="Firefox 75.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:75*) Gecko* Firefox anonymized by *] -Parent="Firefox 75.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/75.0* Anonymisiert*] -Parent="Firefox 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/75.0* Anonymisiert*] -Parent="Firefox 75.0" -Platform="Win32" - -[Firefox/75.0*anonymized by Abelssoft*] -Parent="Firefox 75.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/75.0*] -Parent="Firefox 75.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 74.0 - -[Firefox 74.0] -Parent="DefaultProperties" -Comment="Firefox 74.0" -Browser="Firefox" -Version="74.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:74*) Gecko* Firefox/74*anonymized by *] -Parent="Firefox 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:74*) Gecko* Firefox/74*anonymized by *] -Parent="Firefox 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:74*) Gecko* Firefox/74*anonymized by *] -Parent="Firefox 74.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:74*) Gecko* Firefox/74*anonymized by *] -Parent="Firefox 74.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:74*) Gecko* Firefox anonymized by *] -Parent="Firefox 74.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/74.0* Anonymisiert*] -Parent="Firefox 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/74.0* Anonymisiert*] -Parent="Firefox 74.0" -Platform="Win32" - -[Firefox/74.0*anonymized by Abelssoft*] -Parent="Firefox 74.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/74.0*] -Parent="Firefox 74.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 73.0 - -[Firefox 73.0] -Parent="DefaultProperties" -Comment="Firefox 73.0" -Browser="Firefox" -Version="73.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:73*) Gecko* Firefox/73*anonymized by *] -Parent="Firefox 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:73*) Gecko* Firefox/73*anonymized by *] -Parent="Firefox 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:73*) Gecko* Firefox/73*anonymized by *] -Parent="Firefox 73.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:73*) Gecko* Firefox/73*anonymized by *] -Parent="Firefox 73.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:73*) Gecko* Firefox anonymized by *] -Parent="Firefox 73.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/73.0* Anonymisiert*] -Parent="Firefox 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/73.0* Anonymisiert*] -Parent="Firefox 73.0" -Platform="Win32" - -[Firefox/73.0*anonymized by Abelssoft*] -Parent="Firefox 73.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/73.0*] -Parent="Firefox 73.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 72.0 - -[Firefox 72.0] -Parent="DefaultProperties" -Comment="Firefox 72.0" -Browser="Firefox" -Version="72.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:72*) Gecko* Firefox/72*anonymized by *] -Parent="Firefox 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:72*) Gecko* Firefox/72*anonymized by *] -Parent="Firefox 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:72*) Gecko* Firefox/72*anonymized by *] -Parent="Firefox 72.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:72*) Gecko* Firefox/72*anonymized by *] -Parent="Firefox 72.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:72*) Gecko* Firefox anonymized by *] -Parent="Firefox 72.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/72.0* Anonymisiert*] -Parent="Firefox 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/72.0* Anonymisiert*] -Parent="Firefox 72.0" -Platform="Win32" - -[Firefox/72.0*anonymized by Abelssoft*] -Parent="Firefox 72.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/72.0*] -Parent="Firefox 72.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 71.0 - -[Firefox 71.0] -Parent="DefaultProperties" -Comment="Firefox 71.0" -Browser="Firefox" -Version="71.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:71*) Gecko* Firefox/71*anonymized by *] -Parent="Firefox 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:71*) Gecko* Firefox/71*anonymized by *] -Parent="Firefox 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:71*) Gecko* Firefox/71*anonymized by *] -Parent="Firefox 71.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:71*) Gecko* Firefox/71*anonymized by *] -Parent="Firefox 71.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:71*) Gecko* Firefox anonymized by *] -Parent="Firefox 71.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/71.0* Anonymisiert*] -Parent="Firefox 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/71.0* Anonymisiert*] -Parent="Firefox 71.0" -Platform="Win32" - -[Firefox/71.0*anonymized by Abelssoft*] -Parent="Firefox 71.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/71.0*] -Parent="Firefox 71.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 70.0 - -[Firefox 70.0] -Parent="DefaultProperties" -Comment="Firefox 70.0" -Browser="Firefox" -Version="70.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:70*) Gecko* Firefox/70*anonymized by *] -Parent="Firefox 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:70*) Gecko* Firefox/70*anonymized by *] -Parent="Firefox 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:70*) Gecko* Firefox/70*anonymized by *] -Parent="Firefox 70.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:70*) Gecko* Firefox/70*anonymized by *] -Parent="Firefox 70.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:70*) Gecko* Firefox anonymized by *] -Parent="Firefox 70.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/70.0* Anonymisiert*] -Parent="Firefox 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/70.0* Anonymisiert*] -Parent="Firefox 70.0" -Platform="Win32" - -[Firefox/70.0*anonymized by Abelssoft*] -Parent="Firefox 70.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/70.0*] -Parent="Firefox 70.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 69.0 - -[Firefox 69.0] -Parent="DefaultProperties" -Comment="Firefox 69.0" -Browser="Firefox" -Version="69.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:69*) Gecko* Firefox/69*anonymized by *] -Parent="Firefox 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:69*) Gecko* Firefox/69*anonymized by *] -Parent="Firefox 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:69*) Gecko* Firefox/69*anonymized by *] -Parent="Firefox 69.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:69*) Gecko* Firefox/69*anonymized by *] -Parent="Firefox 69.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:69*) Gecko* Firefox anonymized by *] -Parent="Firefox 69.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/69.0* Anonymisiert*] -Parent="Firefox 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/69.0* Anonymisiert*] -Parent="Firefox 69.0" -Platform="Win32" - -[Firefox/69.0*anonymized by Abelssoft*] -Parent="Firefox 69.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/69.0*] -Parent="Firefox 69.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 68.0 - -[Firefox 68.0] -Parent="DefaultProperties" -Comment="Firefox 68.0" -Browser="Firefox" -Version="68.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:68*) Gecko* Firefox/68*anonymized by *] -Parent="Firefox 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:68*) Gecko* Firefox/68*anonymized by *] -Parent="Firefox 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:68*) Gecko* Firefox/68*anonymized by *] -Parent="Firefox 68.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:68*) Gecko* Firefox/68*anonymized by *] -Parent="Firefox 68.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:68*) Gecko* Firefox anonymized by *] -Parent="Firefox 68.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/68.0* Anonymisiert*] -Parent="Firefox 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/68.0* Anonymisiert*] -Parent="Firefox 68.0" -Platform="Win32" - -[Firefox/68.0*anonymized by Abelssoft*] -Parent="Firefox 68.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/68.0*] -Parent="Firefox 68.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 67.0 - -[Firefox 67.0] -Parent="DefaultProperties" -Comment="Firefox 67.0" -Browser="Firefox" -Version="67.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:67*) Gecko* Firefox/67*anonymized by *] -Parent="Firefox 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:67*) Gecko* Firefox/67*anonymized by *] -Parent="Firefox 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:67*) Gecko* Firefox/67*anonymized by *] -Parent="Firefox 67.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:67*) Gecko* Firefox/67*anonymized by *] -Parent="Firefox 67.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:67*) Gecko* Firefox anonymized by *] -Parent="Firefox 67.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/67.0* Anonymisiert*] -Parent="Firefox 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/67.0* Anonymisiert*] -Parent="Firefox 67.0" -Platform="Win32" - -[Firefox/67.0*anonymized by Abelssoft*] -Parent="Firefox 67.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/67.0*] -Parent="Firefox 67.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 66.0 - -[Firefox 66.0] -Parent="DefaultProperties" -Comment="Firefox 66.0" -Browser="Firefox" -Version="66.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:66*) Gecko* Firefox/66*anonymized by *] -Parent="Firefox 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:66*) Gecko* Firefox/66*anonymized by *] -Parent="Firefox 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:66*) Gecko* Firefox/66*anonymized by *] -Parent="Firefox 66.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:66*) Gecko* Firefox/66*anonymized by *] -Parent="Firefox 66.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:66*) Gecko* Firefox anonymized by *] -Parent="Firefox 66.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/66.0* Anonymisiert*] -Parent="Firefox 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/66.0* Anonymisiert*] -Parent="Firefox 66.0" -Platform="Win32" - -[Firefox/66.0*anonymized by Abelssoft*] -Parent="Firefox 66.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/66.0*] -Parent="Firefox 66.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 65.0 - -[Firefox 65.0] -Parent="DefaultProperties" -Comment="Firefox 65.0" -Browser="Firefox" -Version="65.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:65*) Gecko* Firefox/65*anonymized by *] -Parent="Firefox 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:65*) Gecko* Firefox/65*anonymized by *] -Parent="Firefox 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:65*) Gecko* Firefox/65*anonymized by *] -Parent="Firefox 65.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:65*) Gecko* Firefox/65*anonymized by *] -Parent="Firefox 65.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:65*) Gecko* Firefox anonymized by *] -Parent="Firefox 65.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/65.0* Anonymisiert*] -Parent="Firefox 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/65.0* Anonymisiert*] -Parent="Firefox 65.0" -Platform="Win32" - -[Firefox/65.0*anonymized by Abelssoft*] -Parent="Firefox 65.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/65.0*] -Parent="Firefox 65.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 64.0 - -[Firefox 64.0] -Parent="DefaultProperties" -Comment="Firefox 64.0" -Browser="Firefox" -Version="64.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:64*) Gecko* Firefox/64*anonymized by *] -Parent="Firefox 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:64*) Gecko* Firefox/64*anonymized by *] -Parent="Firefox 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:64*) Gecko* Firefox/64*anonymized by *] -Parent="Firefox 64.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:64*) Gecko* Firefox/64*anonymized by *] -Parent="Firefox 64.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:64*) Gecko* Firefox anonymized by *] -Parent="Firefox 64.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/64.0* Anonymisiert*] -Parent="Firefox 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/64.0* Anonymisiert*] -Parent="Firefox 64.0" -Platform="Win32" - -[Firefox/64.0*anonymized by Abelssoft*] -Parent="Firefox 64.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/64.0*] -Parent="Firefox 64.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 63.0 - -[Firefox 63.0] -Parent="DefaultProperties" -Comment="Firefox 63.0" -Browser="Firefox" -Version="63.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:63*) Gecko* Firefox/63*anonymized by *] -Parent="Firefox 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:63*) Gecko* Firefox/63*anonymized by *] -Parent="Firefox 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:63*) Gecko* Firefox/63*anonymized by *] -Parent="Firefox 63.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:63*) Gecko* Firefox/63*anonymized by *] -Parent="Firefox 63.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:63*) Gecko* Firefox anonymized by *] -Parent="Firefox 63.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/63.0* Anonymisiert*] -Parent="Firefox 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/63.0* Anonymisiert*] -Parent="Firefox 63.0" -Platform="Win32" - -[Firefox/63.0*anonymized by Abelssoft*] -Parent="Firefox 63.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/63.0*] -Parent="Firefox 63.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 62.0 - -[Firefox 62.0] -Parent="DefaultProperties" -Comment="Firefox 62.0" -Browser="Firefox" -Version="62.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:62*) Gecko* Firefox/62*anonymized by *] -Parent="Firefox 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:62*) Gecko* Firefox/62*anonymized by *] -Parent="Firefox 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:62*) Gecko* Firefox/62*anonymized by *] -Parent="Firefox 62.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:62*) Gecko* Firefox/62*anonymized by *] -Parent="Firefox 62.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:62*) Gecko* Firefox anonymized by *] -Parent="Firefox 62.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/62.0* Anonymisiert*] -Parent="Firefox 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/62.0* Anonymisiert*] -Parent="Firefox 62.0" -Platform="Win32" - -[Firefox/62.0*anonymized by Abelssoft*] -Parent="Firefox 62.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/62.0*] -Parent="Firefox 62.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 61.0 - -[Firefox 61.0] -Parent="DefaultProperties" -Comment="Firefox 61.0" -Browser="Firefox" -Version="61.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:61*) Gecko* Firefox/61*anonymized by *] -Parent="Firefox 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:61*) Gecko* Firefox/61*anonymized by *] -Parent="Firefox 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:61*) Gecko* Firefox/61*anonymized by *] -Parent="Firefox 61.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:61*) Gecko* Firefox/61*anonymized by *] -Parent="Firefox 61.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:61*) Gecko* Firefox anonymized by *] -Parent="Firefox 61.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/61.0* Anonymisiert*] -Parent="Firefox 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/61.0* Anonymisiert*] -Parent="Firefox 61.0" -Platform="Win32" - -[Firefox/61.0*anonymized by Abelssoft*] -Parent="Firefox 61.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/61.0*] -Parent="Firefox 61.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 60.0 - -[Firefox 60.0] -Parent="DefaultProperties" -Comment="Firefox 60.0" -Browser="Firefox" -Version="60.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:60*) Gecko* Firefox/60*anonymized by *] -Parent="Firefox 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:60*) Gecko* Firefox/60*anonymized by *] -Parent="Firefox 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:60*) Gecko* Firefox/60*anonymized by *] -Parent="Firefox 60.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:60*) Gecko* Firefox/60*anonymized by *] -Parent="Firefox 60.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:60*) Gecko* Firefox anonymized by *] -Parent="Firefox 60.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/60.0* Anonymisiert*] -Parent="Firefox 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/60.0* Anonymisiert*] -Parent="Firefox 60.0" -Platform="Win32" - -[Firefox/60.0*anonymized by Abelssoft*] -Parent="Firefox 60.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/60.0*] -Parent="Firefox 60.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 59.0 - -[Firefox 59.0] -Parent="DefaultProperties" -Comment="Firefox 59.0" -Browser="Firefox" -Version="59.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:59*) Gecko* Firefox/59*anonymized by *] -Parent="Firefox 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:59*) Gecko* Firefox/59*anonymized by *] -Parent="Firefox 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:59*) Gecko* Firefox/59*anonymized by *] -Parent="Firefox 59.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:59*) Gecko* Firefox/59*anonymized by *] -Parent="Firefox 59.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:59*) Gecko* Firefox anonymized by *] -Parent="Firefox 59.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/59.0* Anonymisiert*] -Parent="Firefox 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/59.0* Anonymisiert*] -Parent="Firefox 59.0" -Platform="Win32" - -[Firefox/59.0*anonymized by Abelssoft*] -Parent="Firefox 59.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/59.0*] -Parent="Firefox 59.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 58.0 - -[Firefox 58.0] -Parent="DefaultProperties" -Comment="Firefox 58.0" -Browser="Firefox" -Version="58.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:58*) Gecko* Firefox/58*anonymized by *] -Parent="Firefox 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:58*) Gecko* Firefox/58*anonymized by *] -Parent="Firefox 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:58*) Gecko* Firefox/58*anonymized by *] -Parent="Firefox 58.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:58*) Gecko* Firefox/58*anonymized by *] -Parent="Firefox 58.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:58*) Gecko* Firefox anonymized by *] -Parent="Firefox 58.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/58.0* Anonymisiert*] -Parent="Firefox 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/58.0* Anonymisiert*] -Parent="Firefox 58.0" -Platform="Win32" - -[Firefox/58.0*anonymized by Abelssoft*] -Parent="Firefox 58.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/58.0*] -Parent="Firefox 58.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 57.0 - -[Firefox 57.0] -Parent="DefaultProperties" -Comment="Firefox 57.0" -Browser="Firefox" -Version="57.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:57*) Gecko* Firefox/57*anonymized by *] -Parent="Firefox 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:57*) Gecko* Firefox/57*anonymized by *] -Parent="Firefox 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:57*) Gecko* Firefox/57*anonymized by *] -Parent="Firefox 57.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:57*) Gecko* Firefox/57*anonymized by *] -Parent="Firefox 57.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:57*) Gecko* Firefox anonymized by *] -Parent="Firefox 57.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/57.0* Anonymisiert*] -Parent="Firefox 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/57.0* Anonymisiert*] -Parent="Firefox 57.0" -Platform="Win32" - -[Firefox/57.0*anonymized by Abelssoft*] -Parent="Firefox 57.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/57.0*] -Parent="Firefox 57.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 56.0 - -[Firefox 56.0] -Parent="DefaultProperties" -Comment="Firefox 56.0" -Browser="Firefox" -Version="56.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:56*) Gecko* Firefox/56*anonymized by *] -Parent="Firefox 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:56*) Gecko* Firefox/56*anonymized by *] -Parent="Firefox 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:56*) Gecko* Firefox/56*anonymized by *] -Parent="Firefox 56.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:56*) Gecko* Firefox/56*anonymized by *] -Parent="Firefox 56.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:56*) Gecko* Firefox anonymized by *] -Parent="Firefox 56.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/56.0* Anonymisiert*] -Parent="Firefox 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/56.0* Anonymisiert*] -Parent="Firefox 56.0" -Platform="Win32" - -[Firefox/56.0*anonymized by Abelssoft*] -Parent="Firefox 56.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/56.0*] -Parent="Firefox 56.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 55.0 - -[Firefox 55.0] -Parent="DefaultProperties" -Comment="Firefox 55.0" -Browser="Firefox" -Version="55.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:55*) Gecko* Firefox/55*anonymized by *] -Parent="Firefox 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:55*) Gecko* Firefox/55*anonymized by *] -Parent="Firefox 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:55*) Gecko* Firefox/55*anonymized by *] -Parent="Firefox 55.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:55*) Gecko* Firefox/55*anonymized by *] -Parent="Firefox 55.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:55*) Gecko* Firefox anonymized by *] -Parent="Firefox 55.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/55.0* Anonymisiert*] -Parent="Firefox 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/55.0* Anonymisiert*] -Parent="Firefox 55.0" -Platform="Win32" - -[Firefox/55.0*anonymized by Abelssoft*] -Parent="Firefox 55.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/55.0*] -Parent="Firefox 55.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 54.0 - -[Firefox 54.0] -Parent="DefaultProperties" -Comment="Firefox 54.0" -Browser="Firefox" -Version="54.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:54*) Gecko* Firefox/54*anonymized by *] -Parent="Firefox 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:54*) Gecko* Firefox/54*anonymized by *] -Parent="Firefox 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:54*) Gecko* Firefox/54*anonymized by *] -Parent="Firefox 54.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:54*) Gecko* Firefox/54*anonymized by *] -Parent="Firefox 54.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:54*) Gecko* Firefox anonymized by *] -Parent="Firefox 54.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/54.0* Anonymisiert*] -Parent="Firefox 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/54.0* Anonymisiert*] -Parent="Firefox 54.0" -Platform="Win32" - -[Firefox/54.0*anonymized by Abelssoft*] -Parent="Firefox 54.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/54.0*] -Parent="Firefox 54.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 53.0 - -[Firefox 53.0] -Parent="DefaultProperties" -Comment="Firefox 53.0" -Browser="Firefox" -Version="53.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="Win7" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:53*) Gecko* Firefox/53*anonymized by *] -Parent="Firefox 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:53*) Gecko* Firefox/53*anonymized by *] -Parent="Firefox 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:53*) Gecko* Firefox/53*anonymized by *] -Parent="Firefox 53.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:53*) Gecko* Firefox/53*anonymized by *] -Parent="Firefox 53.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows*; rv:53*) Gecko* Firefox anonymized by *] -Parent="Firefox 53.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/53.0* Anonymisiert*] -Parent="Firefox 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/53.0* Anonymisiert*] -Parent="Firefox 53.0" -Platform="Win32" - -[Firefox/53.0*anonymized by Abelssoft*] -Parent="Firefox 53.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="Win7" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/53.0*] -Parent="Firefox 53.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 47.0 for Android - -[Firefox 47.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 47.0" -Browser="Firefox" -Version="47.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 46.0 for Android - -[Firefox 46.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 46.0" -Browser="Firefox" -Version="46.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 31.0 for Android - -[Firefox 31.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 31.0" -Browser="Firefox" -Version="31.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 30.0 for Android - -[Firefox 30.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 30.0" -Browser="Firefox" -Version="30.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 29.0 for Android - -[Firefox 29.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 29.0" -Browser="Firefox" -Version="29.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/29.0*] -Parent="Firefox 29.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/29.0*] -Parent="Firefox 29.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 28.0 for Android - -[Firefox 28.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 28.0" -Browser="Firefox" -Version="28.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/28.0*] -Parent="Firefox 28.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/28.0*] -Parent="Firefox 28.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 27.0 for Android - -[Firefox 27.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 27.0" -Browser="Firefox" -Version="27.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/27.0*] -Parent="Firefox 27.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/27.0*] -Parent="Firefox 27.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 26.0 for Android - -[Firefox 26.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 26.0" -Browser="Firefox" -Version="26.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/26.0*] -Parent="Firefox 26.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/26.0*] -Parent="Firefox 26.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 25.0 for Android - -[Firefox 25.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 25.0" -Browser="Firefox" -Version="25.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/25.0*] -Parent="Firefox 25.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/25.0*] -Parent="Firefox 25.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 24.0 for Android - -[Firefox 24.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 24.0" -Browser="Firefox" -Version="24.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/24.0*] -Parent="Firefox 24.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/24.0*] -Parent="Firefox 24.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 23.0 for Android - -[Firefox 23.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 23.0" -Browser="Firefox" -Version="23.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/23.0*] -Parent="Firefox 23.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/23.0*] -Parent="Firefox 23.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 22.0 for Android - -[Firefox 22.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 22.0" -Browser="Firefox" -Version="22.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/22.0*] -Parent="Firefox 22.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/22.0*] -Parent="Firefox 22.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 21.0 for Android - -[Firefox 21.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 21.0" -Browser="Firefox" -Version="21.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/21.0*] -Parent="Firefox 21.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/21.0*] -Parent="Firefox 21.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 20.0 for Android - -[Firefox 20.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 20.0" -Browser="Firefox" -Version="20.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/20.0*] -Parent="Firefox 20.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/20.0*] -Parent="Firefox 20.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 6.0 for Android - -[Firefox 6.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 6.0" -Browser="Firefox" -Version="6.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/6.0*] -Parent="Firefox 6.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/6.0*] -Parent="Firefox 6.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 5.0 for Android - -[Firefox 5.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 5.0" -Browser="Firefox" -Version="5.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/5.0*] -Parent="Firefox 5.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/5.0*] -Parent="Firefox 5.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 4.0 for Android - -[Firefox 4.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 4.0" -Browser="Firefox" -Version="4.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/4.0*] -Parent="Firefox 4.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/4.0*] -Parent="Firefox 4.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.3 for Android - -[Firefox 2.3 for Android] -Parent="DefaultProperties" -Comment="Firefox 2.3" -Browser="Firefox" -Version="2.3" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.3*] -Parent="Firefox 2.3 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.3*] -Parent="Firefox 2.3 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.1 for Android - -[Firefox 2.1 for Android] -Parent="DefaultProperties" -Comment="Firefox 2.1" -Browser="Firefox" -Version="2.1" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.1*] -Parent="Firefox 2.1 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.1*] -Parent="Firefox 2.1 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 2.0 for Android - -[Firefox 2.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 2.0" -Browser="Firefox" -Version="2.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/2.0*] -Parent="Firefox 2.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/2.0*] -Parent="Firefox 2.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.1 for Android - -[Firefox 1.1 for Android] -Parent="DefaultProperties" -Comment="Firefox 1.1" -Browser="Firefox" -Version="1.1" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/1.1*] -Parent="Firefox 1.1 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/1.1*] -Parent="Firefox 1.1 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 1.0 for Android - -[Firefox 1.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 1.0" -Browser="Firefox" -Version="1.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/1.0*] -Parent="Firefox 1.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/1.0*] -Parent="Firefox 1.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 19.0 for Android - -[Firefox 19.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 19.0" -Browser="Firefox" -Version="19.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/19.0*] -Parent="Firefox 19.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/19.0*] -Parent="Firefox 19.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 18.0 for Android - -[Firefox 18.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 18.0" -Browser="Firefox" -Version="18.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/18.0*] -Parent="Firefox 18.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/18.0*] -Parent="Firefox 18.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 17.0 for Android - -[Firefox 17.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 17.0" -Browser="Firefox" -Version="17.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/17.0*] -Parent="Firefox 17.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/17.0*] -Parent="Firefox 17.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 16.0 for Android - -[Firefox 16.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 16.0" -Browser="Firefox" -Version="16.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/16.0*] -Parent="Firefox 16.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/16.0*] -Parent="Firefox 16.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 15.0 for Android - -[Firefox 15.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 15.0" -Browser="Firefox" -Version="15.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/15.0*] -Parent="Firefox 15.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/15.0*] -Parent="Firefox 15.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 14.0 for Android - -[Firefox 14.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 14.0" -Browser="Firefox" -Version="14.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/14.0*] -Parent="Firefox 14.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/14.0*] -Parent="Firefox 14.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 13.0 for Android - -[Firefox 13.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 13.0" -Browser="Firefox" -Version="13.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/13.0*] -Parent="Firefox 13.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/13.0*] -Parent="Firefox 13.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 12.0 for Android - -[Firefox 12.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 12.0" -Browser="Firefox" -Version="12.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/12.0*] -Parent="Firefox 12.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/12.0*] -Parent="Firefox 12.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 11.0 for Android - -[Firefox 11.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 11.0" -Browser="Firefox" -Version="11.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/11.0*] -Parent="Firefox 11.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/11.0*] -Parent="Firefox 11.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 10.0 for Android - -[Firefox 10.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 10.0" -Browser="Firefox" -Version="10.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/10.0*] -Parent="Firefox 10.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/10.0*] -Parent="Firefox 10.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 9.0 for Android - -[Firefox 9.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 9.0" -Browser="Firefox" -Version="9.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/9.0*] -Parent="Firefox 9.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/9.0*] -Parent="Firefox 9.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 8.0 for Android - -[Firefox 8.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 8.0" -Browser="Firefox" -Version="8.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/8.0*] -Parent="Firefox 8.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/8.0*] -Parent="Firefox 8.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 7.0 for Android - -[Firefox 7.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 7.0" -Browser="Firefox" -Version="7.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/7.0*] -Parent="Firefox 7.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/7.0*] -Parent="Firefox 7.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 112.0 for Android - -[Firefox 112.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 112.0" -Browser="Firefox" -Version="112.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/112.0*] -Parent="Firefox 112.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 111.0 for Android - -[Firefox 111.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 111.0" -Browser="Firefox" -Version="111.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/111.0*] -Parent="Firefox 111.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 110.0 for Android - -[Firefox 110.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 110.0" -Browser="Firefox" -Version="110.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/110.0*] -Parent="Firefox 110.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 109.0 for Android - -[Firefox 109.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 109.0" -Browser="Firefox" -Version="109.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/109.0*] -Parent="Firefox 109.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 108.0 for Android - -[Firefox 108.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 108.0" -Browser="Firefox" -Version="108.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/108.0*] -Parent="Firefox 108.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 107.0 for Android - -[Firefox 107.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 107.0" -Browser="Firefox" -Version="107.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/107.0*] -Parent="Firefox 107.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 106.0 for Android - -[Firefox 106.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 106.0" -Browser="Firefox" -Version="106.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/106.0*] -Parent="Firefox 106.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 105.0 for Android - -[Firefox 105.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 105.0" -Browser="Firefox" -Version="105.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/105.0*] -Parent="Firefox 105.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 104.0 for Android - -[Firefox 104.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 104.0" -Browser="Firefox" -Version="104.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/104.0*] -Parent="Firefox 104.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 103.0 for Android - -[Firefox 103.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 103.0" -Browser="Firefox" -Version="103.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/103.0*] -Parent="Firefox 103.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 102.0 for Android - -[Firefox 102.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 102.0" -Browser="Firefox" -Version="102.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/102.0*] -Parent="Firefox 102.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 101.0 for Android - -[Firefox 101.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 101.0" -Browser="Firefox" -Version="101.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/101.0*] -Parent="Firefox 101.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 100.0 for Android - -[Firefox 100.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 100.0" -Browser="Firefox" -Version="100.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/100.0*] -Parent="Firefox 100.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 99.0 for Android - -[Firefox 99.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 99.0" -Browser="Firefox" -Version="99.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/99.0*] -Parent="Firefox 99.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 98.0 for Android - -[Firefox 98.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 98.0" -Browser="Firefox" -Version="98.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/98.0*] -Parent="Firefox 98.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 97.0 for Android - -[Firefox 97.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 97.0" -Browser="Firefox" -Version="97.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/97.0*] -Parent="Firefox 97.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 96.0 for Android - -[Firefox 96.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 96.0" -Browser="Firefox" -Version="96.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/96.0*] -Parent="Firefox 96.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 95.0 for Android - -[Firefox 95.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 95.0" -Browser="Firefox" -Version="95.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/95.0*] -Parent="Firefox 95.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 94.0 for Android - -[Firefox 94.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 94.0" -Browser="Firefox" -Version="94.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/94.0*] -Parent="Firefox 94.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 93.0 for Android - -[Firefox 93.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 93.0" -Browser="Firefox" -Version="93.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/93.0*] -Parent="Firefox 93.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 92.0 for Android - -[Firefox 92.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 92.0" -Browser="Firefox" -Version="92.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/92.0*] -Parent="Firefox 92.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 91.0 for Android - -[Firefox 91.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 91.0" -Browser="Firefox" -Version="91.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/91.0*] -Parent="Firefox 91.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 90.0 for Android - -[Firefox 90.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 90.0" -Browser="Firefox" -Version="90.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/90.0*] -Parent="Firefox 90.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 89.0 for Android - -[Firefox 89.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 89.0" -Browser="Firefox" -Version="89.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/89.0*] -Parent="Firefox 89.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 88.0 for Android - -[Firefox 88.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 88.0" -Browser="Firefox" -Version="88.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/88.0*] -Parent="Firefox 88.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 87.0 for Android - -[Firefox 87.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 87.0" -Browser="Firefox" -Version="87.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/87.0*] -Parent="Firefox 87.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 86.0 for Android - -[Firefox 86.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 86.0" -Browser="Firefox" -Version="86.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/86.0*] -Parent="Firefox 86.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 85.0 for Android - -[Firefox 85.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 85.0" -Browser="Firefox" -Version="85.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/85.0*] -Parent="Firefox 85.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 84.0 for Android - -[Firefox 84.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 84.0" -Browser="Firefox" -Version="84.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/84.0*] -Parent="Firefox 84.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 83.0 for Android - -[Firefox 83.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 83.0" -Browser="Firefox" -Version="83.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/83.0*] -Parent="Firefox 83.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 82.0 for Android - -[Firefox 82.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 82.0" -Browser="Firefox" -Version="82.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/82.0*] -Parent="Firefox 82.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 81.0 for Android - -[Firefox 81.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 81.0" -Browser="Firefox" -Version="81.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/81.0*] -Parent="Firefox 81.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 80.0 for Android - -[Firefox 80.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 80.0" -Browser="Firefox" -Version="80.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/80.0*] -Parent="Firefox 80.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 79.0 for Android - -[Firefox 79.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 79.0" -Browser="Firefox" -Version="79.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/79.0*] -Parent="Firefox 79.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 78.0 for Android - -[Firefox 78.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 78.0" -Browser="Firefox" -Version="78.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/78.0*] -Parent="Firefox 78.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 77.0 for Android - -[Firefox 77.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 77.0" -Browser="Firefox" -Version="77.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/77.0*] -Parent="Firefox 77.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 76.0 for Android - -[Firefox 76.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 76.0" -Browser="Firefox" -Version="76.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/76.0*] -Parent="Firefox 76.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 75.0 for Android - -[Firefox 75.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 75.0" -Browser="Firefox" -Version="75.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/75.0*] -Parent="Firefox 75.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 74.0 for Android - -[Firefox 74.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 74.0" -Browser="Firefox" -Version="74.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/74.0*] -Parent="Firefox 74.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 73.0 for Android - -[Firefox 73.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 73.0" -Browser="Firefox" -Version="73.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/73.0*] -Parent="Firefox 73.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 72.0 for Android - -[Firefox 72.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 72.0" -Browser="Firefox" -Version="72.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/72.0*] -Parent="Firefox 72.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 71.0 for Android - -[Firefox 71.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 71.0" -Browser="Firefox" -Version="71.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/71.0*] -Parent="Firefox 71.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 70.0 for Android - -[Firefox 70.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 70.0" -Browser="Firefox" -Version="70.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/70.0*] -Parent="Firefox 70.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 69.0 for Android - -[Firefox 69.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 69.0" -Browser="Firefox" -Version="69.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/69.0*] -Parent="Firefox 69.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 68.0 for Android - -[Firefox 68.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 68.0" -Browser="Firefox" -Version="68.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/68.0*] -Parent="Firefox 68.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 67.0 for Android - -[Firefox 67.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 67.0" -Browser="Firefox" -Version="67.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/67.0*] -Parent="Firefox 67.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 66.0 for Android - -[Firefox 66.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 66.0" -Browser="Firefox" -Version="66.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/66.0*] -Parent="Firefox 66.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 65.0 for Android - -[Firefox 65.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 65.0" -Browser="Firefox" -Version="65.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/65.0*] -Parent="Firefox 65.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 64.0 for Android - -[Firefox 64.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 64.0" -Browser="Firefox" -Version="64.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/64.0*] -Parent="Firefox 64.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 63.0 for Android - -[Firefox 63.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 63.0" -Browser="Firefox" -Version="63.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/63.0*] -Parent="Firefox 63.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 62.0 for Android - -[Firefox 62.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 62.0" -Browser="Firefox" -Version="62.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/62.0*] -Parent="Firefox 62.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 61.0 for Android - -[Firefox 61.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 61.0" -Browser="Firefox" -Version="61.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/61.0*] -Parent="Firefox 61.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 60.0 for Android - -[Firefox 60.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 60.0" -Browser="Firefox" -Version="60.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/60.0*] -Parent="Firefox 60.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 59.0 for Android - -[Firefox 59.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 59.0" -Browser="Firefox" -Version="59.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/59.0*] -Parent="Firefox 59.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 58.0 for Android - -[Firefox 58.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 58.0" -Browser="Firefox" -Version="58.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/58.0*] -Parent="Firefox 58.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 57.0 for Android - -[Firefox 57.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 57.0" -Browser="Firefox" -Version="57.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/57.0*] -Parent="Firefox 57.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 56.0 for Android - -[Firefox 56.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 56.0" -Browser="Firefox" -Version="56.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/56.0*] -Parent="Firefox 56.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 55.0 for Android - -[Firefox 55.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 55.0" -Browser="Firefox" -Version="55.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/55.0*] -Parent="Firefox 55.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 54.0 for Android - -[Firefox 54.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 54.0" -Browser="Firefox" -Version="54.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/54.0*] -Parent="Firefox 54.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 53.0 for Android - -[Firefox 53.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 53.0" -Browser="Firefox" -Version="53.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/53.0*] -Parent="Firefox 53.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 52.0 for Android - -[Firefox 52.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 52.0" -Browser="Firefox" -Version="52.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 51.0 for Android - -[Firefox 51.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 51.0" -Browser="Firefox" -Version="51.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.1 for Android - -[Firefox 50.1 for Android] -Parent="DefaultProperties" -Comment="Firefox 50.1" -Browser="Firefox" -Version="50.1" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/50.1*] -Parent="Firefox 50.1 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/50.1*] -Parent="Firefox 50.1 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/50.1*] -Parent="Firefox 50.1 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.0 for Android - -[Firefox 50.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 50.0" -Browser="Firefox" -Version="50.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 49.0 for Android - -[Firefox 49.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 49.0" -Browser="Firefox" -Version="49.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 48.0 for Android - -[Firefox 48.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 48.0" -Browser="Firefox" -Version="48.0" -Platform="Android" -isMobileDevice="true" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Linux*Android*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0 for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0 for Android" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0 for Android" -isTablet="true" -Device_Type="Tablet" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 45.0 for Android - -[Firefox 45.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 45.0" -Browser="Firefox" -Version="45.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 44.0 for Android - -[Firefox 44.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 44.0" -Browser="Firefox" -Version="44.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 43.0 for Android - -[Firefox 43.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 43.0" -Browser="Firefox" -Version="43.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 42.0 for Android - -[Firefox 42.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 42.0" -Browser="Firefox" -Version="42.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 41.0 for Android - -[Firefox 41.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 41.0" -Browser="Firefox" -Version="41.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 40.0 for Android - -[Firefox 40.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 40.0" -Browser="Firefox" -Version="40.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 39.0 for Android - -[Firefox 39.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 39.0" -Browser="Firefox" -Version="39.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 38.0 for Android - -[Firefox 38.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 38.0" -Browser="Firefox" -Version="38.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 37.0 for Android - -[Firefox 37.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 37.0" -Browser="Firefox" -Version="37.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 36.0 for Android - -[Firefox 36.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 36.0" -Browser="Firefox" -Version="36.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 35.0 for Android - -[Firefox 35.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 35.0" -Browser="Firefox" -Version="35.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 34.0 for Android - -[Firefox 34.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 34.0" -Browser="Firefox" -Version="34.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.1 for Android - -[Firefox 33.1 for Android] -Parent="DefaultProperties" -Comment="Firefox 33.1" -Browser="Firefox" -Version="33.1" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/33.1*] -Parent="Firefox 33.1 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/33.1*] -Parent="Firefox 33.1 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.0 for Android - -[Firefox 33.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 33.0" -Browser="Firefox" -Version="33.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 32.0 for Android - -[Firefox 32.0 for Android] -Parent="DefaultProperties" -Comment="Firefox 32.0" -Browser="Firefox" -Version="32.0" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0 for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0 for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 52.0 - -[Firefox 52.0] -Parent="DefaultProperties" -Comment="Firefox 52.0" -Browser="Firefox" -Version="52.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:52*) Gecko* Firefox/52*anonymized by *] -Parent="Firefox 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:52*) Gecko* Firefox/52*anonymized by *] -Parent="Firefox 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:52*) Gecko* Firefox/52*anonymized by *] -Parent="Firefox 52.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:52*) Gecko* Firefox/52*anonymized by *] -Parent="Firefox 52.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:52*) Gecko* Firefox anonymized by *] -Parent="Firefox 52.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:52*) Gecko* Firefox anonymized by *] -Parent="Firefox 52.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/52.0* Anonymisiert*] -Parent="Firefox 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/52.0* Anonymisiert*] -Parent="Firefox 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/52.0* Anonymisiert*] -Parent="Firefox 52.0" -Platform="Win32" - -[Firefox/52.0*anonymized by Abelssoft*] -Parent="Firefox 52.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/52.0*] -Parent="Firefox 52.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/52.0*] -Parent="Firefox 52.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 51.0 - -[Firefox 51.0] -Parent="DefaultProperties" -Comment="Firefox 51.0" -Browser="Firefox" -Version="51.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:51*) Gecko* Firefox/51*anonymized by *] -Parent="Firefox 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:51*) Gecko* Firefox/51*anonymized by *] -Parent="Firefox 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:51*) Gecko* Firefox/51*anonymized by *] -Parent="Firefox 51.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:51*) Gecko* Firefox/51*anonymized by *] -Parent="Firefox 51.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:51*) Gecko* Firefox anonymized by *] -Parent="Firefox 51.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:51*) Gecko* Firefox anonymized by *] -Parent="Firefox 51.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/51.0* Anonymisiert*] -Parent="Firefox 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/51.0* Anonymisiert*] -Parent="Firefox 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/51.0* Anonymisiert*] -Parent="Firefox 51.0" -Platform="Win32" - -[Firefox/51.0*anonymized by Abelssoft*] -Parent="Firefox 51.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/51.0*] -Parent="Firefox 51.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/51.0*] -Parent="Firefox 51.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 50.0 - -[Firefox 50.0] -Parent="DefaultProperties" -Comment="Firefox 50.0" -Browser="Firefox" -Version="50.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:50*) Gecko* Firefox/50*anonymized by *] -Parent="Firefox 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:50*) Gecko* Firefox/50*anonymized by *] -Parent="Firefox 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:50*) Gecko* Firefox/50*anonymized by *] -Parent="Firefox 50.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:50*) Gecko* Firefox/50*anonymized by *] -Parent="Firefox 50.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:50*) Gecko* Firefox anonymized by *] -Parent="Firefox 50.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:50*) Gecko* Firefox anonymized by *] -Parent="Firefox 50.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/50.0* Anonymisiert*] -Parent="Firefox 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/50.0* Anonymisiert*] -Parent="Firefox 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/50.0* Anonymisiert*] -Parent="Firefox 50.0" -Platform="Win32" - -[Firefox/50.0*anonymized by Abelssoft*] -Parent="Firefox 50.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/50.0*] -Parent="Firefox 50.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/50.0*] -Parent="Firefox 50.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 49.0 - -[Firefox 49.0] -Parent="DefaultProperties" -Comment="Firefox 49.0" -Browser="Firefox" -Version="49.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:49*) Gecko* Firefox/49*anonymized by *] -Parent="Firefox 49.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:49*) Gecko* Firefox/49*anonymized by *] -Parent="Firefox 49.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:49*) Gecko* Firefox/49*anonymized by *] -Parent="Firefox 49.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:49*) Gecko* Firefox/49*anonymized by *] -Parent="Firefox 49.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:49*) Gecko* Firefox anonymized by *] -Parent="Firefox 49.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:49*) Gecko* Firefox anonymized by *] -Parent="Firefox 49.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/49.0* Anonymisiert*] -Parent="Firefox 49.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/49.0* Anonymisiert*] -Parent="Firefox 49.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/49.0* Anonymisiert*] -Parent="Firefox 49.0" -Platform="Win32" - -[Firefox/49.0*anonymized by Abelssoft*] -Parent="Firefox 49.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/49.0*] -Parent="Firefox 49.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/49.0*] -Parent="Firefox 49.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 48.0 - -[Firefox 48.0] -Parent="DefaultProperties" -Comment="Firefox 48.0" -Browser="Firefox" -Version="48.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:48*) Gecko* Firefox/48*anonymized by *] -Parent="Firefox 48.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:48*) Gecko* Firefox/48*anonymized by *] -Parent="Firefox 48.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:48*) Gecko* Firefox/48*anonymized by *] -Parent="Firefox 48.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:48*) Gecko* Firefox/48*anonymized by *] -Parent="Firefox 48.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:48*) Gecko* Firefox anonymized by *] -Parent="Firefox 48.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:48*) Gecko* Firefox anonymized by *] -Parent="Firefox 48.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/48.0* Anonymisiert*] -Parent="Firefox 48.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/48.0* Anonymisiert*] -Parent="Firefox 48.0" -Platform="Win32" - -[Firefox/48.0*anonymized by Abelssoft*] -Parent="Firefox 48.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/48.0*] -Parent="Firefox 48.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/48.0*] -Parent="Firefox 48.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 47.0 - -[Firefox 47.0] -Parent="DefaultProperties" -Comment="Firefox 47.0" -Browser="Firefox" -Version="47.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:47*) Gecko* Firefox/47*anonymized by *] -Parent="Firefox 47.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:47*) Gecko* Firefox/47*anonymized by *] -Parent="Firefox 47.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:47*) Gecko* Firefox/47*anonymized by *] -Parent="Firefox 47.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:47*) Gecko* Firefox/47*anonymized by *] -Parent="Firefox 47.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:47*) Gecko* Firefox anonymized by *] -Parent="Firefox 47.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:47*) Gecko* Firefox anonymized by *] -Parent="Firefox 47.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/47.0* Anonymisiert*] -Parent="Firefox 47.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/47.0* Anonymisiert*] -Parent="Firefox 47.0" -Platform="Win32" - -[Firefox/47.0*anonymized by Abelssoft*] -Parent="Firefox 47.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/47.0*] -Parent="Firefox 47.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/47.0*] -Parent="Firefox 47.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 46.0 - -[Firefox 46.0] -Parent="DefaultProperties" -Comment="Firefox 46.0" -Browser="Firefox" -Version="46.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:46*) Gecko* Firefox/46*anonymized by *] -Parent="Firefox 46.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:46*) Gecko* Firefox/46*anonymized by *] -Parent="Firefox 46.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:46*) Gecko* Firefox/46*anonymized by *] -Parent="Firefox 46.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:46*) Gecko* Firefox/46*anonymized by *] -Parent="Firefox 46.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:46*) Gecko* Firefox anonymized by *] -Parent="Firefox 46.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:46*) Gecko* Firefox anonymized by *] -Parent="Firefox 46.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/46.0* Anonymisiert*] -Parent="Firefox 46.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/46.0* Anonymisiert*] -Parent="Firefox 46.0" -Platform="Win32" - -[Firefox/46.0*anonymized by Abelssoft*] -Parent="Firefox 46.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/46.0*] -Parent="Firefox 46.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/46.0*] -Parent="Firefox 46.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 45.0 - -[Firefox 45.0] -Parent="DefaultProperties" -Comment="Firefox 45.0" -Browser="Firefox" -Version="45.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:45*) Gecko* Firefox/45*anonymized by *] -Parent="Firefox 45.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:45*) Gecko* Firefox/45*anonymized by *] -Parent="Firefox 45.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:45*) Gecko* Firefox/45*anonymized by *] -Parent="Firefox 45.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:45*) Gecko* Firefox/45*anonymized by *] -Parent="Firefox 45.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:45*) Gecko* Firefox anonymized by *] -Parent="Firefox 45.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:45*) Gecko* Firefox anonymized by *] -Parent="Firefox 45.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/45.0* Anonymisiert*] -Parent="Firefox 45.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/45.0* Anonymisiert*] -Parent="Firefox 45.0" -Platform="Win32" - -[Firefox/45.0*anonymized by Abelssoft*] -Parent="Firefox 45.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/45.0*] -Parent="Firefox 45.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/45.0*] -Parent="Firefox 45.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 44.0 - -[Firefox 44.0] -Parent="DefaultProperties" -Comment="Firefox 44.0" -Browser="Firefox" -Version="44.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:44*) Gecko* Firefox/44*anonymized by *] -Parent="Firefox 44.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:44*) Gecko* Firefox/44*anonymized by *] -Parent="Firefox 44.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:44*) Gecko* Firefox/44*anonymized by *] -Parent="Firefox 44.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:44*) Gecko* Firefox/44*anonymized by *] -Parent="Firefox 44.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:44*) Gecko* Firefox anonymized by *] -Parent="Firefox 44.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:44*) Gecko* Firefox anonymized by *] -Parent="Firefox 44.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/44.0* Anonymisiert*] -Parent="Firefox 44.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/44.0* Anonymisiert*] -Parent="Firefox 44.0" -Platform="Win32" - -[Firefox/44.0*anonymized by Abelssoft*] -Parent="Firefox 44.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/44.0*] -Parent="Firefox 44.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/44.0*] -Parent="Firefox 44.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 43.0 - -[Firefox 43.0] -Parent="DefaultProperties" -Comment="Firefox 43.0" -Browser="Firefox" -Version="43.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:43*) Gecko* Firefox/43*anonymized by *] -Parent="Firefox 43.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:43*) Gecko* Firefox/43*anonymized by *] -Parent="Firefox 43.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:43*) Gecko* Firefox/43*anonymized by *] -Parent="Firefox 43.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:43*) Gecko* Firefox/43*anonymized by *] -Parent="Firefox 43.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:43*) Gecko* Firefox anonymized by *] -Parent="Firefox 43.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:43*) Gecko* Firefox anonymized by *] -Parent="Firefox 43.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/43.0* Anonymisiert*] -Parent="Firefox 43.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/43.0* Anonymisiert*] -Parent="Firefox 43.0" -Platform="Win32" - -[Firefox/43.0*anonymized by Abelssoft*] -Parent="Firefox 43.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/43.0*] -Parent="Firefox 43.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/43.0*] -Parent="Firefox 43.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 42.0 - -[Firefox 42.0] -Parent="DefaultProperties" -Comment="Firefox 42.0" -Browser="Firefox" -Version="42.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:42*) Gecko* Firefox/42*anonymized by *] -Parent="Firefox 42.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:42*) Gecko* Firefox/42*anonymized by *] -Parent="Firefox 42.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:42*) Gecko* Firefox/42*anonymized by *] -Parent="Firefox 42.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:42*) Gecko* Firefox/42*anonymized by *] -Parent="Firefox 42.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:42*) Gecko* Firefox anonymized by *] -Parent="Firefox 42.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:42*) Gecko* Firefox anonymized by *] -Parent="Firefox 42.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/42.0* Anonymisiert*] -Parent="Firefox 42.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/42.0* Anonymisiert*] -Parent="Firefox 42.0" -Platform="Win32" - -[Firefox/42.0*anonymized by Abelssoft*] -Parent="Firefox 42.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/42.0*] -Parent="Firefox 42.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/42.0*] -Parent="Firefox 42.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 41.0 - -[Firefox 41.0] -Parent="DefaultProperties" -Comment="Firefox 41.0" -Browser="Firefox" -Version="41.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:41*) Gecko* Firefox/41*anonymized by *] -Parent="Firefox 41.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:41*) Gecko* Firefox/41*anonymized by *] -Parent="Firefox 41.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:41*) Gecko* Firefox/41*anonymized by *] -Parent="Firefox 41.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:41*) Gecko* Firefox/41*anonymized by *] -Parent="Firefox 41.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:41*) Gecko* Firefox anonymized by *] -Parent="Firefox 41.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:41*) Gecko* Firefox anonymized by *] -Parent="Firefox 41.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/41.0* Anonymisiert*] -Parent="Firefox 41.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/41.0* Anonymisiert*] -Parent="Firefox 41.0" -Platform="Win32" - -[Firefox/41.0*anonymized by Abelssoft*] -Parent="Firefox 41.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/41.0*] -Parent="Firefox 41.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/41.0*] -Parent="Firefox 41.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 40.0 - -[Firefox 40.0] -Parent="DefaultProperties" -Comment="Firefox 40.0" -Browser="Firefox" -Version="40.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:40*) Gecko* Firefox/40*anonymized by *] -Parent="Firefox 40.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:40*) Gecko* Firefox/40*anonymized by *] -Parent="Firefox 40.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:40*) Gecko* Firefox/40*anonymized by *] -Parent="Firefox 40.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:40*) Gecko* Firefox/40*anonymized by *] -Parent="Firefox 40.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:40*) Gecko* Firefox anonymized by *] -Parent="Firefox 40.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:40*) Gecko* Firefox anonymized by *] -Parent="Firefox 40.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/40.0* Anonymisiert*] -Parent="Firefox 40.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/40.0* Anonymisiert*] -Parent="Firefox 40.0" -Platform="Win32" - -[Firefox/40.0*anonymized by Abelssoft*] -Parent="Firefox 40.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/40.0*] -Parent="Firefox 40.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/40.0*] -Parent="Firefox 40.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 39.0 - -[Firefox 39.0] -Parent="DefaultProperties" -Comment="Firefox 39.0" -Browser="Firefox" -Version="39.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:39*) Gecko* Firefox/39*anonymized by *] -Parent="Firefox 39.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:39*) Gecko* Firefox/39*anonymized by *] -Parent="Firefox 39.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:39*) Gecko* Firefox/39*anonymized by *] -Parent="Firefox 39.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:39*) Gecko* Firefox/39*anonymized by *] -Parent="Firefox 39.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:39*) Gecko* Firefox anonymized by *] -Parent="Firefox 39.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:39*) Gecko* Firefox anonymized by *] -Parent="Firefox 39.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/39.0* Anonymisiert*] -Parent="Firefox 39.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/39.0* Anonymisiert*] -Parent="Firefox 39.0" -Platform="Win32" - -[Firefox/39.0*anonymized by Abelssoft*] -Parent="Firefox 39.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/39.0*] -Parent="Firefox 39.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/39.0*] -Parent="Firefox 39.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 38.0 - -[Firefox 38.0] -Parent="DefaultProperties" -Comment="Firefox 38.0" -Browser="Firefox" -Version="38.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:38*) Gecko* Firefox/38*anonymized by *] -Parent="Firefox 38.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:38*) Gecko* Firefox/38*anonymized by *] -Parent="Firefox 38.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:38*) Gecko* Firefox/38*anonymized by *] -Parent="Firefox 38.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:38*) Gecko* Firefox/38*anonymized by *] -Parent="Firefox 38.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:38*) Gecko* Firefox anonymized by *] -Parent="Firefox 38.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:38*) Gecko* Firefox anonymized by *] -Parent="Firefox 38.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/38.0* Anonymisiert*] -Parent="Firefox 38.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/38.0* Anonymisiert*] -Parent="Firefox 38.0" -Platform="Win32" - -[Firefox/38.0*anonymized by Abelssoft*] -Parent="Firefox 38.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/38.0*] -Parent="Firefox 38.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/38.0*] -Parent="Firefox 38.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 37.0 - -[Firefox 37.0] -Parent="DefaultProperties" -Comment="Firefox 37.0" -Browser="Firefox" -Version="37.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:37*) Gecko* Firefox/37*anonymized by *] -Parent="Firefox 37.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:37*) Gecko* Firefox/37*anonymized by *] -Parent="Firefox 37.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:37*) Gecko* Firefox/37*anonymized by *] -Parent="Firefox 37.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:37*) Gecko* Firefox/37*anonymized by *] -Parent="Firefox 37.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:37*) Gecko* Firefox anonymized by *] -Parent="Firefox 37.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:37*) Gecko* Firefox anonymized by *] -Parent="Firefox 37.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/37.0* Anonymisiert*] -Parent="Firefox 37.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/37.0* Anonymisiert*] -Parent="Firefox 37.0" -Platform="Win32" - -[Firefox/37.0*anonymized by Abelssoft*] -Parent="Firefox 37.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/37.0*] -Parent="Firefox 37.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/37.0*] -Parent="Firefox 37.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 36.0 - -[Firefox 36.0] -Parent="DefaultProperties" -Comment="Firefox 36.0" -Browser="Firefox" -Version="36.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:36*) Gecko* Firefox/36*anonymized by *] -Parent="Firefox 36.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:36*) Gecko* Firefox/36*anonymized by *] -Parent="Firefox 36.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:36*) Gecko* Firefox/36*anonymized by *] -Parent="Firefox 36.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:36*) Gecko* Firefox/36*anonymized by *] -Parent="Firefox 36.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:36*) Gecko* Firefox anonymized by *] -Parent="Firefox 36.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:36*) Gecko* Firefox anonymized by *] -Parent="Firefox 36.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/36.0* Anonymisiert*] -Parent="Firefox 36.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/36.0* Anonymisiert*] -Parent="Firefox 36.0" -Platform="Win32" - -[Firefox/36.0*anonymized by Abelssoft*] -Parent="Firefox 36.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/36.0*] -Parent="Firefox 36.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/36.0*] -Parent="Firefox 36.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 35.0 - -[Firefox 35.0] -Parent="DefaultProperties" -Comment="Firefox 35.0" -Browser="Firefox" -Version="35.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:35*) Gecko* Firefox/35*anonymized by *] -Parent="Firefox 35.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:35*) Gecko* Firefox/35*anonymized by *] -Parent="Firefox 35.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:35*) Gecko* Firefox/35*anonymized by *] -Parent="Firefox 35.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:35*) Gecko* Firefox/35*anonymized by *] -Parent="Firefox 35.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:35*) Gecko* Firefox anonymized by *] -Parent="Firefox 35.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:35*) Gecko* Firefox anonymized by *] -Parent="Firefox 35.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/35.0* Anonymisiert*] -Parent="Firefox 35.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/35.0* Anonymisiert*] -Parent="Firefox 35.0" -Platform="Win32" - -[Firefox/35.0*anonymized by Abelssoft*] -Parent="Firefox 35.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/35.0*] -Parent="Firefox 35.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/35.0*] -Parent="Firefox 35.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 34.0 - -[Firefox 34.0] -Parent="DefaultProperties" -Comment="Firefox 34.0" -Browser="Firefox" -Version="34.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:34*) Gecko* Firefox/34*anonymized by *] -Parent="Firefox 34.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:34*) Gecko* Firefox/34*anonymized by *] -Parent="Firefox 34.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:34*) Gecko* Firefox/34*anonymized by *] -Parent="Firefox 34.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:34*) Gecko* Firefox/34*anonymized by *] -Parent="Firefox 34.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:34*) Gecko* Firefox anonymized by *] -Parent="Firefox 34.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:34*) Gecko* Firefox anonymized by *] -Parent="Firefox 34.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/34.0* Anonymisiert*] -Parent="Firefox 34.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/34.0* Anonymisiert*] -Parent="Firefox 34.0" -Platform="Win32" - -[Firefox/34.0*anonymized by Abelssoft*] -Parent="Firefox 34.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/34.0*] -Parent="Firefox 34.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/34.0*] -Parent="Firefox 34.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 33.0 - -[Firefox 33.0] -Parent="DefaultProperties" -Comment="Firefox 33.0" -Browser="Firefox" -Version="33.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:33*) Gecko* Firefox/33*anonymized by *] -Parent="Firefox 33.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:33*) Gecko* Firefox/33*anonymized by *] -Parent="Firefox 33.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:33*) Gecko* Firefox/33*anonymized by *] -Parent="Firefox 33.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:33*) Gecko* Firefox/33*anonymized by *] -Parent="Firefox 33.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:33*) Gecko* Firefox anonymized by *] -Parent="Firefox 33.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:33*) Gecko* Firefox anonymized by *] -Parent="Firefox 33.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/33.0* Anonymisiert*] -Parent="Firefox 33.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/33.0* Anonymisiert*] -Parent="Firefox 33.0" -Platform="Win32" - -[Firefox/33.0*anonymized by Abelssoft*] -Parent="Firefox 33.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/33.0*] -Parent="Firefox 33.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/33.0*] -Parent="Firefox 33.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 32.0 - -[Firefox 32.0] -Parent="DefaultProperties" -Comment="Firefox 32.0" -Browser="Firefox" -Version="32.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:32*) Gecko* Firefox/32*anonymized by *] -Parent="Firefox 32.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:32*) Gecko* Firefox/32*anonymized by *] -Parent="Firefox 32.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:32*) Gecko* Firefox/32*anonymized by *] -Parent="Firefox 32.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:32*) Gecko* Firefox/32*anonymized by *] -Parent="Firefox 32.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:32*) Gecko* Firefox anonymized by *] -Parent="Firefox 32.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:32*) Gecko* Firefox anonymized by *] -Parent="Firefox 32.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/32.0* Anonymisiert*] -Parent="Firefox 32.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/32.0* Anonymisiert*] -Parent="Firefox 32.0" -Platform="Win32" - -[Firefox/32.0*anonymized by Abelssoft*] -Parent="Firefox 32.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/32.0*] -Parent="Firefox 32.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/32.0*] -Parent="Firefox 32.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 31.0 - -[Firefox 31.0] -Parent="DefaultProperties" -Comment="Firefox 31.0" -Browser="Firefox" -Version="31.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:31*) Gecko* Firefox/31*anonymized by *] -Parent="Firefox 31.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:31*) Gecko* Firefox/31*anonymized by *] -Parent="Firefox 31.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:31*) Gecko* Firefox/31*anonymized by *] -Parent="Firefox 31.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:31*) Gecko* Firefox/31*anonymized by *] -Parent="Firefox 31.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:31*) Gecko* Firefox anonymized by *] -Parent="Firefox 31.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:31*) Gecko* Firefox anonymized by *] -Parent="Firefox 31.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/31.0* Anonymisiert*] -Parent="Firefox 31.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/31.0* Anonymisiert*] -Parent="Firefox 31.0" -Platform="Win32" - -[Firefox/31.0*anonymized by Abelssoft*] -Parent="Firefox 31.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/31.0*] -Parent="Firefox 31.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/31.0*] -Parent="Firefox 31.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox 30.0 - -[Firefox 30.0] -Parent="DefaultProperties" -Comment="Firefox 30.0" -Browser="Firefox" -Version="30.0" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:30*) Gecko* Firefox/30*anonymized by *] -Parent="Firefox 30.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:30*) Gecko* Firefox/30*anonymized by *] -Parent="Firefox 30.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:30*) Gecko* Firefox/30*anonymized by *] -Parent="Firefox 30.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:30*) Gecko* Firefox/30*anonymized by *] -Parent="Firefox 30.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:30*) Gecko* Firefox anonymized by *] -Parent="Firefox 30.0" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:30*) Gecko* Firefox anonymized by *] -Parent="Firefox 30.0" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/30.0* Anonymisiert*] -Parent="Firefox 30.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/30.0* Anonymisiert*] -Parent="Firefox 30.0" -Platform="Win32" - -[Firefox/30.0*anonymized by Abelssoft*] -Parent="Firefox 30.0" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/30.0*] -Parent="Firefox 30.0" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko*/30.0*] -Parent="Firefox 30.0" -Platform="MacOSX" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PrivacyBrowser - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic for Android - -[Firefox Generic for Android] -Parent="DefaultProperties" -Comment="Firefox Generic" -Browser="Firefox" -Platform="Android" -isMobileDevice="true" -isTablet="true" -Device_Type="Tablet" - -[Mozilla/5.0 (*Linux*Android* Build/*) Gecko* Firefox/*] -Parent="Firefox Generic for Android" - -[Mozilla/5.0 (*Android*Mobile*) Gecko* Firefox/*] -Parent="Firefox Generic for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*) Gecko* Firefox/*] -Parent="Firefox Generic for Android" - -[Mozilla/5.0 (*Android*Mobile*)*Gecko*Firefox/*] -Parent="Firefox Generic for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Mobile*)*Gecko*Firefox/* anonymized by Abelssoft*] -Parent="Firefox Generic for Android" -isTablet="false" -Device_Type="Mobile Phone" - -[Mozilla/5.0 (*Android*Tablet*)*Gecko*Firefox/*] -Parent="Firefox Generic for Android" - -[Mozilla/5.0 (*Android*Tablet*)*Gecko*Firefox/* anonymized by Abelssoft*] -Parent="Firefox Generic for Android" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic for Maemo - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Firefox Generic - -[Firefox Generic] -Parent="DefaultProperties" -Comment="Firefox Generic" -Browser="Firefox" -Device_Type="Desktop" - -[Mozilla/5.0 (*Linux*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Linux" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="MacOSX" - -[Mozilla/4.0 (*Linux*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Linux" - -[Mozilla/4.0 (*Windows NT 10.0*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.4*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/4.0 (*Windows NT 6.3*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win8.1" - -[Mozilla/4.0 (*Windows NT 6.2*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win8" - -[Mozilla/4.0 (*Windows NT 6.1*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="Win7" - -[Mozilla/4.0 (*Windows NT 6.0*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="WinVista" - -[Mozilla/4.0 (*Mac OS X*) Gecko* Firefox/*] -Parent="Firefox Generic" -Platform="MacOSX" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:*) Gecko* Firefox/*anonymized by *] -Parent="Firefox Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:*) Gecko* Firefox/*anonymized by *] -Parent="Firefox Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:*) Gecko* Firefox/*anonymized by *] -Parent="Firefox Generic" -Platform="Win32" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:*) Gecko* Firefox anonymized by *] -Parent="Firefox Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows*; rv:*) Gecko* Firefox anonymized by *] -Parent="Firefox Generic" -Platform="Win32" - -[Mozilla/5.0 (*Windows*) Gecko* Firefox/* Anonymisiert*] -Parent="Firefox Generic" -Platform="Win32" - -[Firefox/*anonymized by Abelssoft*] -Parent="Firefox Generic" -Platform="Win32" - -[Mozilla/5.0 (masking-agent; rv:*) Gecko* Firefox/*] -Parent="Firefox Generic" - -[Mozilla/5.0 (*Windows NT 10.0*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.4*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="Win10" - -[Mozilla/5.0 (*Windows NT 6.3*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="Win8.1" - -[Mozilla/5.0 (*Windows NT 6.2*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*) Gecko*/*Mozilla/5.0*] -Parent="Firefox Generic" -Platform="WinVista" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:1.9.1*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.5" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:1.9.1*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.5" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:1.9.1*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.5" -Platform="WinVista" - -[Mozilla/5.0 (*Windows NT 6.2*; rv:1.9.2*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.6" -Platform="Win8" - -[Mozilla/5.0 (*Windows NT 6.1*; rv:1.9.2*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.6" -Platform="Win7" - -[Mozilla/5.0 (*Windows NT 6.0*; rv:1.9.2*) Gecko* Firefox *] -Parent="Firefox Generic" -Version="3.6" -Platform="WinVista" - -[*] -Parent="DefaultProperties" -Comment="Default Browser" -Browser="Default Browser" - diff --git a/app/files/browscap/browscap.ini.gz b/app/files/browscap/browscap.ini.gz new file mode 100644 index 000000000..f1422f496 Binary files /dev/null and b/app/files/browscap/browscap.ini.gz differ