diff options
Diffstat (limited to '')
-rw-r--r-- | utils/1kaCron/class.CronJobs.php | 91 | ||||
-rw-r--r-- | utils/1kaUtils/1ka_ankete_deactive_v3.php | 404 | ||||
-rw-r--r-- | utils/1kaUtils/app_settings_copy.php | 288 | ||||
-rw-r--r-- | utils/Docker/Dockerfile | 1 | ||||
-rw-r--r-- | utils/Docker/Latest/Dockerfile | 8 | ||||
-rw-r--r-- | utils/Docker/Latest/docker-compose.yml | 22 | ||||
-rw-r--r-- | utils/Docker/Latest/sql/config/mysql.cnf | 5 | ||||
-rw-r--r-- | utils/Docker/Latest/www/config/php-8.0.ini/php.ini | 3890 | ||||
-rw-r--r-- | utils/Docker/Latest/www/config/php-8.1.ini/php.ini | 1945 | ||||
-rw-r--r-- | utils/Docker/docker-compose.yml | 16 | ||||
-rw-r--r-- | utils/Docker/sql/config/mysql.cnf | 5 | ||||
-rw-r--r-- | utils/Docker/www/config/browscap.ini | 56670 | ||||
-rw-r--r-- | utils/Docker/www/config/edited-php.ini | 1947 | ||||
-rw-r--r-- | utils/SurveySyncMergeImport.php | 36 | ||||
-rw-r--r-- | utils/crontab3am.php | 79 | ||||
-rw-r--r-- | utils/phpinfo.php | 2 | ||||
-rw-r--r-- | utils/smtp_test.php | 54 | ||||
-rw-r--r-- | utils/thumb.php | 1244 |
18 files changed, 36383 insertions, 30324 deletions
diff --git a/utils/1kaCron/class.CronJobs.php b/utils/1kaCron/class.CronJobs.php index 4ae6444..8d00b5b 100644 --- a/utils/1kaCron/class.CronJobs.php +++ b/utils/1kaCron/class.CronJobs.php @@ -21,38 +21,78 @@ class CronJobs { */
public function executeAction($action = '') {
- // Izvedemo ustrezno akcijo
- if(method_exists('CronJobs', $action) && $action != '')
- $this->$action();
- else
- echo 'Method '.$action.' does not exist!';
+ // Cronjobe logiramo
+ $SL = new SurveyLog();
+
+ try{
+ $SL->addMessage(SurveyLog::INFO, "CRONJOB - ".$action);
+
+ // Izvedemo ustrezno akcijo
+ if(method_exists('CronJobs', $action) && $action != '')
+ $this->$action();
+ else
+ throw new Exception('Method '.$action.' does not exist!');
+ }
+ catch (Exception $e) {
+ $SL->addMessage(SurveyLog::INFO, "CRONJOB 3am - NAPAKA ".$action." - ".$e->getMessage());
+ }
+
+ $SL->write();
}
- // Brisanje pobrisanih anket (anekte, ki so bile pobrisane pred vec kot 1 mesecem)
- private function surveyDeleteFromDB(){
+ // Brisanje pobrisanih anket (anekte, ki so bile pobrisane pred vec kot 3 meseci - prej je bilo samo 1 mesec)
+ private function deleteSurveyFromDB(){
- // Loop po pobrisanih anketah, ki so bile nazadnje urejane vec kot 1 mesec nazaj
- $sql = sisplet_query("SELECT * FROM srv_anketa WHERE active='-1' AND edit_time < NOW() - INTERVAL 1 MONTH");
+ // Loop po pobrisanih anketah, ki so bile nazadnje urejane vec kot 3 mesec nazaj
+ $sql = sisplet_query("SELECT * FROM srv_anketa WHERE active='-1' AND edit_time < NOW() - INTERVAL 3 MONTH");
if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
- $s = new SurveyAdmin();
-
while ($row = mysqli_fetch_array($sql)) {
- $s->anketa_delete_from_db($row['id']);
+ SurveyAdmin::anketa_delete_from_db($row['id']);
}
}
+
+ // Brisanje pobrisanih vprasanj (vprasanja, ki so bila pobrisana vec kot 3 mesece nazaj)
+ private function deleteVprasanjeFromDB(){
+ // Loop po pobrisanih vprasanjih, ki so bila pobrisana vec kot 3 mesece nazaj
+ $sql = sisplet_query("SELECT * FROM srv_spremenljivka_deleted WHERE delete_time < NOW() - INTERVAL 3 MONTH");
+ if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
+
+ while ($row = mysqli_fetch_array($sql)) {
+ VprasanjeDeleted::permanentDeleteVprasanje($row['spr_id']);
+ }
+ }
- // Brisanje pobrisanih podatkov anket (podatki, ki so bili pobrisani pred vec kot 3 meseci)
- private function userDeleteFromDB(){
+ // Brisanje pobrisanih responsov anket (podatki, ki so bili pobrisani pred vec kot 3 meseci)
+ private function deleteResponseFromDB(){
$sql = sisplet_query("DELETE FROM srv_user WHERE deleted='1' AND time_edit < NOW() - INTERVAL 3 MONTH");
if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
}
-
+
+ // Brisanje neustreznih reposnov botov
+ private function deleteResponseBotFromDB(){
+
+ // Loop po nekativnih anketah, ki so bile deaktivirane vec kot 1 mesec nazaj
+ $sql = sisplet_query("SELECT id FROM srv_anketa WHERE id>0 AND active='0' AND edit_time < NOW() - INTERVAL 1 MONTH");
+ if (!$sql) echo mysqli_error($GLOBALS['connect_db']);
+
+ while ($row = mysqli_fetch_array($sql)) {
+
+ // Brisemo response botov
+ $sql2 = sisplet_query("DELETE FROM srv_user
+ WHERE ank_id='".$row['id']."'
+ AND (last_status='-1' OR last_status='3')
+ AND (useragent LIKE '%bot%' OR useragent LIKE '%crawler%' OR useragent LIKE '%spider%')
+ ");
+ if (!$sql2) echo mysqli_error($GLOBALS['connect_db']);
+ }
+ }
+
// Brisanje podatkov za "ping test" (pingdom) anketo (da ne polni baze brez potrebe)
- private function userPingdomDeleteFromDB(){
+ private function deleteResponsePingdomFromDB(){
global $mysql_database_name;
global $site_domain;
@@ -91,6 +131,23 @@ class CronJobs { }
}
}
+
+ // Brisanje emailov pri dostopu z emailom za mju (starejse od 7 dni) - instalacija gov-ankete.sis
+ private function deleteEmailAccessEmails(){
+
+ // Loop po vseh anketah, ki so bile deaktivirane 7+ dni nazaj
+ $sql = sisplet_query("SELECT a.id
+ FROM srv_activity a, srv_email_access ea
+ WHERE ea.ank_id=a.sid
+ AND a.expire < DATE_SUB(NOW(), INTERVAL 7 DAY);
+ GROUP BY a.id
+ ");
+ while($row = mysqli_fetch_array($sql)){
+
+ // Pobrisemo kode in emaile za anketo
+ SurveyEmailAccess::deleteSurveyEmailsAndCodes($row['id']);
+ }
+ }
// Kesiranje grafov
@@ -158,7 +215,6 @@ class CronJobs { };
- $SL->addMessage(SurveyLog::INFO, "Klic masovnega generiranja - start");
$SL->addMessage(SurveyLog::INFO, $sql);
if (count($ids) > 0) {
@@ -176,6 +232,7 @@ class CronJobs { }
$SL->addMessage(SurveyLog::INFO, "Klic masovnega generiranja - stop");
+ $SL->addMessage(SurveyLog::INFO, "- - - - - - - - - - - - - - - - -");
$SL->write();
ob_flush();
diff --git a/utils/1kaUtils/1ka_ankete_deactive_v3.php b/utils/1kaUtils/1ka_ankete_deactive_v3.php new file mode 100644 index 0000000..1e1eb9d --- /dev/null +++ b/utils/1kaUtils/1ka_ankete_deactive_v3.php @@ -0,0 +1,404 @@ +<?php
+/**
+ *
+ * Podatke neaktivnih anket, ki se ze nekaj casa niso spreminjale prenese iz _active tabel v arhivske tabele
+ *
+ * NOVA SKRIPTA ZA TABELE
+ *
+ * srv_data_vrednost
+ * srv_data_text
+ * srv_data_grid
+ * srv_data_textgrid
+ * srv_data_checkgrid
+ * srv_user_grupa
+ * srv_tracking
+ *
+*/
+
+include_once('../../function.php');
+
+// Time limit skripte
+set_time_limit(1800); // 30 minut
+
+
+// ID ankete za arhiviranje (opcijsko)
+$survey_id = (isset($_GET['ank_id'])) ? ' AND id = '.$_GET['ank_id'] : '';
+
+// Zacetni ID ankete kjer zacnemo arhiviranje (opcijsko)
+$start = (isset($_GET['start'])) ? ' AND id > '.$_GET['start'] : '';
+
+// Limit stevila anket, ki jih naenkrat arhiviramo
+$limit = (isset($_GET['limit'])) ? $_GET['limit'] : 200;
+
+
+// Stevilka arhivskih anket kamor kopiramo (zaenkrat _archive2)
+/*$archive_table = '0';
+$archive_table_string = '_archive1';*/
+/*$archive_table = '2';
+$archive_table_string = '_archive2';*/
+$archive_table = '3';
+$archive_table_string = '_archive3';
+
+
+// Arhiviramo specificno anketo
+if($survey_id != ''){
+ $sql = sisplet_query("SELECT * FROM srv_anketa WHERE active='0' AND id > '0' AND db_table = '1' ".$survey_id."");
+}
+// Loop čez aktivne ankete, ali mlajše od 3 mesecev (od zadnje spremembe, ali da so takrat pretekle)
+else{
+ $sql = sisplet_query("SELECT * FROM srv_anketa
+ WHERE active='0'
+ AND id > '0'
+ AND db_table = '1'
+ AND edit_time < NOW() - INTERVAL 3 MONTH
+ AND expire < NOW() - INTERVAL 3 MONTH
+ ".$survey_id."
+ ".$start."
+ LIMIT ".$limit."
+ ");
+}
+if (!$sql) { echo mysqli_error($GLOBALS['connect_db']).' 50'; die(); }
+
+
+echo 'Arhiviranje '.mysqli_num_rows($sql).' anket.<hr>';
+
+
+// Loop po anketah
+while ($row = mysqli_fetch_array($sql)) {
+
+ $s = sisplet_query("START TRANSACTION");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 60'; die(); }
+
+ echo 'Anketa '.$row['id'].'<br />';
+
+
+ // Arhiviranje tabele srv_user_grupa
+ archive_srv_user_grupa($row['id']);
+
+ // Arhiviranje tabele srv_data_vrednost
+ archive_srv_data_vrednost($row['id']);
+
+ // Arhiviranje tabele srv_data_grid
+ archive_srv_data_grid($row['id']);
+
+ // Arhiviranje tabele srv_data_text
+ archive_srv_data_text($row['id']);
+
+ // Arhiviranje tabele srv_data_textgrid
+ archive_srv_data_textgrid($row['id']);
+
+ // Arhiviranje tabele srv_data_checkgrid
+ archive_srv_data_checkgrid($row['id']);
+
+ // Arhiviranje tabele srv_tracking
+ archive_srv_tracking($row['id']);
+
+
+ // Popravimo anketo med arhivske (ni vec _active)
+ $s = sisplet_query("UPDATE srv_anketa SET db_table = '".$archive_table."' WHERE id = '$row[id]'");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 70'; die(); }
+
+
+ //$s = sisplet_query("ROLLBACK");
+ $s = sisplet_query("COMMIT");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 80'; die(); }
+
+
+ flush(); @ob_flush();
+}
+
+
+
+// ARHIVIRANJE srv_user_grupa
+function archive_srv_user_grupa($ank_id){
+ global $archive_table_string;
+
+ // Vstavimo v arhivsko tabelo (srv_user_grupa_archive2)
+ $sql1 = sisplet_query("INSERT INTO srv_user_grupa".$archive_table_string." (gru_id, usr_id, time_edit, preskocena)
+ SELECT d2.gru_id, d2.usr_id, d2.time_edit, d2.preskocena
+ FROM srv_user_grupa_active d2, srv_grupa g
+ WHERE d2.gru_id = g.id
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 90'; die(); }
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_user_grupa_active d, srv_grupa g
+ WHERE d.gru_id = g.id
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 91'; die(); }
+}
+
+
+// ARHIVIRANJE srv_data_vrednost
+function archive_srv_data_vrednost($ank_id){
+ global $archive_table_string;
+
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ // Vstavimo v arhivsko tabelo (srv_data_vrednost_archive2)
+ $sql1 = sisplet_query("INSERT INTO srv_data_vrednost".$archive_table_string." (spr_id, vre_id, usr_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.loop_id
+ FROM srv_data_vrednost_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 100'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_vrednost_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 101'; die(); }
+}
+
+
+// ARHIVIRANJE srv_data_text
+function archive_srv_data_text($ank_id){
+ global $archive_table_string;
+
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ // Vstavimo v arhivsko tabelo (srv_data_text)
+ $sql1 = sisplet_query("INSERT INTO srv_data_text".$archive_table_string." (spr_id, vre_id, text, text2, usr_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.text, d2.text2, d2.usr_id, d2.loop_id
+ FROM srv_data_text_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 110'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_text_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 111'; die(); }
+
+
+ // Se dodatno kopiranje za komentarje (kjer je spr_id=0)
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ $sql1 = sisplet_query("INSERT INTO srv_data_text".$archive_table_string." (spr_id, vre_id, text, text2, usr_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.text, d2.text2, d2.usr_id, d2.loop_id
+ FROM srv_data_text_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = '0'
+ AND d2.vre_id = s.id AND d2.vre_id > '0'
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 112'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_text_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = '0'
+ AND d.vre_id = s.id AND d.vre_id > '0'
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 113'; die(); }
+}
+
+
+// ARHIVIRANJE srv_data_grid
+function archive_srv_data_grid($ank_id){
+ global $archive_table_string;
+
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ // Vstavimo v arhivsko tabelo (srv_data_grid)
+ $sql1 = sisplet_query("INSERT INTO srv_data_grid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.loop_id
+ FROM srv_data_grid_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 210'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_grid_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 211'; die(); }
+
+
+ // Se dodatno za kombinirane tabele
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ $sql1 = sisplet_query("INSERT INTO srv_data_grid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.loop_id
+ FROM srv_data_grid_active d2, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d2.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 212'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_grid_active d, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 213'; die(); }
+}
+
+
+// ARHIVIRANJE srv_data_textgrid
+function archive_srv_data_textgrid($ank_id){
+ global $archive_table_string;
+
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ // Vstavimo v arhivsko tabelo (srv_data_textgrid)
+ $sql1 = sisplet_query("INSERT INTO srv_data_textgrid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, text, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.text, d2.loop_id
+ FROM srv_data_textgrid_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 310'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_textgrid_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 311'; die(); }
+
+
+ // Se dodatno za kombinirane tabele
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ $sql1 = sisplet_query("INSERT INTO srv_data_textgrid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, text, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.text, d2.loop_id
+ FROM srv_data_textgrid_active d2, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d2.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 312'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_textgrid_active d, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 313'; die(); }
+}
+
+
+// ARHIVIRANJE srv_data_checkgrid
+function archive_srv_data_checkgrid($ank_id){
+ global $archive_table_string;
+
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+
+ // Vstavimo v arhivsko tabelo (srv_data_checkgrid)
+ $sql1 = sisplet_query("INSERT INTO srv_data_checkgrid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.loop_id
+ FROM srv_data_checkgrid_active d2, srv_spremenljivka s, srv_grupa g
+ WHERE d2.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 410'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_checkgrid_active d, srv_spremenljivka s, srv_grupa g
+ WHERE d.spr_id = s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 411'; die(); }
+
+
+ // Se dodatno za kombinirane tabele
+ // Samo za kopiranje ugasnemo foreign key check, ker obstajajo primeri, kjer usr_id ne obstaja
+ sisplet_query("SET FOREIGN_KEY_CHECKS=0");
+ $sql1 = sisplet_query("INSERT INTO srv_data_checkgrid".$archive_table_string." (spr_id, vre_id, usr_id, grd_id, loop_id)
+ SELECT d2.spr_id, d2.vre_id, d2.usr_id, d2.grd_id, d2.loop_id
+ FROM srv_data_checkgrid_active d2, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d2.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 412'; die(); }
+
+ sisplet_query("SET FOREIGN_KEY_CHECKS=1");
+
+ // Pobrisemo iz aktivne tabele
+ $s = sisplet_query("DELETE d
+ FROM srv_data_checkgrid_active d, srv_spremenljivka s, srv_grupa g, srv_grid_multiple m
+ WHERE d.spr_id = m.spr_id AND m.parent=s.id
+ AND s.gru_id = g.id AND s.gru_id > '0'
+ AND g.ank_id = '$ank_id'
+ ");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 413'; die(); }
+}
+
+
+// ARHIVIRANJE srv_tracking
+function archive_srv_tracking($ank_id){
+ global $archive_table_string;
+
+ // Vstavimo v arhivsko tabelo (srv_tracking)
+ $sql1 = sisplet_query("INSERT INTO srv_tracking".$archive_table_string." (`ank_id`, `datetime`, `ip`, `user`, `get`, `post`, `status`, `time_seconds`)
+ SELECT d2.ank_id, d2.datetime, d2.ip, d2.user, d2.get, d2.post, d2.status, d2.time_seconds
+ FROM srv_tracking_active d2
+ WHERE d2.ank_id = '$ank_id'
+ ");
+ if (!$sql1) { echo mysqli_error($GLOBALS['connect_db']).' 510'; die(); }
+
+ // Pobrisemo iz aktivne tabele (srv_tracking_active)
+ $s = sisplet_query("DELETE FROM srv_tracking_active WHERE ank_id = '$ank_id'");
+ if (!$s) { echo mysqli_error($GLOBALS['connect_db']).' 511'; die(); }
+}
+
+
+?>
\ No newline at end of file diff --git a/utils/1kaUtils/app_settings_copy.php b/utils/1kaUtils/app_settings_copy.php new file mode 100644 index 0000000..e437ed5 --- /dev/null +++ b/utils/1kaUtils/app_settings_copy.php @@ -0,0 +1,288 @@ +<?php
+
+/**
+*
+* prenese nastavitve aplikacije iz settings_optional.php v sql bazo
+*
+*/
+
+
+ini_set('display_errors', '1');
+ini_set('display_startup_errors', '1');
+error_reporting(E_ALL);
+
+
+include_once('../../function.php');
+include_once('../../vendor/autoload.php');
+include_once($site_path.'/settings_optional.php');
+
+
+echo '<br><br>';
+echo $site_url;
+echo '<br><br>';
+echo $site_path;
+echo '<br><br>';
+
+
+if($site_domain == '')
+ die();
+
+$sql = sisplet_query("DELETE FROM app_settings WHERE domain='".$site_domain."'");
+
+
+// Debuging - 0 ali 1, ali imamo debug vključen (privzeto je izključen)
+global $debug;
+$sql = sisplet_query("INSERT INTO app_settings SET value='".$debug."', domain='".$site_domain."', what='debug'");
+
+
+// tip instalacije (lastna - 0, www - 1, aai - 2, virtualka - 3)
+global $virtual_domain;
+global $lastna_instalacija;
+global $aai_instalacija;
+
+if($virtual_domain)
+ sisplet_query("INSERT INTO app_settings SET value='3', domain='".$site_domain."', what='installation_type'");
+elseif($lastna_instalacija)
+ sisplet_query("INSERT INTO app_settings SET value='0', domain='".$site_domain."', what='installation_type'");
+elseif($aai_instalacija)
+ sisplet_query("INSERT INTO app_settings SET value='2', domain='".$site_domain."', what='installation_type'");
+else
+ sisplet_query("INSERT INTO app_settings SET value='1', domain='".$site_domain."', what='installation_type'");
+
+
+
+/* DODATNE NASTAVITVE APLIKACIJE ZA LASTNE NAMESTITVE */
+global $app_settings;
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['app_name']."', domain='".$site_domain."', what='app_settings-app_name'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['admin_email']."', domain='".$site_domain."', what='app_settings-admin_email'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['owner']."', domain='".$site_domain."', what='app_settings-owner'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['owner_website']."', domain='".$site_domain."', what='app_settings-owner_website'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['footer_custom']."', domain='".$site_domain."', what='app_settings-footer_custom'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['footer_text']."', domain='".$site_domain."', what='app_settings-footer_text'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['footer_survey_custom']."', domain='".$site_domain."', what='app_settings-footer_survey_custom'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['footer_survey_text']."', domain='".$site_domain."', what='app_settings-footer_survey_text'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['email_signature_custom']."', domain='".$site_domain."', what='app_settings-email_signature_custom'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['email_signature_text']."', domain='".$site_domain."', what='app_settings-email_signature_text'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['survey_finish_url']."', domain='".$site_domain."', what='app_settings-survey_finish_url'");
+
+//sisplet_query("INSERT INTO app_settings SET value='".$app_settings['admin_allow_only_ip']."', domain='".$site_domain."', what='app_settings-admin_allow_only_ip'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['export_type']."', domain='".$site_domain."', what='app_settings-export_type'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_settings['commercial_packages']."', domain='".$site_domain."', what='app_settings-commercial_packages'");
+
+
+/* OMEJITVE APLIKACIJE */
+global $app_limits;
+
+sisplet_query("INSERT INTO app_settings SET value='".$app_limits['clicks_per_minute_limit']."', domain='".$site_domain."', what='app_limits-clicks_per_minute_limit'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_limits['question_count_limit']."', domain='".$site_domain."', what='app_limits-question_count_limit'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_limits['response_count_limit']."', domain='".$site_domain."', what='app_limits-response_count_limit'");
+sisplet_query("INSERT INTO app_settings SET value='".$app_limits['invitation_count_limit']."', domain='".$site_domain."', what='app_limits-invitation_count_limit'");
+
+if(is_array($$app_settings['admin_allow_only_ip']))
+ $admin_allow_only_ip_string = implode(',', $app_settings['admin_allow_only_ip']);
+else
+ $admin_allow_only_ip_string = $app_settings['admin_allow_only_ip'];
+
+sisplet_query("INSERT INTO app_settings SET value='".$admin_allow_only_ip_string."', domain='".$site_domain."', what='app_limits-admin_allow_only_ip'"); // !!!!
+
+
+// Nastavitev email streznika za posiljanje mailov
+global $email_server_settings;
+global $email_server_fromSurvey;
+
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPFrom']."', domain='".$site_domain."', what='email_server_settings-SMTPFrom'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPFromNice']."', domain='".$site_domain."', what='email_server_settings-SMTPFromNice'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPReplyTo']."', domain='".$site_domain."', what='email_server_settings-SMTPReplyTo'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPHost']."', domain='".$site_domain."', what='email_server_settings-SMTPHost'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPPort']."', domain='".$site_domain."', what='email_server_settings-SMTPPort'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPSecure']."', domain='".$site_domain."', what='email_server_settings-SMTPSecure'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPAuth']."', domain='".$site_domain."', what='email_server_settings-SMTPAuth'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPUsername']."', domain='".$site_domain."', what='email_server_settings-SMTPUsername'");
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['SMTPPassword']."', domain='".$site_domain."', what='email_server_settings-SMTPPassword'");
+
+sisplet_query("INSERT INTO app_settings SET value='".$email_server_fromSurvey."', domain='".$site_domain."', what='email_server_fromSurvey'");
+
+if(isset($email_server_settings['secondary_mail'])){
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPFrom']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPFrom'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPFromNice']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPFromNice'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPReplyTo']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPReplyTo'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPHost']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPHost'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPPort']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPPort'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPSecure']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPSecure'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPAuth']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPAuth'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPUsername']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPUsername'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['secondary_mail']['SMTPPassword']."', domain='".$site_domain."', what='email_server_settings-secondary_mail-SMTPPassword'");
+}
+
+if(isset($email_server_settings['payments_mail'])){
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPFrom']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPFrom'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPFromNice']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPFromNice'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPReplyTo']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPReplyTo'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPHost']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPHost'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPPort']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPPort'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPSecure']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPSecure'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPAuth']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPAuth'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPUsername']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPUsername'");
+ sisplet_query("INSERT INTO app_settings SET value='".$email_server_settings['payments_mail']['SMTPPassword']."', domain='".$site_domain."', what='email_server_settings-payments_mail-SMTPPassword'");
+}
+
+
+/* DODATNE NASTAVITVE APLIKACIJE ZA ADMINISTRATORJE */
+global $confirm_registration;
+global $confirm_registration_admin;
+global $gdpr_admin_email;
+
+if(is_array($confirm_registration_admin))
+ $confirm_registration_admin_string = implode(',', $confirm_registration_admin);
+else
+ $confirm_registration_admin_string = $confirm_registration_admin;
+
+sisplet_query("INSERT INTO app_settings SET value='".$confirm_registration."', domain='".$site_domain."', what='confirm_registration'");
+sisplet_query("INSERT INTO app_settings SET value='".$confirm_registration_admin_string."', domain='".$site_domain."', what='confirm_registration_admin'");
+sisplet_query("INSERT INTO app_settings SET value='".$gdpr_admin_email."', domain='".$site_domain."', what='gdpr_admin_email'");
+
+
+/* METAADMINI - opcijsko */
+/*
+// WWW - vvasja@gmail.com - 100, peter.h1203@gmail.com - 12611, 1ka.techsupport - 72253
+$meta_admin_ids = array('100', '12611', '72253');
+
+// VIRTUALKE - vvasja@gmail.com - 100, peter.h1203@gmail.com - 12611, 1ka.techsupport - 49089
+$meta_admin_ids = array('100', '12611', '49089');
+
+// AAI - Manca Jeras - 13147, Klavdija Mezek - 1417
+$meta_admin_ids = array('1417', '13147');
+
+// LOCALHOST
+$meta_admin_ids = array('1046');
+*/
+global $meta_admin_ids;
+
+if(is_array($meta_admin_ids))
+ $meta_admin_ids_string = implode(',', $meta_admin_ids);
+else
+ $meta_admin_ids_string = $meta_admin_ids;
+
+sisplet_query("INSERT INTO app_settings SET value='".$meta_admin_ids_string."', domain='".$site_domain."', what='meta_admin_ids'");
+
+
+/* DODATNE FUNKCIONALNOSTI APLIKACIJE - GOOGLE */
+global $recaptcha_sitekey;
+global $secret_captcha;
+global $google_login_client_id;
+global $google_login_client_secret;
+global $google_maps_API_key;
+
+if($recaptcha_sitekey != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$recaptcha_sitekey."', domain='".$site_domain."', what='google-recaptcha_sitekey'");
+if($secret_captcha != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$secret_captcha."', domain='".$site_domain."', what='google-secret_captcha'");
+if($google_login_client_id != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$google_login_client_id."', domain='".$site_domain."', what='google-login_client_id'");
+if($google_login_client_secret != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$google_login_client_secret."', domain='".$site_domain."', what='google-login_client_secret'");
+if($google_maps_API_key != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$google_maps_API_key."', domain='".$site_domain."', what='google-maps_API_key'");
+
+
+/* DODATNE FUNKCIONALNOSTI APLIKACIJE - FB */
+global $facebook_appid;
+global $facebook_appsecret;
+
+if($facebook_appid != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$facebook_appid."', domain='".$site_domain."', what='facebook-appid'");
+if($facebook_appid != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$facebook_appsecret."', domain='".$site_domain."', what='facebook-appsecret'");
+
+
+/**
+ * Potrebno za delovanje modula "maza"
+ * Firebase Cloud Messaging server key is needed to work with module "Mobile aplication for respondents"
+ * NextPinMainToken and password is needed to work with NextPin API
+ */
+global $FCM_server_key;
+global $APP_special_login_key;
+global $NextPinMainToken;
+global $NextPinMainPassword;
+
+if($FCM_server_key != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$FCM_server_key."', domain='".$site_domain."', what='maza-FCM_server_key'");
+if($APP_special_login_key != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$APP_special_login_key."', domain='".$site_domain."', what='maza-APP_special_login_key'");
+if($NextPinMainToken != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$NextPinMainToken."', domain='".$site_domain."', what='maza-NextPinMainToken'");
+if($NextPinMainPassword != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$NextPinMainPassword."', domain='".$site_domain."', what='maza-NextPinMainPassword'");
+
+/**
+ * Nastavitve hierarhije
+ */
+global $hierarhija_folder_id;
+global $hierarhija_default_id;
+
+if($hierarhija_folder_id != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$hierarhija_folder_id."', domain='".$site_domain."', what='hierarhija-folder_id'");
+if($hierarhija_default_id != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$hierarhija_default_id."', domain='".$site_domain."', what='hierarhija-default_id'");
+
+
+/**
+ * Squalo API za vabila
+*/
+global $squalo_user;
+global $squalo_key;
+
+if($squalo_user != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$squalo_user."', domain='".$site_domain."', what='squalo-user'");
+if($squalo_key != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$squalo_key."', domain='".$site_domain."', what='squalo-key'");
+
+
+/* PLACEVANJE */
+/**
+ * Izdajanje racunov preko cebelice
+ */
+global $cebelica_api;
+
+if($cebelica_api != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$cebelica_api."', domain='".$site_domain."', what='cebelica_api'");
+
+
+/**
+ * Stripe za placevanje s kreditno kartico
+ */
+global $stripe_key;
+global $stripe_secret;
+
+if($stripe_key != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$stripe_key."', domain='".$site_domain."', what='stripe-key'");
+if($stripe_secret != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$stripe_secret."', domain='".$site_domain."', what='stripe-secret'");
+
+
+/**
+ * Placevanje s paypalom
+ */
+global $paypal_account;
+global $paypal_client_id;
+global $paypal_secret;
+
+if($paypal_account != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$paypal_account."', domain='".$site_domain."', what='paypal-account'");
+if($paypal_client_id != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$paypal_client_id."', domain='".$site_domain."', what='paypal-client_id'");
+if($paypal_secret != '')
+ sisplet_query("INSERT INTO app_settings SET value='".$paypal_secret."', domain='".$site_domain."', what='paypal-secret'");
+
+
+
+echo 'settings_optional.php spremenljivke uspešno prenešene v bazo';
+
+
+?>
\ No newline at end of file diff --git a/utils/Docker/Dockerfile b/utils/Docker/Dockerfile index 65b2f53..a0576c2 100644 --- a/utils/Docker/Dockerfile +++ b/utils/Docker/Dockerfile @@ -28,6 +28,7 @@ RUN /usr/local/bin/docker-php-ext-install \ bcmath \
soap \
gd \
+ opcache \
zip
# Enable rewrite module
diff --git a/utils/Docker/Latest/Dockerfile b/utils/Docker/Latest/Dockerfile index 8072b4a..869ff3f 100644 --- a/utils/Docker/Latest/Dockerfile +++ b/utils/Docker/Latest/Dockerfile @@ -1,4 +1,4 @@ -FROM php:7.4-apache-buster
+FROM php:8.1-apache
# Apache packages
RUN apt-get update -y \
@@ -10,10 +10,11 @@ RUN apt-get update -y \ libpng-dev \
libxml2-dev \
zlib1g-dev \
- #texlive-full \
- #latex2rtf \
+ texlive-full \
+ latex2rtf \
libzip-dev \
zip \
+ nano \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
@@ -28,6 +29,7 @@ RUN /usr/local/bin/docker-php-ext-install \ bcmath \
soap \
gd \
+ opcache \
zip
# Enable rewrite module
diff --git a/utils/Docker/Latest/docker-compose.yml b/utils/Docker/Latest/docker-compose.yml index 986104a..2d5cf88 100644 --- a/utils/Docker/Latest/docker-compose.yml +++ b/utils/Docker/Latest/docker-compose.yml @@ -14,22 +14,25 @@ services: - "80:80"
volumes:
- ../../../:/var/www/html/
- - ./www/config/php-7.4.ini:/usr/local/etc/php/php.ini
- - ./www/config/php-local.ini:/usr/local/etc/php/conf.d/local.ini
- - ./www/config/1ka.test:/etc/apache2/sites-available/1ka.test
+ - ./www/config/php-8.1.ini/php.ini:/usr/local/etc/php/php.ini
+ ##- ./www/config/php-local.ini:/usr/local/etc/php/conf.d/local.ini
+ ##- ./www/config/1ka.test:/etc/apache2/sites-available/1ka.test
- ./www/log/:/var/log/apache2/
networks:
- default
+ environment:
+ - REALPATH_CACHE_SIZE=32M
mysql:
container_name: mysql_1ka_latest
- image: mysql:5.7
+ image: mariadb:10.3
+ ##image: mysql:5.6.40
ports:
- - "6032:3306"
+ - "3306:3306"
volumes:
- ./sql/database:/var/lib/mysql
- ./sql/log:/var/log/mysql
- - ./sql/config:/etc/mysql
+ - ./sql/config:/etc/mysql/conf.d
networks:
- default
environment:
@@ -37,6 +40,9 @@ services: - MYSQL_ROOT_PASSWORD=1234
- MYSQL_PASSWORD=1234
- MYSQL_DATABASE=1ka
+ - MYSQL_ALLOW_EMPTY_PASSWORD=true
+ - REALPATH_CACHE_SIZE=32M
+ command: mysqld --sql_mode="" --innodb-flush-method=fsync
phpmyadmin:
container_name: phpmyadmin_1ka_latest
@@ -48,6 +54,10 @@ services: environment:
- PMA_HOST=mysql
- PMA_PORT=3306
+ - UPLOAD_LIMIT=300M
+ - MAX_EXECUTION_TIME=1200
+ - MEMORY_LIMIT=1024M
+ - REALPATH_CACHE_SIZE=32M
networks:
- default
diff --git a/utils/Docker/Latest/sql/config/mysql.cnf b/utils/Docker/Latest/sql/config/mysql.cnf new file mode 100644 index 0000000..3dba4d3 --- /dev/null +++ b/utils/Docker/Latest/sql/config/mysql.cnf @@ -0,0 +1,5 @@ +[mysqld]
+log-error = /var/log/mysql/error.log
+
+# V kolikor imamo težave pri ustvarjanju nove ankete, lahko tudi mysqlu poženemo SET GLOBAL sql_mode = "";
+sql_mode = ""
\ No newline at end of file diff --git a/utils/Docker/Latest/www/config/php-8.0.ini/php.ini b/utils/Docker/Latest/www/config/php-8.0.ini/php.ini index 472a87e..cdcfb13 100644 --- a/utils/Docker/Latest/www/config/php-8.0.ini/php.ini +++ b/utils/Docker/Latest/www/config/php-8.0.ini/php.ini @@ -1,1945 +1,1945 @@ -[PHP] - -;;;;;;;;;;;;;;;;;;; -; About php.ini ; -;;;;;;;;;;;;;;;;;;; -; PHP's initialization file, generally called php.ini, is responsible for -; configuring many of the aspects of PHP's behavior. - -; PHP attempts to find and load this configuration from a number of locations. -; The following is a summary of its search order: -; 1. SAPI module specific location. -; 2. The PHPRC environment variable. (As of PHP 5.2.0) -; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0) -; 4. Current working directory (except CLI) -; 5. The web server's directory (for SAPI modules), or directory of PHP -; (otherwise in Windows) -; 6. The directory from the --with-config-file-path compile time option, or the -; Windows directory (usually C:\windows) -; See the PHP docs for more specific information. -; http://php.net/configuration.file - -; The syntax of the file is extremely simple. Whitespace and lines -; beginning with a semicolon are silently ignored (as you probably guessed). -; Section headers (e.g. [Foo]) are also silently ignored, even though -; they might mean something in the future. - -; Directives following the section heading [PATH=/www/mysite] only -; apply to PHP files in the /www/mysite directory. Directives -; following the section heading [HOST=www.example.com] only apply to -; PHP files served from www.example.com. Directives set in these -; special sections cannot be overridden by user-defined INI files or -; at runtime. Currently, [PATH=] and [HOST=] sections only work under -; CGI/FastCGI. -; http://php.net/ini.sections - -; Directives are specified using the following syntax: -; directive = value -; Directive names are *case sensitive* - foo=bar is different from FOO=bar. -; Directives are variables used to configure PHP or PHP extensions. -; There is no name validation. If PHP can't find an expected -; directive because it is not set or is mistyped, a default value will be used. - -; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one -; of the INI constants (On, Off, True, False, Yes, No and None) or an expression -; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a -; previously set variable or directive (e.g. ${foo}) - -; Expressions in the INI file are limited to bitwise operators and parentheses: -; | bitwise OR -; ^ bitwise XOR -; & bitwise AND -; ~ bitwise NOT -; ! boolean NOT - -; Boolean flags can be turned on using the values 1, On, True or Yes. -; They can be turned off using the values 0, Off, False or No. - -; An empty string can be denoted by simply not writing anything after the equal -; sign, or by using the None keyword: - -; foo = ; sets foo to an empty string -; foo = None ; sets foo to an empty string -; foo = "None" ; sets foo to the string 'None' - -; If you use constants in your value, and these constants belong to a -; dynamically loaded extension (either a PHP extension or a Zend extension), -; you may only use these constants *after* the line that loads the extension. - -;;;;;;;;;;;;;;;;;;; -; About this file ; -;;;;;;;;;;;;;;;;;;; -; PHP comes packaged with two INI files. One that is recommended to be used -; in production environments and one that is recommended to be used in -; development environments. - -; php.ini-production contains settings which hold security, performance and -; best practices at its core. But please be aware, these settings may break -; compatibility with older or less security conscience applications. We -; recommending using the production ini in production and testing environments. - -; php.ini-development is very similar to its production variant, except it is -; much more verbose when it comes to errors. We recommend using the -; development version only in development environments, as errors shown to -; application users can inadvertently leak otherwise secure information. - -; This is the php.ini-production INI file. - -;;;;;;;;;;;;;;;;;;; -; Quick Reference ; -;;;;;;;;;;;;;;;;;;; - -; The following are all the settings which are different in either the production -; or development versions of the INIs with respect to PHP's default behavior. -; Please see the actual settings later in the document for more details as to why -; we recommend these changes in PHP's behavior. - -; display_errors -; Default Value: On -; Development Value: On -; Production Value: Off - -; display_startup_errors -; Default Value: On -; Development Value: On -; Production Value: Off - -; error_reporting -; Default Value: E_ALL -; Development Value: E_ALL -; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT - -; log_errors -; Default Value: Off -; Development Value: On -; Production Value: On - -; max_input_time -; Default Value: -1 (Unlimited) -; Development Value: 60 (60 seconds) -; Production Value: 60 (60 seconds) - -; output_buffering -; Default Value: Off -; Development Value: 4096 -; Production Value: 4096 - -; register_argc_argv -; Default Value: On -; Development Value: Off -; Production Value: Off - -; request_order -; Default Value: None -; Development Value: "GP" -; Production Value: "GP" - -; session.gc_divisor -; Default Value: 100 -; Development Value: 1000 -; Production Value: 1000 - -; session.sid_bits_per_character -; Default Value: 4 -; Development Value: 5 -; Production Value: 5 - -; short_open_tag -; Default Value: On -; Development Value: Off -; Production Value: Off - -; variables_order -; Default Value: "EGPCS" -; Development Value: "GPCS" -; Production Value: "GPCS" - -; zend.exception_ignore_args -; Default Value: Off -; Development Value: Off -; Production Value: On - -; zend.exception_string_param_max_len -; Default Value: 15 -; Development Value: 15 -; Production Value: 0 - -;;;;;;;;;;;;;;;;;;;; -; php.ini Options ; -;;;;;;;;;;;;;;;;;;;; -; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini" -;user_ini.filename = ".user.ini" - -; To disable this feature set this option to an empty value -;user_ini.filename = - -; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes) -;user_ini.cache_ttl = 300 - -;;;;;;;;;;;;;;;;;;;; -; Language Options ; -;;;;;;;;;;;;;;;;;;;; - -; Enable the PHP scripting language engine under Apache. -; http://php.net/engine -engine = On - -; This directive determines whether or not PHP will recognize code between -; <? and ?> tags as PHP source which should be processed as such. It is -; generally recommended that <?php and ?> should be used and that this feature -; should be disabled, as enabling it may result in issues when generating XML -; documents, however this remains supported for backward compatibility reasons. -; Note that this directive does not control the <?= shorthand tag, which can be -; used regardless of this directive. -; Default Value: On -; Development Value: Off -; Production Value: Off -; http://php.net/short-open-tag -short_open_tag = Off - -; The number of significant digits displayed in floating point numbers. -; http://php.net/precision -precision = 14 - -; Output buffering is a mechanism for controlling how much output data -; (excluding headers and cookies) PHP should keep internally before pushing that -; data to the client. If your application's output exceeds this setting, PHP -; will send that data in chunks of roughly the size you specify. -; Turning on this setting and managing its maximum buffer size can yield some -; interesting side-effects depending on your application and web server. -; You may be able to send headers and cookies after you've already sent output -; through print or echo. You also may see performance benefits if your server is -; emitting less packets due to buffered output versus PHP streaming the output -; as it gets it. On production servers, 4096 bytes is a good setting for performance -; reasons. -; Note: Output buffering can also be controlled via Output Buffering Control -; functions. -; Possible Values: -; On = Enabled and buffer is unlimited. (Use with caution) -; Off = Disabled -; Integer = Enables the buffer and sets its maximum size in bytes. -; Note: This directive is hardcoded to Off for the CLI SAPI -; Default Value: Off -; Development Value: 4096 -; Production Value: 4096 -; http://php.net/output-buffering -output_buffering = 4096 - -; You can redirect all of the output of your scripts to a function. For -; example, if you set output_handler to "mb_output_handler", character -; encoding will be transparently converted to the specified encoding. -; Setting any output handler automatically turns on output buffering. -; Note: People who wrote portable scripts should not depend on this ini -; directive. Instead, explicitly set the output handler using ob_start(). -; Using this ini directive may cause problems unless you know what script -; is doing. -; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" -; and you cannot use both "ob_gzhandler" and "zlib.output_compression". -; Note: output_handler must be empty if this is set 'On' !!!! -; Instead you must use zlib.output_handler. -; http://php.net/output-handler -;output_handler = - -; URL rewriter function rewrites URL on the fly by using -; output buffer. You can set target tags by this configuration. -; "form" tag is special tag. It will add hidden input tag to pass values. -; Refer to session.trans_sid_tags for usage. -; Default Value: "form=" -; Development Value: "form=" -; Production Value: "form=" -;url_rewriter.tags - -; URL rewriter will not rewrite absolute URL nor form by default. To enable -; absolute URL rewrite, allowed hosts must be defined at RUNTIME. -; Refer to session.trans_sid_hosts for more details. -; Default Value: "" -; Development Value: "" -; Production Value: "" -;url_rewriter.hosts - -; Transparent output compression using the zlib library -; Valid values for this option are 'off', 'on', or a specific buffer size -; to be used for compression (default is 4KB) -; Note: Resulting chunk size may vary due to nature of compression. PHP -; outputs chunks that are few hundreds bytes each as a result of -; compression. If you prefer a larger chunk size for better -; performance, enable output_buffering in addition. -; Note: You need to use zlib.output_handler instead of the standard -; output_handler, or otherwise the output will be corrupted. -; http://php.net/zlib.output-compression -zlib.output_compression = Off - -; http://php.net/zlib.output-compression-level -;zlib.output_compression_level = -1 - -; You cannot specify additional output handlers if zlib.output_compression -; is activated here. This setting does the same as output_handler but in -; a different order. -; http://php.net/zlib.output-handler -;zlib.output_handler = - -; Implicit flush tells PHP to tell the output layer to flush itself -; automatically after every output block. This is equivalent to calling the -; PHP function flush() after each and every call to print() or echo() and each -; and every HTML block. Turning this option on has serious performance -; implications and is generally recommended for debugging purposes only. -; http://php.net/implicit-flush -; Note: This directive is hardcoded to On for the CLI SAPI -implicit_flush = Off - -; The unserialize callback function will be called (with the undefined class' -; name as parameter), if the unserializer finds an undefined class -; which should be instantiated. A warning appears if the specified function is -; not defined, or if the function doesn't include/implement the missing class. -; So only set this entry, if you really want to implement such a -; callback-function. -unserialize_callback_func = - -; The unserialize_max_depth specifies the default depth limit for unserialized -; structures. Setting the depth limit too high may result in stack overflows -; during unserialization. The unserialize_max_depth ini setting can be -; overridden by the max_depth option on individual unserialize() calls. -; A value of 0 disables the depth limit. -;unserialize_max_depth = 4096 - -; When floats & doubles are serialized, store serialize_precision significant -; digits after the floating point. The default value ensures that when floats -; are decoded with unserialize, the data will remain the same. -; The value is also used for json_encode when encoding double values. -; If -1 is used, then dtoa mode 0 is used which automatically select the best -; precision. -serialize_precision = -1 - -; open_basedir, if set, limits all file operations to the defined directory -; and below. This directive makes most sense if used in a per-directory -; or per-virtualhost web server configuration file. -; Note: disables the realpath cache -; http://php.net/open-basedir -;open_basedir = - -; This directive allows you to disable certain functions. -; It receives a comma-delimited list of function names. -; http://php.net/disable-functions -disable_functions = - -; This directive allows you to disable certain classes. -; It receives a comma-delimited list of class names. -; http://php.net/disable-classes -disable_classes = - -; Colors for Syntax Highlighting mode. Anything that's acceptable in -; <span style="color: ???????"> would work. -; http://php.net/syntax-highlighting -;highlight.string = #DD0000 -;highlight.comment = #FF9900 -;highlight.keyword = #007700 -;highlight.default = #0000BB -;highlight.html = #000000 - -; If enabled, the request will be allowed to complete even if the user aborts -; the request. Consider enabling it if executing long requests, which may end up -; being interrupted by the user or a browser timing out. PHP's default behavior -; is to disable this feature. -; http://php.net/ignore-user-abort -;ignore_user_abort = On - -; Determines the size of the realpath cache to be used by PHP. This value should -; be increased on systems where PHP opens many files to reflect the quantity of -; the file operations performed. -; Note: if open_basedir is set, the cache is disabled -; http://php.net/realpath-cache-size -;realpath_cache_size = 4096k - -; Duration of time, in seconds for which to cache realpath information for a given -; file or directory. For systems with rarely changing files, consider increasing this -; value. -; http://php.net/realpath-cache-ttl -;realpath_cache_ttl = 120 - -; Enables or disables the circular reference collector. -; http://php.net/zend.enable-gc -zend.enable_gc = On - -; If enabled, scripts may be written in encodings that are incompatible with -; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such -; encodings. To use this feature, mbstring extension must be enabled. -;zend.multibyte = Off - -; Allows to set the default encoding for the scripts. This value will be used -; unless "declare(encoding=...)" directive appears at the top of the script. -; Only affects if zend.multibyte is set. -;zend.script_encoding = - -; Allows to include or exclude arguments from stack traces generated for exceptions. -; In production, it is recommended to turn this setting on to prohibit the output -; of sensitive information in stack traces -; Default Value: Off -; Development Value: Off -; Production Value: On -zend.exception_ignore_args = On - -; Allows setting the maximum string length in an argument of a stringified stack trace -; to a value between 0 and 1000000. -; This has no effect when zend.exception_ignore_args is enabled. -; Default Value: 15 -; Development Value: 15 -; Production Value: 0 -; In production, it is recommended to set this to 0 to reduce the output -; of sensitive information in stack traces. -zend.exception_string_param_max_len = 0 - -;;;;;;;;;;;;;;;;; -; Miscellaneous ; -;;;;;;;;;;;;;;;;; - -; Decides whether PHP may expose the fact that it is installed on the server -; (e.g. by adding its signature to the Web server header). It is no security -; threat in any way, but it makes it possible to determine whether you use PHP -; on your server or not. -; http://php.net/expose-php -expose_php = On - -;;;;;;;;;;;;;;;;;;; -; Resource Limits ; -;;;;;;;;;;;;;;;;;;; - -; Maximum execution time of each script, in seconds -; http://php.net/max-execution-time -; Note: This directive is hardcoded to 0 for the CLI SAPI -max_execution_time = 30 - -; Maximum amount of time each script may spend parsing request data. It's a good -; idea to limit this time on productions servers in order to eliminate unexpectedly -; long running scripts. -; Note: This directive is hardcoded to -1 for the CLI SAPI -; Default Value: -1 (Unlimited) -; Development Value: 60 (60 seconds) -; Production Value: 60 (60 seconds) -; http://php.net/max-input-time -max_input_time = 60 - -; Maximum input variable nesting level -; http://php.net/max-input-nesting-level -;max_input_nesting_level = 64 - -; How many GET/POST/COOKIE input variables may be accepted -;max_input_vars = 1000 - -; Maximum amount of memory a script may consume -; http://php.net/memory-limit -memory_limit = 128M - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Error handling and logging ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -; This directive informs PHP of which errors, warnings and notices you would like -; it to take action for. The recommended way of setting values for this -; directive is through the use of the error level constants and bitwise -; operators. The error level constants are below here for convenience as well as -; some common settings and their meanings. -; By default, PHP is set to take action on all errors, notices and warnings EXCEPT -; those related to E_NOTICE and E_STRICT, which together cover best practices and -; recommended coding standards in PHP. For performance reasons, this is the -; recommend error reporting setting. Your production server shouldn't be wasting -; resources complaining about best practices and coding standards. That's what -; development servers and development settings are for. -; Note: The php.ini-development file has this setting as E_ALL. This -; means it pretty much reports everything which is exactly what you want during -; development and early testing. -; -; Error Level Constants: -; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0) -; E_ERROR - fatal run-time errors -; E_RECOVERABLE_ERROR - almost fatal run-time errors -; E_WARNING - run-time warnings (non-fatal errors) -; E_PARSE - compile-time parse errors -; E_NOTICE - run-time notices (these are warnings which often result -; from a bug in your code, but it's possible that it was -; intentional (e.g., using an uninitialized variable and -; relying on the fact it is automatically initialized to an -; empty string) -; E_STRICT - run-time notices, enable to have PHP suggest changes -; to your code which will ensure the best interoperability -; and forward compatibility of your code -; E_CORE_ERROR - fatal errors that occur during PHP's initial startup -; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's -; initial startup -; E_COMPILE_ERROR - fatal compile-time errors -; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) -; E_USER_ERROR - user-generated error message -; E_USER_WARNING - user-generated warning message -; E_USER_NOTICE - user-generated notice message -; E_DEPRECATED - warn about code that will not work in future versions -; of PHP -; E_USER_DEPRECATED - user-generated deprecation warnings -; -; Common Values: -; E_ALL (Show all errors, warnings and notices including coding standards.) -; E_ALL & ~E_NOTICE (Show all errors, except for notices) -; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.) -; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors) -; Default Value: E_ALL -; Development Value: E_ALL -; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT -; http://php.net/error-reporting -error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT - -; This directive controls whether or not and where PHP will output errors, -; notices and warnings too. Error output is very useful during development, but -; it could be very dangerous in production environments. Depending on the code -; which is triggering the error, sensitive information could potentially leak -; out of your application such as database usernames and passwords or worse. -; For production environments, we recommend logging errors rather than -; sending them to STDOUT. -; Possible Values: -; Off = Do not display any errors -; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) -; On or stdout = Display errors to STDOUT -; Default Value: On -; Development Value: On -; Production Value: Off -; http://php.net/display-errors -display_errors = Off - -; The display of errors which occur during PHP's startup sequence are handled -; separately from display_errors. We strongly recommend you set this to 'off' -; for production servers to avoid leaking configuration details. -; Default Value: On -; Development Value: On -; Production Value: Off -; http://php.net/display-startup-errors -display_startup_errors = Off - -; Besides displaying errors, PHP can also log errors to locations such as a -; server-specific log, STDERR, or a location specified by the error_log -; directive found below. While errors should not be displayed on productions -; servers they should still be monitored and logging is a great way to do that. -; Default Value: Off -; Development Value: On -; Production Value: On -; http://php.net/log-errors -log_errors = On - -; Set maximum length of log_errors. In error_log information about the source is -; added. The default is 1024 and 0 allows to not apply any maximum length at all. -; http://php.net/log-errors-max-len -log_errors_max_len = 1024 - -; Do not log repeated messages. Repeated errors must occur in same file on same -; line unless ignore_repeated_source is set true. -; http://php.net/ignore-repeated-errors -ignore_repeated_errors = Off - -; Ignore source of message when ignoring repeated messages. When this setting -; is On you will not log errors with repeated messages from different files or -; source lines. -; http://php.net/ignore-repeated-source -ignore_repeated_source = Off - -; If this parameter is set to Off, then memory leaks will not be shown (on -; stdout or in the log). This is only effective in a debug compile, and if -; error reporting includes E_WARNING in the allowed list -; http://php.net/report-memleaks -report_memleaks = On - -; This setting is off by default. -;report_zend_debug = 0 - -; Turn off normal error reporting and emit XML-RPC error XML -; http://php.net/xmlrpc-errors -;xmlrpc_errors = 0 - -; An XML-RPC faultCode -;xmlrpc_error_number = 0 - -; When PHP displays or logs an error, it has the capability of formatting the -; error message as HTML for easier reading. This directive controls whether -; the error message is formatted as HTML or not. -; Note: This directive is hardcoded to Off for the CLI SAPI -; http://php.net/html-errors -;html_errors = On - -; If html_errors is set to On *and* docref_root is not empty, then PHP -; produces clickable error messages that direct to a page describing the error -; or function causing the error in detail. -; You can download a copy of the PHP manual from http://php.net/docs -; and change docref_root to the base URL of your local copy including the -; leading '/'. You must also specify the file extension being used including -; the dot. PHP's default behavior is to leave these settings empty, in which -; case no links to documentation are generated. -; Note: Never use this feature for production boxes. -; http://php.net/docref-root -; Examples -;docref_root = "/phpmanual/" - -; http://php.net/docref-ext -;docref_ext = .html - -; String to output before an error message. PHP's default behavior is to leave -; this setting blank. -; http://php.net/error-prepend-string -; Example: -;error_prepend_string = "<span style='color: #ff0000'>" - -; String to output after an error message. PHP's default behavior is to leave -; this setting blank. -; http://php.net/error-append-string -; Example: -;error_append_string = "</span>" - -; Log errors to specified file. PHP's default behavior is to leave this value -; empty. -; http://php.net/error-log -; Example: -;error_log = php_errors.log -; Log errors to syslog (Event Log on Windows). -;error_log = syslog - -; The syslog ident is a string which is prepended to every message logged -; to syslog. Only used when error_log is set to syslog. -;syslog.ident = php - -; The syslog facility is used to specify what type of program is logging -; the message. Only used when error_log is set to syslog. -;syslog.facility = user - -; Set this to disable filtering control characters (the default). -; Some loggers only accept NVT-ASCII, others accept anything that's not -; control characters. If your logger accepts everything, then no filtering -; is needed at all. -; Allowed values are: -; ascii (all printable ASCII characters and NL) -; no-ctrl (all characters except control characters) -; all (all characters) -; raw (like "all", but messages are not split at newlines) -; http://php.net/syslog.filter -;syslog.filter = ascii - -;windows.show_crt_warning -; Default value: 0 -; Development value: 0 -; Production value: 0 - -;;;;;;;;;;;;;;;;; -; Data Handling ; -;;;;;;;;;;;;;;;;; - -; The separator used in PHP generated URLs to separate arguments. -; PHP's default setting is "&". -; http://php.net/arg-separator.output -; Example: -;arg_separator.output = "&" - -; List of separator(s) used by PHP to parse input URLs into variables. -; PHP's default setting is "&". -; NOTE: Every character in this directive is considered as separator! -; http://php.net/arg-separator.input -; Example: -;arg_separator.input = ";&" - -; This directive determines which super global arrays are registered when PHP -; starts up. G,P,C,E & S are abbreviations for the following respective super -; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty -; paid for the registration of these arrays and because ENV is not as commonly -; used as the others, ENV is not recommended on productions servers. You -; can still get access to the environment variables through getenv() should you -; need to. -; Default Value: "EGPCS" -; Development Value: "GPCS" -; Production Value: "GPCS"; -; http://php.net/variables-order -variables_order = "GPCS" - -; This directive determines which super global data (G,P & C) should be -; registered into the super global array REQUEST. If so, it also determines -; the order in which that data is registered. The values for this directive -; are specified in the same manner as the variables_order directive, -; EXCEPT one. Leaving this value empty will cause PHP to use the value set -; in the variables_order directive. It does not mean it will leave the super -; globals array REQUEST empty. -; Default Value: None -; Development Value: "GP" -; Production Value: "GP" -; http://php.net/request-order -request_order = "GP" - -; This directive determines whether PHP registers $argv & $argc each time it -; runs. $argv contains an array of all the arguments passed to PHP when a script -; is invoked. $argc contains an integer representing the number of arguments -; that were passed when the script was invoked. These arrays are extremely -; useful when running scripts from the command line. When this directive is -; enabled, registering these variables consumes CPU cycles and memory each time -; a script is executed. For performance reasons, this feature should be disabled -; on production servers. -; Note: This directive is hardcoded to On for the CLI SAPI -; Default Value: On -; Development Value: Off -; Production Value: Off -; http://php.net/register-argc-argv -register_argc_argv = Off - -; When enabled, the ENV, REQUEST and SERVER variables are created when they're -; first used (Just In Time) instead of when the script starts. If these -; variables are not used within a script, having this directive on will result -; in a performance gain. The PHP directive register_argc_argv must be disabled -; for this directive to have any effect. -; http://php.net/auto-globals-jit -auto_globals_jit = On - -; Whether PHP will read the POST data. -; This option is enabled by default. -; Most likely, you won't want to disable this option globally. It causes $_POST -; and $_FILES to always be empty; the only way you will be able to read the -; POST data will be through the php://input stream wrapper. This can be useful -; to proxy requests or to process the POST data in a memory efficient fashion. -; http://php.net/enable-post-data-reading -;enable_post_data_reading = Off - -; Maximum size of POST data that PHP will accept. -; Its value may be 0 to disable the limit. It is ignored if POST data reading -; is disabled through enable_post_data_reading. -; http://php.net/post-max-size -post_max_size = 8M - -; Automatically add files before PHP document. -; http://php.net/auto-prepend-file -auto_prepend_file = - -; Automatically add files after PHP document. -; http://php.net/auto-append-file -auto_append_file = - -; By default, PHP will output a media type using the Content-Type header. To -; disable this, simply set it to be empty. -; -; PHP's built-in default media type is set to text/html. -; http://php.net/default-mimetype -default_mimetype = "text/html" - -; PHP's default character set is set to UTF-8. -; http://php.net/default-charset -default_charset = "UTF-8" - -; PHP internal character encoding is set to empty. -; If empty, default_charset is used. -; http://php.net/internal-encoding -;internal_encoding = - -; PHP input character encoding is set to empty. -; If empty, default_charset is used. -; http://php.net/input-encoding -;input_encoding = - -; PHP output character encoding is set to empty. -; If empty, default_charset is used. -; See also output_buffer. -; http://php.net/output-encoding -;output_encoding = - -;;;;;;;;;;;;;;;;;;;;;;;;; -; Paths and Directories ; -;;;;;;;;;;;;;;;;;;;;;;;;; - -; UNIX: "/path1:/path2" -;include_path = ".:/php/includes" -; -; Windows: "\path1;\path2" -;include_path = ".;c:\php\includes" -; -; PHP's default setting for include_path is ".;/path/to/php/pear" -; http://php.net/include-path - -; The root of the PHP pages, used only if nonempty. -; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root -; if you are running php as a CGI under any web server (other than IIS) -; see documentation for security issues. The alternate is to use the -; cgi.force_redirect configuration below -; http://php.net/doc-root -doc_root = - -; The directory under which PHP opens the script using /~username used only -; if nonempty. -; http://php.net/user-dir -user_dir = - -; Directory in which the loadable extensions (modules) reside. -; http://php.net/extension-dir -;extension_dir = "./" -; On windows: -;extension_dir = "ext" - -; Directory where the temporary files should be placed. -; Defaults to the system default (see sys_get_temp_dir) -;sys_temp_dir = "/tmp" - -; Whether or not to enable the dl() function. The dl() function does NOT work -; properly in multithreaded servers, such as IIS or Zeus, and is automatically -; disabled on them. -; http://php.net/enable-dl -enable_dl = Off - -; cgi.force_redirect is necessary to provide security running PHP as a CGI under -; most web servers. Left undefined, PHP turns this on by default. You can -; turn it off here AT YOUR OWN RISK -; **You CAN safely turn this off for IIS, in fact, you MUST.** -; http://php.net/cgi.force-redirect -;cgi.force_redirect = 1 - -; if cgi.nph is enabled it will force cgi to always sent Status: 200 with -; every request. PHP's default behavior is to disable this feature. -;cgi.nph = 1 - -; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape -; (iPlanet) web servers, you MAY need to set an environment variable name that PHP -; will look for to know it is OK to continue execution. Setting this variable MAY -; cause security issues, KNOW WHAT YOU ARE DOING FIRST. -; http://php.net/cgi.redirect-status-env -;cgi.redirect_status_env = - -; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's -; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok -; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting -; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting -; of zero causes PHP to behave as before. Default is 1. You should fix your scripts -; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. -; http://php.net/cgi.fix-pathinfo -;cgi.fix_pathinfo=1 - -; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside -; of the web tree and people will not be able to circumvent .htaccess security. -;cgi.discard_path=1 - -; FastCGI under IIS supports the ability to impersonate -; security tokens of the calling client. This allows IIS to define the -; security context that the request runs under. mod_fastcgi under Apache -; does not currently support this feature (03/17/2002) -; Set to 1 if running under IIS. Default is zero. -; http://php.net/fastcgi.impersonate -;fastcgi.impersonate = 1 - -; Disable logging through FastCGI connection. PHP's default behavior is to enable -; this feature. -;fastcgi.logging = 0 - -; cgi.rfc2616_headers configuration option tells PHP what type of headers to -; use when sending HTTP response code. If set to 0, PHP sends Status: header that -; is supported by Apache. When this option is set to 1, PHP will send -; RFC2616 compliant header. -; Default is zero. -; http://php.net/cgi.rfc2616-headers -;cgi.rfc2616_headers = 0 - -; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #! -; (shebang) at the top of the running script. This line might be needed if the -; script support running both as stand-alone script and via PHP CGI<. PHP in CGI -; mode skips this line and ignores its content if this directive is turned on. -; http://php.net/cgi.check-shebang-line -;cgi.check_shebang_line=1 - -;;;;;;;;;;;;;;;; -; File Uploads ; -;;;;;;;;;;;;;;;; - -; Whether to allow HTTP file uploads. -; http://php.net/file-uploads -file_uploads = On - -; Temporary directory for HTTP uploaded files (will use system default if not -; specified). -; http://php.net/upload-tmp-dir -;upload_tmp_dir = - -; Maximum allowed size for uploaded files. -; http://php.net/upload-max-filesize -upload_max_filesize = 2M - -; Maximum number of files that can be uploaded via a single request -max_file_uploads = 20 - -;;;;;;;;;;;;;;;;;; -; Fopen wrappers ; -;;;;;;;;;;;;;;;;;; - -; Whether to allow the treatment of URLs (like http:// or ftp://) as files. -; http://php.net/allow-url-fopen -allow_url_fopen = On - -; Whether to allow include/require to open URLs (like http:// or ftp://) as files. -; http://php.net/allow-url-include -allow_url_include = Off - -; Define the anonymous ftp password (your email address). PHP's default setting -; for this is empty. -; http://php.net/from -;from="john@doe.com" - -; Define the User-Agent string. PHP's default setting for this is empty. -; http://php.net/user-agent -;user_agent="PHP" - -; Default timeout for socket based streams (seconds) -; http://php.net/default-socket-timeout -default_socket_timeout = 60 - -; If your scripts have to deal with files from Macintosh systems, -; or you are running on a Mac and need to deal with files from -; unix or win32 systems, setting this flag will cause PHP to -; automatically detect the EOL character in those files so that -; fgets() and file() will work regardless of the source of the file. -; http://php.net/auto-detect-line-endings -;auto_detect_line_endings = Off - -;;;;;;;;;;;;;;;;;;;;;; -; Dynamic Extensions ; -;;;;;;;;;;;;;;;;;;;;;; - -; If you wish to have an extension loaded automatically, use the following -; syntax: -; -; extension=modulename -; -; For example: -; -; extension=mysqli -; -; When the extension library to load is not located in the default extension -; directory, You may specify an absolute path to the library file: -; -; extension=/path/to/extension/mysqli.so -; -; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and -; 'extension='php_<ext>.dll') is supported for legacy reasons and may be -; deprecated in a future PHP major version. So, when it is possible, please -; move to the new ('extension=<ext>) syntax. -; -; Notes for Windows environments : -; -; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+) -; extension folders as well as the separate PECL DLL download (PHP 5+). -; Be sure to appropriately set the extension_dir directive. -; -;extension=bz2 -;extension=curl -;extension=ffi -;extension=ftp -;extension=fileinfo -;extension=gd -;extension=gettext -;extension=gmp -;extension=intl -;extension=imap -;extension=ldap -;extension=mbstring -;extension=exif ; Must be after mbstring as it depends on it -;extension=mysqli -;extension=oci8_12c ; Use with Oracle Database 12c Instant Client -;extension=odbc -;extension=openssl -;extension=pdo_firebird -;extension=pdo_mysql -;extension=pdo_oci -;extension=pdo_odbc -;extension=pdo_pgsql -;extension=pdo_sqlite -;extension=pgsql -;extension=shmop - -; The MIBS data available in the PHP distribution must be installed. -; See http://www.php.net/manual/en/snmp.installation.php -;extension=snmp - -;extension=soap -;extension=sockets -;extension=sodium -;extension=sqlite3 -;extension=tidy -;extension=xsl - -;zend_extension=opcache - -;;;;;;;;;;;;;;;;;;; -; Module Settings ; -;;;;;;;;;;;;;;;;;;; - -[CLI Server] -; Whether the CLI web server uses ANSI color coding in its terminal output. -cli_server.color = On - -[Date] -; Defines the default timezone used by the date functions -; http://php.net/date.timezone -;date.timezone = - -; http://php.net/date.default-latitude -;date.default_latitude = 31.7667 - -; http://php.net/date.default-longitude -;date.default_longitude = 35.2333 - -; http://php.net/date.sunrise-zenith -;date.sunrise_zenith = 90.833333 - -; http://php.net/date.sunset-zenith -;date.sunset_zenith = 90.833333 - -[filter] -; http://php.net/filter.default -;filter.default = unsafe_raw - -; http://php.net/filter.default-flags -;filter.default_flags = - -[iconv] -; Use of this INI entry is deprecated, use global input_encoding instead. -; If empty, default_charset or input_encoding or iconv.input_encoding is used. -; The precedence is: default_charset < input_encoding < iconv.input_encoding -;iconv.input_encoding = - -; Use of this INI entry is deprecated, use global internal_encoding instead. -; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. -; The precedence is: default_charset < internal_encoding < iconv.internal_encoding -;iconv.internal_encoding = - -; Use of this INI entry is deprecated, use global output_encoding instead. -; If empty, default_charset or output_encoding or iconv.output_encoding is used. -; The precedence is: default_charset < output_encoding < iconv.output_encoding -; To use an output encoding conversion, iconv's output handler must be set -; otherwise output encoding conversion cannot be performed. -;iconv.output_encoding = - -[imap] -; rsh/ssh logins are disabled by default. Use this INI entry if you want to -; enable them. Note that the IMAP library does not filter mailbox names before -; passing them to rsh/ssh command, thus passing untrusted data to this function -; with rsh/ssh enabled is insecure. -;imap.enable_insecure_rsh=0 - -[intl] -;intl.default_locale = -; This directive allows you to produce PHP errors when some error -; happens within intl functions. The value is the level of the error produced. -; Default is 0, which does not produce any errors. -;intl.error_level = E_WARNING -;intl.use_exceptions = 0 - -[sqlite3] -; Directory pointing to SQLite3 extensions -; http://php.net/sqlite3.extension-dir -;sqlite3.extension_dir = - -; SQLite defensive mode flag (only available from SQLite 3.26+) -; When the defensive flag is enabled, language features that allow ordinary -; SQL to deliberately corrupt the database file are disabled. This forbids -; writing directly to the schema, shadow tables (eg. FTS data tables), or -; the sqlite_dbpage virtual table. -; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html -; (for older SQLite versions, this flag has no use) -;sqlite3.defensive = 1 - -[Pcre] -; PCRE library backtracking limit. -; http://php.net/pcre.backtrack-limit -;pcre.backtrack_limit=100000 - -; PCRE library recursion limit. -; Please note that if you set this value to a high number you may consume all -; the available process stack and eventually crash PHP (due to reaching the -; stack size limit imposed by the Operating System). -; http://php.net/pcre.recursion-limit -;pcre.recursion_limit=100000 - -; Enables or disables JIT compilation of patterns. This requires the PCRE -; library to be compiled with JIT support. -;pcre.jit=1 - -[Pdo] -; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" -; http://php.net/pdo-odbc.connection-pooling -;pdo_odbc.connection_pooling=strict - -[Pdo_mysql] -; Default socket name for local MySQL connects. If empty, uses the built-in -; MySQL defaults. -pdo_mysql.default_socket= - -[Phar] -; http://php.net/phar.readonly -;phar.readonly = On - -; http://php.net/phar.require-hash -;phar.require_hash = On - -;phar.cache_list = - -[mail function] -; For Win32 only. -; http://php.net/smtp -SMTP = localhost -; http://php.net/smtp-port -smtp_port = 25 - -; For Win32 only. -; http://php.net/sendmail-from -;sendmail_from = me@example.com - -; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). -; http://php.net/sendmail-path -;sendmail_path = - -; Force the addition of the specified parameters to be passed as extra parameters -; to the sendmail binary. These parameters will always replace the value of -; the 5th parameter to mail(). -;mail.force_extra_parameters = - -; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename -mail.add_x_header = Off - -; The path to a log file that will log all mail() calls. Log entries include -; the full path of the script, line number, To address and headers. -;mail.log = -; Log mail to syslog (Event Log on Windows). -;mail.log = syslog - -[ODBC] -; http://php.net/odbc.default-db -;odbc.default_db = Not yet implemented - -; http://php.net/odbc.default-user -;odbc.default_user = Not yet implemented - -; http://php.net/odbc.default-pw -;odbc.default_pw = Not yet implemented - -; Controls the ODBC cursor model. -; Default: SQL_CURSOR_STATIC (default). -;odbc.default_cursortype - -; Allow or prevent persistent links. -; http://php.net/odbc.allow-persistent -odbc.allow_persistent = On - -; Check that a connection is still valid before reuse. -; http://php.net/odbc.check-persistent -odbc.check_persistent = On - -; Maximum number of persistent links. -1 means no limit. -; http://php.net/odbc.max-persistent -odbc.max_persistent = -1 - -; Maximum number of links (persistent + non-persistent). -1 means no limit. -; http://php.net/odbc.max-links -odbc.max_links = -1 - -; Handling of LONG fields. Returns number of bytes to variables. 0 means -; passthru. -; http://php.net/odbc.defaultlrl -odbc.defaultlrl = 4096 - -; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. -; See the documentation on odbc_binmode and odbc_longreadlen for an explanation -; of odbc.defaultlrl and odbc.defaultbinmode -; http://php.net/odbc.defaultbinmode -odbc.defaultbinmode = 1 - -[MySQLi] - -; Maximum number of persistent links. -1 means no limit. -; http://php.net/mysqli.max-persistent -mysqli.max_persistent = -1 - -; Allow accessing, from PHP's perspective, local files with LOAD DATA statements -; http://php.net/mysqli.allow_local_infile -;mysqli.allow_local_infile = On - -; Allow or prevent persistent links. -; http://php.net/mysqli.allow-persistent -mysqli.allow_persistent = On - -; Maximum number of links. -1 means no limit. -; http://php.net/mysqli.max-links -mysqli.max_links = -1 - -; Default port number for mysqli_connect(). If unset, mysqli_connect() will use -; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the -; compile-time value defined MYSQL_PORT (in that order). Win32 will only look -; at MYSQL_PORT. -; http://php.net/mysqli.default-port -mysqli.default_port = 3306 - -; Default socket name for local MySQL connects. If empty, uses the built-in -; MySQL defaults. -; http://php.net/mysqli.default-socket -mysqli.default_socket = - -; Default host for mysqli_connect() (doesn't apply in safe mode). -; http://php.net/mysqli.default-host -mysqli.default_host = - -; Default user for mysqli_connect() (doesn't apply in safe mode). -; http://php.net/mysqli.default-user -mysqli.default_user = - -; Default password for mysqli_connect() (doesn't apply in safe mode). -; Note that this is generally a *bad* idea to store passwords in this file. -; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") -; and reveal this password! And of course, any users with read access to this -; file will be able to reveal the password as well. -; http://php.net/mysqli.default-pw -mysqli.default_pw = - -; Allow or prevent reconnect -mysqli.reconnect = Off - -[mysqlnd] -; Enable / Disable collection of general statistics by mysqlnd which can be -; used to tune and monitor MySQL operations. -mysqlnd.collect_statistics = On - -; Enable / Disable collection of memory usage statistics by mysqlnd which can be -; used to tune and monitor MySQL operations. -mysqlnd.collect_memory_statistics = Off - -; Records communication from all extensions using mysqlnd to the specified log -; file. -; http://php.net/mysqlnd.debug -;mysqlnd.debug = - -; Defines which queries will be logged. -;mysqlnd.log_mask = 0 - -; Default size of the mysqlnd memory pool, which is used by result sets. -;mysqlnd.mempool_default_size = 16000 - -; Size of a pre-allocated buffer used when sending commands to MySQL in bytes. -;mysqlnd.net_cmd_buffer_size = 2048 - -; Size of a pre-allocated buffer used for reading data sent by the server in -; bytes. -;mysqlnd.net_read_buffer_size = 32768 - -; Timeout for network requests in seconds. -;mysqlnd.net_read_timeout = 31536000 - -; SHA-256 Authentication Plugin related. File with the MySQL server public RSA -; key. -;mysqlnd.sha256_server_public_key = - -[OCI8] - -; Connection: Enables privileged connections using external -; credentials (OCI_SYSOPER, OCI_SYSDBA) -; http://php.net/oci8.privileged-connect -;oci8.privileged_connect = Off - -; Connection: The maximum number of persistent OCI8 connections per -; process. Using -1 means no limit. -; http://php.net/oci8.max-persistent -;oci8.max_persistent = -1 - -; Connection: The maximum number of seconds a process is allowed to -; maintain an idle persistent connection. Using -1 means idle -; persistent connections will be maintained forever. -; http://php.net/oci8.persistent-timeout -;oci8.persistent_timeout = -1 - -; Connection: The number of seconds that must pass before issuing a -; ping during oci_pconnect() to check the connection validity. When -; set to 0, each oci_pconnect() will cause a ping. Using -1 disables -; pings completely. -; http://php.net/oci8.ping-interval -;oci8.ping_interval = 60 - -; Connection: Set this to a user chosen connection class to be used -; for all pooled server requests with Oracle 11g Database Resident -; Connection Pooling (DRCP). To use DRCP, this value should be set to -; the same string for all web servers running the same application, -; the database pool must be configured, and the connection string must -; specify to use a pooled server. -;oci8.connection_class = - -; High Availability: Using On lets PHP receive Fast Application -; Notification (FAN) events generated when a database node fails. The -; database must also be configured to post FAN events. -;oci8.events = Off - -; Tuning: This option enables statement caching, and specifies how -; many statements to cache. Using 0 disables statement caching. -; http://php.net/oci8.statement-cache-size -;oci8.statement_cache_size = 20 - -; Tuning: Enables statement prefetching and sets the default number of -; rows that will be fetched automatically after statement execution. -; http://php.net/oci8.default-prefetch -;oci8.default_prefetch = 100 - -; Compatibility. Using On means oci_close() will not close -; oci_connect() and oci_new_connect() connections. -; http://php.net/oci8.old-oci-close-semantics -;oci8.old_oci_close_semantics = Off - -[PostgreSQL] -; Allow or prevent persistent links. -; http://php.net/pgsql.allow-persistent -pgsql.allow_persistent = On - -; Detect broken persistent links always with pg_pconnect(). -; Auto reset feature requires a little overheads. -; http://php.net/pgsql.auto-reset-persistent -pgsql.auto_reset_persistent = Off - -; Maximum number of persistent links. -1 means no limit. -; http://php.net/pgsql.max-persistent -pgsql.max_persistent = -1 - -; Maximum number of links (persistent+non persistent). -1 means no limit. -; http://php.net/pgsql.max-links -pgsql.max_links = -1 - -; Ignore PostgreSQL backends Notice message or not. -; Notice message logging require a little overheads. -; http://php.net/pgsql.ignore-notice -pgsql.ignore_notice = 0 - -; Log PostgreSQL backends Notice message or not. -; Unless pgsql.ignore_notice=0, module cannot log notice message. -; http://php.net/pgsql.log-notice -pgsql.log_notice = 0 - -[bcmath] -; Number of decimal digits for all bcmath functions. -; http://php.net/bcmath.scale -bcmath.scale = 0 - -[browscap] -; http://php.net/browscap -;browscap = extra/browscap.ini - -[Session] -; Handler used to store/retrieve data. -; http://php.net/session.save-handler -session.save_handler = files - -; Argument passed to save_handler. In the case of files, this is the path -; where data files are stored. Note: Windows users have to change this -; variable in order to use PHP's session functions. -; -; The path can be defined as: -; -; session.save_path = "N;/path" -; -; where N is an integer. Instead of storing all the session files in -; /path, what this will do is use subdirectories N-levels deep, and -; store the session data in those directories. This is useful if -; your OS has problems with many files in one directory, and is -; a more efficient layout for servers that handle many sessions. -; -; NOTE 1: PHP will not create this directory structure automatically. -; You can use the script in the ext/session dir for that purpose. -; NOTE 2: See the section on garbage collection below if you choose to -; use subdirectories for session storage -; -; The file storage module creates files using mode 600 by default. -; You can change that by using -; -; session.save_path = "N;MODE;/path" -; -; where MODE is the octal representation of the mode. Note that this -; does not overwrite the process's umask. -; http://php.net/session.save-path -;session.save_path = "/tmp" - -; Whether to use strict session mode. -; Strict session mode does not accept an uninitialized session ID, and -; regenerates the session ID if the browser sends an uninitialized session ID. -; Strict mode protects applications from session fixation via a session adoption -; vulnerability. It is disabled by default for maximum compatibility, but -; enabling it is encouraged. -; https://wiki.php.net/rfc/strict_sessions -session.use_strict_mode = 0 - -; Whether to use cookies. -; http://php.net/session.use-cookies -session.use_cookies = 1 - -; http://php.net/session.cookie-secure -;session.cookie_secure = - -; This option forces PHP to fetch and use a cookie for storing and maintaining -; the session id. We encourage this operation as it's very helpful in combating -; session hijacking when not specifying and managing your own session id. It is -; not the be-all and end-all of session hijacking defense, but it's a good start. -; http://php.net/session.use-only-cookies -session.use_only_cookies = 1 - -; Name of the session (used as cookie name). -; http://php.net/session.name -session.name = PHPSESSID - -; Initialize session on request startup. -; http://php.net/session.auto-start -session.auto_start = 0 - -; Lifetime in seconds of cookie or, if 0, until browser is restarted. -; http://php.net/session.cookie-lifetime -session.cookie_lifetime = 0 - -; The path for which the cookie is valid. -; http://php.net/session.cookie-path -session.cookie_path = / - -; The domain for which the cookie is valid. -; http://php.net/session.cookie-domain -session.cookie_domain = - -; Whether or not to add the httpOnly flag to the cookie, which makes it -; inaccessible to browser scripting languages such as JavaScript. -; http://php.net/session.cookie-httponly -session.cookie_httponly = - -; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF) -; Current valid values are "Strict", "Lax" or "None". When using "None", -; make sure to include the quotes, as `none` is interpreted like `false` in ini files. -; https://tools.ietf.org/html/draft-west-first-party-cookies-07 -session.cookie_samesite = - -; Handler used to serialize data. php is the standard serializer of PHP. -; http://php.net/session.serialize-handler -session.serialize_handler = php - -; Defines the probability that the 'garbage collection' process is started on every -; session initialization. The probability is calculated by using gc_probability/gc_divisor, -; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. -; Default Value: 1 -; Development Value: 1 -; Production Value: 1 -; http://php.net/session.gc-probability -session.gc_probability = 1 - -; Defines the probability that the 'garbage collection' process is started on every -; session initialization. The probability is calculated by using gc_probability/gc_divisor, -; e.g. 1/100 means there is a 1% chance that the GC process starts on each request. -; For high volume production servers, using a value of 1000 is a more efficient approach. -; Default Value: 100 -; Development Value: 1000 -; Production Value: 1000 -; http://php.net/session.gc-divisor -session.gc_divisor = 1000 - -; After this number of seconds, stored data will be seen as 'garbage' and -; cleaned up by the garbage collection process. -; http://php.net/session.gc-maxlifetime -session.gc_maxlifetime = 1440 - -; NOTE: If you are using the subdirectory option for storing session files -; (see session.save_path above), then garbage collection does *not* -; happen automatically. You will need to do your own garbage -; collection through a shell script, cron entry, or some other method. -; For example, the following script is the equivalent of setting -; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): -; find /path/to/sessions -cmin +24 -type f | xargs rm - -; Check HTTP Referer to invalidate externally stored URLs containing ids. -; HTTP_REFERER has to contain this substring for the session to be -; considered as valid. -; http://php.net/session.referer-check -session.referer_check = - -; Set to {nocache,private,public,} to determine HTTP caching aspects -; or leave this empty to avoid sending anti-caching headers. -; http://php.net/session.cache-limiter -session.cache_limiter = nocache - -; Document expires after n minutes. -; http://php.net/session.cache-expire -session.cache_expire = 180 - -; trans sid support is disabled by default. -; Use of trans sid may risk your users' security. -; Use this option with caution. -; - User may send URL contains active session ID -; to other person via. email/irc/etc. -; - URL that contains active session ID may be stored -; in publicly accessible computer. -; - User may access your site with the same session ID -; always using URL stored in browser's history or bookmarks. -; http://php.net/session.use-trans-sid -session.use_trans_sid = 0 - -; Set session ID character length. This value could be between 22 to 256. -; Shorter length than default is supported only for compatibility reason. -; Users should use 32 or more chars. -; http://php.net/session.sid-length -; Default Value: 32 -; Development Value: 26 -; Production Value: 26 -session.sid_length = 26 - -; The URL rewriter will look for URLs in a defined set of HTML tags. -; <form> is special; if you include them here, the rewriter will -; add a hidden <input> field with the info which is otherwise appended -; to URLs. <form> tag's action attribute URL will not be modified -; unless it is specified. -; Note that all valid entries require a "=", even if no value follows. -; Default Value: "a=href,area=href,frame=src,form=" -; Development Value: "a=href,area=href,frame=src,form=" -; Production Value: "a=href,area=href,frame=src,form=" -; http://php.net/url-rewriter.tags -session.trans_sid_tags = "a=href,area=href,frame=src,form=" - -; URL rewriter does not rewrite absolute URLs by default. -; To enable rewrites for absolute paths, target hosts must be specified -; at RUNTIME. i.e. use ini_set() -; <form> tags is special. PHP will check action attribute's URL regardless -; of session.trans_sid_tags setting. -; If no host is defined, HTTP_HOST will be used for allowed host. -; Example value: php.net,www.php.net,wiki.php.net -; Use "," for multiple hosts. No spaces are allowed. -; Default Value: "" -; Development Value: "" -; Production Value: "" -;session.trans_sid_hosts="" - -; Define how many bits are stored in each character when converting -; the binary hash data to something readable. -; Possible values: -; 4 (4 bits: 0-9, a-f) -; 5 (5 bits: 0-9, a-v) -; 6 (6 bits: 0-9, a-z, A-Z, "-", ",") -; Default Value: 4 -; Development Value: 5 -; Production Value: 5 -; http://php.net/session.hash-bits-per-character -session.sid_bits_per_character = 5 - -; Enable upload progress tracking in $_SESSION -; Default Value: On -; Development Value: On -; Production Value: On -; http://php.net/session.upload-progress.enabled -;session.upload_progress.enabled = On - -; Cleanup the progress information as soon as all POST data has been read -; (i.e. upload completed). -; Default Value: On -; Development Value: On -; Production Value: On -; http://php.net/session.upload-progress.cleanup -;session.upload_progress.cleanup = On - -; A prefix used for the upload progress key in $_SESSION -; Default Value: "upload_progress_" -; Development Value: "upload_progress_" -; Production Value: "upload_progress_" -; http://php.net/session.upload-progress.prefix -;session.upload_progress.prefix = "upload_progress_" - -; The index name (concatenated with the prefix) in $_SESSION -; containing the upload progress information -; Default Value: "PHP_SESSION_UPLOAD_PROGRESS" -; Development Value: "PHP_SESSION_UPLOAD_PROGRESS" -; Production Value: "PHP_SESSION_UPLOAD_PROGRESS" -; http://php.net/session.upload-progress.name -;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS" - -; How frequently the upload progress should be updated. -; Given either in percentages (per-file), or in bytes -; Default Value: "1%" -; Development Value: "1%" -; Production Value: "1%" -; http://php.net/session.upload-progress.freq -;session.upload_progress.freq = "1%" - -; The minimum delay between updates, in seconds -; Default Value: 1 -; Development Value: 1 -; Production Value: 1 -; http://php.net/session.upload-progress.min-freq -;session.upload_progress.min_freq = "1" - -; Only write session data when session data is changed. Enabled by default. -; http://php.net/session.lazy-write -;session.lazy_write = On - -[Assertion] -; Switch whether to compile assertions at all (to have no overhead at run-time) -; -1: Do not compile at all -; 0: Jump over assertion at run-time -; 1: Execute assertions -; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1) -; Default Value: 1 -; Development Value: 1 -; Production Value: -1 -; http://php.net/zend.assertions -zend.assertions = -1 - -; Assert(expr); active by default. -; http://php.net/assert.active -;assert.active = On - -; Throw an AssertionError on failed assertions -; http://php.net/assert.exception -;assert.exception = On - -; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active) -; http://php.net/assert.warning -;assert.warning = On - -; Don't bail out by default. -; http://php.net/assert.bail -;assert.bail = Off - -; User-function to be called if an assertion fails. -; http://php.net/assert.callback -;assert.callback = 0 - -[COM] -; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs -; http://php.net/com.typelib-file -;com.typelib_file = - -; allow Distributed-COM calls -; http://php.net/com.allow-dcom -;com.allow_dcom = true - -; autoregister constants of a component's typlib on com_load() -; http://php.net/com.autoregister-typelib -;com.autoregister_typelib = true - -; register constants casesensitive -; http://php.net/com.autoregister-casesensitive -;com.autoregister_casesensitive = false - -; show warnings on duplicate constant registrations -; http://php.net/com.autoregister-verbose -;com.autoregister_verbose = true - -; The default character set code-page to use when passing strings to and from COM objects. -; Default: system ANSI code page -;com.code_page= - -; The version of the .NET framework to use. The value of the setting are the first three parts -; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319". -;com.dotnet_version= - -[mbstring] -; language for internal character representation. -; This affects mb_send_mail() and mbstring.detect_order. -; http://php.net/mbstring.language -;mbstring.language = Japanese - -; Use of this INI entry is deprecated, use global internal_encoding instead. -; internal/script encoding. -; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) -; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. -; The precedence is: default_charset < internal_encoding < iconv.internal_encoding -;mbstring.internal_encoding = - -; Use of this INI entry is deprecated, use global input_encoding instead. -; http input encoding. -; mbstring.encoding_translation = On is needed to use this setting. -; If empty, default_charset or input_encoding or mbstring.input is used. -; The precedence is: default_charset < input_encoding < mbsting.http_input -; http://php.net/mbstring.http-input -;mbstring.http_input = - -; Use of this INI entry is deprecated, use global output_encoding instead. -; http output encoding. -; mb_output_handler must be registered as output buffer to function. -; If empty, default_charset or output_encoding or mbstring.http_output is used. -; The precedence is: default_charset < output_encoding < mbstring.http_output -; To use an output encoding conversion, mbstring's output handler must be set -; otherwise output encoding conversion cannot be performed. -; http://php.net/mbstring.http-output -;mbstring.http_output = - -; enable automatic encoding translation according to -; mbstring.internal_encoding setting. Input chars are -; converted to internal encoding by setting this to On. -; Note: Do _not_ use automatic encoding translation for -; portable libs/applications. -; http://php.net/mbstring.encoding-translation -;mbstring.encoding_translation = Off - -; automatic encoding detection order. -; "auto" detect order is changed according to mbstring.language -; http://php.net/mbstring.detect-order -;mbstring.detect_order = auto - -; substitute_character used when character cannot be converted -; one from another -; http://php.net/mbstring.substitute-character -;mbstring.substitute_character = none - -; Enable strict encoding detection. -;mbstring.strict_detection = Off - -; This directive specifies the regex pattern of content types for which mb_output_handler() -; is activated. -; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml) -;mbstring.http_output_conv_mimetype= - -; This directive specifies maximum stack depth for mbstring regular expressions. It is similar -; to the pcre.recursion_limit for PCRE. -;mbstring.regex_stack_limit=100000 - -; This directive specifies maximum retry count for mbstring regular expressions. It is similar -; to the pcre.backtrack_limit for PCRE. -;mbstring.regex_retry_limit=1000000 - -[gd] -; Tell the jpeg decode to ignore warnings and try to create -; a gd image. The warning will then be displayed as notices -; disabled by default -; http://php.net/gd.jpeg-ignore-warning -;gd.jpeg_ignore_warning = 1 - -[exif] -; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. -; With mbstring support this will automatically be converted into the encoding -; given by corresponding encode setting. When empty mbstring.internal_encoding -; is used. For the decode settings you can distinguish between motorola and -; intel byte order. A decode setting cannot be empty. -; http://php.net/exif.encode-unicode -;exif.encode_unicode = ISO-8859-15 - -; http://php.net/exif.decode-unicode-motorola -;exif.decode_unicode_motorola = UCS-2BE - -; http://php.net/exif.decode-unicode-intel -;exif.decode_unicode_intel = UCS-2LE - -; http://php.net/exif.encode-jis -;exif.encode_jis = - -; http://php.net/exif.decode-jis-motorola -;exif.decode_jis_motorola = JIS - -; http://php.net/exif.decode-jis-intel -;exif.decode_jis_intel = JIS - -[Tidy] -; The path to a default tidy configuration file to use when using tidy -; http://php.net/tidy.default-config -;tidy.default_config = /usr/local/lib/php/default.tcfg - -; Should tidy clean and repair output automatically? -; WARNING: Do not use this option if you are generating non-html content -; such as dynamic images -; http://php.net/tidy.clean-output -tidy.clean_output = Off - -[soap] -; Enables or disables WSDL caching feature. -; http://php.net/soap.wsdl-cache-enabled -soap.wsdl_cache_enabled=1 - -; Sets the directory name where SOAP extension will put cache files. -; http://php.net/soap.wsdl-cache-dir -soap.wsdl_cache_dir="/tmp" - -; (time to live) Sets the number of second while cached file will be used -; instead of original one. -; http://php.net/soap.wsdl-cache-ttl -soap.wsdl_cache_ttl=86400 - -; Sets the size of the cache limit. (Max. number of WSDL files to cache) -soap.wsdl_cache_limit = 5 - -[sysvshm] -; A default size of the shared memory segment -;sysvshm.init_mem = 10000 - -[ldap] -; Sets the maximum number of open links or -1 for unlimited. -ldap.max_links = -1 - -[dba] -;dba.default_handler= - -[opcache] -; Determines if Zend OPCache is enabled -;opcache.enable=1 - -; Determines if Zend OPCache is enabled for the CLI version of PHP -;opcache.enable_cli=0 - -; The OPcache shared memory storage size. -;opcache.memory_consumption=128 - -; The amount of memory for interned strings in Mbytes. -;opcache.interned_strings_buffer=8 - -; The maximum number of keys (scripts) in the OPcache hash table. -; Only numbers between 200 and 1000000 are allowed. -;opcache.max_accelerated_files=10000 - -; The maximum percentage of "wasted" memory until a restart is scheduled. -;opcache.max_wasted_percentage=5 - -; When this directive is enabled, the OPcache appends the current working -; directory to the script key, thus eliminating possible collisions between -; files with the same name (basename). Disabling the directive improves -; performance, but may break existing applications. -;opcache.use_cwd=1 - -; When disabled, you must reset the OPcache manually or restart the -; webserver for changes to the filesystem to take effect. -;opcache.validate_timestamps=1 - -; How often (in seconds) to check file timestamps for changes to the shared -; memory storage allocation. ("1" means validate once per second, but only -; once per request. "0" means always validate) -;opcache.revalidate_freq=2 - -; Enables or disables file search in include_path optimization -;opcache.revalidate_path=0 - -; If disabled, all PHPDoc comments are dropped from the code to reduce the -; size of the optimized code. -;opcache.save_comments=1 - -; If enabled, compilation warnings (including notices and deprecations) will -; be recorded and replayed each time a file is included. Otherwise, compilation -; warnings will only be emitted when the file is first cached. -;opcache.record_warnings=0 - -; Allow file existence override (file_exists, etc.) performance feature. -;opcache.enable_file_override=0 - -; A bitmask, where each bit enables or disables the appropriate OPcache -; passes -;opcache.optimization_level=0x7FFFBFFF - -;opcache.dups_fix=0 - -; The location of the OPcache blacklist file (wildcards allowed). -; Each OPcache blacklist file is a text file that holds the names of files -; that should not be accelerated. The file format is to add each filename -; to a new line. The filename may be a full path or just a file prefix -; (i.e., /var/www/x blacklists all the files and directories in /var/www -; that start with 'x'). Line starting with a ; are ignored (comments). -;opcache.blacklist_filename= - -; Allows exclusion of large files from being cached. By default all files -; are cached. -;opcache.max_file_size=0 - -; Check the cache checksum each N requests. -; The default value of "0" means that the checks are disabled. -;opcache.consistency_checks=0 - -; How long to wait (in seconds) for a scheduled restart to begin if the cache -; is not being accessed. -;opcache.force_restart_timeout=180 - -; OPcache error_log file name. Empty string assumes "stderr". -;opcache.error_log= - -; All OPcache errors go to the Web server log. -; By default, only fatal errors (level 0) or errors (level 1) are logged. -; You can also enable warnings (level 2), info messages (level 3) or -; debug messages (level 4). -;opcache.log_verbosity_level=1 - -; Preferred Shared Memory back-end. Leave empty and let the system decide. -;opcache.preferred_memory_model= - -; Protect the shared memory from unexpected writing during script execution. -; Useful for internal debugging only. -;opcache.protect_memory=0 - -; Allows calling OPcache API functions only from PHP scripts which path is -; started from specified string. The default "" means no restriction -;opcache.restrict_api= - -; Mapping base of shared memory segments (for Windows only). All the PHP -; processes have to map shared memory into the same address space. This -; directive allows to manually fix the "Unable to reattach to base address" -; errors. -;opcache.mmap_base= - -; Facilitates multiple OPcache instances per user (for Windows only). All PHP -; processes with the same cache ID and user share an OPcache instance. -;opcache.cache_id= - -; Enables and sets the second level cache directory. -; It should improve performance when SHM memory is full, at server restart or -; SHM reset. The default "" disables file based caching. -;opcache.file_cache= - -; Enables or disables opcode caching in shared memory. -;opcache.file_cache_only=0 - -; Enables or disables checksum validation when script loaded from file cache. -;opcache.file_cache_consistency_checks=1 - -; Implies opcache.file_cache_only=1 for a certain process that failed to -; reattach to the shared memory (for Windows only). Explicitly enabled file -; cache is required. -;opcache.file_cache_fallback=1 - -; Enables or disables copying of PHP code (text segment) into HUGE PAGES. -; This should improve performance, but requires appropriate OS configuration. -;opcache.huge_code_pages=1 - -; Validate cached file permissions. -;opcache.validate_permission=0 - -; Prevent name collisions in chroot'ed environment. -;opcache.validate_root=0 - -; If specified, it produces opcode dumps for debugging different stages of -; optimizations. -;opcache.opt_debug_level=0 - -; Specifies a PHP script that is going to be compiled and executed at server -; start-up. -; http://php.net/opcache.preload -;opcache.preload= - -; Preloading code as root is not allowed for security reasons. This directive -; facilitates to let the preloading to be run as another user. -; http://php.net/opcache.preload_user -;opcache.preload_user= - -; Prevents caching files that are less than this number of seconds old. It -; protects from caching of incompletely updated files. In case all file updates -; on your site are atomic, you may increase performance by setting it to "0". -;opcache.file_update_protection=2 - -; Absolute path used to store shared lockfiles (for *nix only). -;opcache.lockfile_path=/tmp - -[curl] -; A default value for the CURLOPT_CAINFO option. This is required to be an -; absolute path. -;curl.cainfo = - -[openssl] -; The location of a Certificate Authority (CA) file on the local filesystem -; to use when verifying the identity of SSL/TLS peers. Most users should -; not specify a value for this directive as PHP will attempt to use the -; OS-managed cert stores in its absence. If specified, this value may still -; be overridden on a per-stream basis via the "cafile" SSL stream context -; option. -;openssl.cafile= - -; If openssl.cafile is not specified or if the CA file is not found, the -; directory pointed to by openssl.capath is searched for a suitable -; certificate. This value must be a correctly hashed certificate directory. -; Most users should not specify a value for this directive as PHP will -; attempt to use the OS-managed cert stores in its absence. If specified, -; this value may still be overridden on a per-stream basis via the "capath" -; SSL stream context option. -;openssl.capath= - -[ffi] -; FFI API restriction. Possible values: -; "preload" - enabled in CLI scripts and preloaded files (default) -; "false" - always disabled -; "true" - always enabled -;ffi.enable=preload - -; List of headers files to preload, wildcard patterns allowed. -;ffi.preload= +[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable. (As of PHP 5.2.0)
+; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (usually C:\windows)
+; See the PHP docs for more specific information.
+; http://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; http://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security conscience applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it is
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is the php.ini-production INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; session.sid_bits_per_character
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+; zend.exception_ignore_args
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+
+; zend.exception_string_param_max_len
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to an empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; http://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/short-open-tag
+short_open_tag = Off
+
+; The number of significant digits displayed in floating point numbers.
+; http://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; http://php.net/output-buffering
+output_buffering = 4096
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; http://php.net/output-handler
+;output_handler =
+
+; URL rewriter function rewrites URL on the fly by using
+; output buffer. You can set target tags by this configuration.
+; "form" tag is special tag. It will add hidden input tag to pass values.
+; Refer to session.trans_sid_tags for usage.
+; Default Value: "form="
+; Development Value: "form="
+; Production Value: "form="
+;url_rewriter.tags
+
+; URL rewriter will not rewrite absolute URL nor form by default. To enable
+; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
+; Refer to session.trans_sid_hosts for more details.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;url_rewriter.hosts
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; http://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; http://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; http://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; http://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; The unserialize_max_depth specifies the default depth limit for unserialized
+; structures. Setting the depth limit too high may result in stack overflows
+; during unserialization. The unserialize_max_depth ini setting can be
+; overridden by the max_depth option on individual unserialize() calls.
+; A value of 0 disables the depth limit.
+;unserialize_max_depth = 4096
+
+; When floats & doubles are serialized, store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+; The value is also used for json_encode when encoding double values.
+; If -1 is used, then dtoa mode 0 is used which automatically select the best
+; precision.
+serialize_precision = -1
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; Note: disables the realpath cache
+; http://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions.
+; It receives a comma-delimited list of function names.
+; http://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes.
+; It receives a comma-delimited list of class names.
+; http://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; <span style="color: ???????"> would work.
+; http://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; http://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; Note: if open_basedir is set, the cache is disabled
+; http://php.net/realpath-cache-size
+;realpath_cache_size = 4096k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; http://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; http://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+;zend.script_encoding =
+
+; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+zend.exception_ignore_args = On
+
+; Allows setting the maximum string length in an argument of a stringified stack trace
+; to a value between 0 and 1000000.
+; This has no effect when zend.exception_ignore_args is enabled.
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+; In production, it is recommended to set this to 0 to reduce the output
+; of sensitive information in stack traces.
+zend.exception_string_param_max_len = 0
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; http://php.net/expose-php
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; http://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 30
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; http://php.net/max-input-time
+max_input_time = 60
+
+; Maximum input variable nesting level
+; http://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+;max_input_vars = 1000
+
+; Maximum amount of memory a script may consume
+; http://php.net/memory-limit
+memory_limit = 128M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE and E_STRICT, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it is automatically initialized to an
+; empty string)
+; E_STRICT - run-time notices, enable to have PHP suggest changes
+; to your code which will ensure the best interoperability
+; and forward compatibility of your code
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+; http://php.net/error-reporting
+error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-errors
+display_errors = Off
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. We strongly recommend you set this to 'off'
+; for production servers to avoid leaking configuration details.
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-startup-errors
+display_startup_errors = Off
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; http://php.net/log-errors
+log_errors = On
+
+; Set maximum length of log_errors. In error_log information about the source is
+; added. The default is 1024 and 0 allows to not apply any maximum length at all.
+; http://php.net/log-errors-max-len
+log_errors_max_len = 1024
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; http://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; http://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This is only effective in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; http://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is off by default.
+;report_zend_debug = 0
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; http://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; http://php.net/html-errors
+;html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from http://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; http://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; http://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-prepend-string
+; Example:
+;error_prepend_string = "<span style='color: #ff0000'>"
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-append-string
+; Example:
+;error_append_string = "</span>"
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; http://php.net/error-log
+; Example:
+;error_log = php_errors.log
+; Log errors to syslog (Event Log on Windows).
+;error_log = syslog
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
+;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
+;syslog.facility = user
+
+; Set this to disable filtering control characters (the default).
+; Some loggers only accept NVT-ASCII, others accept anything that's not
+; control characters. If your logger accepts everything, then no filtering
+; is needed at all.
+; Allowed values are:
+; ascii (all printable ASCII characters and NL)
+; no-ctrl (all characters except control characters)
+; all (all characters)
+; raw (like "all", but messages are not split at newlines)
+; http://php.net/syslog.filter
+;syslog.filter = ascii
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; http://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; http://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; http://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; http://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/register-argc-argv
+register_argc_argv = Off
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any effect.
+; http://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; http://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; http://php.net/post-max-size
+post_max_size = 8M
+
+; Automatically add files before PHP document.
+; http://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; http://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a media type using the Content-Type header. To
+; disable this, simply set it to be empty.
+;
+; PHP's built-in default media type is set to text/html.
+; http://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; http://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; See also output_buffer.
+; http://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/php/includes"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; http://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; http://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; http://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; http://php.net/extension-dir
+;extension_dir = "./"
+; On windows:
+;extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+;sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; http://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; http://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; http://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; http://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
+; of the web tree and people will not be able to circumvent .htaccess security.
+;cgi.discard_path=1
+
+; FastCGI under IIS supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; http://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+;fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; http://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
+; (shebang) at the top of the running script. This line might be needed if the
+; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
+; mode skips this line and ignores its content if this directive is turned on.
+; http://php.net/cgi.check-shebang-line
+;cgi.check_shebang_line=1
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; http://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; http://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; http://php.net/upload-max-filesize
+upload_max_filesize = 2M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; http://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; http://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; http://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; http://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename
+;
+; For example:
+;
+; extension=mysqli
+;
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
+;
+; extension=/path/to/extension/mysqli.so
+;
+; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
+; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=<ext>) syntax.
+;
+; Notes for Windows environments :
+;
+; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
+; extension folders as well as the separate PECL DLL download (PHP 5+).
+; Be sure to appropriately set the extension_dir directive.
+;
+;extension=bz2
+;extension=curl
+;extension=ffi
+;extension=ftp
+;extension=fileinfo
+;extension=gd
+;extension=gettext
+;extension=gmp
+;extension=intl
+;extension=imap
+;extension=ldap
+;extension=mbstring
+;extension=exif ; Must be after mbstring as it depends on it
+;extension=mysqli
+;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
+;extension=odbc
+;extension=openssl
+;extension=pdo_firebird
+;extension=pdo_mysql
+;extension=pdo_oci
+;extension=pdo_odbc
+;extension=pdo_pgsql
+;extension=pdo_sqlite
+;extension=pgsql
+;extension=shmop
+
+; The MIBS data available in the PHP distribution must be installed.
+; See http://www.php.net/manual/en/snmp.installation.php
+;extension=snmp
+
+;extension=soap
+;extension=sockets
+;extension=sodium
+;extension=sqlite3
+;extension=tidy
+;extension=xsl
+
+;zend_extension=opcache
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+;date.timezone =
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.833333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.833333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < input_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[imap]
+; rsh/ssh logins are disabled by default. Use this INI entry if you want to
+; enable them. Note that the IMAP library does not filter mailbox names before
+; passing them to rsh/ssh command, thus passing untrusted data to this function
+; with rsh/ssh enabled is insecure.
+;imap.enable_insecure_rsh=0
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+; Directory pointing to SQLite3 extensions
+; http://php.net/sqlite3.extension-dir
+;sqlite3.extension_dir =
+
+; SQLite defensive mode flag (only available from SQLite 3.26+)
+; When the defensive flag is enabled, language features that allow ordinary
+; SQL to deliberately corrupt the database file are disabled. This forbids
+; writing directly to the schema, shadow tables (eg. FTS data tables), or
+; the sqlite_dbpage virtual table.
+; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
+; (for older SQLite versions, this flag has no use)
+;sqlite3.defensive = 1
+
+[Pcre]
+; PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+[Pdo_mysql]
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; http://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = Off
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_memory_statistics = Off
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; http://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; http://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; http://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; http://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; http://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle 11g Database Resident
+; Connection Pooling (DRCP). To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; http://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables statement prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; http://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; http://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+; session.save_path = "N;/path"
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+; session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept an uninitialized session ID, and
+; regenerates the session ID if the browser sends an uninitialized session ID.
+; Strict mode protects applications from session fixation via a session adoption
+; vulnerability. It is disabled by default for maximum compatibility, but
+; enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it
+; inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
+; Current valid values are "Strict", "Lax" or "None". When using "None",
+; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
+; https://tools.ietf.org/html/draft-west-first-party-cookies-07
+session.cookie_samesite =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; For high volume production servers, using a value of 1000 is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; http://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; http://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute paths, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+; 4 (4 bits: 0-9, a-f)
+; 5 (5 bits: 0-9, a-v)
+; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq = "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; http://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+; 0: Jump over assertion at run-time
+; 1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = -1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertionError on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; http://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; http://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a component's typlib on com_load()
+; http://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; http://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; http://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+; The version of the .NET framework to use. The value of the setting are the first three parts
+; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319".
+;com.dotnet_version=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_translation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < input_encoding < mbsting.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+; portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; Enable strict encoding detection.
+;mbstring.strict_detection = Off
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
+; to the pcre.recursion_limit for PCRE.
+;mbstring.regex_stack_limit=100000
+
+; This directive specifies maximum retry count for mbstring regular expressions. It is similar
+; to the pcre.backtrack_limit for PCRE.
+;mbstring.regex_retry_limit=1000000
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; If enabled, compilation warnings (including notices and deprecations) will
+; be recorded and replayed each time a file is included. Otherwise, compilation
+; warnings will only be emitted when the file is first cached.
+;opcache.record_warnings=0
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0x7FFFBFFF
+
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Facilitates multiple OPcache instances per user (for Windows only). All PHP
+; processes with the same cache ID and user share an OPcache instance.
+;opcache.cache_id=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; This should improve performance, but requires appropriate OS configuration.
+;opcache.huge_code_pages=1
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
+; Specifies a PHP script that is going to be compiled and executed at server
+; start-up.
+; http://php.net/opcache.preload
+;opcache.preload=
+
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; http://php.net/opcache.preload_user
+;opcache.preload_user=
+
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+[ffi]
+; FFI API restriction. Possible values:
+; "preload" - enabled in CLI scripts and preloaded files (default)
+; "false" - always disabled
+; "true" - always enabled
+;ffi.enable=preload
+
+; List of headers files to preload, wildcard patterns allowed.
+;ffi.preload=
diff --git a/utils/Docker/Latest/www/config/php-8.1.ini/php.ini b/utils/Docker/Latest/www/config/php-8.1.ini/php.ini new file mode 100644 index 0000000..92de705 --- /dev/null +++ b/utils/Docker/Latest/www/config/php-8.1.ini/php.ini @@ -0,0 +1,1945 @@ +[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable. (As of PHP 5.2.0)
+; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (usually C:\windows)
+; See the PHP docs for more specific information.
+; http://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; http://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security conscience applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it is
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is the php.ini-production INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; session.sid_bits_per_character
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+; zend.exception_ignore_args
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+
+; zend.exception_string_param_max_len
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to an empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; http://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/short-open-tag
+short_open_tag = On
+
+; The number of significant digits displayed in floating point numbers.
+; http://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; http://php.net/output-buffering
+output_buffering = 4096
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; http://php.net/output-handler
+;output_handler =
+
+; URL rewriter function rewrites URL on the fly by using
+; output buffer. You can set target tags by this configuration.
+; "form" tag is special tag. It will add hidden input tag to pass values.
+; Refer to session.trans_sid_tags for usage.
+; Default Value: "form="
+; Development Value: "form="
+; Production Value: "form="
+;url_rewriter.tags
+
+; URL rewriter will not rewrite absolute URL nor form by default. To enable
+; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
+; Refer to session.trans_sid_hosts for more details.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;url_rewriter.hosts
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; http://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; http://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; http://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; http://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; The unserialize_max_depth specifies the default depth limit for unserialized
+; structures. Setting the depth limit too high may result in stack overflows
+; during unserialization. The unserialize_max_depth ini setting can be
+; overridden by the max_depth option on individual unserialize() calls.
+; A value of 0 disables the depth limit.
+;unserialize_max_depth = 4096
+
+; When floats & doubles are serialized, store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+; The value is also used for json_encode when encoding double values.
+; If -1 is used, then dtoa mode 0 is used which automatically select the best
+; precision.
+serialize_precision = -1
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; Note: disables the realpath cache
+; http://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions.
+; It receives a comma-delimited list of function names.
+; http://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes.
+; It receives a comma-delimited list of class names.
+; http://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; <span style="color: ???????"> would work.
+; http://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; http://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; Note: if open_basedir is set, the cache is disabled
+; http://php.net/realpath-cache-size
+;realpath_cache_size = 4096k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; http://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; http://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+;zend.script_encoding =
+
+; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+zend.exception_ignore_args = On
+
+; Allows setting the maximum string length in an argument of a stringified stack trace
+; to a value between 0 and 1000000.
+; This has no effect when zend.exception_ignore_args is enabled.
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+; In production, it is recommended to set this to 0 to reduce the output
+; of sensitive information in stack traces.
+zend.exception_string_param_max_len = 0
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; http://php.net/expose-php
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; http://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 120
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; http://php.net/max-input-time
+max_input_time = 120
+
+; Maximum input variable nesting level
+; http://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+;max_input_vars = 1000
+
+; Maximum amount of memory a script may consume
+; http://php.net/memory-limit
+memory_limit = 512M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE and E_STRICT, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it is automatically initialized to an
+; empty string)
+; E_STRICT - run-time notices, enable to have PHP suggest changes
+; to your code which will ensure the best interoperability
+; and forward compatibility of your code
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+; http://php.net/error-reporting
+error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-errors
+display_errors = Off
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. We strongly recommend you set this to 'off'
+; for production servers to avoid leaking configuration details.
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-startup-errors
+display_startup_errors = Off
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; http://php.net/log-errors
+log_errors = On
+
+; Set maximum length of log_errors. In error_log information about the source is
+; added. The default is 1024 and 0 allows to not apply any maximum length at all.
+; http://php.net/log-errors-max-len
+log_errors_max_len = 1024
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; http://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; http://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This is only effective in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; http://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is off by default.
+;report_zend_debug = 0
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; http://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; http://php.net/html-errors
+;html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from http://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; http://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; http://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-prepend-string
+; Example:
+;error_prepend_string = "<span style='color: #ff0000'>"
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-append-string
+; Example:
+;error_append_string = "</span>"
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; http://php.net/error-log
+; Example:
+;error_log = php_errors.log
+; Log errors to syslog (Event Log on Windows).
+;error_log = syslog
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
+;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
+;syslog.facility = user
+
+; Set this to disable filtering control characters (the default).
+; Some loggers only accept NVT-ASCII, others accept anything that's not
+; control characters. If your logger accepts everything, then no filtering
+; is needed at all.
+; Allowed values are:
+; ascii (all printable ASCII characters and NL)
+; no-ctrl (all characters except control characters)
+; all (all characters)
+; raw (like "all", but messages are not split at newlines)
+; http://php.net/syslog.filter
+;syslog.filter = ascii
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; http://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; http://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; http://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; http://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/register-argc-argv
+register_argc_argv = Off
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any effect.
+; http://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; http://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; http://php.net/post-max-size
+post_max_size = 500M
+
+; Automatically add files before PHP document.
+; http://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; http://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a media type using the Content-Type header. To
+; disable this, simply set it to be empty.
+;
+; PHP's built-in default media type is set to text/html.
+; http://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; http://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; See also output_buffer.
+; http://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/php/includes"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; http://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; http://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; http://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; http://php.net/extension-dir
+;extension_dir = "./"
+; On windows:
+;extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+;sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; http://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; http://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; http://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; http://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
+; of the web tree and people will not be able to circumvent .htaccess security.
+;cgi.discard_path=1
+
+; FastCGI under IIS supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; http://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+;fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; http://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
+; (shebang) at the top of the running script. This line might be needed if the
+; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
+; mode skips this line and ignores its content if this directive is turned on.
+; http://php.net/cgi.check-shebang-line
+;cgi.check_shebang_line=1
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; http://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; http://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; http://php.net/upload-max-filesize
+upload_max_filesize = 500M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; http://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; http://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; http://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; http://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename
+;
+; For example:
+;
+; extension=mysqli
+;
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
+;
+; extension=/path/to/extension/mysqli.so
+;
+; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
+; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=<ext>) syntax.
+;
+; Notes for Windows environments :
+;
+; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
+; extension folders as well as the separate PECL DLL download (PHP 5+).
+; Be sure to appropriately set the extension_dir directive.
+;
+;extension=bz2
+;extension=curl
+;extension=ffi
+;extension=ftp
+;extension=fileinfo
+;extension=gd
+;extension=gettext
+;extension=gmp
+;extension=intl
+;extension=imap
+;extension=ldap
+;extension=mbstring
+;extension=exif ; Must be after mbstring as it depends on it
+;extension=mysqli
+;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
+;extension=odbc
+;extension=openssl
+;extension=pdo_firebird
+;extension=pdo_mysql
+;extension=pdo_oci
+;extension=pdo_odbc
+;extension=pdo_pgsql
+;extension=pdo_sqlite
+;extension=pgsql
+;extension=shmop
+
+; The MIBS data available in the PHP distribution must be installed.
+; See http://www.php.net/manual/en/snmp.installation.php
+;extension=snmp
+
+;extension=soap
+;extension=sockets
+;extension=sodium
+;extension=sqlite3
+;extension=tidy
+;extension=xsl
+
+;zend_extension=opcache
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+;date.timezone =
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.833333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.833333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < input_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[imap]
+; rsh/ssh logins are disabled by default. Use this INI entry if you want to
+; enable them. Note that the IMAP library does not filter mailbox names before
+; passing them to rsh/ssh command, thus passing untrusted data to this function
+; with rsh/ssh enabled is insecure.
+;imap.enable_insecure_rsh=0
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+; Directory pointing to SQLite3 extensions
+; http://php.net/sqlite3.extension-dir
+;sqlite3.extension_dir =
+
+; SQLite defensive mode flag (only available from SQLite 3.26+)
+; When the defensive flag is enabled, language features that allow ordinary
+; SQL to deliberately corrupt the database file are disabled. This forbids
+; writing directly to the schema, shadow tables (eg. FTS data tables), or
+; the sqlite_dbpage virtual table.
+; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
+; (for older SQLite versions, this flag has no use)
+;sqlite3.defensive = 1
+
+[Pcre]
+; PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+[Pdo_mysql]
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; http://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = Off
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_memory_statistics = Off
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; http://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; http://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; http://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; http://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; http://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle 11g Database Resident
+; Connection Pooling (DRCP). To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; http://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables statement prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; http://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; http://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+; session.save_path = "N;/path"
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+; session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept an uninitialized session ID, and
+; regenerates the session ID if the browser sends an uninitialized session ID.
+; Strict mode protects applications from session fixation via a session adoption
+; vulnerability. It is disabled by default for maximum compatibility, but
+; enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it
+; inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
+; Current valid values are "Strict", "Lax" or "None". When using "None",
+; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
+; https://tools.ietf.org/html/draft-west-first-party-cookies-07
+session.cookie_samesite =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; For high volume production servers, using a value of 1000 is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; http://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; http://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute paths, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+; 4 (4 bits: 0-9, a-f)
+; 5 (5 bits: 0-9, a-v)
+; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq = "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; http://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+; 0: Jump over assertion at run-time
+; 1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = -1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertionError on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; http://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; http://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a component's typlib on com_load()
+; http://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; http://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; http://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+; The version of the .NET framework to use. The value of the setting are the first three parts
+; of the framework's version number, separated by dots, and prefixed with "v", e.g. "v4.0.30319".
+;com.dotnet_version=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_translation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < input_encoding < mbsting.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+; portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; Enable strict encoding detection.
+;mbstring.strict_detection = Off
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
+; to the pcre.recursion_limit for PCRE.
+;mbstring.regex_stack_limit=100000
+
+; This directive specifies maximum retry count for mbstring regular expressions. It is similar
+; to the pcre.backtrack_limit for PCRE.
+;mbstring.regex_retry_limit=1000000
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; If enabled, compilation warnings (including notices and deprecations) will
+; be recorded and replayed each time a file is included. Otherwise, compilation
+; warnings will only be emitted when the file is first cached.
+;opcache.record_warnings=0
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0x7FFFBFFF
+
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Facilitates multiple OPcache instances per user (for Windows only). All PHP
+; processes with the same cache ID and user share an OPcache instance.
+;opcache.cache_id=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; This should improve performance, but requires appropriate OS configuration.
+;opcache.huge_code_pages=1
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
+; Specifies a PHP script that is going to be compiled and executed at server
+; start-up.
+; http://php.net/opcache.preload
+;opcache.preload=
+
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; http://php.net/opcache.preload_user
+;opcache.preload_user=
+
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+[ffi]
+; FFI API restriction. Possible values:
+; "preload" - enabled in CLI scripts and preloaded files (default)
+; "false" - always disabled
+; "true" - always enabled
+;ffi.enable=preload
+
+; List of headers files to preload, wildcard patterns allowed.
+;ffi.preload=
diff --git a/utils/Docker/docker-compose.yml b/utils/Docker/docker-compose.yml index 1a7dcf6..e1f8a58 100644 --- a/utils/Docker/docker-compose.yml +++ b/utils/Docker/docker-compose.yml @@ -20,12 +20,14 @@ services: - ./www/log/:/var/log/apache2/
networks:
- default
+ environment:
+ - REALPATH_CACHE_SIZE=32M
mysql:
container_name: mysql_1ka
- ##image: mariadb:10.3
- image: mysql:5.6.40
- ports:
+ image: mariadb:10.3
+ ##image: mysql:5.6.40
+ ports:
- "3306:3306"
volumes:
- ./sql/database:/var/lib/mysql
@@ -38,7 +40,9 @@ services: - MYSQL_ROOT_PASSWORD=1234
- MYSQL_PASSWORD=1234
- MYSQL_DATABASE=1ka
- - MYSQL_ALLOW_EMPTY_PASSWORD=true
+ - MYSQL_ALLOW_EMPTY_PASSWORD=true
+ - REALPATH_CACHE_SIZE=32M
+ command: mysqld --sql_mode="" --innodb-flush-method=fsync
phpmyadmin:
container_name: phpmyadmin_1ka
@@ -50,6 +54,10 @@ services: environment:
- PMA_HOST=mysql
- PMA_PORT=3306
+ - UPLOAD_LIMIT=300M
+ - MAX_EXECUTION_TIME=1200
+ - MEMORY_LIMIT=1024M
+ - REALPATH_CACHE_SIZE=32M
networks:
- default
diff --git a/utils/Docker/sql/config/mysql.cnf b/utils/Docker/sql/config/mysql.cnf index 9d5652c..3dba4d3 100644 --- a/utils/Docker/sql/config/mysql.cnf +++ b/utils/Docker/sql/config/mysql.cnf @@ -1,2 +1,5 @@ [mysqld]
-log-error = /var/log/mysql/error.log
\ No newline at end of file +log-error = /var/log/mysql/error.log
+
+# V kolikor imamo težave pri ustvarjanju nove ankete, lahko tudi mysqlu poženemo SET GLOBAL sql_mode = "";
+sql_mode = ""
\ No newline at end of file diff --git a/utils/Docker/www/config/browscap.ini b/utils/Docker/www/config/browscap.ini index b6239bc..ba4238f 100644 --- a/utils/Docker/www/config/browscap.ini +++ b/utils/Docker/www/config/browscap.ini @@ -1,28335 +1,28335 @@ -;;; Provided courtesy of http://browscap.org/ -;;; Created on Tuesday, May 4, 2021 at 07:10 AM GMT+0000 -;;; Keep up with the latest goings-on with the project: -;;; Follow us on Twitter <https://twitter.com/browscap>, or... -;;; Like us on Facebook <https://facebook.com/browscap>, or... -;;; Collaborate on GitHub <https://github.com/browscap>. - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version - -[GJK_Browscap_Version] -Version=6000045 -Released=Tue, 04 May 2021 07:10:07 +0000 -Format=php -Type=LITE - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties - -[DefaultProperties] -Comment="DefaultProperties" -Browser="DefaultProperties" -Version="0.0" -Platform="unknown" -isMobileDevice="false" -isTablet="false" -Device_Type="unknown" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 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 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 99.0 - -[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 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 99.0 for Android - -[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 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 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 99.0 - -[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 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 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 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 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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.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 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 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 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 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 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 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 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 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 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 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 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 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 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 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 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 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 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 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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" - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 - -[*] -Parent="DefaultProperties" -Comment="Default Browser" -Browser="Default Browser" - +;;; Provided courtesy of http://browscap.org/
+;;; Created on Tuesday, May 4, 2021 at 07:10 AM GMT+0000
+;;; Keep up with the latest goings-on with the project:
+;;; Follow us on Twitter <https://twitter.com/browscap>, or...
+;;; Like us on Facebook <https://facebook.com/browscap>, or...
+;;; Collaborate on GitHub <https://github.com/browscap>.
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version
+
+[GJK_Browscap_Version]
+Version=6000045
+Released=Tue, 04 May 2021 07:10:07 +0000
+Format=php
+Type=LITE
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
+
+[DefaultProperties]
+Comment="DefaultProperties"
+Browser="DefaultProperties"
+Version="0.0"
+Platform="unknown"
+isMobileDevice="false"
+isTablet="false"
+Device_Type="unknown"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 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 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 99.0
+
+[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 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 99.0 for Android
+
+[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 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 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 99.0
+
+[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 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 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 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 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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.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 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 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 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 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 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 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 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 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 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 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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 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 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 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 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 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 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 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 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 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 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
+
+[*]
+Parent="DefaultProperties"
+Comment="Default Browser"
+Browser="Default Browser"
+
diff --git a/utils/Docker/www/config/edited-php.ini b/utils/Docker/www/config/edited-php.ini new file mode 100644 index 0000000..55ff256 --- /dev/null +++ b/utils/Docker/www/config/edited-php.ini @@ -0,0 +1,1947 @@ +[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable. (As of PHP 5.2.0)
+; 3. A number of predefined registry keys on Windows (As of PHP 5.2.0)
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (usually C:\windows)
+; See the PHP docs for more specific information.
+; http://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; http://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security conscience applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it is
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is the php.ini-development INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; session.sid_bits_per_character
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to an empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; http://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; <? and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that <?php and ?> should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the <?= shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/short-open-tag
+short_open_tag = Off
+
+; The number of significant digits displayed in floating point numbers.
+; http://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; http://php.net/output-buffering
+output_buffering = 4096
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; http://php.net/output-handler
+;output_handler =
+
+; URL rewriter function rewrites URL on the fly by using
+; output buffer. You can set target tags by this configuration.
+; "form" tag is special tag. It will add hidden input tag to pass values.
+; Refer to session.trans_sid_tags for usage.
+; Default Value: "form="
+; Development Value: "form="
+; Production Value: "form="
+;url_rewriter.tags
+
+; URL rewriter will not rewrite absolute URL nor form by default. To enable
+; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
+; Refer to session.trans_sid_hosts for more details.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;url_rewriter.hosts
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; http://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; http://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; http://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; http://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; The unserialize_max_depth specifies the default depth limit for unserialized
+; structures. Setting the depth limit too high may result in stack overflows
+; during unserialization. The unserialize_max_depth ini setting can be
+; overridden by the max_depth option on individual unserialize() calls.
+; A value of 0 disables the depth limit.
+;unserialize_max_depth = 4096
+
+; When floats & doubles are serialized, store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+; The value is also used for json_encode when encoding double values.
+; If -1 is used, then dtoa mode 0 is used which automatically select the best
+; precision.
+serialize_precision = -1
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; Note: disables the realpath cache
+; http://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions.
+; It receives a comma-delimited list of function names.
+; http://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes.
+; It receives a comma-delimited list of class names.
+; http://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; <span style="color: ???????"> would work.
+; http://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; http://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; Note: if open_basedir is set, the cache is disabled
+; http://php.net/realpath-cache-size
+;realpath_cache_size = 4096k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; http://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; http://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+; Default: Off
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+; Default: ""
+;zend.script_encoding =
+
+; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
+; Default: Off
+zend.exception_ignore_args = Off
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; http://php.net/expose-php
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; http://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 30
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; http://php.net/max-input-time
+max_input_time = 60
+
+; Maximum input variable nesting level
+; http://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+;max_input_vars = 1000
+
+; Maximum amount of memory a script may consume
+; http://php.net/memory-limit
+memory_limit = 1280M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE and E_STRICT, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings (includes E_STRICT as of PHP 5.4.0)
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it is automatically initialized to an
+; empty string)
+; E_STRICT - run-time notices, enable to have PHP suggest changes
+; to your code which will ensure the best interoperability
+; and forward compatibility of your code
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
+; http://php.net/error-reporting
+error_reporting = E_ALL
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-errors
+display_errors = On
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. PHP's default behavior is to suppress those
+; errors from clients. Turning the display of startup errors on can be useful in
+; debugging configuration problems. We strongly recommend you
+; set this to 'off' for production servers.
+; Default Value: Off
+; Development Value: On
+; Production Value: Off
+; http://php.net/display-startup-errors
+display_startup_errors = On
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; http://php.net/log-errors
+log_errors = On
+
+; Set maximum length of log_errors. In error_log information about the source is
+; added. The default is 1024 and 0 allows to not apply any maximum length at all.
+; http://php.net/log-errors-max-len
+log_errors_max_len = 1024
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; http://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; http://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This is only effective in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; http://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is on by default.
+;report_zend_debug = 0
+
+; Store the last error/warning message in $php_errormsg (boolean). Setting this value
+; to On can assist in debugging and is appropriate for development servers. It should
+; however be disabled on production servers.
+; This directive is DEPRECATED.
+; Default Value: Off
+; Development Value: Off
+; Production Value: Off
+; http://php.net/track-errors
+;track_errors = Off
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; http://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; http://php.net/html-errors
+;html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from http://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; http://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; http://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-prepend-string
+; Example:
+;error_prepend_string = "<span style='color: #ff0000'>"
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; http://php.net/error-append-string
+; Example:
+;error_append_string = "</span>"
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; http://php.net/error-log
+; Example:
+;error_log = php_errors.log
+; Log errors to syslog (Event Log on Windows).
+;error_log = syslog
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
+;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
+;syslog.facility = user
+
+; Set this to disable filtering control characters (the default).
+; Some loggers only accept NVT-ASCII, others accept anything that's not
+; control characters. If your logger accepts everything, then no filtering
+; is needed at all.
+; Allowed values are:
+; ascii (all printable ASCII characters and NL)
+; no-ctrl (all characters except control characters)
+; all (all characters)
+; raw (like "all", but messages are not split at newlines)
+; http://php.net/syslog.filter
+;syslog.filter = ascii
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; http://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; http://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; http://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; http://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; http://php.net/register-argc-argv
+register_argc_argv = Off
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any effect.
+; http://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; http://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; http://php.net/post-max-size
+post_max_size = 800M
+
+; Automatically add files before PHP document.
+; http://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; http://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a media type using the Content-Type header. To
+; disable this, simply set it to be empty.
+;
+; PHP's built-in default media type is set to text/html.
+; http://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; http://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; http://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; See also output_buffer.
+; http://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/php/includes"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; http://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; http://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; http://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; http://php.net/extension-dir
+;extension_dir = "./"
+; On windows:
+;extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+;sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; http://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; http://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; http://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; http://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
+; of the web tree and people will not be able to circumvent .htaccess security.
+;cgi.discard_path=1
+
+; FastCGI under IIS supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; http://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+;fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; http://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
+; (shebang) at the top of the running script. This line might be needed if the
+; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
+; mode skips this line and ignores its content if this directive is turned on.
+; http://php.net/cgi.check-shebang-line
+;cgi.check_shebang_line=1
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; http://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; http://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; http://php.net/upload-max-filesize
+upload_max_filesize = 400M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
+; http://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; http://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; http://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; http://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; http://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename
+;
+; For example:
+;
+; extension=mysqli
+;
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
+;
+; extension=/path/to/extension/mysqli.so
+;
+; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
+; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=<ext>) syntax.
+;
+; Notes for Windows environments :
+;
+; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
+; extension folders as well as the separate PECL DLL download (PHP 5+).
+; Be sure to appropriately set the extension_dir directive.
+;
+;extension=bz2
+;extension=curl
+;extension=ffi
+;extension=ftp
+;extension=fileinfo
+;extension=gd2
+;extension=gettext
+;extension=gmp
+;extension=intl
+;extension=imap
+;extension=ldap
+;extension=mbstring
+;extension=exif ; Must be after mbstring as it depends on it
+;extension=mysqli
+;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
+;extension=odbc
+;extension=openssl
+;extension=pdo_firebird
+;extension=pdo_mysql
+;extension=pdo_oci
+;extension=pdo_odbc
+;extension=pdo_pgsql
+;extension=pdo_sqlite
+;extension=pgsql
+;extension=shmop
+
+; The MIBS data available in the PHP distribution must be installed.
+; See http://www.php.net/manual/en/snmp.installation.php
+;extension=snmp
+
+;extension=soap
+;extension=sockets
+;extension=sodium
+;extension=sqlite3
+;extension=tidy
+;extension=xmlrpc
+;extension=xsl
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; http://php.net/date.timezone
+;date.timezone =
+
+; http://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; http://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; http://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.583333
+
+; http://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.583333
+
+[filter]
+; http://php.net/filter.default
+;filter.default = unsafe_raw
+
+; http://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < input_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[imap]
+; rsh/ssh logins are disabled by default. Use this INI entry if you want to
+; enable them. Note that the IMAP library does not filter mailbox names before
+; passing them to rsh/ssh command, thus passing untrusted data to this function
+; with rsh/ssh enabled is insecure.
+;imap.enable_insecure_rsh=0
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+; Directory pointing to SQLite3 extensions
+; http://php.net/sqlite3.extension-dir
+;sqlite3.extension_dir =
+
+; SQLite defensive mode flag (only available from SQLite 3.26+)
+; When the defensive flag is enabled, language features that allow ordinary
+; SQL to deliberately corrupt the database file are disabled. This forbids
+; writing directly to the schema, shadow tables (eg. FTS data tables), or
+; the sqlite_dbpage virtual table.
+; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
+; (for older SQLite versions, this flag has no use)
+;sqlite3.defensive = 1
+
+[Pcre]
+; PCRE library backtracking limit.
+; http://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
+; http://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; http://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+;pdo_odbc.db2_instance_name
+
+[Pdo_mysql]
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+pdo_mysql.default_socket=
+
+[Phar]
+; http://php.net/phar.readonly
+;phar.readonly = On
+
+; http://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; http://php.net/smtp
+SMTP = localhost
+; http://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; http://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; http://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = Off
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[ODBC]
+; http://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; http://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; http://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; http://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; http://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; http://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; http://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; http://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; http://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; Allow or prevent persistent links.
+; http://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; http://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; http://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; http://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysqli_connect() (doesn't apply in safe mode).
+; http://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; http://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; Allow or prevent reconnect
+mysqli.reconnect = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_memory_statistics = On
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; http://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+;mysqlnd.sha256_server_public_key =
+
+[OCI8]
+
+; Connection: Enables privileged connections using external
+; credentials (OCI_SYSOPER, OCI_SYSDBA)
+; http://php.net/oci8.privileged-connect
+;oci8.privileged_connect = Off
+
+; Connection: The maximum number of persistent OCI8 connections per
+; process. Using -1 means no limit.
+; http://php.net/oci8.max-persistent
+;oci8.max_persistent = -1
+
+; Connection: The maximum number of seconds a process is allowed to
+; maintain an idle persistent connection. Using -1 means idle
+; persistent connections will be maintained forever.
+; http://php.net/oci8.persistent-timeout
+;oci8.persistent_timeout = -1
+
+; Connection: The number of seconds that must pass before issuing a
+; ping during oci_pconnect() to check the connection validity. When
+; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
+; pings completely.
+; http://php.net/oci8.ping-interval
+;oci8.ping_interval = 60
+
+; Connection: Set this to a user chosen connection class to be used
+; for all pooled server requests with Oracle 11g Database Resident
+; Connection Pooling (DRCP). To use DRCP, this value should be set to
+; the same string for all web servers running the same application,
+; the database pool must be configured, and the connection string must
+; specify to use a pooled server.
+;oci8.connection_class =
+
+; High Availability: Using On lets PHP receive Fast Application
+; Notification (FAN) events generated when a database node fails. The
+; database must also be configured to post FAN events.
+;oci8.events = Off
+
+; Tuning: This option enables statement caching, and specifies how
+; many statements to cache. Using 0 disables statement caching.
+; http://php.net/oci8.statement-cache-size
+;oci8.statement_cache_size = 20
+
+; Tuning: Enables statement prefetching and sets the default number of
+; rows that will be fetched automatically after statement execution.
+; http://php.net/oci8.default-prefetch
+;oci8.default_prefetch = 100
+
+; Compatibility. Using On means oci_close() will not close
+; oci_connect() and oci_new_connect() connections.
+; http://php.net/oci8.old-oci-close-semantics
+;oci8.old_oci_close_semantics = Off
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; http://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; http://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; http://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; http://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; http://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; http://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; http://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; http://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; http://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+; session.save_path = "N;/path"
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+; session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; http://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept an uninitialized session ID, and
+; regenerates the session ID if the browser sends an uninitialized session ID.
+; Strict mode protects applications from session fixation via a session adoption
+; vulnerability. It is disabled by default for maximum compatibility, but
+; enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; http://php.net/session.use-cookies
+session.use_cookies = 1
+
+; http://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; http://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; http://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; http://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; http://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; http://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; http://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it
+; inaccessible to browser scripting languages such as JavaScript.
+; http://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
+; Current valid values are "Strict", "Lax" or "None". When using "None",
+; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
+; https://tools.ietf.org/html/draft-west-first-party-cookies-07
+session.cookie_samesite =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; http://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; For high volume production servers, using a value of 1000 is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; http://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; http://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; http://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; http://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; http://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; http://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; Set session ID character length. This value could be between 22 to 256.
+; Shorter length than default is supported only for compatibility reason.
+; Users should use 32 or more chars.
+; http://php.net/session.sid-length
+; Default Value: 32
+; Development Value: 26
+; Production Value: 26
+session.sid_length = 26
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+; <form> is special; if you include them here, the rewriter will
+; add a hidden <input> field with the info which is otherwise appended
+; to URLs. <form> tag's action attribute URL will not be modified
+; unless it is specified.
+; Note that all valid entries require a "=", even if no value follows.
+; Default Value: "a=href,area=href,frame=src,form="
+; Development Value: "a=href,area=href,frame=src,form="
+; Production Value: "a=href,area=href,frame=src,form="
+; http://php.net/url-rewriter.tags
+session.trans_sid_tags = "a=href,area=href,frame=src,form="
+
+; URL rewriter does not rewrite absolute URLs by default.
+; To enable rewrites for absolute paths, target hosts must be specified
+; at RUNTIME. i.e. use ini_set()
+; <form> tags is special. PHP will check action attribute's URL regardless
+; of session.trans_sid_tags setting.
+; If no host is defined, HTTP_HOST will be used for allowed host.
+; Example value: php.net,www.php.net,wiki.php.net
+; Use "," for multiple hosts. No spaces are allowed.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;session.trans_sid_hosts=""
+
+; Define how many bits are stored in each character when converting
+; the binary hash data to something readable.
+; Possible values:
+; 4 (4 bits: 0-9, a-f)
+; 5 (5 bits: 0-9, a-v)
+; 6 (6 bits: 0-9, a-z, A-Z, "-", ",")
+; Default Value: 4
+; Development Value: 5
+; Production Value: 5
+; http://php.net/session.hash-bits-per-character
+session.sid_bits_per_character = 5
+
+; Enable upload progress tracking in $_SESSION
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.enabled
+;session.upload_progress.enabled = On
+
+; Cleanup the progress information as soon as all POST data has been read
+; (i.e. upload completed).
+; Default Value: On
+; Development Value: On
+; Production Value: On
+; http://php.net/session.upload-progress.cleanup
+;session.upload_progress.cleanup = On
+
+; A prefix used for the upload progress key in $_SESSION
+; Default Value: "upload_progress_"
+; Development Value: "upload_progress_"
+; Production Value: "upload_progress_"
+; http://php.net/session.upload-progress.prefix
+;session.upload_progress.prefix = "upload_progress_"
+
+; The index name (concatenated with the prefix) in $_SESSION
+; containing the upload progress information
+; Default Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Development Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; Production Value: "PHP_SESSION_UPLOAD_PROGRESS"
+; http://php.net/session.upload-progress.name
+;session.upload_progress.name = "PHP_SESSION_UPLOAD_PROGRESS"
+
+; How frequently the upload progress should be updated.
+; Given either in percentages (per-file), or in bytes
+; Default Value: "1%"
+; Development Value: "1%"
+; Production Value: "1%"
+; http://php.net/session.upload-progress.freq
+;session.upload_progress.freq = "1%"
+
+; The minimum delay between updates, in seconds
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; http://php.net/session.upload-progress.min-freq
+;session.upload_progress.min_freq = "1"
+
+; Only write session data when session data is changed. Enabled by default.
+; http://php.net/session.lazy-write
+;session.lazy_write = On
+
+[Assertion]
+; Switch whether to compile assertions at all (to have no overhead at run-time)
+; -1: Do not compile at all
+; 0: Jump over assertion at run-time
+; 1: Execute assertions
+; Changing from or to a negative value is only possible in php.ini! (For turning assertions on and off at run-time, see assert.active, when zend.assertions = 1)
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+; http://php.net/zend.assertions
+zend.assertions = 1
+
+; Assert(expr); active by default.
+; http://php.net/assert.active
+;assert.active = On
+
+; Throw an AssertionError on failed assertions
+; http://php.net/assert.exception
+;assert.exception = On
+
+; Issue a PHP warning for each failed assertion. (Overridden by assert.exception if active)
+; http://php.net/assert.warning
+;assert.warning = On
+
+; Don't bail out by default.
+; http://php.net/assert.bail
+;assert.bail = Off
+
+; User-function to be called if an assertion fails.
+; http://php.net/assert.callback
+;assert.callback = 0
+
+; Eval the expression with current error_reporting(). Set to true if you want
+; error_reporting(0) around the eval().
+; http://php.net/assert.quiet-eval
+;assert.quiet_eval = 0
+
+[COM]
+; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
+; http://php.net/com.typelib-file
+;com.typelib_file =
+
+; allow Distributed-COM calls
+; http://php.net/com.allow-dcom
+;com.allow_dcom = true
+
+; autoregister constants of a component's typlib on com_load()
+; http://php.net/com.autoregister-typelib
+;com.autoregister_typelib = true
+
+; register constants casesensitive
+; http://php.net/com.autoregister-casesensitive
+;com.autoregister_casesensitive = false
+
+; show warnings on duplicate constant registrations
+; http://php.net/com.autoregister-verbose
+;com.autoregister_verbose = true
+
+; The default character set code-page to use when passing strings to and from COM objects.
+; Default: system ANSI code page
+;com.code_page=
+
+[mbstring]
+; language for internal character representation.
+; This affects mb_send_mail() and mbstring.detect_order.
+; http://php.net/mbstring.language
+;mbstring.language = Japanese
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; internal/script encoding.
+; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;mbstring.internal_encoding =
+
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; http input encoding.
+; mbstring.encoding_translation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < input_encoding < mbstring.http_input
+; http://php.net/mbstring.http-input
+;mbstring.http_input =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; http output encoding.
+; mb_output_handler must be registered as output buffer to function.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+; http://php.net/mbstring.http-output
+;mbstring.http_output =
+
+; enable automatic encoding translation according to
+; mbstring.internal_encoding setting. Input chars are
+; converted to internal encoding by setting this to On.
+; Note: Do _not_ use automatic encoding translation for
+; portable libs/applications.
+; http://php.net/mbstring.encoding-translation
+;mbstring.encoding_translation = Off
+
+; automatic encoding detection order.
+; "auto" detect order is changed according to mbstring.language
+; http://php.net/mbstring.detect-order
+;mbstring.detect_order = auto
+
+; substitute_character used when character cannot be converted
+; one from another
+; http://php.net/mbstring.substitute-character
+;mbstring.substitute_character = none
+
+; overload(replace) single byte functions by mbstring functions.
+; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
+; etc. Possible values are 0,1,2,4 or combination of them.
+; For example, 7 for overload everything.
+; 0: No overload
+; 1: Overload mail() function
+; 2: Overload str*() functions
+; 4: Overload ereg*() functions
+; http://php.net/mbstring.func-overload
+;mbstring.func_overload = 0
+
+; enable strict encoding detection.
+; Default: Off
+;mbstring.strict_detection = On
+
+; This directive specifies the regex pattern of content types for which mb_output_handler()
+; is activated.
+; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
+;mbstring.http_output_conv_mimetype=
+
+; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
+; to the pcre.recursion_limit for PCRE.
+; Default: 100000
+;mbstring.regex_stack_limit=100000
+
+; This directive specifies maximum retry count for mbstring regular expressions. It is similar
+; to the pcre.backtrack_limit for PCRE.
+; Default: 1000000
+;mbstring.regex_retry_limit=1000000
+
+[gd]
+; Tell the jpeg decode to ignore warnings and try to create
+; a gd image. The warning will then be displayed as notices
+; disabled by default
+; http://php.net/gd.jpeg-ignore-warning
+;gd.jpeg_ignore_warning = 1
+
+[exif]
+; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
+; With mbstring support this will automatically be converted into the encoding
+; given by corresponding encode setting. When empty mbstring.internal_encoding
+; is used. For the decode settings you can distinguish between motorola and
+; intel byte order. A decode setting cannot be empty.
+; http://php.net/exif.encode-unicode
+;exif.encode_unicode = ISO-8859-15
+
+; http://php.net/exif.decode-unicode-motorola
+;exif.decode_unicode_motorola = UCS-2BE
+
+; http://php.net/exif.decode-unicode-intel
+;exif.decode_unicode_intel = UCS-2LE
+
+; http://php.net/exif.encode-jis
+;exif.encode_jis =
+
+; http://php.net/exif.decode-jis-motorola
+;exif.decode_jis_motorola = JIS
+
+; http://php.net/exif.decode-jis-intel
+;exif.decode_jis_intel = JIS
+
+[Tidy]
+; The path to a default tidy configuration file to use when using tidy
+; http://php.net/tidy.default-config
+;tidy.default_config = /usr/local/lib/php/default.tcfg
+
+; Should tidy clean and repair output automatically?
+; WARNING: Do not use this option if you are generating non-html content
+; such as dynamic images
+; http://php.net/tidy.clean-output
+tidy.clean_output = Off
+
+[soap]
+; Enables or disables WSDL caching feature.
+; http://php.net/soap.wsdl-cache-enabled
+soap.wsdl_cache_enabled=1
+
+; Sets the directory name where SOAP extension will put cache files.
+; http://php.net/soap.wsdl-cache-dir
+soap.wsdl_cache_dir="/tmp"
+
+; (time to live) Sets the number of second while cached file will be used
+; instead of original one.
+; http://php.net/soap.wsdl-cache-ttl
+soap.wsdl_cache_ttl=86400
+
+; Sets the size of the cache limit. (Max. number of WSDL files to cache)
+soap.wsdl_cache_limit = 5
+
+[sysvshm]
+; A default size of the shared memory segment
+;sysvshm.init_mem = 10000
+
+[ldap]
+; Sets the maximum number of open links or -1 for unlimited.
+ldap.max_links = -1
+
+[dba]
+;dba.default_handler=
+
+[opcache]
+; Determines if Zend OPCache is enabled
+;opcache.enable=1
+
+; Determines if Zend OPCache is enabled for the CLI version of PHP
+;opcache.enable_cli=0
+
+; The OPcache shared memory storage size.
+;opcache.memory_consumption=128
+
+; The amount of memory for interned strings in Mbytes.
+;opcache.interned_strings_buffer=8
+
+; The maximum number of keys (scripts) in the OPcache hash table.
+; Only numbers between 200 and 1000000 are allowed.
+;opcache.max_accelerated_files=10000
+
+; The maximum percentage of "wasted" memory until a restart is scheduled.
+;opcache.max_wasted_percentage=5
+
+; When this directive is enabled, the OPcache appends the current working
+; directory to the script key, thus eliminating possible collisions between
+; files with the same name (basename). Disabling the directive improves
+; performance, but may break existing applications.
+;opcache.use_cwd=1
+
+; When disabled, you must reset the OPcache manually or restart the
+; webserver for changes to the filesystem to take effect.
+;opcache.validate_timestamps=1
+
+; How often (in seconds) to check file timestamps for changes to the shared
+; memory storage allocation. ("1" means validate once per second, but only
+; once per request. "0" means always validate)
+;opcache.revalidate_freq=2
+
+; Enables or disables file search in include_path optimization
+;opcache.revalidate_path=0
+
+; If disabled, all PHPDoc comments are dropped from the code to reduce the
+; size of the optimized code.
+;opcache.save_comments=1
+
+; Allow file existence override (file_exists, etc.) performance feature.
+;opcache.enable_file_override=0
+
+; A bitmask, where each bit enables or disables the appropriate OPcache
+; passes
+;opcache.optimization_level=0x7FFFBFFF
+
+;opcache.dups_fix=0
+
+; The location of the OPcache blacklist file (wildcards allowed).
+; Each OPcache blacklist file is a text file that holds the names of files
+; that should not be accelerated. The file format is to add each filename
+; to a new line. The filename may be a full path or just a file prefix
+; (i.e., /var/www/x blacklists all the files and directories in /var/www
+; that start with 'x'). Line starting with a ; are ignored (comments).
+;opcache.blacklist_filename=
+
+; Allows exclusion of large files from being cached. By default all files
+; are cached.
+;opcache.max_file_size=0
+
+; Check the cache checksum each N requests.
+; The default value of "0" means that the checks are disabled.
+;opcache.consistency_checks=0
+
+; How long to wait (in seconds) for a scheduled restart to begin if the cache
+; is not being accessed.
+;opcache.force_restart_timeout=180
+
+; OPcache error_log file name. Empty string assumes "stderr".
+;opcache.error_log=
+
+; All OPcache errors go to the Web server log.
+; By default, only fatal errors (level 0) or errors (level 1) are logged.
+; You can also enable warnings (level 2), info messages (level 3) or
+; debug messages (level 4).
+;opcache.log_verbosity_level=1
+
+; Preferred Shared Memory back-end. Leave empty and let the system decide.
+;opcache.preferred_memory_model=
+
+; Protect the shared memory from unexpected writing during script execution.
+; Useful for internal debugging only.
+;opcache.protect_memory=0
+
+; Allows calling OPcache API functions only from PHP scripts which path is
+; started from specified string. The default "" means no restriction
+;opcache.restrict_api=
+
+; Mapping base of shared memory segments (for Windows only). All the PHP
+; processes have to map shared memory into the same address space. This
+; directive allows to manually fix the "Unable to reattach to base address"
+; errors.
+;opcache.mmap_base=
+
+; Facilitates multiple OPcache instances per user (for Windows only). All PHP
+; processes with the same cache ID and user share an OPcache instance.
+;opcache.cache_id=
+
+; Enables and sets the second level cache directory.
+; It should improve performance when SHM memory is full, at server restart or
+; SHM reset. The default "" disables file based caching.
+;opcache.file_cache=
+
+; Enables or disables opcode caching in shared memory.
+;opcache.file_cache_only=0
+
+; Enables or disables checksum validation when script loaded from file cache.
+;opcache.file_cache_consistency_checks=1
+
+; Implies opcache.file_cache_only=1 for a certain process that failed to
+; reattach to the shared memory (for Windows only). Explicitly enabled file
+; cache is required.
+;opcache.file_cache_fallback=1
+
+; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
+; This should improve performance, but requires appropriate OS configuration.
+;opcache.huge_code_pages=0
+
+; Validate cached file permissions.
+;opcache.validate_permission=0
+
+; Prevent name collisions in chroot'ed environment.
+;opcache.validate_root=0
+
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
+; Specifies a PHP script that is going to be compiled and executed at server
+; start-up.
+; http://php.net/opcache.preload
+;opcache.preload=
+
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; http://php.net/opcache.preload_user
+;opcache.preload_user=
+
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
+
+[curl]
+; A default value for the CURLOPT_CAINFO option. This is required to be an
+; absolute path.
+;curl.cainfo =
+
+[openssl]
+; The location of a Certificate Authority (CA) file on the local filesystem
+; to use when verifying the identity of SSL/TLS peers. Most users should
+; not specify a value for this directive as PHP will attempt to use the
+; OS-managed cert stores in its absence. If specified, this value may still
+; be overridden on a per-stream basis via the "cafile" SSL stream context
+; option.
+;openssl.cafile=
+
+; If openssl.cafile is not specified or if the CA file is not found, the
+; directory pointed to by openssl.capath is searched for a suitable
+; certificate. This value must be a correctly hashed certificate directory.
+; Most users should not specify a value for this directive as PHP will
+; attempt to use the OS-managed cert stores in its absence. If specified,
+; this value may still be overridden on a per-stream basis via the "capath"
+; SSL stream context option.
+;openssl.capath=
+
+[ffi]
+; FFI API restriction. Possible values:
+; "preload" - enabled in CLI scripts and preloaded files (default)
+; "false" - always disabled
+; "true" - always enabled
+;ffi.enable=preload
+
+; List of headers files to preload, wildcard patterns allowed.
+;ffi.preload=
diff --git a/utils/SurveySyncMergeImport.php b/utils/SurveySyncMergeImport.php index 3ed8eb5..e2718c0 100644 --- a/utils/SurveySyncMergeImport.php +++ b/utils/SurveySyncMergeImport.php @@ -11,20 +11,26 @@ include_once ('../settings.php'); $struktura = array();
$podatki = array(
'srv_user' => array(),
- 'srv_data_checkgrid' => array(),
+ 'srv_data_checkgrid_archive1' => array(),
+ 'srv_data_checkgrid_archive2' => array(),
'srv_data_checkgrid_active' => array(),
'srv_data_glasovanje' => array(),
- 'srv_data_grid' => array(),
+ 'srv_data_grid_archive1' => array(),
+ 'srv_data_grid_archive2' => array(),
'srv_data_grid_active' => array(),
'srv_data_rating' => array(),
- 'srv_data_text' => array(),
+ 'srv_data_text_archive1' => array(),
+ 'srv_data_text_archive2' => array(),
'srv_data_text_active' => array(),
- 'srv_data_textgrid' => array(),
+ 'srv_data_textgrid_archive1' => array(),
+ 'srv_data_textgrid_archive2' => array(),
'srv_data_textgrid_active' => array(),
'srv_data_upload' => array(),
- 'srv_data_vrednost' => array(),
+ 'srv_data_vrednost_archive1' => array(),
+ 'srv_data_vrednost_archive2' => array(),
'srv_data_vrednost_active' => array(),
- 'srv_user_grupa' => array(),
+ 'srv_user_grupa_archive1' => array(),
+ 'srv_user_grupa_archive2' => array(),
'srv_user_grupa_active' => array());
@@ -102,20 +108,26 @@ if ($handle = opendir($sync_server_path)) { }
$podatki['srv_user'] = array_merge($podatki['srv_user'], $kljuc['srv_user']);
- $podatki['srv_data_checkgrid'] = array_merge($podatki['srv_data_checkgrid'], $kljuc['srv_data_checkgrid']);
+ $podatki['srv_data_checkgrid_archive1'] = array_merge($podatki['srv_data_checkgrid_archive1'], $kljuc['srv_data_checkgrid_archive1']);
+ $podatki['srv_data_checkgrid_archive2'] = array_merge($podatki['srv_data_checkgrid_archive2'], $kljuc['srv_data_checkgrid_archive2']);
$podatki['srv_data_checkgrid_active'] = array_merge($podatki['srv_data_checkgrid_active'], $kljuc['srv_data_checkgrid_active']);
$podatki['srv_data_glasovanje'] = array_merge($podatki['srv_data_glasovanje'], $kljuc['srv_data_glasovanje']);
- $podatki['srv_data_grid'] = array_merge($podatki['srv_data_grid'], $kljuc['srv_data_grid']);
+ $podatki['srv_data_grid_archive1'] = array_merge($podatki['srv_data_grid_archive1'], $kljuc['srv_data_grid_archive1']);
+ $podatki['srv_data_grid_archive2'] = array_merge($podatki['srv_data_grid_archive2'], $kljuc['srv_data_grid_archive2']);
$podatki['srv_data_grid_active'] = array_merge($podatki['srv_data_grid_active'], $kljuc['srv_data_grid_active']);
$podatki['srv_data_rating'] = array_merge($podatki['srv_data_rating'], $kljuc['srv_data_rating']);
- $podatki['srv_data_text'] = array_merge($podatki['srv_data_text'], $kljuc['srv_data_text']);
+ $podatki['srv_data_text_archive1'] = array_merge($podatki['srv_data_text_archive1'], $kljuc['srv_data_text_archive1']);
+ $podatki['srv_data_text_archive2'] = array_merge($podatki['srv_data_text_archive2'], $kljuc['srv_data_text_archive2']);
$podatki['srv_data_text_active'] = array_merge($podatki['srv_data_text_active'], $kljuc['srv_data_text_active']);
- $podatki['srv_data_textgrid'] = array_merge($podatki['srv_data_textgrid'], $kljuc['srv_data_textgrid']);
+ $podatki['srv_data_textgrid_archive1'] = array_merge($podatki['srv_data_textgrid_archive1'], $kljuc['srv_data_textgrid_archive1']);
+ $podatki['srv_data_textgrid_archive2'] = array_merge($podatki['srv_data_textgrid_archive2'], $kljuc['srv_data_textgrid_archive2']);
$podatki['srv_data_textgrid_active'] = array_merge($podatki['srv_data_textgrid_active'], $kljuc['srv_data_textgrid_active']);
$podatki['srv_data_upload'] = array_merge($podatki['srv_data_upload'], $kljuc['srv_data_upload']);
- $podatki['srv_data_vrednost'] = array_merge($podatki['srv_data_vrednost'], $kljuc['srv_data_vrednost']);
+ $podatki['srv_data_vrednost_archive1'] = array_merge($podatki['srv_data_vrednost_archive1'], $kljuc['srv_data_vrednost_archive1']);
+ $podatki['srv_data_vrednost_archive2'] = array_merge($podatki['srv_data_vrednost_archive2'], $kljuc['srv_data_vrednost_archive2']);
$podatki['srv_data_vrednost_active'] = array_merge($podatki['srv_data_vrednost_active'], $kljuc['srv_data_vrednost_active']);
- $podatki['srv_user_grupa'] = array_merge($podatki['srv_user_grupa'], $kljuc['srv_user_grupa']);
+ $podatki['srv_user_grupa_archive1'] = array_merge($podatki['srv_user_grupa_archive1'], $kljuc['srv_user_grupa_archive1']);
+ $podatki['srv_user_grupa_archive2'] = array_merge($podatki['srv_user_grupa_archive2'], $kljuc['srv_user_grupa_archive2']);
$podatki['srv_user_grupa_active'] = array_merge($podatki['srv_user_grupa_active'], $kljuc['srv_user_grupa_active']);
$uvozeno = true;
diff --git a/utils/crontab3am.php b/utils/crontab3am.php new file mode 100644 index 0000000..547346f --- /dev/null +++ b/utils/crontab3am.php @@ -0,0 +1,79 @@ +<?php
+
+ // CRONJOB - klice se vsako noc okoli treh
+ ob_start();
+ set_time_limit(2400); # 30 minut
+
+ include_once('../admin/survey/definition.php');
+ include_once('../function.php');
+ include_once('../vendor/autoload.php');
+
+
+ // Nov nacin za izvajanje cronjobov (razred utils/1kaCron/class.CronJobs.php)
+ $cj = new CronJobs();
+
+
+ /*** BRISANJE ***/
+
+ // Brisanje pobrisanih anket (starejsih od 3 meseca) (prej utils/cronetab_send_survey_alert.php)
+ $cj->executeAction('deleteSurveyFromDB');
+
+ // Brisanje pobrisanih vprasanj
+ $cj->executeAction('deleteVprasanjeFromDB');
+
+ // Brisanje pobrisanih podatkov anket (starejsi od 3 mesecev)
+ $cj->executeAction('deleteResponseFromDB');
+
+ // Brisanje podatkov anket, ki so boti (pri neaktivnih anketah starejsih od 3 mesecev)
+ $cj->executeAction('deleteResponseBotFromDB');
+
+ // Brisanje pingdom podatkov anket
+ $cj->executeAction('deleteResponsePingdomFromDB');
+
+ // Generiranje grafov - zanekrat samo čistimo stare grafe (starejše od 30 dni) in ne generiramo ničesar
+ $cj->executeAction('cacheCharts');
+
+ // Brisanje emailov pri dostopu do ankete z emailom - SAMO NA INSTALACIJI MJU www.gov-ankete.si
+ global $site_domain;
+ if($site_domain == 'gov-ankete.si'){
+ $cj->executeAction('deleteEmailAccessEmails');
+ }
+
+ /*** BRISANJE KONEC ***/
+
+
+
+ /*** KESIRANJE ***/
+
+ // Generiranje podatkovnih datotek
+ $cj->executeAction('cacheData');
+
+ // Za modul MAZA - javljanje aplikacijam, ce je anketa potekla (deaktivirana)
+ if(Common::checkModule('maza')){
+ $cj->executeAction('mazaCheckExpiredSurveys');
+ }
+
+ /*** KESIRANJE KONEC ***/
+
+
+
+ /*** OBVESTILA ***/
+
+ // Posiljanje obvestil o poteku anket (prej utils/cronetab_send_survey_alert.php) - TODO
+ //$SL->addMessage(SurveyLog::INFO, "CRONJOB 3am - posiljanje obvestil o poteku anket");
+ //$cj->executeAction('surveySendAlert');
+
+ // Posiljanje obvestila adminom za reset gesla vsakih 6 mesecev
+ //$SL->addMessage(SurveyLog::INFO, "CRONJOB 3am - posiljanje obvestila adminom za reset gesla vsakih 6 mesecev");
+ //$cj->executeAction('adminResetPassword');
+
+ // Posiljanje obvestila metaadminom in avtorju ankete 5 let po aktivaciji, da naj pobrisejo podatke
+ //$SL->addMessage(SurveyLog::INFO, "CRONJOB 3am - posiljanje gdpr obvestil po 5 letih za brisanje podatkov");
+ //$cj->executeAction('gdprMailExpired');
+
+ /*** OBVESTILA KONEC ***/
+
+
+
+ ob_get_clean();
+?>
\ No newline at end of file diff --git a/utils/phpinfo.php b/utils/phpinfo.php index 3d0f18c..d9aee5b 100644 --- a/utils/phpinfo.php +++ b/utils/phpinfo.php @@ -1,6 +1,6 @@ <?php
-phpinfo();
+//phpinfo();
die();
?>
\ No newline at end of file diff --git a/utils/smtp_test.php b/utils/smtp_test.php new file mode 100644 index 0000000..2cf68f5 --- /dev/null +++ b/utils/smtp_test.php @@ -0,0 +1,54 @@ +<?php
+
+/**
+* skripta za testiranje smtp-ja
+*/
+
+include('../function.php');
+include_once '../vendor/autoload.php';
+
+
+$mail = new PHPMailer\PHPMailer\PHPMailer();
+
+try {
+
+ $mail->SMTPDebug = 2;
+
+ // Server settings
+ $mail->isSMTP();
+
+
+ // Preveri in dopolni podatke!
+ $mail->Host = ''; // SMTP server
+ $mail->SMTPAuth = false; // Enable SMTP authentication
+ $mail->Username = ''; // SMTP username
+ $mail->Password = ''; // SMTP password
+ $mail->SMTPSecure = ''; // tls, ssl...
+ $mail->Port = 25; // TCP port
+
+
+
+ // Recipients
+ $mail->setFrom('xxx@xxx.si', 'SMTP tester');
+ $mail->addAddress('xxx@xxx.si');
+
+ // Content
+ $mail->isHTML(true);
+ $mail->Subject = 'SMTP test';
+ $mail->Body = 'Testiranje 1ka emailov.';
+
+ // Send the email
+ $response = $mail->send();
+
+ if($mail->ErrorInfo != '')
+ echo '<br><br>'.$mail->ErrorInfo.'</br>';
+}
+catch (Exception $e) {
+ echo "Error: {$mail->ErrorInfo}";
+}
+
+
+
+
+
+?>
\ No newline at end of file diff --git a/utils/thumb.php b/utils/thumb.php new file mode 100644 index 0000000..8eb6bb8 --- /dev/null +++ b/utils/thumb.php @@ -0,0 +1,1244 @@ +<?php
+/**
+ * TimThumb by Ben Gillbanks and Mark Maunder
+ * Based on work done by Tim McDaniels and Darren Hoyt
+ * http://code.google.com/p/timthumb/
+ *
+ * GNU General Public License, version 2
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ * Examples and documentation available on the project homepage
+ * http://www.binarymoon.co.uk/projects/timthumb/
+ *
+ * $Rev$
+ */
+
+/*
+ * --- TimThumb CONFIGURATION ---
+ * To edit the configs it is best to create a file called timthumb-config.php
+ * and define variables you want to customize in there. It will automatically be
+ * loaded by timthumb. This will save you having to re-edit these variables
+ * everytime you download a new version
+*/
+define ('VERSION', '2.8.10'); // Version of this script
+//Load a config file if it exists. Otherwise, use the values below
+if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
+if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
+if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
+if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
+if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
+
+//Image fetching and caching
+if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', false); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
+if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
+if(! defined('FILE_CACHE_ENABLED') ) define ('FILE_CACHE_ENABLED', TRUE); // Should we store resized/modified images on disk to speed things up?
+if(! defined('FILE_CACHE_TIME_BETWEEN_CLEANS')) define ('FILE_CACHE_TIME_BETWEEN_CLEANS', 86400); // How often the cache is cleaned
+
+if(! defined('FILE_CACHE_MAX_FILE_AGE') ) define ('FILE_CACHE_MAX_FILE_AGE', 86400); // How old does a file have to be to be deleted from the cache
+if(! defined('FILE_CACHE_SUFFIX') ) define ('FILE_CACHE_SUFFIX', '.timthumb.txt'); // What to put at the end of all files in the cache directory so we can identify them
+if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb'); // What to put at the beg of all files in the cache directory so we can identify them
+if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
+if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
+if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
+if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); //Time to wait between errors fetching remote file
+
+//Browser caching
+if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
+if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
+
+//Image size and defaults
+if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
+if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
+if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
+if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
+if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); //42 Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
+if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
+if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
+if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
+if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
+if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
+
+
+//Image compression is enabled if either of these point to valid paths
+
+//These are now disabled by default because the file sizes of PNGs (and GIFs) are much smaller than we used to generate.
+//They only work for PNGs. GIFs and JPEGs are not affected.
+if(! defined('OPTIPNG_ENABLED') ) define ('OPTIPNG_ENABLED', false);
+if(! defined('OPTIPNG_PATH') ) define ('OPTIPNG_PATH', '/usr/bin/optipng'); //This will run first because it gives better compression than pngcrush.
+if(! defined('PNGCRUSH_ENABLED') ) define ('PNGCRUSH_ENABLED', false);
+if(! defined('PNGCRUSH_PATH') ) define ('PNGCRUSH_PATH', '/usr/bin/pngcrush'); //This will only run if OPTIPNG_PATH is not set or is not valid
+
+/*
+ -------====Website Screenshots configuration - BETA====-------
+
+ If you just want image thumbnails and don't want website screenshots, you can safely leave this as is.
+
+ If you would like to get website screenshots set up, you will need root access to your own server.
+
+ Enable ALLOW_ALL_EXTERNAL_SITES so you can fetch any external web page. This is more secure now that we're using a non-web folder for cache.
+ Enable BLOCK_EXTERNAL_LEECHERS so that your site doesn't generate thumbnails for the whole Internet.
+
+ Instructions to get website screenshots enabled on Ubuntu Linux:
+
+ 1. Install Xvfb with the following command: sudo apt-get install subversion libqt4-webkit libqt4-dev g++ xvfb
+ 2. Go to a directory where you can download some code
+ 3. Check-out the latest version of CutyCapt with the following command: svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
+ 4. Compile CutyCapt by doing: cd cutycapt/CutyCapt
+ 5. qmake
+ 6. make
+ 7. cp CutyCapt /usr/local/bin/
+ 8. Test it by running: xvfb-run --server-args="-screen 0, 1024x768x24" CutyCapt --url="http://markmaunder.com/" --out=test.png
+ 9. If you get a file called test.png with something in it, it probably worked. Now test the script by accessing it as follows:
+ 10. http://yoursite.com/path/to/timthumb.php?src=http://markmaunder.com/&webshot=1
+
+ Notes on performance:
+ The first time a webshot loads, it will take a few seconds.
+ From then on it uses the regular timthumb caching mechanism with the configurable options above
+ and loading will be very fast.
+
+ --ADVANCED USERS ONLY--
+ If you'd like a slight speedup (about 25%) and you know Linux, you can run the following command which will keep Xvfb running in the background.
+ nohup Xvfb :100 -ac -nolisten tcp -screen 0, 1024x768x24 > /dev/null 2>&1 &
+ Then set WEBSHOT_XVFB_RUNNING = true below. This will save your server having to fire off a new Xvfb server and shut it down every time a new shot is generated.
+ You will need to take responsibility for keeping Xvfb running in case it crashes. (It seems pretty stable)
+ You will also need to take responsibility for server security if you're running Xvfb as root.
+
+
+*/
+if(! defined('WEBSHOT_ENABLED') ) define ('WEBSHOT_ENABLED', false); //Beta feature. Adding webshot=1 to your query string will cause the script to return a browser screenshot rather than try to fetch an image.
+if(! defined('WEBSHOT_CUTYCAPT') ) define ('WEBSHOT_CUTYCAPT', '/usr/local/bin/CutyCapt'); //The path to CutyCapt.
+if(! defined('WEBSHOT_XVFB') ) define ('WEBSHOT_XVFB', '/usr/bin/xvfb-run'); //The path to the Xvfb server
+if(! defined('WEBSHOT_SCREEN_X') ) define ('WEBSHOT_SCREEN_X', '1024'); //1024 works ok
+if(! defined('WEBSHOT_SCREEN_Y') ) define ('WEBSHOT_SCREEN_Y', '768'); //768 works ok
+if(! defined('WEBSHOT_COLOR_DEPTH') ) define ('WEBSHOT_COLOR_DEPTH', '24'); //I haven't tested anything besides 24
+if(! defined('WEBSHOT_IMAGE_FORMAT') ) define ('WEBSHOT_IMAGE_FORMAT', 'png'); //png is about 2.5 times the size of jpg but is a LOT better quality
+if(! defined('WEBSHOT_TIMEOUT') ) define ('WEBSHOT_TIMEOUT', '20'); //Seconds to wait for a webshot
+if(! defined('WEBSHOT_USER_AGENT') ) define ('WEBSHOT_USER_AGENT', "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18"); //I hate to do this, but a non-browser robot user agent might not show what humans see. So we pretend to be Firefox
+if(! defined('WEBSHOT_JAVASCRIPT_ON') ) define ('WEBSHOT_JAVASCRIPT_ON', true); //Setting to false might give you a slight speedup and block ads. But it could cause other issues.
+if(! defined('WEBSHOT_JAVA_ON') ) define ('WEBSHOT_JAVA_ON', false); //Have only tested this as fase
+if(! defined('WEBSHOT_PLUGINS_ON') ) define ('WEBSHOT_PLUGINS_ON', true); //Enable flash and other plugins
+if(! defined('WEBSHOT_PROXY') ) define ('WEBSHOT_PROXY', ''); //In case you're behind a proxy server.
+if(! defined('WEBSHOT_XVFB_RUNNING') ) define ('WEBSHOT_XVFB_RUNNING', false); //ADVANCED: Enable this if you've got Xvfb running in the background.
+
+
+// If ALLOW_EXTERNAL is true and ALLOW_ALL_EXTERNAL_SITES is false, then external images will only be fetched from these domains and their subdomains.
+if(! isset($ALLOWED_SITES)){
+ $ALLOWED_SITES = array (
+ 'flickr.com',
+ 'staticflickr.com',
+ 'picasa.com',
+ 'img.youtube.com',
+ 'upload.wikimedia.org',
+ 'photobucket.com',
+ 'imgur.com',
+ 'imageshack.us',
+ 'tinypic.com',
+ );
+}
+// -------------------------------------------------------------
+// -------------- STOP EDITING CONFIGURATION HERE --------------
+// -------------------------------------------------------------
+
+timthumb::start();
+
+class timthumb {
+ protected $src = "";
+ protected $is404 = false;
+ protected $docRoot = "";
+ protected $lastURLError = false;
+ protected $localImage = "";
+ protected $localImageMTime = 0;
+ protected $url = false;
+ protected $myHost = "";
+ protected $isURL = false;
+ protected $cachefile = '';
+ protected $errors = array();
+ protected $toDeletes = array();
+ protected $cacheDirectory = '';
+ protected $startTime = 0;
+ protected $lastBenchTime = 0;
+ protected $cropTop = false;
+ protected $salt = "";
+ protected $fileCacheVersion = 1; //Generally if timthumb.php is modifed (upgraded) then the salt changes and all cache files are recreated. This is a backup mechanism to force regen.
+ protected $filePrependSecurityBlock = "<?php die('Execution denied!'); //"; //Designed to have three letter mime type, space, question mark and greater than symbol appended. 6 bytes total.
+ protected static $curlDataWritten = 0;
+ protected static $curlFH = false;
+ public static function start(){
+ $tim = new timthumb();
+ $tim->handleErrors();
+ $tim->securityChecks();
+ if($tim->tryBrowserCache()){
+ exit(0);
+ }
+ $tim->handleErrors();
+ if(FILE_CACHE_ENABLED && $tim->tryServerCache()){
+ exit(0);
+ }
+ $tim->handleErrors();
+ $tim->run();
+ $tim->handleErrors();
+ exit(0);
+ }
+ public function __construct(){
+ global $ALLOWED_SITES;
+ $this->startTime = microtime(true);
+ date_default_timezone_set('UTC');
+ $this->debug(1, "Starting new request from " . $this->getIP() . " to " . $_SERVER['REQUEST_URI']);
+ $this->calcDocRoot();
+ //On windows systems I'm assuming fileinode returns an empty string or a number that doesn't change. Check this.
+ $this->salt = @filemtime(__FILE__) . '-' . @fileinode(__FILE__);
+ $this->debug(3, "Salt is: " . $this->salt);
+ if(FILE_CACHE_DIRECTORY){
+ if(! is_dir(FILE_CACHE_DIRECTORY)){
+ @mkdir(FILE_CACHE_DIRECTORY);
+ if(! is_dir(FILE_CACHE_DIRECTORY)){
+ $this->error("Could not create the file cache directory.");
+ return false;
+ }
+ }
+ $this->cacheDirectory = FILE_CACHE_DIRECTORY;
+ if (!touch($this->cacheDirectory . '/index.html')) {
+ $this->error("Could not create the index.html file - to fix this create an empty file named index.html file in the cache directory.");
+ }
+ } else {
+ $this->cacheDirectory = sys_get_temp_dir();
+ }
+ //Clean the cache before we do anything because we don't want the first visitor after FILE_CACHE_TIME_BETWEEN_CLEANS expires to get a stale image.
+ $this->cleanCache();
+
+ $this->myHost = preg_replace('/^www\./i', '', $_SERVER['HTTP_HOST']);
+ $this->src = $this->param('src');
+ $this->url = parse_url($this->src);
+ $this->src = preg_replace('/https?:\/\/(?:www\.)?' . $this->myHost . '/i', '', $this->src);
+
+ if(strlen($this->src) <= 3){
+ $this->error("No image specified");
+ return false;
+ }
+ if(BLOCK_EXTERNAL_LEECHERS && array_key_exists('HTTP_REFERER', $_SERVER) && (! preg_match('/^https?:\/\/(?:www\.)?' . $this->myHost . '(?:$|\/)/i', $_SERVER['HTTP_REFERER']))){
+ // base64 encoded red image that says 'no hotlinkers'
+ // nothing to worry about! :)
+ $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
+ header('Content-Type: image/gif');
+ header('Content-Length: ' . sizeof($imgData));
+ header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
+ header("Pragma: no-cache");
+ header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
+ echo $imgData;
+ return false;
+ exit(0);
+ }
+ if(preg_match('/^https?:\/\/[^\/]+/i', $this->src)){
+ $this->debug(2, "Is a request for an external URL: " . $this->src);
+ $this->isURL = true;
+ } else {
+ $this->debug(2, "Is a request for an internal file: " . $this->src);
+ }
+ if($this->isURL && (! ALLOW_EXTERNAL)){
+ $this->error("You are not allowed to fetch images from an external website.");
+ return false;
+ }
+ if($this->isURL){
+ if(ALLOW_ALL_EXTERNAL_SITES){
+ $this->debug(2, "Fetching from all external sites is enabled.");
+ } else {
+ $this->debug(2, "Fetching only from selected external sites is enabled.");
+ $allowed = false;
+ foreach($ALLOWED_SITES as $site){
+ if ((strtolower(substr($this->url['host'],-strlen($site)-1)) === strtolower(".$site")) || (strtolower($this->url['host'])===strtolower($site))) {
+ $this->debug(3, "URL hostname {$this->url['host']} matches $site so allowing.");
+ $allowed = true;
+ }
+ }
+ if(! $allowed){
+ return $this->error("You may not fetch images from that site. To enable this site in timthumb, you can either add it to \$ALLOWED_SITES and set ALLOW_EXTERNAL=true. Or you can set ALLOW_ALL_EXTERNAL_SITES=true, depending on your security needs.");
+ }
+ }
+ }
+
+ $cachePrefix = ($this->isURL ? '_ext_' : '_int_');
+ if($this->isURL){
+ $arr = explode('&', $_SERVER ['QUERY_STRING']);
+ asort($arr);
+ $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . implode('', $arr) . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
+ } else {
+ $this->localImage = $this->getLocalImagePath($this->src);
+ if(! $this->localImage){
+ $this->debug(1, "Could not find the local image: {$this->localImage}");
+ $this->error("Could not find the internal image you specified.");
+ $this->set404();
+ return false;
+ }
+ $this->debug(1, "Local image path is {$this->localImage}");
+ $this->localImageMTime = @filemtime($this->localImage);
+ //We include the mtime of the local file in case in changes on disk.
+ $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . $this->localImageMTime . $_SERVER ['QUERY_STRING'] . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
+ }
+ $this->debug(2, "Cache file is: " . $this->cachefile);
+
+ return true;
+ }
+ public function __destruct(){
+ foreach($this->toDeletes as $del){
+ $this->debug(2, "Deleting temp file $del");
+ @unlink($del);
+ }
+ }
+ public function run(){
+ if($this->isURL){
+ if(! ALLOW_EXTERNAL){
+ $this->debug(1, "Got a request for an external image but ALLOW_EXTERNAL is disabled so returning error msg.");
+ $this->error("You are not allowed to fetch images from an external website.");
+ return false;
+ }
+ $this->debug(3, "Got request for external image. Starting serveExternalImage.");
+ if($this->param('webshot')){
+ if(WEBSHOT_ENABLED){
+ $this->debug(3, "webshot param is set, so we're going to take a webshot.");
+ $this->serveWebshot();
+ } else {
+ $this->error("You added the webshot parameter but webshots are disabled on this server. You need to set WEBSHOT_ENABLED == true to enable webshots.");
+ }
+ } else {
+ $this->debug(3, "webshot is NOT set so we're going to try to fetch a regular image.");
+ $this->serveExternalImage();
+
+ }
+ } else {
+ $this->debug(3, "Got request for internal image. Starting serveInternalImage()");
+ $this->serveInternalImage();
+ }
+ return true;
+ }
+ protected function handleErrors(){
+ if($this->haveErrors()){
+ if(NOT_FOUND_IMAGE && $this->is404()){
+ if($this->serveImg(NOT_FOUND_IMAGE)){
+ exit(0);
+ } else {
+ $this->error("Additionally, the 404 image that is configured could not be found or there was an error serving it.");
+ }
+ }
+ if(ERROR_IMAGE){
+ if($this->serveImg(ERROR_IMAGE)){
+ exit(0);
+ } else {
+ $this->error("Additionally, the error image that is configured could not be found or there was an error serving it.");
+ }
+ }
+ $this->serveErrors();
+ exit(0);
+ }
+ return false;
+ }
+ protected function tryBrowserCache(){
+ if(BROWSER_CACHE_DISABLE){ $this->debug(3, "Browser caching is disabled"); return false; }
+ if(!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ){
+ $this->debug(3, "Got a conditional get");
+ $mtime = false;
+ //We've already checked if the real file exists in the constructor
+ if(! is_file($this->cachefile)){
+ //If we don't have something cached, regenerate the cached image.
+ return false;
+ }
+ if($this->localImageMTime){
+ $mtime = $this->localImageMTime;
+ $this->debug(3, "Local real file's modification time is $mtime");
+ } else if(is_file($this->cachefile)){ //If it's not a local request then use the mtime of the cached file to determine the 304
+ $mtime = @filemtime($this->cachefile);
+ $this->debug(3, "Cached file's modification time is $mtime");
+ }
+ if(! $mtime){ return false; }
+
+ $iftime = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
+ $this->debug(3, "The conditional get's if-modified-since unixtime is $iftime");
+ if($iftime < 1){
+ $this->debug(3, "Got an invalid conditional get modified since time. Returning false.");
+ return false;
+ }
+ if($iftime < $mtime){ //Real file or cache file has been modified since last request, so force refetch.
+ $this->debug(3, "File has been modified since last fetch.");
+ return false;
+ } else { //Otherwise serve a 304
+ $this->debug(3, "File has not been modified since last get, so serving a 304.");
+ header ($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified');
+ $this->debug(1, "Returning 304 not modified");
+ return true;
+ }
+ }
+ return false;
+ }
+ protected function tryServerCache(){
+ $this->debug(3, "Trying server cache");
+ if(file_exists($this->cachefile)){
+ $this->debug(3, "Cachefile {$this->cachefile} exists");
+ if($this->isURL){
+ $this->debug(3, "This is an external request, so checking if the cachefile is empty which means the request failed previously.");
+ if(filesize($this->cachefile) < 1){
+ $this->debug(3, "Found an empty cachefile indicating a failed earlier request. Checking how old it is.");
+ //Fetching error occured previously
+ if(time() - @filemtime($this->cachefile) > WAIT_BETWEEN_FETCH_ERRORS){
+ $this->debug(3, "File is older than " . WAIT_BETWEEN_FETCH_ERRORS . " seconds. Deleting and returning false so app can try and load file.");
+ @unlink($this->cachefile);
+ return false; //to indicate we didn't serve from cache and app should try and load
+ } else {
+ $this->debug(3, "Empty cachefile is still fresh so returning message saying we had an error fetching this image from remote host.");
+ $this->set404();
+ $this->error("An error occured fetching image.");
+ return false;
+ }
+ }
+ } else {
+ $this->debug(3, "Trying to serve cachefile {$this->cachefile}");
+ }
+ if($this->serveCacheFile()){
+ $this->debug(3, "Succesfully served cachefile {$this->cachefile}");
+ return true;
+ } else {
+ $this->debug(3, "Failed to serve cachefile {$this->cachefile} - Deleting it from cache.");
+ //Image serving failed. We can't retry at this point, but lets remove it from cache so the next request recreates it
+ @unlink($this->cachefile);
+ return true;
+ }
+ }
+ }
+ protected function error($err){
+ $this->debug(3, "Adding error message: $err");
+ $this->errors[] = $err;
+ return false;
+
+ }
+ protected function haveErrors(){
+ if(sizeof($this->errors) > 0){
+ return true;
+ }
+ return false;
+ }
+ protected function serveErrors(){
+ header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
+ $html = '<ul>';
+ foreach($this->errors as $err){
+ $html .= '<li>' . htmlentities($err) . '</li>';
+ }
+ $html .= '</ul>';
+ echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
+ echo '<br />Query String : ' . htmlentities ($_SERVER['QUERY_STRING']);
+ echo '<br />TimThumb version : ' . VERSION . '</pre>';
+ }
+ protected function serveInternalImage(){
+ $this->debug(3, "Local image path is $this->localImage");
+ if(! $this->localImage){
+ $this->sanityFail("localImage not set after verifying it earlier in the code.");
+ return false;
+ }
+ $fileSize = filesize($this->localImage);
+ if($fileSize > MAX_FILE_SIZE){
+ $this->error("The file you specified is greater than the maximum allowed file size.");
+ return false;
+ }
+ if($fileSize <= 0){
+ $this->error("The file you specified is <= 0 bytes.");
+ return false;
+ }
+ $this->debug(3, "Calling processImageAndWriteToCache() for local image.");
+ if($this->processImageAndWriteToCache($this->localImage)){
+ $this->serveCacheFile();
+ return true;
+ } else {
+ return false;
+ }
+ }
+ protected function cleanCache(){
+ if (FILE_CACHE_TIME_BETWEEN_CLEANS < 0) {
+ return;
+ }
+ $this->debug(3, "cleanCache() called");
+ $lastCleanFile = $this->cacheDirectory . '/timthumb_cacheLastCleanTime.touch';
+
+ //If this is a new timthumb installation we need to create the file
+ if(! is_file($lastCleanFile)){
+ $this->debug(1, "File tracking last clean doesn't exist. Creating $lastCleanFile");
+ if (!touch($lastCleanFile)) {
+ $this->error("Could not create cache clean timestamp file.");
+ }
+ return;
+ }
+ if(@filemtime($lastCleanFile) < (time() - FILE_CACHE_TIME_BETWEEN_CLEANS) ){ //Cache was last cleaned more than 1 day ago
+ $this->debug(1, "Cache was last cleaned more than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago. Cleaning now.");
+ // Very slight race condition here, but worst case we'll have 2 or 3 servers cleaning the cache simultaneously once a day.
+ if (!touch($lastCleanFile)) {
+ $this->error("Could not create cache clean timestamp file.");
+ }
+ $files = glob($this->cacheDirectory . '/*' . FILE_CACHE_SUFFIX);
+ if ($files) {
+ $timeAgo = time() - FILE_CACHE_MAX_FILE_AGE;
+ foreach($files as $file){
+ if(@filemtime($file) < $timeAgo){
+ $this->debug(3, "Deleting cache file $file older than max age: " . FILE_CACHE_MAX_FILE_AGE . " seconds");
+ @unlink($file);
+ }
+ }
+ }
+ return true;
+ } else {
+ $this->debug(3, "Cache was cleaned less than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago so no cleaning needed.");
+ }
+ return false;
+ }
+ protected function processImageAndWriteToCache($localImage){
+ $sData = getimagesize($localImage);
+ $origType = $sData[2];
+ $mimeType = $sData['mime'];
+
+ $this->debug(3, "Mime type of image is $mimeType");
+ if(! preg_match('/^image\/(?:gif|jpg|jpeg|png)$/i', $mimeType)){
+ return $this->error("The image being resized is not a valid gif, jpg or png.");
+ }
+
+ if (!function_exists ('imagecreatetruecolor')) {
+ return $this->error('GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library');
+ }
+
+ if (function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
+ $imageFilters = array (
+ 1 => array (IMG_FILTER_NEGATE, 0),
+ 2 => array (IMG_FILTER_GRAYSCALE, 0),
+ 3 => array (IMG_FILTER_BRIGHTNESS, 1),
+ 4 => array (IMG_FILTER_CONTRAST, 1),
+ 5 => array (IMG_FILTER_COLORIZE, 4),
+ 6 => array (IMG_FILTER_EDGEDETECT, 0),
+ 7 => array (IMG_FILTER_EMBOSS, 0),
+ 8 => array (IMG_FILTER_GAUSSIAN_BLUR, 0),
+ 9 => array (IMG_FILTER_SELECTIVE_BLUR, 0),
+ 10 => array (IMG_FILTER_MEAN_REMOVAL, 0),
+ 11 => array (IMG_FILTER_SMOOTH, 0),
+ );
+ }
+
+ // get standard input properties
+ $new_width = (int) abs ($this->param('w', 0));
+ $new_height = (int) abs ($this->param('h', 0));
+ $zoom_crop = (int) $this->param('zc', DEFAULT_ZC);
+ $quality = (int) abs ($this->param('q', DEFAULT_Q));
+ $align = $this->cropTop ? 't' : $this->param('a', 'c');
+ $filters = $this->param('f', DEFAULT_F);
+ $sharpen = (bool) $this->param('s', DEFAULT_S);
+ $canvas_color = $this->param('cc', DEFAULT_CC);
+ $canvas_trans = (bool) $this->param('ct', '1');
+
+ // set default width and height if neither are set already
+ if ($new_width == 0 && $new_height == 0) {
+ $new_width = 100;
+ $new_height = 100;
+ }
+
+ // ensure size limits can not be abused
+ $new_width = min ($new_width, MAX_WIDTH);
+ $new_height = min ($new_height, MAX_HEIGHT);
+
+ // set memory limit to be able to have enough space to resize larger images
+ $this->setMemoryLimit();
+
+ // open the existing image
+ $image = $this->openImage ($mimeType, $localImage);
+ if ($image === false) {
+ return $this->error('Unable to open image.');
+ }
+
+ // Get original width and height
+ $width = imagesx ($image);
+ $height = imagesy ($image);
+ $origin_x = 0;
+ $origin_y = 0;
+
+ // generate new w/h if not provided
+ if ($new_width && !$new_height) {
+ $new_height = floor ($height * ($new_width / $width));
+ } else if ($new_height && !$new_width) {
+ $new_width = floor ($width * ($new_height / $height));
+ }
+
+ // scale down and add borders
+ if ($zoom_crop == 3) {
+
+ $final_height = $height * ($new_width / $width);
+
+ if ($final_height > $new_height) {
+ $new_width = $width * ($new_height / $height);
+ } else {
+ $new_height = $final_height;
+ }
+
+ }
+
+ // create a new true color image
+ $canvas = imagecreatetruecolor ($new_width, $new_height);
+ imagealphablending ($canvas, false);
+
+ if (strlen($canvas_color) == 3) { //if is 3-char notation, edit string into 6-char notation
+ $canvas_color = str_repeat(substr($canvas_color, 0, 1), 2) . str_repeat(substr($canvas_color, 1, 1), 2) . str_repeat(substr($canvas_color, 2, 1), 2);
+ } else if (strlen($canvas_color) != 6) {
+ $canvas_color = DEFAULT_CC; // on error return default canvas color
+ }
+
+ $canvas_color_R = hexdec (substr ($canvas_color, 0, 2));
+ $canvas_color_G = hexdec (substr ($canvas_color, 2, 2));
+ $canvas_color_B = hexdec (substr ($canvas_color, 4, 2));
+
+ // Create a new transparent color for image
+ // If is a png and PNG_IS_TRANSPARENT is false then remove the alpha transparency
+ // (and if is set a canvas color show it in the background)
+ if(preg_match('/^image\/png$/i', $mimeType) && !PNG_IS_TRANSPARENT && $canvas_trans){
+ $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 127);
+ }else{
+ $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 0);
+ }
+
+
+ // Completely fill the background of the new image with allocated color.
+ imagefill ($canvas, 0, 0, $color);
+
+ // scale down and add borders
+ if ($zoom_crop == 2) {
+
+ $final_height = $height * ($new_width / $width);
+
+ if ($final_height > $new_height) {
+
+ $origin_x = $new_width / 2;
+ $new_width = $width * ($new_height / $height);
+ $origin_x = round ($origin_x - ($new_width / 2));
+
+ } else {
+
+ $origin_y = $new_height / 2;
+ $new_height = $final_height;
+ $origin_y = round ($origin_y - ($new_height / 2));
+
+ }
+
+ }
+
+ // Restore transparency blending
+ imagesavealpha ($canvas, true);
+
+ if ($zoom_crop > 0) {
+
+ $src_x = $src_y = 0;
+ $src_w = $width;
+ $src_h = $height;
+
+ $cmp_x = $width / $new_width;
+ $cmp_y = $height / $new_height;
+
+ // calculate x or y coordinate and width or height of source
+ if ($cmp_x > $cmp_y) {
+
+ $src_w = round ($width / $cmp_x * $cmp_y);
+ $src_x = round (($width - ($width / $cmp_x * $cmp_y)) / 2);
+
+ } else if ($cmp_y > $cmp_x) {
+
+ $src_h = round ($height / $cmp_y * $cmp_x);
+ $src_y = round (($height - ($height / $cmp_y * $cmp_x)) / 2);
+
+ }
+
+ // positional cropping!
+ if ($align) {
+ if (strpos ($align, 't') !== false) {
+ $src_y = 0;
+ }
+ if (strpos ($align, 'b') !== false) {
+ $src_y = $height - $src_h;
+ }
+ if (strpos ($align, 'l') !== false) {
+ $src_x = 0;
+ }
+ if (strpos ($align, 'r') !== false) {
+ $src_x = $width - $src_w;
+ }
+ }
+
+ imagecopyresampled ($canvas, $image, $origin_x, $origin_y, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h);
+
+ } else {
+
+ // copy and resize part of an image with resampling
+ imagecopyresampled ($canvas, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
+
+ }
+
+ if ($filters != '' && function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
+ // apply filters to image
+ $filterList = explode ('|', $filters);
+ foreach ($filterList as $fl) {
+
+ $filterSettings = explode (',', $fl);
+ if (isset ($imageFilters[$filterSettings[0]])) {
+
+ for ($i = 0; $i < 4; $i ++) {
+ if (!isset ($filterSettings[$i])) {
+ $filterSettings[$i] = null;
+ } else {
+ $filterSettings[$i] = (int) $filterSettings[$i];
+ }
+ }
+
+ switch ($imageFilters[$filterSettings[0]][1]) {
+
+ case 1:
+
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
+ break;
+
+ case 2:
+
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
+ break;
+
+ case 3:
+
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
+ break;
+
+ case 4:
+
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3], $filterSettings[4]);
+ break;
+
+ default:
+
+ imagefilter ($canvas, $imageFilters[$filterSettings[0]][0]);
+ break;
+
+ }
+ }
+ }
+ }
+
+ // sharpen image
+ if ($sharpen && function_exists ('imageconvolution')) {
+
+ $sharpenMatrix = array (
+ array (-1,-1,-1),
+ array (-1,16,-1),
+ array (-1,-1,-1),
+ );
+
+ $divisor = 8;
+ $offset = 0;
+
+ imageconvolution ($canvas, $sharpenMatrix, $divisor, $offset);
+
+ }
+ //Straight from Wordpress core code. Reduces filesize by up to 70% for PNG's
+ if ( (IMAGETYPE_PNG == $origType || IMAGETYPE_GIF == $origType) && function_exists('imageistruecolor') && !imageistruecolor( $image ) && imagecolortransparent( $image ) > 0 ){
+ imagetruecolortopalette( $canvas, false, imagecolorstotal( $image ) );
+ }
+
+ $imgType = "";
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
+ if(preg_match('/^image\/(?:jpg|jpeg)$/i', $mimeType)){
+ $imgType = 'jpg';
+ imagejpeg($canvas, $tempfile, $quality);
+ } else if(preg_match('/^image\/png$/i', $mimeType)){
+ $imgType = 'png';
+ imagepng($canvas, $tempfile, floor($quality * 0.09));
+ } else if(preg_match('/^image\/gif$/i', $mimeType)){
+ $imgType = 'gif';
+ imagegif($canvas, $tempfile);
+ } else {
+ return $this->sanityFail("Could not match mime type after verifying it previously.");
+ }
+
+ if($imgType == 'png' && OPTIPNG_ENABLED && OPTIPNG_PATH && @is_file(OPTIPNG_PATH)){
+ $exec = OPTIPNG_PATH;
+ $this->debug(3, "optipng'ing $tempfile");
+ $presize = filesize($tempfile);
+ $out = `$exec -o1 $tempfile`; //you can use up to -o7 but it really slows things down
+ clearstatcache();
+ $aftersize = filesize($tempfile);
+ $sizeDrop = $presize - $aftersize;
+ if($sizeDrop > 0){
+ $this->debug(1, "optipng reduced size by $sizeDrop");
+ } else if($sizeDrop < 0){
+ $this->debug(1, "optipng increased size! Difference was: $sizeDrop");
+ } else {
+ $this->debug(1, "optipng did not change image size.");
+ }
+ } else if($imgType == 'png' && PNGCRUSH_ENABLED && PNGCRUSH_PATH && @is_file(PNGCRUSH_PATH)){
+ $exec = PNGCRUSH_PATH;
+ $tempfile2 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
+ $this->debug(3, "pngcrush'ing $tempfile to $tempfile2");
+ $out = `$exec $tempfile $tempfile2`;
+ $todel = "";
+ if(is_file($tempfile2)){
+ $sizeDrop = filesize($tempfile) - filesize($tempfile2);
+ if($sizeDrop > 0){
+ $this->debug(1, "pngcrush was succesful and gave a $sizeDrop byte size reduction");
+ $todel = $tempfile;
+ $tempfile = $tempfile2;
+ } else {
+ $this->debug(1, "pngcrush did not reduce file size. Difference was $sizeDrop bytes.");
+ $todel = $tempfile2;
+ }
+ } else {
+ $this->debug(3, "pngcrush failed with output: $out");
+ $todel = $tempfile2;
+ }
+ @unlink($todel);
+ }
+
+ $this->debug(3, "Rewriting image with security header.");
+ $tempfile4 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
+ $context = stream_context_create ();
+ $fp = fopen($tempfile,'r',0,$context);
+ file_put_contents($tempfile4, $this->filePrependSecurityBlock . $imgType . ' ?' . '>'); //6 extra bytes, first 3 being image type
+ file_put_contents($tempfile4, $fp, FILE_APPEND);
+ fclose($fp);
+ @unlink($tempfile);
+ $this->debug(3, "Locking and replacing cache file.");
+ $lockFile = $this->cachefile . '.lock';
+ $fh = fopen($lockFile, 'w');
+ if(! $fh){
+ return $this->error("Could not open the lockfile for writing an image.");
+ }
+ if(flock($fh, LOCK_EX)){
+ @unlink($this->cachefile); //rename generally overwrites, but doing this in case of platform specific quirks. File might not exist yet.
+ rename($tempfile4, $this->cachefile);
+ flock($fh, LOCK_UN);
+ fclose($fh);
+ @unlink($lockFile);
+ } else {
+ fclose($fh);
+ @unlink($lockFile);
+ @unlink($tempfile4);
+ return $this->error("Could not get a lock for writing.");
+ }
+ $this->debug(3, "Done image replace with security header. Cleaning up and running cleanCache()");
+ imagedestroy($canvas);
+ imagedestroy($image);
+ return true;
+ }
+ protected function calcDocRoot(){
+ $docRoot = @$_SERVER['DOCUMENT_ROOT'];
+ if (defined('LOCAL_FILE_BASE_DIRECTORY')) {
+ $docRoot = LOCAL_FILE_BASE_DIRECTORY;
+ }
+ if(!isset($docRoot)){
+ $this->debug(3, "DOCUMENT_ROOT is not set. This is probably windows. Starting search 1.");
+ if(isset($_SERVER['SCRIPT_FILENAME'])){
+ $docRoot = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
+ $this->debug(3, "Generated docRoot using SCRIPT_FILENAME and PHP_SELF as: $docRoot");
+ }
+ }
+ if(!isset($docRoot)){
+ $this->debug(3, "DOCUMENT_ROOT still is not set. Starting search 2.");
+ if(isset($_SERVER['PATH_TRANSLATED'])){
+ $docRoot = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
+ $this->debug(3, "Generated docRoot using PATH_TRANSLATED and PHP_SELF as: $docRoot");
+ }
+ }
+ if($docRoot && $_SERVER['DOCUMENT_ROOT'] != '/'){ $docRoot = preg_replace('/\/$/', '', $docRoot); }
+ $this->debug(3, "Doc root is: " . $docRoot);
+ $this->docRoot = $docRoot;
+
+ }
+ protected function getLocalImagePath($src){
+ $src = ltrim($src, '/'); //strip off the leading '/'
+ if(! $this->docRoot){
+ $this->debug(3, "We have no document root set, so as a last resort, lets check if the image is in the current dir and serve that.");
+ //We don't support serving images outside the current dir if we don't have a doc root for security reasons.
+ $file = preg_replace('/^.*?([^\/\\\\]+)$/', '$1', $src); //strip off any path info and just leave the filename.
+ if(is_file($file)){
+ return $this->realpath($file);
+ }
+ return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
+ } //Do not go past this point without docRoot set
+
+ //Try src under docRoot
+ if(file_exists ($this->docRoot . '/' . $src)) {
+ $this->debug(3, "Found file as " . $this->docRoot . '/' . $src);
+ $real = $this->realpath($this->docRoot . '/' . $src);
+ if(stripos($real, $this->docRoot) === 0){
+ return $real;
+ } else {
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
+ //allow search to continue
+ }
+ }
+ //Check absolute paths and then verify the real path is under doc root
+ $absolute = $this->realpath('/' . $src);
+ if($absolute && file_exists($absolute)){ //realpath does file_exists check, so can probably skip the exists check here
+ $this->debug(3, "Found absolute path: $absolute");
+ if(! $this->docRoot){ $this->sanityFail("docRoot not set when checking absolute path."); }
+ if(stripos($absolute, $this->docRoot) === 0){
+ return $absolute;
+ } else {
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
+ //and continue search
+ }
+ }
+
+ $base = $this->docRoot;
+
+ // account for Windows directory structure
+ if (strstr($_SERVER['SCRIPT_FILENAME'],':')) {
+ $sub_directories = explode('\\', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
+ } else {
+ $sub_directories = explode('/', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
+ }
+
+ foreach ($sub_directories as $sub){
+ $base .= $sub . '/';
+ $this->debug(3, "Trying file as: " . $base . $src);
+ if(file_exists($base . $src)){
+ $this->debug(3, "Found file as: " . $base . $src);
+ $real = $this->realpath($base . $src);
+ if(stripos($real, $this->realpath($this->docRoot)) === 0){
+ return $real;
+ } else {
+ $this->debug(1, "Security block: The file specified occurs outside the document root.");
+ //And continue search
+ }
+ }
+ }
+ return false;
+ }
+ protected function realpath($path){
+ //try to remove any relative paths
+ $remove_relatives = '/\w+\/\.\.\//';
+ while(preg_match($remove_relatives,$path)){
+ $path = preg_replace($remove_relatives, '', $path);
+ }
+ //if any remain use PHP realpath to strip them out, otherwise return $path
+ //if using realpath, any symlinks will also be resolved
+ return preg_match('#^\.\./|/\.\./#', $path) ? realpath($path) : $path;
+ }
+ protected function toDelete($name){
+ $this->debug(3, "Scheduling file $name to delete on destruct.");
+ $this->toDeletes[] = $name;
+ }
+ protected function serveWebshot(){
+ $this->debug(3, "Starting serveWebshot");
+ $instr = "Please follow the instructions at http://code.google.com/p/timthumb/ to set your server up for taking website screenshots.";
+ if(! is_file(WEBSHOT_CUTYCAPT)){
+ return $this->error("CutyCapt is not installed. $instr");
+ }
+ if(! is_file(WEBSHOT_XVFB)){
+ return $this->Error("Xvfb is not installed. $instr");
+ }
+ $cuty = WEBSHOT_CUTYCAPT;
+ $xv = WEBSHOT_XVFB;
+ $screenX = WEBSHOT_SCREEN_X;
+ $screenY = WEBSHOT_SCREEN_Y;
+ $colDepth = WEBSHOT_COLOR_DEPTH;
+ $format = WEBSHOT_IMAGE_FORMAT;
+ $timeout = WEBSHOT_TIMEOUT * 1000;
+ $ua = WEBSHOT_USER_AGENT;
+ $jsOn = WEBSHOT_JAVASCRIPT_ON ? 'on' : 'off';
+ $javaOn = WEBSHOT_JAVA_ON ? 'on' : 'off';
+ $pluginsOn = WEBSHOT_PLUGINS_ON ? 'on' : 'off';
+ $proxy = WEBSHOT_PROXY ? ' --http-proxy=' . WEBSHOT_PROXY : '';
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb_webshot');
+ $url = $this->src;
+ if(! preg_match('/^https?:\/\/[a-zA-Z0-9\.\-]+/i', $url)){
+ return $this->error("Invalid URL supplied.");
+ }
+ $url = preg_replace('/[^A-Za-z0-9\-\.\_\~:\/\?\#\[\]\@\!\$\&\'\(\)\*\+\,\;\=]+/', '', $url); //RFC 3986
+ //Very important we don't allow injection of shell commands here. URL is between quotes and we are only allowing through chars allowed by a the RFC
+ // which AFAIKT can't be used for shell injection.
+ if(WEBSHOT_XVFB_RUNNING){
+ putenv('DISPLAY=:100.0');
+ $command = "$cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
+ } else {
+ $command = "$xv --server-args=\"-screen 0, {$screenX}x{$screenY}x{$colDepth}\" $cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
+ }
+ $this->debug(3, "Executing command: $command");
+ $out = `$command`;
+ $this->debug(3, "Received output: $out");
+ if(! is_file($tempfile)){
+ $this->set404();
+ return $this->error("The command to create a thumbnail failed.");
+ }
+ $this->cropTop = true;
+ if($this->processImageAndWriteToCache($tempfile)){
+ $this->debug(3, "Image processed succesfully. Serving from cache");
+ return $this->serveCacheFile();
+ } else {
+ return false;
+ }
+ }
+ protected function serveExternalImage(){
+ if(! preg_match('/^https?:\/\/[a-zA-Z0-9\-\.]+/i', $this->src)){
+ $this->error("Invalid URL supplied.");
+ return false;
+ }
+ $tempfile = tempnam($this->cacheDirectory, 'timthumb');
+ $this->debug(3, "Fetching external image into temporary file $tempfile");
+ $this->toDelete($tempfile);
+ #fetch file here
+ if(! $this->getURL($this->src, $tempfile)){
+ @unlink($this->cachefile);
+ touch($this->cachefile);
+ $this->debug(3, "Error fetching URL: " . $this->lastURLError);
+ $this->error("Error reading the URL you specified from remote host." . $this->lastURLError);
+ return false;
+ }
+
+ $mimeType = $this->getMimeType($tempfile);
+ if(! preg_match("/^image\/(?:jpg|jpeg|gif|png)$/i", $mimeType)){
+ $this->debug(3, "Remote file has invalid mime type: $mimeType");
+ @unlink($this->cachefile);
+ touch($this->cachefile);
+ $this->error("The remote file is not a valid image.");
+ return false;
+ }
+ if($this->processImageAndWriteToCache($tempfile)){
+ $this->debug(3, "Image processed succesfully. Serving from cache");
+ return $this->serveCacheFile();
+ } else {
+ return false;
+ }
+ }
+ public static function curlWrite($h, $d){
+ fwrite(self::$curlFH, $d);
+ self::$curlDataWritten += strlen($d);
+ if(self::$curlDataWritten > MAX_FILE_SIZE){
+ return 0;
+ } else {
+ return strlen($d);
+ }
+ }
+ protected function serveCacheFile(){
+ $this->debug(3, "Serving {$this->cachefile}");
+ if(! is_file($this->cachefile)){
+ $this->error("serveCacheFile called in timthumb but we couldn't find the cached file.");
+ return false;
+ }
+ $fp = fopen($this->cachefile, 'rb');
+ if(! $fp){ return $this->error("Could not open cachefile."); }
+ fseek($fp, strlen($this->filePrependSecurityBlock), SEEK_SET);
+ $imgType = fread($fp, 3);
+ fseek($fp, 3, SEEK_CUR);
+ if(ftell($fp) != strlen($this->filePrependSecurityBlock) + 6){
+ @unlink($this->cachefile);
+ return $this->error("The cached image file seems to be corrupt.");
+ }
+ $imageDataSize = filesize($this->cachefile) - (strlen($this->filePrependSecurityBlock) + 6);
+ $this->sendImageHeaders($imgType, $imageDataSize);
+ $bytesSent = @fpassthru($fp);
+ fclose($fp);
+ if($bytesSent > 0){
+ return true;
+ }
+ $content = file_get_contents ($this->cachefile);
+ if ($content != FALSE) {
+ $content = substr($content, strlen($this->filePrependSecurityBlock) + 6);
+ echo $content;
+ $this->debug(3, "Served using file_get_contents and echo");
+ return true;
+ } else {
+ $this->error("Cache file could not be loaded.");
+ return false;
+ }
+ }
+ protected function sendImageHeaders($mimeType, $dataSize){
+ if(! preg_match('/^image\//i', $mimeType)){
+ $mimeType = 'image/' . $mimeType;
+ }
+ if(strtolower($mimeType) == 'image/jpg'){
+ $mimeType = 'image/jpeg';
+ }
+ $gmdate_expires = gmdate ('D, d M Y H:i:s', strtotime ('now +10 days')) . ' GMT';
+ $gmdate_modified = gmdate ('D, d M Y H:i:s') . ' GMT';
+ // send content headers then display image
+ header ('Content-Type: ' . $mimeType);
+ header ('Accept-Ranges: none'); //Changed this because we don't accept range requests
+ header ('Last-Modified: ' . $gmdate_modified);
+ header ('Content-Length: ' . $dataSize);
+ if(BROWSER_CACHE_DISABLE){
+ $this->debug(3, "Browser cache is disabled so setting non-caching headers.");
+ header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
+ header("Pragma: no-cache");
+ header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
+ } else {
+ $this->debug(3, "Browser caching is enabled");
+ header('Cache-Control: max-age=' . BROWSER_CACHE_MAX_AGE . ', must-revalidate');
+ header('Expires: ' . $gmdate_expires);
+ }
+ return true;
+ }
+ protected function securityChecks(){
+ }
+ protected function param($property, $default = ''){
+ if (isset ($_GET[$property])) {
+ return $_GET[$property];
+ } else {
+ return $default;
+ }
+ }
+ protected function openImage($mimeType, $src){
+ switch ($mimeType) {
+ case 'image/jpeg':
+ $image = imagecreatefromjpeg ($src);
+ break;
+
+ case 'image/png':
+ $image = imagecreatefrompng ($src);
+ break;
+
+ case 'image/gif':
+ $image = imagecreatefromgif ($src);
+ break;
+
+ default:
+ $this->error("Unrecognised mimeType");
+ }
+
+ return $image;
+ }
+ protected function getIP(){
+ $rem = @$_SERVER["REMOTE_ADDR"];
+ $ff = @$_SERVER["HTTP_X_FORWARDED_FOR"];
+ $ci = @$_SERVER["HTTP_CLIENT_IP"];
+ if(preg_match('/^(?:192\.168|172\.16|10\.|127\.)/', $rem)){
+ if($ff){ return $ff; }
+ if($ci){ return $ci; }
+ return $rem;
+ } else {
+ if($rem){ return $rem; }
+ if($ff){ return $ff; }
+ if($ci){ return $ci; }
+ return "UNKNOWN";
+ }
+ }
+ protected function debug($level, $msg){
+ if(DEBUG_ON && $level <= DEBUG_LEVEL){
+ $execTime = sprintf('%.6f', microtime(true) - $this->startTime);
+ $tick = sprintf('%.6f', 0);
+ if($this->lastBenchTime > 0){
+ $tick = sprintf('%.6f', microtime(true) - $this->lastBenchTime);
+ }
+ $this->lastBenchTime = microtime(true);
+ error_log("TimThumb Debug line " . __LINE__ . " [$execTime : $tick]: $msg");
+ }
+ }
+ protected function sanityFail($msg){
+ return $this->error("There is a problem in the timthumb code. Message: Please report this error at <a href='http://code.google.com/p/timthumb/issues/list'>timthumb's bug tracking page</a>: $msg");
+ }
+ protected function getMimeType($file){
+ $info = getimagesize($file);
+ if(is_array($info) && $info['mime']){
+ return $info['mime'];
+ }
+ return '';
+ }
+ protected function setMemoryLimit(){
+ $inimem = ini_get('memory_limit');
+ $inibytes = timthumb::returnBytes($inimem);
+ $ourbytes = timthumb::returnBytes(MEMORY_LIMIT);
+ if($inibytes < $ourbytes){
+ ini_set ('memory_limit', MEMORY_LIMIT);
+ $this->debug(3, "Increased memory from $inimem to " . MEMORY_LIMIT);
+ } else {
+ $this->debug(3, "Not adjusting memory size because the current setting is " . $inimem . " and our size of " . MEMORY_LIMIT . " is smaller.");
+ }
+ }
+ protected static function returnBytes($size_str){
+ switch (substr ($size_str, -1))
+ {
+ case 'M': case 'm': return (int)$size_str * 1048576;
+ case 'K': case 'k': return (int)$size_str * 1024;
+ case 'G': case 'g': return (int)$size_str * 1073741824;
+ default: return $size_str;
+ }
+ }
+ protected function getURL($url, $tempfile){
+ $this->lastURLError = false;
+ $url = preg_replace('/ /', '%20', $url);
+ if(function_exists('curl_init')){
+ $this->debug(3, "Curl is installed so using it to fetch URL.");
+ self::$curlFH = fopen($tempfile, 'w');
+ if(! self::$curlFH){
+ $this->error("Could not open $tempfile for writing.");
+ return false;
+ }
+ self::$curlDataWritten = 0;
+ $this->debug(3, "Fetching url with curl: $url");
+ $curl = curl_init($url);
+ curl_setopt ($curl, CURLOPT_TIMEOUT, CURL_TIMEOUT);
+ curl_setopt ($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30");
+ curl_setopt ($curl, CURLOPT_RETURNTRANSFER, TRUE);
+ curl_setopt ($curl, CURLOPT_HEADER, 0);
+ curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
+ curl_setopt ($curl, CURLOPT_WRITEFUNCTION, 'timthumb::curlWrite');
+ @curl_setopt ($curl, CURLOPT_FOLLOWLOCATION, true);
+ @curl_setopt ($curl, CURLOPT_MAXREDIRS, 10);
+
+ $curlResult = curl_exec($curl);
+ fclose(self::$curlFH);
+ $httpStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE);
+ if($httpStatus == 404){
+ $this->set404();
+ }
+ if($curlResult){
+ curl_close($curl);
+ return true;
+ } else {
+ $this->lastURLError = curl_error($curl);
+ curl_close($curl);
+ return false;
+ }
+ } else {
+ $img = @file_get_contents ($url);
+ if($img === false){
+ $err = error_get_last();
+ if(is_array($err) && $err['message']){
+ $this->lastURLError = $err['message'];
+ } else {
+ $this->lastURLError = $err;
+ }
+ if(preg_match('/404/', $this->lastURLError)){
+ $this->set404();
+ }
+
+ return false;
+ }
+ if(! file_put_contents($tempfile, $img)){
+ $this->error("Could not write to $tempfile.");
+ return false;
+ }
+ return true;
+ }
+
+ }
+ protected function serveImg($file){
+ $s = getimagesize($file);
+ if(! ($s && $s['mime'])){
+ return false;
+ }
+ header ('Content-Type: ' . $s['mime']);
+ header ('Content-Length: ' . filesize($file) );
+ header ('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
+ header ("Pragma: no-cache");
+ $bytes = @readfile($file);
+ if($bytes > 0){
+ return true;
+ }
+ $content = @file_get_contents ($file);
+ if ($content != FALSE){
+ echo $content;
+ return true;
+ }
+ return false;
+
+ }
+ protected function set404(){
+ $this->is404 = true;
+ }
+ protected function is404(){
+ return $this->is404;
+ }
+}
|